/**
* Template Name: Siimple
* Template URL: https://bootstrapmade.com/free-bootstrap-landing-page/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Open Sans", sans-serif; */
  font-family: 'Zonapro', sans-serif;
  color: #444444;
  /* background-color: #000000; */
}

a {
  text-decoration: none;
  color: #fd680e;
}

a:hover {
  color: #ff8f4c;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: 'Zonapro', sans-serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  padding: 20px 0;
  z-index: 10;
  position: relative;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.nav-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  right: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgb(111 116 116 / 29%);
  backdrop-filter: blur(16px);
  transition: 0.4s;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a,
.nav-menu a:focus {
  display: block;
  position: relative;
  color: #e7e7e7;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #ffa26a;
  text-decoration: none;
}

.nav-menu .drop-down>a:after {
  content: "\ea27";
  font-family: "boxicons";
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.nav-menu .active.drop-down>a:after {
  content: "\ea27";
}

.nav-menu .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down ul {
  display: none;
  overflow: hidden;
}

.nav-menu ul.drop-down-active {
  display: block;
}

.nav-menu .drop-down li {
  padding-left: 20px;
}

.nav-menu-active {
  right: 0;
}

.nav-toggle {
  position: fixed;
  right: 1%;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: rgba(34, 34, 34, 0);
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  padding: 10px 0px;
  border-radius: 2px;
}

.nav-toggle i {
  color: #fff4f459;
  font-size: 40px;
}

.nav-toggle-active {
  right: 275px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #884922;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fd680e;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #fd680e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #fd7827;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fd680e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #743e1d;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(75, 40, 19, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:hover {
  padding: 10px 20px;
  font-size: 15px;
  color: #743e1d;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fd680e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #fd680e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: black center center;
  background-size: cover;
  position: relative;
  margin-top: -80px;
  z-index: 2;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero h1 {
  margin: 10px 0 10px 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 56px;
  
  color: gray;
}

#hero h2 {
  color: gray;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 35px;
  font-size: 25px;
}

#hero .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#hero .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#hero .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 15px;
  border-radius: 50px;
}

#hero .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading-notify 1s linear infinite;
}

/* .s-link {
  font-size: 1.2rem;
  color: #d3d3d3;
  font-weight: 900;
  position: relative;
} */
/* .s-link:hover {
  background: radial-gradient(circle at 15px 15px, #f8ff90, #c7007b, #278316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; 
} */
.s-link {
  font-size: 1.2rem;
  text-decoration: none;
  color: inherit;
}

.s-link span.char {
  display: inline-block;
  font-weight: 900;
  color: #9d9d9d; /* Default color */
  transition: color 0.3s ease;
}

.s-link:hover span.char {
  font-weight: 500;
  color: #c0c0c0; /* Hide the default color to show gradient */
}

.s-link:hover span.char:nth-child(6n+6) { color: #00a0e3; font-weight: 900; }
.s-link:hover span.char:nth-child(6n+5) { color: #e5097f; font-weight: 900; }
.s-link:hover span.char:nth-child(6n+4) { color: #b0cb1f; font-weight: 900; }
.s-link:hover span.char:nth-child(6n+3) { color: #f08143; font-weight: 900; }
.s-link:hover span.char:nth-child(6n+2) { color: #ae4a84; font-weight: 900; }
.s-link:hover span.char:nth-child(6n+1) { color: #fbbe00; font-weight: 900; }

/* .s-link:hover span.char:nth-child(6n+1) { color: orange; }
.s-link:hover span.char:nth-child(6n+2) { color: red; }
.s-link:hover span.char:nth-child(6n+3) { color: violet; }
.s-link:hover span.char:nth-child(6n+4) { color: indigo; }
.s-link:hover span.char:nth-child(6n+5) { color: blue; }
.s-link:hover span.char:nth-child(6n+6) { color: green; } */
@keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }

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

#hero .php-email-form input {
  border-radius: 50px;
  box-shadow: none;
  font-size: 14px;
  border: 0;
  padding: 0px 15px 2px 20px;
  width: 250px;
  height: 40px;
  margin: 0 8px;
}

#hero .php-email-form button[type=submit] {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: none;
  color: #fff;
  background: #fd680e;
}

#hero .circle-container {
  position: relative;
  display: inline-block;
}

#hero .circle-container img {
  display: block;
  transition: all 1.5s ease-in-out;
  animation: rotateBg 15s linear infinite;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  color: rgb(43, 43, 43); /* Adjust color as needed */
  transition: all 0.6s;
}


.circle-container:hover .play-icon {
  color: #9D9F9E;
  transform: translate(-50%, -50%) rotate(360deg);

}
#hero .php-email-form button[type=submit]:hover {
  background: #fd8841;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .php-email-form input {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #000000;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 1px;
  background: #fd680e;
  bottom: 0;
  left: calc(50% - 40px);
}

.section-title p {
  margin-bottom: 0;
  font-style: italic;
  color: #666666;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1); 
  z-index: 1;/* Transparent black overlay */
  transition: background 5s ease;
}
.hero_bottom {
  /* background: linear-gradient();
  background-image: url("../img/about_bg.jpg"); */
  position: relative;
  /* background-color: #000000; */
  
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  /* background: url('../img/about_img3.jpg') no-repeat center center/cover; */
  background: #000000;
    /* opacity: 0.5; */
    z-index: 0;
    overflow: hidden;
  
  
}

.hero_bottom_1 {
  /* background: linear-gradient();
  background-image: url("../img/about_bg.jpg"); */
  position: relative;
  background-color: #000000;
  
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  /* background: url('../img/about_img3.jpg') no-repeat center center/cover; */
    /* opacity: 0.5; */
    z-index: 0;
    overflow: hidden;
  
  
}
.overlay_1 {
  position: absolute;
  overflow: hidden;
  transform: rotate(90deg);
  top: -500px;
  right: -70px;
  width: 800px;
  height: 800px;
  background: url('../img/color_circle.png') no-repeat center center/cover;; 
  opacity: 0.4;
  z-index: 1;/* Transparent black overlay */
  animation: scaleAndRotate 10s ease infinite;
}

.hero_bottom_row {
  height: 100vh;
}

.hero_bottom_row_1 {
  height: 100vh !important;
}

.hero_bottom .content h1, p {
  position: relative;
  color: #ababab;
  z-index: 2;
  word-spacing: 1.5pt;
}
.content_1{
  display: flex;
  justify-content: center;
}

/* .hero_bottom_1 .content_1 h1, p {
  position: relative;
  color: white;
  z-index: 2;
  word-spacing: 1.5pt;
} */

.content_1 h1 {
  
  font-size: 135px;
  color: #727270;
  line-height: 0.97;
  letter-spacing: inherit;
  margin: 0 0 0 2rem;
  
}
.content_1 .bolder {
  font-size: 135px;
  font-family: "Zonapro Bold" , serif;
  font-weight: 900;
  color: #9D9F9E;
}
.big_p {
  position: absolute;
  font-size: 32px;
  margin-left: 2rem;
  /* font-family: "Zonapro Bold" , serif; */
  /* font-weight: 900; */
  color: #C5C7C6;
}
.color_ball {
  position: absolute !important;
  top: 1vh;
  right: 40vw;
  bottom: 10;
  color: white;
  z-index: 2;
  animation: moveAndRotate 20s ease infinite;
}

.color_ball_2 {
  width: 11.5rem;
  z-index: 2;
  /* padding-bottom: 1rem; */
  height: auto;

}

@keyframes moveAndRotate {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateX(5vw) rotate(180deg);
    opacity: 0.3;
  }
  30% {
    transform: translateX(0vw) rotate(30deg);
    opacity: 0.3;
  }
  40% {
    transform: translateX(5vw) rotate(270deg);
    opacity: 0.3;
  }
  50% {
    transform: translateX(0vw) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translateX(5vw) rotate(270deg);
    opacity: 0.3;
  }
  100% {
    transform: translateX(0) rotate(360deg);
    opacity: 0.6;
  }
}
@keyframes scaleAndRotate {
  0% {
    -webkit-transform: scale(1) rotate(160deg);
    transform: scale(1) rotate(160deg);
    opacity: 0.4;
   }

  20% {
    -webkit-transform: scaleY(0.95) scaleX(1.05) rotate(170deg);
    transform: scaleY(0.95) scaleX(1.05) rotate(170deg);
    opacity: 0.4;
   }

  48% {
    -webkit-transform: scaleY(1.1) scaleX(0.9) rotate(180deg);
    transform: scaleY(1.1) scaleX(0.9) rotate(180deg);
    opacity: 0.5;
   }

  68% {
    -webkit-transform: scaleY(0.98) scaleX(1.02) rotate(190deg);
    transform: scaleY(0.98) scaleX(1.02) rotate(190deg);
    opacity: 0.7;
   }

  80% {
    -webkit-transform: scaleY(1.02) scaleX(0.98) rotate(180deg);
    transform: scaleY(1.02) scaleX(0.98) rotate(180deg);
    opacity: 0.5;
   }

  97%, 100% {
    -webkit-transform: scale(1) rotate(160deg);
    transform: scale(1) rotate(160deg); 
    opacity: 0.4;
  } }

.social-media-bar {
  position: fixed !important;
  top:  50%;
  right: 1%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}


@media only screen and (max-width: 991px) {

  .hero_bottom {
    /* background: linear-gradient();
    background-image: url("../img/about_bg.jpg"); */
    position: relative;
    background-color: #000000;
    
    width: 100%;
    height: 100%; /* Full height of the viewport */
    background: url('../img/about_img3.jpg') no-repeat center center/cover;
      /* opacity: 0.5; */
    z-index: 0;
    
    
  }
  .hero_bottom_row {
    height: auto;
  }

  .hero_bottom_1 {
    
    width: 100%;
    height: 100%; /* Full height of the viewport */
    /* background: url('../img/about_img3.jpg') no-repeat center center/cover; */
      /* opacity: 0.5; */
      z-index: 0;
      overflow: hidden;
    
    
  }
  .video {
    
    width: 100%;
    height: 70vh; /* Full height of the viewport */
    /* background: url('../img/about_img3.jpg') no-repeat center center/cover; */
      /* opacity: 0.5; */
      z-index: 0;
      overflow: hidden;
    
    
  }

 

  

  .hero_bottom_row_1 {
    height: 90vh !important;
  }
  

  .color_ball {
    opacity: 1;
  }

  .color_ball_2 {
    opacity: 1;

  }
  @keyframes moveAndRotate {
    0% {
      transform: translateX(0vw) rotate(0deg);
      opacity: 0.6;
    }
    25% {
      transform: translateX(7vw) rotate(180deg);
      opacity: 0.9;
    }
    30% {
      transform: translateX(0vw) rotate(30deg);
      opacity: 1;
    }
    40% {
      transform: translateX(7vw) rotate(270deg);
      opacity: 0.3;
    }
    50% {
      transform: translateX(0vw) rotate(180deg);
      opacity: 0.5;
    }
    75% {
      transform: translateX(7vw) rotate(270deg);
      opacity: 0.9;
    }
    100% {
      transform: translateX(0vw) rotate(360deg);
      opacity: 0.6;
    }
  }

  @keyframes scaleAndRotate {
    0% {
      -webkit-transform: scale(1) rotate(160deg);
      transform: scale(1) rotate(160deg); }
  
    20% {
      -webkit-transform: scaleY(0.95) scaleX(1.05) rotate(170deg);
      transform: scaleY(0.95) scaleX(1.05) rotate(170deg); }
  
    48% {
      -webkit-transform: scaleY(1.1) scaleX(0.9) rotate(180deg);
      transform: scaleY(1.1) scaleX(0.9) rotate(180deg); }
  
    68% {
      -webkit-transform: scaleY(0.98) scaleX(1.02) rotate(190deg);
      transform: scaleY(0.98) scaleX(1.02) rotate(190deg); }
  
    80% {
      -webkit-transform: scaleY(1.02) scaleX(0.98) rotate(180deg);
      transform: scaleY(1.02) scaleX(0.98) rotate(180deg); }
  
    97%, 100% {
      -webkit-transform: scale(1) rotate(160deg);
      transform: scale(1) rotate(160deg); } }

  .overlay_1 {
    position: absolute;
    overflow: hidden;
    transform: rotate(170deg);
    top: -150px;
    right: -35px;
    width: 300px;
    height: 300px;
    background: url('../img/color_ball.png') no-repeat center center/cover;
    z-index: 1;/* Transparent black overlay */
    animation: scaleAndRotate 10s ease infinite;
  }

  .color_ball_2 {
    width: 4.3em;
    z-index: 2;
    /* padding-bottom: 1rem; */
    height: auto;
  
  }
  .content_1 h1 {
    font-size: 51px;
    color: #727270;
    line-height: 1;
    letter-spacing: 1.5px;
    margin-left: 0.5rem;
}

.content_1 .bolder {
  font-size: 49px;
  font-family: "Zonapro Bold", serif;
  font-weight: 900;
  color: #9D9F9E;
}

.big_p {
  position: absolute;
  font-size: 21px;
  margin-left: 2rem;
  /* font-family: "Zonapro Bold", serif; */
  /* font-weight: 900; */
  color: #C5C7C6;
}
.social-media-bar {
  right: 3%;
  bottom: -15%;
  /* transform: translateY(40%); */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 3;
}
  
  
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid grey;
  border-radius: 50%;
  color: rgb(181 181 181 / 57%);
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent background */
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.social-icon i {
  font-size: 20px;
  transition: color 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Specific hover colors for each icon */
.social-icon.facebook:hover i {
  color: #3b5998; /* Facebook blue */
}

.social-icon.whatsapp:hover i {
  color: #25D366; /* WhatsApp green */
}
.social-icon.linkedin:hover {
  background-color: #0077b5; /* LinkedIn blue */
  color: #fff; /* LinkedIn green */
}
/* .social-icon.linkedin:hover i {
  background-color: #0077b5; 
  color: #fff; 
} */

.social-icon.instagram {
  position: relative;
  overflow: hidden;
}

.social-icon.instagram:hover i {
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.3s, -webkit-text-fill-color 0.3s;
}

.social-icon.instagram i {
  position: relative;
  z-index: 1;
  font-weight: 700;
  -webkit-text-fill-color: transparent; /* Make the text transparent */
  background: radial-gradient(circle at 30% 107%, #707070 0%, #aba8a8 5%, #707070 45%, #707070 60%, #858585 90%); /* Apply the gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* transition: background 0.3s, -webkit-text-fill-color 0.3s; */
}

.google_busi {
  filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}
.google_busi:hover {
  filter: grayscale(0%);
  
}

.about_section {
  overflow: hidden;
  background-color: #000000;
}

.bg_circle {
  /* background: url('../img/color_ball.png') no-repeat center center/cover; */
  position: relative;
  padding:  70px;
  /* animation: rotateBg 10s linear infinite;  */
}
.bg_circle1 {
  /* background: url('../img/color_ball.png') no-repeat center center/cover; */
  position: relative;
  padding:  100px;
  /* animation: rotateBg 10s linear infinite;  */
}

.design_studio {
  position: relative;
  z-index: 2;
  transition: all 0.1s ease-in;
  animation: jump 3s linear infinite;
}
 @keyframes jump {
  0% {
    transform: translateY(0px); 
  }
  50% {
    transform: translateY(15px); 
  }
  75% {
    transform: translateY(20px); 
  }
  100% {
    transform: translateY(0px); 
  }
 }
.twe_logo {
  position: relative;
  z-index: 2;
  /* width: 150px; */
}
.bg_circle_background {
  background: url('../img/color_circle.png') no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotateBg 15s linear infinite;
  z-index: 0;
}

.bg_circle_background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30%;
  background:linear-gradient( rgba(0, 0, 0, 0.4), rgb(0, 0, 0.4)); /* Black overlay with 50% opacity */
}

.about_content h2 ,h1, p {
  color: rgb(179, 179, 179);
  font-weight: 500;
}
@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


@media only screen and (min-width: 992px) and (max-width: 1450px) {
  .content_1 h1 {
  
    font-size: 7rem;
    color: #727270;
    line-height: 1;
    letter-spacing: 2.5px;
    margin-left: 2rem;
  }
  .content_1 .bolder {
    font-size: 7rem;
    font-family: "Zonapro Bold" , serif;
    font-weight: 900;
    color: #9D9F9E;
  }
  .color_ball_2 {
    width: 10rem;
    z-index: 2;
    /* padding-bottom: 1rem; */
    height: auto;
  
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 300;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #fd680e;
}

.about p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 30px;
}

.why-us .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.why-us .card-icon {
  text-align: center;
  margin-top: -32px;
}

.why-us .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 10px;
  text-align: center;
  background-color: #fd680e;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  transition: 0.3s;
  display: inline-block;
}

.why-us .card-body {
  padding-top: 12px;
}

.why-us .card-title {
  font-weight: 700;
  text-align: center;
}

.why-us .card-title a {
  color: #743e1d;
}

.why-us .card-title a:hover {
  color: #fd680e;
}

.why-us .card-text {
  color: #5e5e5e;
}

.why-us .card:hover .card-icon i {
  background: #fff;
  color: #fd680e;
}

@media (max-width: 1024px) {
  .why-us {
    background-attachment: scroll;
  }
}

/*--------------------------------------------------------------
# Frequenty Asked Questions
--------------------------------------------------------------*/
.faq {
  padding-bottom: 60px;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #fd680e;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #fd680e;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  color: #444444;
}

.contact .info i {
  font-size: 32px;
  color: #fd680e;
  float: left;
}

.contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #5a2c10;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.contact .social-links a:hover {
  background: #fd680e;
  color: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #fd680e;
}

.contact .php-email-form button[type=submit] {
  background: #fd680e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fd8841;
}

@media (max-width: 768px) {
  .contact .social-links {
    text-align: center;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #2f1708;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.footer_bottom a {
  display: inline;
  font-size: 12px;
  color: #a3a3a3;
  font-weight: 700;
  cursor: pointer;
}

.cursorFollower {
  position: fixed;
  width: 2rem;
  height: 2rem;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
  mix-blend-mode: difference;
  z-index: 10000;
  pointer-events: none;
}
.cursorFollowerDot {
  position: fixed;
  width: 0.8rem;
  height: 0.8rem;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
  mix-blend-mode: difference;
  z-index: 10000;
  pointer-events: none;
}

.footer_copyright {
  font-size: 12px;
}


.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  /* padding: 0.75rem 1rem; */
  margin-bottom: 1rem;
  list-style: none;
  /* background-color: #e9ecef; */
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #6b6b6b;
  content: "/";
}

.breadcrumb-item > a {
  color: #818181;
  text-decoration: none;
  background-color: transparent;
}

.breadcrumb-item > a:hover {
  color: #00a0e3;
  /* text-decoration: underline; */
}

.breadcrumb-item.active {
  color: #d6d6d6;
}

.text_hover_cyan:hover {
  color: #00a0e3 !important;
}
.text_hover_magenta:hover {
  color: #e5097f !important;
}
.text_hover_green:hover {
  color: #b0cb1f !important;
}
.text_hover_orange:hover {
  color: #f08143 !important;
}
.text_hover_purple:hover {
  color: #ae4a84 !important;
}
.text_hover_yellow:hover {
  color: #fbbe00 !important;
}