/*
Theme Name: Build Ideal
Theme URI: https://buildideal.com
Author: ---
Author URI: https://buildideal.com
Description: Designer ---.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
*{
  box-sizing: border-box !important;
}
body {
  padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    overflow-x: hidden !important;
  }

/*//////////////////////////////////////////////////////////////////////////////////// /*heder*/
.bugtop{
  margin-top: 0 !important;
  overflow: hidden !important;
}

.navigation2 {
  display: hidden;
}

#hero-content {
  transition: all 0.5s ease-in-out;
  /* For smooth animations */
  transform: translateX(0);
  opacity: 1;
}

.translate-x-0 {
  transform: translateX(0);
}

.translate-x-10 {
  transform: translateX(-40px);
}

/* Animation for the backgrounds */
#backgrounds > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 9s ease, opacity 0.7s ease;
  transform-origin: center center;
}

.opacity-0 {
  opacity: 0;
  transition: opacity 1s ease;
}

.opacity-100 {
  opacity: 1;
  transition: opacity 1s ease;
}

.scale-1 {
  transform: scale(1);
  transition: transform 1s ease;
}

.scale-110 {
  transform: scale(1.1);
  transition: transform 1s ease;
}

/* Hero content animations */
#hero-content {
  transition: all 1s ease-in-out;
  transform: translateX(-20px);
  opacity: 1;
}

.opacity-0 {
  opacity: 0;
}

.translate-x-0 {
  transform: translateX(0);
}

.translate-x-full {
  transform: translateX(100%);
}

#hero-content h1,
#hero-content p {
  transition: transform 1s ease, opacity 1s ease;
  transform: translateX(-20px);
}

/*//////////////////////////////////////////////////////////////////////////////////// /*heder*/

.loader {
  position: absolute;
  border: 11px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: spin 3s linear infinite;
  z-index: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swiper1 {
  width: 100%;
  height: 85px;
  display: flex;
  margin: 50px 0px;
  gap: 10px;
}

.slide2 img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
}

.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu.active .navigation {
  display: none;
}

@keyframes slide-in {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slide-in {
  animation: slide-in 0.8s ease forwards; 
}
