:root {
  --bg-color: #212121;
  --theme-color: #151515; 
  --bg-orange: #f7931e;
  --swiper-navigation-size: 20px;
}

/* --------------- Menu --------------- */
.navbar {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  z-index: 9999999; }
  .navbar.nav-scroll {
    padding: 0;
    position: fixed;
    top: -80px;
    padding: 15px 0;
    -webkit-transition: -webkit-transform .8s;
    transition: -webkit-transform .8s;
    -o-transition: transform .8s;
    transition: transform .8s;
    transition: transform .8s, -webkit-transform .8s;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px); }
  .navbar .logo {
    padding: 2px 0px;
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
    border-radius: 30px; 
    margin-right: 50px;
      margin-top: -12px;
  }
  .navbar .logo img{
    height: 100px;
  }
.navbar .navbar-nav {
    padding: 2px 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    margin-left: 15px; gap: 25px;
    
}
.navbar .navbar-nav .nav-link {
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 17px;
  color: #fff; 
}
.navbar .navbar-nav .nav-item.active .nav-link{
  background: rgba(255, 255, 255, 0.1); 
}

.navbar.nav-scroll .logo img {
    height: 60px;
}

.navbar .topnav .butn {
padding: 8px 20px;
background: #fff;
color: #1d1d1d; 
font-weight: 700;
margin-right: 15px; 
cursor: pointer;
box-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
transition: transform 0.2s ease-in-out;
animation: glow 1.5s infinite alternate ease-in-out;
}
.navbar .topnav .butn:hover{
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.navbar .topnav .butn:hover .icon img {
    filter: invert(1);
}

.btn-group-sec{
    gap:15px
}
@keyframes glow {
  0% {
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.7), 
                0 0 15px rgba(255, 255, 255, 0.6), 
                0 0 25px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 
                0 0 30px rgba(255, 255, 255, 0.8), 
                0 0 40px rgba(255, 255, 255, 0.7);
  }
}

/* --------------- header --------------- */
.header-sa {
  min-height: 100vh;
  position: relative;
  overflow: hidden !important;
  z-index: 3; 
}
.header-sa .background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: -1; 
}
 
.header-sa .background video {
    position: relative;
    left: 0;
    top: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: -1;
}
.header-sa .background:after {
    position: absolute;
    content:'';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
    z-index: 1; 
}
.header-sa .container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.caption {
    padding-top: 200px;
    padding-left: 130px;
}
  .header-sa .caption h1 {
    font-size: 50px;
    line-height: 62px; font-weight: 700;
    letter-spacing: -4px; }
  .header-sa .caption .text {
    margin-top: 60px; }
 
  
/* --------------- Services --------------- */
.services-sa .item {
  background: var(--bg-color);
  padding: 15px;
  border-radius: 20px; }
  .services-sa .item .cont {
    padding: 15px; }
    .services-sa .item .cont .icon {
      width: 52px;
      height: 52px;
      line-height: 50px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%; }
      .services-sa .item .cont .icon img {
        width: 25px; }
      .services-sa .item .cont .icon.invert img {
        -webkit-filter: invert(1);
        filter: invert(1); }
    .services-sa .item .cont .text {
      margin-top: 100px;
      margin-bottom: 20px; }
      .services-sa .item .cont .text p {
        font-size: 14px;
        font-weight: 300;
        line-height: 22px; }

.marq-sa {
  overflow: hidden !important; }
  .marq-sa .item {
    padding: 0 80px !important;
    position: relative; }
    .marq-sa .item:after {
      content: '';
      width: 12px;
      height: 12px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    .marq-sa .item h2 {
      white-space: nowrap;
      font-size: 96px;
      line-height: 120px;
      letter-spacing: -4px;
      background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
      background: -webkit-linear-gradient(left, #fff, transparent);
      background: -o-linear-gradient(left, #fff, transparent);
      background: linear-gradient(to right, #fff, transparent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }

/* --------------- Intruduction --------------- */
  .intro-sa{
    padding: 150px 0 100px;
  }

/* --------------- Works --------------- */
.work-section {
  position: relative;
}
.work-card .card-item {
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: var(--bg-color); }

.work-card .card-item .btn-group-sec{
    flex-direction: column;gap: 3px;
    margin-top:15px;
}
.work-card .card-item .btn-group-sec {
    max-width: 250px;
}
.work-card .card-item .btn-group-sec .butn.butn-bord .d-flex.align-items-center{
    justify-content: center;
}
  .work-card .card-item .cont {
    height: 100%;
    padding: 30px 40px 30px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .work-card .card-item .cont .tag {
      font-size: 12px;
      line-height: 1;
      padding: 7px 12px;
      margin-right: 2px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 30px; }
    .work-card .card-item .cont p {
      font-size: 14px;
      line-height: 20px; }
  .work-card .card-item .img {
    padding: 20px; }
    .work-card .card-item .img img {
      border-radius: 15px; }



.gallery {
  width: 100%;
  max-height: 700px;
  margin: 0px auto;
}
.gallery-slider1 {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.gallery-slider1 .swiper-slide {
  width: 100%;
  height: 400px;
}
.gallery-slider1 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.gallery-thumbs1 {
  width: 100%;
  max-width: 700px;
  padding: 0;
  overflow: hidden;
}
.gallery-thumbs1 .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.1;
}
.gallery-thumbs1 .swiper-slide-active {
  opacity: 1;
}
.gallery-thumbs1 .swiper-slide img {
  width: 100%;
  height: 100%;
}



.gallery-slider2 {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.gallery-slider2 .swiper-slide {
  width: 100%;
  height: 400px;
}
.gallery-slider2 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.gallery-thumbs2 {
  width: 100%;
  max-width: 700px;
  padding: 0;
  overflow: hidden;
}
.gallery-thumbs2 .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.1;
}
.gallery-thumbs2 .swiper-slide-active {
  opacity: 1;
}
.gallery-thumbs2 .swiper-slide img {
  width: 100%;
  height: 100%;
}



.gallery-slider3 {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.gallery-slider3 .swiper-slide {
  width: auto;
  height: 400px;
}
.gallery-slider3 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.gallery-thumbs3 {
  width: 100%;
  max-width: 700px;
  padding: 0;
  overflow: hidden;
}
.gallery-thumbs3 .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.1;
}
.gallery-thumbs3 .swiper-slide-active {
  opacity: 1;
}
.gallery-thumbs3 .swiper-slide img {
  width: 100%;
  height: 100%;
}


.gallery-slider4 {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.gallery-slider4 .swiper-slide {
  width: auto;
  height: 400px;
}
.gallery-slider4 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.gallery-thumbs4 {
  width: 100%;
  max-width: 700px;
  padding: 0;
  overflow: hidden;
}
.gallery-thumbs4 .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.1;
}
.gallery-thumbs4 .swiper-slide-active {
  opacity: 1;
}
.gallery-thumbs4 .swiper-slide img {
  width: 100%;
  height: 100%;
}
.gallery .swiper-button-next, .gallery .swiper-button-prev {
    color: var(--theme-color);
    background: var(--bg-orange);
    padding: 20px !important;
}


/*------------------- Featured Projects --------------*/

.works-ma {
  position: relative;
  overflow: hidden !important; }
  .works-ma .gallery-img .swiper-container {
    overflow: visible; }
  .works-ma .gallery-img .bg-img {
    height:350px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    background-position: center; }
    .works-ma .gallery-img .bg-img a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; 
    }
.space{
    padding: 100px 0;
}
  .works-ma .gallery-img .text {
      width: 95%;
      display: flex;
      justify-content: space-between;
      flex-direction: row;
      gap: 20px;
      margin: 10px auto 30px; 
    }
      .works-ma .gallery-img .text h4 {
        font-size: 35px;
        line-height: 1; }
      .works-ma .gallery-img .text h6 {
        margin-top: 15px;
        overflow: hidden;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 300;
        letter-spacing: 2px; }
        .works-ma .gallery-img .text h6 span {
          -webkit-transform: translateY(50px);
          -ms-transform: translateY(50px);
          transform: translateY(50px);
          -webkit-transition: all .8s;
          -o-transition: all .8s;
          transition: all .8s; }
    .works-ma .gallery-img .swiper-slide-active .text h6 span {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      -webkit-transition-delay: .5s;
      -o-transition-delay: .5s;
      transition-delay: .5s; }
    
    
    
    .works-ma .gallery-img .swiper-slide .text{
        -webkit-transform: translateY(500px);
          -ms-transform: translateY(500px);
          transform: translateY(500px);
          -webkit-transition: all .8s;
          -o-transition: all .8s;
          transition: all .8s;
    }
    .works-ma .gallery-img .swiper-slide-active .text{
        -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
          transform: translateY(0);
    }
  .works-ma .swiper-controls {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    z-index: 9; }
    .works-ma .swiper-controls .swiper-button-prev,
    .works-ma .swiper-controls .swiper-button-next {
      position: absolute;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      top: auto;
      color: #fff;
      z-index: 9; }
      .works-ma .swiper-controls .swiper-button-prev:after,
      .works-ma .swiper-controls .swiper-button-next:after {
        display: none; }
      .works-ma .swiper-controls .swiper-button-prev span,
      .works-ma .swiper-controls .swiper-button-next span {
        white-space: nowrap; }
    .works-ma .swiper-controls .swiper-button-prev {
      left: 120px; }
      .works-ma .swiper-controls .swiper-button-prev i {
        margin-right: 25px; }
    .works-ma .swiper-controls .swiper-button-next {
      right: 120px; }
      .works-ma .swiper-controls .swiper-button-next i {
        margin-left: 25px; }
  .works-ma .swiper-pagination {
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
    display: none; }
  .works-ma .swiper-pagination-bullet {
    background: transparent;
    margin: 0 10px !important; }
  .works-ma .swiper-pagination-bullet-active .path {
    display: inline-block !important;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    -webkit-animation: dash linear 10s;
    animation: dash linear 10s;
    -webkit-animation-iteration-count: unset;
    animation-iteration-count: unset; }
  .works-ma .path {
    display: none; }

@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 1000; }
  to {
    stroke-dashoffset: 0; } }

@keyframes dash {
  from {
    stroke-dashoffset: 1000; }
  to {
    stroke-dashoffset: 0; } }



.work-hed2.section-padding{
  padding: 80px 0;
}
.work-hed .caption h2 {
  font-size: 70px;
  font-weight: 600;
  line-height: 80px;
  text-transform: uppercase; }

.work-hed .caption .path span {
  margin: 0 10px; }

.work-hed2 .caption {
    position: relative;
    padding: 50px 0;
}
.work-hed2 .sec-head .sub-head:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0;
    top: 50%;
    background: #f2f2f2;
    transform: translateY(-50%);
}
.work-hed2 .caption h2 span {
    letter-spacing: normal; 
}

.work-hed2 .fit-img {
  height: 620px;
  width: 100%;
}



/* --------------- Clients --------------- */
.clients-sa{
  padding: 150px 0 150px;
}
.clients-sa .item {
  text-align: center;
  flex-direction: column;
}

  .clients-sa .item .img {
    overflow: hidden;
    padding: 10px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 1);
    text-align: center; 
    margin-bottom: 10px;
  }
  .clients-sa .item .img img{
    width: 130px;
    height: auto;
    border-radius: 25px;
    overflow: hidden;
  }
  .clients-sa .item .cont .icon {
    width: 40px;
    margin: 0 auto 10px; }
  .clients-sa .item .cont span {
    font-size: 14px;
    line-height: 20px; }
    
    .clients-sa .item .text h4{
      font-size: 25px;line-height: 35px;
    }

 /* --------------- About --------------- */
    .about-ma {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 

    }
    .about-ma .content h2 {
        font-size: 50px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 20px ;
    }
    .about-ma .content .item .botm {
        flex-direction: column; 
        text-align: left;
    }
    .about-ma .bg-img {
    height: 100vh;
    width: 50vw; }
    .about-ma .content {
    padding: 60px 60px 0;
    width: 50vw; }
    .about-ma .content .item {
    margin-top: 100px; }
    .about-ma .content .item .botm h3 {
    font-size: 40px;margin-bottom: 20px;
    font-weight: 500;
    line-height: 1;}
    .about-ma .content .item .botm h3 span {
    font-size: 40px; }
    .about-ma .content .item .botm h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 15px; }


/*    video*/
.video-sa{
  margin: 0 0 100px;
}
.video-sa .video{
  background: var(--bg-color);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
    
.video-sa video{
  border-radius: 10px;
  max-width: 100%;
  height: 100%;

}


.intro-modular{
    width: 100%;
    height: 90vh;
    margin-bottom: 170px;
}
.intro-modular img{
    width: 100%;
    height: 100%;
}




/*-------- BENIFITS ------------*/

.benifits-cst .thecontainer {
     width: 300vw;
     padding-top: 80px;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap; }

   .benifits-cst .panel {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     height: 100%;
     margin: 0 25px;
     -webkit-box-flex: 1;
     -ms-flex: 1;
     flex: 1;
     -webkit-box-pack: end;
     -ms-flex-pack: end;
     justify-content: flex-end;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center; }
 .benifits-cst .panel:nth-of-type(even) .item {
   -webkit-transform: translateY(-20px);
   -ms-transform: translateY(-20px);
   transform: translateY(-20px); }
 .benifits-cst .panel .item {
   width: 30vw;
   position: relative;
   -webkit-transform: translateY(20px);
   -ms-transform: translateY(20px);
   transform: translateY(20px); }
   .benifits-cst .panel .item .img {
     -webkit-transition: all .4s;
     -o-transition: all .4s;
     transition: all .4s; }
   .benifits-cst .panel .item .cont {
     margin-top: 30px; 
     flex-direction: column;
    justify-content: start;
    align-items: flex-start !important;
   }
   .benifits-cst .panel .item .cont .head{
    display: flex;
    justify-content: start;
    gap: 20px;
   }
   .benifits-cst .panel .item .cont .head .number h3{
    color: #f9f9f9;
    font-size: 40px;
    opacity: 0.3;
    margin-top: -10px;
    animation: blinker 1.5s step-end infinite;
  }
  @keyframes blinker {
    50% {
      opacity: 0.1;
    }
  }
     .benifits-cst .panel .item .cont h5 {
       font-size: 24px;
       font-weight: 500; }
     .benifits-cst .panel .item .cont p {
       font-size: 15px;
       font-weight: 300;
       letter-spacing: 1px;
       opacity: .75; }
   .benifits-cst .panel .item:hover .img {
     -webkit-filter: grayscale(0);
     filter: grayscale(0); 
   }



/* --------------- Testimonials --------------- */
.testimonials-sa {
  position: relative;
  overflow: hidden; }
  .testimonials-sa:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../imgs/mesh-gradient.webp);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: .5; 
    filter: blur(20px);
    z-index: 2;
  }
  .testimonials-sa .gl-rate {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 10px 20px; }
    .testimonials-sa .gl-rate .icon {
      width: 35px; }
    .testimonials-sa .gl-rate .cont {
      padding-left: 30px; }
      .testimonials-sa .gl-rate .cont h6 {
        line-height: 1;
        font-weight: 600;
        font-size: 18px; }
      .testimonials-sa .gl-rate .cont .stars {
        font-size: 13px;
        color: #EF2B10;
        margin-left: 10px; }
      .testimonials-sa .gl-rate .cont p {
        font-size: 12px;
        opacity: .7;
        margin-top: 2px; }
  .testimonials-sa .swiper-slide {
    height: auto; }
  .testimonials-sa .item {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%; }
    .testimonials-sa .item .rate h5 {
      font-size: 16px; }
    .testimonials-sa .item .rate .stars {
      font-size: 13px;
      color: #EF2B10;
      margin-left: 10px; }
    .testimonials-sa .item .info .img-author {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden; }
    .testimonials-sa .item .info .info-text {
      padding-left: 15px; }
      .testimonials-sa .item .info .info-text p {
        font-size: 14px;
        opacity: .7; }

/* --------------- Awards --------------- */
.awards-sa .item-title {
  padding: 0 15px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
  .awards-sa .item-title > div {
    padding: 0; }
  .awards-sa .item-title h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .7; }

.awards-sa .item-line {
  padding: 25px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  z-index: 3; }
  .awards-sa .item-line > div {
    padding: 0; }
    .awards-sa .item-line > div:last-of-type {
      text-align: right; }
  .awards-sa .item-line:hover:after {
    height: 100%; }
  .awards-sa .item-line:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.05);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: -1; }
  .awards-sa .item-line .honors h6 {
    font-size: 14px; }
  .awards-sa .item-line .project-date span {
    font-size: 14px;
    opacity: .7; }

/* --------------- Blogs --------------- */
.blog-sa .item .img {
  height: 470px;
  border-radius: 15px; }

.blog-sa .item .cont .info a {
  font-size: 14px; }

.blog-sa .item .cont .info .date {
  opacity: .5;
  margin-left: 5px; }

/* --------------- Contact --------------- */
.contact-sa .box {
  padding: 120px 60px;
  background-image: url(../imgs/gr-back.png);
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
  overflow: hidden; }

.contact-sa .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%; }

.contact-sa .contact-form label {
  font-size: 14px;
  margin-bottom: 5px; }
  .contact-sa .contact-form label .star {
    color: red;
    padding-left: 5px; }

.contact-sa .contact-form input,
.contact-sa .contact-form textarea {
  color: #fff;
  background: transparent;
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px; }

.contact-sa .contact-form button {
  background: #fff;
  color: #212121; }
.contact-sa .contact-form button:hover {
  background: transparent;
  color: #fff; }
/* --------------- footer --------------- */
.footer-sa {
  background: var(--bg-color); }
.footer-sa .subscribe .form-group {
  margin: 60px 0 15px;
  position: relative; 
  max-width: 350px;
}
  .footer-sa .subscribe .form-group label {
    font-size: 14px;
    margin-bottom: 10px; }
  .footer-sa .subscribe .form-group input {
    padding: 20px 50px 20px 20px;
    background: #404040;
    border: 0;
    border-radius: 5px;
    width: 100%;
    color: #fff; }
  .footer-sa .subscribe .form-group button {
    background: transparent;
    border: 0;
    position: absolute;
    bottom: 20px;
    right: 15px;
    width: 25px; }
.footer-sa .subscribe span {
  color: #808080;
  font-size: 13px; }
  .footer-sa .subscribe span a {
    color: #fff;
    text-decoration: underline; }
.footer-sa .subscribe .form-group .icon.invert img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.footer-sa .section-padding {
    padding-top: 100px;
    padding-bottom: 40px;
}
  .footer-sa .logo {
    width: 450px; 
    height: 130px;
    position: relative;
  }
  .footer-sa .logo .logo-img{
    width: 100%;
    max-width: 280px;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;

    transition: transform 0.10s ease;
  }

  .footer-sa .contact-info .item {
    margin-bottom: 50px; }
    .footer-sa .contact-info .item span {
      font-size: 12px;
      text-transform: uppercase;
      margin-bottom: 10px; }
  .footer-sa .contact-info .social-icon a {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 14px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s; }
    .footer-sa .contact-info .social-icon a:hover {
      border-color: #fff; }
  .footer-sa .sub-footer .copy p {
    font-size: 14px; }
    .footer-sa .sub-footer .copy p a {
      color: #fff; }
  .footer-sa .sub-footer .links {
    width: 100%; }
    .footer-sa .sub-footer .links a {
      font-size: 14px; }
    .footer-sa .sub-footer .links .active {
      color: #fff; }

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  background-color: var(--theme-color); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0; }

h1 {
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -3px; }

h2 {
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -3px; }

h3 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -2px; }

h4 {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px; }

h5 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px; }

h6 {
  font-size: 24px;
  line-height: 32px; }

.sub-color {
  color: #808080; }

.sub-head {
  font-size: 20px;
  line-height: 28px; }

p {
  font-size: 16px;
  font-weight: 400;
  margin: 0; }

.sec-head .sub-head {
  position: relative;
  padding-left: 25px; }
  .sec-head .sub-head:after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0; }

.loader-wrap svg {
  fill: #1d1d1d; }

.butn.butn-bord {
    border: 1px solid rgba(255, 255, 255, 0.3); 
    background: #fff;
    color: #212121;
    font-weight: 800;
        margin-top: 20px;
}
  .butn.butn-bord:hover {
    background: transparent;
    color: #fff; 
  }
.icon.invert img {
  -webkit-filter: invert(0);
  filter: invert(0); }

.butn .icon {
  width: 18px; }

.butn:hover .icon.invert img {
  -webkit-filter: invert(1);
  filter: invert(1);}
.about-head .caption {
    padding-top: 100px !important;
    padding-left: 0 !important;
}
.about-head .caption h1 {
    font-size: 90px;
    font-weight: 600;
    text-transform: uppercase;
}


/* --------------- Careers pg --------------- */
.about-head .google-map {
    height: 500px;
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border-radius: 15px;
    overflow: hidden;
}
.pt-80{
  padding-top: 80px !important;
}
.font-weight-300{font-weight: 300 !important;}

.contact-pg input,
.contact-pg textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  padding: 15px 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s; }
  .contact-pg input:focus,
  .contact-pg textarea:focus {
    border-color: #fff; }

.contact-pg textarea {
  min-height: 150px; }

.contact-pg .butn:hover {
  background: var(--main-color) !important; 
}























/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
  .sec-head .sub-head {
    margin-bottom: 30px !important; }
  .header-sa {
    padding: 180px 0 320px;
    min-height: auto;
    position: relative; }
    .header-sa .caption {
      position: relative;
      z-index: 4; }
      .header-sa .caption .text {
        margin-top: 40px;
        width: 80%; }
    .header-sa .imgs {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
      transform: translateY(50%); }
      .header-sa .imgs .circle {
        width: 250px;
        top: 60%; }
  .marq-sa .item h2 {
    font-size: 70px;
    line-height: 1.4;
    -webkit-text-fill-color: #fff;
    background: transparent; } }
.header-sa .caption h3{
      font-size: 20px;    letter-spacing: 1.1px;
    }
@media screen and (max-width: 768px) {
  .header-sa .caption h1 {
    font-size: 40px;
    line-height: 1.4; 
  }
  .header-sa .caption h3{
    font-size: 20px;
  }
  .header-sa .imgs {
    width: 60%;
    -webkit-transform: translateY(70%);
    -ms-transform: translateY(70%);
    transform: translateY(70%); 
  }
  .header-sa .imgs .cube img {
    right: 33%; 
    width: 88%;
    top: 23%;
  }
  .header-sa .imgs .circle {
    width: 200px; 
  }
  .contact-sa .box {
    padding: 120px 40px; 
  } 
  .about-ma .content {
    padding: 0px 15px;
    width: 100%;
  }
  .about-ma .content .item {
    margin-top: 50px;
  }
}
@media screen and (max-width: 600px) {
  .navbar .logo {
    padding: 2px 20px;
    margin-right: 10px;
  }
  .navbar.nav-scroll {
    max-width: 100vw;
  }
  .header-sa .caption {
    position: relative;
    z-index: 4;
    text-align: center;
  }
  .header-sa .caption h1 {
    font-size: 42px;
    line-height: 1.4;
    letter-spacing: 0.1px;
    text-align: center;
  }
  .header-sa .caption h3{
    font-size: 20px;
  }
  .header-sa .imgs {
    width: 60%;
    -webkit-transform: translateY(70%);
    -ms-transform: translateY(70%);
    transform: translateY(70%); 
  }
  .header-sa .imgs .cube img {
    right: 26%;
    width: 120%;
    top: 31%;
  }
  .header-sa .imgs .circle {
    width: 200px; 
  }
  .contact-sa .box {
    padding: 50px 15px;
  } 
  .about-ma .content {
    padding: 0px 15px;
    width: 100%;
  }
  .about-ma .content .item {
    margin-top: 50px;
  }
  .work-card .card-item .cont .butn.butn-md {
    padding: 12px 13px;
    font-size: 12px;
  }
  .loader-wrap{width: 100vw}
  .header-sa .caption .text {
    margin-top: 40px;
    width: 100%;
  }
  .footer-sa .logo {
    height: 150px;
  }
  .about-ma .content .item .botm h2 {
    font-size: 59px;
    display: flex;
  }
  .about-ma .content .item .botm h2 span {
    font-size: 59px;
  }
  .about-ma .content .item .botm h6 {padding-bottom: 0;}
  .footer-sa .section-padding {
    padding-bottom: 20px;
  }
  .intro-sa .btn-group-sec {
        gap: 0;
        flex-direction: column;
    }
}


.cta1-section-area {
  position: relative;
  z-index: 1;
  background: #f7931e;
  padding: 30px;
  margin-bottom:90px;
}
.cta1-section-area .cta-header h2 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  line-height: 54px;
  display: inline-block;
  transition: all 0.4s;
  margin-bottom: 10px;
}
.cta1-section-area .cta-header {
    display: flex;
    justify-content: space-around;
}
@media (max-width: 767px) {
  .cta1-section-area .cta-header h2 {
    font-size: 33px;
    line-height: 40px;
  }
}

.main-timeline{
    overflow: hidden;
    position: relative;
    margin-top:50px;
}
.main-timeline:before{
    content: "";
    width: 3px;
    height: 100%;
    background: #f7931e;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.main-timeline .timeline{
    width: 50%;
    float: left;
    position: relative;
}
.main-timeline .timeline:before,
.main-timeline .timeline:after{
    content: "";
    display: block;
    width: 100%;
    clear: both;
}
.main-timeline .timeline:before{
    content: "";
    width: 45%;
    height: 3px;
    background: #f7931e;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.main-timeline .year{
    display: block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: #f7931e;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
}
.main-timeline .timeline-content{
    width: 65%;
    padding: 40px;
    background: #f7931e;
    position: relative;
}
.main-timeline .timeline-content:after{
    content: "";
    border-bottom: 40px solid #212121;
    border-left: 40px solid transparent;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.main-timeline .title{
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px 0;
}
.main-timeline .description{
    font-size: 17px;
    color: #fff;
    margin: 0;
}
.main-timeline .timeline:nth-child(2n):before{
    right: auto;
    left: 0;
}
.main-timeline .timeline:nth-child(2n) .year{
    right: auto;
    left: 7%;
}
.main-timeline .timeline:nth-child(2n) .timeline-content{ float: right; }
.main-timeline .timeline:nth-child(2){ margin-top: 160px; }
.main-timeline .timeline:nth-child(odd){ margin: -160px 0 0 0; }
.main-timeline .timeline:nth-child(even){ margin-bottom: 70px; }
.main-timeline .timeline:first-child,
.main-timeline .timeline:last-child:nth-child(even){ margin: 0; }
.main-timeline .timeline:nth-child(2n) .year,
.main-timeline .timeline:nth-child(2n) .timeline-content{ background: #f7931e; }
.main-timeline .timeline:nth-child(3n) .year,
.main-timeline .timeline:nth-child(3n) .timeline-content{ background: #f7931e; }
.main-timeline .timeline:nth-child(4n) .year,
.main-timeline .timeline:nth-child(4n) .timeline-content{ background: #f7931e; }
@media only screen and (max-width: 1200px){
    .main-timeline .year{
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
}
@media only screen and (max-width: 990px) and (min-width: 768px){
    .main-timeline .year{
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 24px;
    }
}
@media only screen and (max-width: 767px){
    .main-timeline:before,
    .main-timeline .timeline:before{ display: none; }
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even),
    .main-timeline .timeline:nth-child(odd){
        width: 100%;
        float: none;
        text-align: center;
        margin: 0;
    }
    .main-timeline .timeline{ margin-bottom: 20px !important; }
    .main-timeline .timeline:last-child{ margin-bottom: 0 !important; }
    .main-timeline .year,
    .main-timeline .timeline:nth-child(2n) .year{
        margin: 0 auto 10px;
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0);
    }
    .main-timeline .year:after{
        content: "";
        width: 3px;
        height: 20px;
        background: #fff;
        position: absolute;
        bottom: -20px;
        left: 50%;
        z-index: 1;
        transform: translate(-50%);
    }
    .main-timeline .timeline .timeline-content{
        width: 100%;
        float: none;
        padding: 40px;
    }
    .main-timeline .timeline .timeline-content:before{
        content: "";
        border-bottom: 40px solid #23363a;
        border-right: 40px solid transparent;
        position: absolute;
        bottom: 20px;
        left: 20px;
    }
}

.modular-popup .modal-content {
    background: #fff;
    width: 750px;
    margin: 170px auto;
    padding: 0px;
    border: 0px;
}


.modal-header{
    position: relative;
	display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 0;
    border-bottom: none;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
	    padding: 100px 23px 25px 23px;
}
.modal-header::before{
    position: absolute;
    width: 100%;
    height: 175px;
    /*background: var(--bg-orange);*/
    background: linear-gradient(rgba(247, 147, 30, 0.9) , rgba(247, 147, 30, 0.8)), url('../imgs/modula-bg-1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;        
    content: '';
    border-radius: 5px;
    clip-path: polygon(50% 0%, 90% 0, 100% 0, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0 0, 21% 0);
    left: 0;
    top: 0;
    z-index: 1;
}
.modal-header .row{
    position: relative;
    z-index: 5;
}
 .btn-close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -13px;
    cursor: pointer;
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    opacity: 0.8;
}

 
.modular-popup .head{
    position: relative;
    height: 170px;
    width: 100%;
    background: var(--bg-orange);
    display: flex;
    justify-content: center;
    align-items: center;
}
.modular-popup .head::before{
    background-image: url(../imgs/modula-bg-1.svg);
    position: absolute;
    z-index:-1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.modular-popup .head h3{
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.modular-popup .butn.butn-bord {
    border: 1px solid #212121;
    background: #fff;
    color: #212121;
    font-weight: 600;
    padding: 15px 35px 15px 50px;
    margin-top: 0 !important;
}
.modular-popup .butn.butn-bord:hover {
    background: #212121;
    color: #fff;
}
.modular-popup .butn.butn-bord:hover .icon img{
    filter: invert(100%);
}
.modular-popup .btn-group-sec {
    gap: 15px;
        padding: 30px 0;
    flex-direction: column;
}
.modular-popup .head .butn.butn-bord{
    background: transparent !important;
    color: #fff;
    border: 1px solid #fff;
}
.modular-popup .head .butn.butn-bord:hover{
    background: #212121;
    color: #fff;
}
.modular-popup .butn.butn-bord .icon img{
    filter: invert(100%);
}
.service-single-wrapper {
    border: 0;
    margin-bottom: 10px;
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 5px 5px 16px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 5px 5px 16px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 16px 1px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 991px) {
  .service-single-wrapper {
    padding: 25px;
  }
}
.service-single-wrapper .title {
  color: #141416;
  font-size: 22px;
  margin-top: 33px;
  margin-bottom: 15px;
}
.service-single-wrapper p.disc {
  margin-bottom: 30px;
}

/* ===================
team single css 
====================== */
.py-120 {
    padding: 120px 0px;
}
.team-single-wrapper {
  background: #f3f1f2;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.team-single-img img {
  border-radius: 20px;
	width: 100%;
}

.team-single-content {
  padding-left: 15px;
}

.team-single-info {
  margin-top: 20px;
}

.team-single-info li {
  margin: 10px 0;
}

.team-single-info-left {
  font-weight: 600;
}

.team-single-info-right {
  margin-left: 10px;
}

.team-single-social a {
  height: 35px;
  width: 35px;
  line-height: 32px;
  border: 2px solid #FE4B7B;
  color: #13275B;
  text-align: center;
  border-radius: 50px;
  margin-right: 5px;
}

.team-single-social a:hover {
  background: #FE4B7B;
  color: #fff;
}

.team-single-overview {
  margin-top: 70px;
}

.team-single-overview-img img {
  border-radius: 10px;
}

@media (max-width: 991px) {
  .team-single-img {
    margin-bottom: 20px;
  }

  .team-single-overview-img {
    margin-top: 20px;
  }
}
