@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

:root {
  --heading-font:"Onest", sans-serif;
  /* --heading-font:"Josefin Sans", sans-serif;  */
  --paragraph-font:"DM Sans", sans-serif;
  --black: #000;
  --white: #fff;
  --primary-color: #2f3192;
  --secondary-color: #a6cf39;
  --common-padding: 6% 0;
  --tc-shadow-1: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  --bg-color: #15152a;
  --bg-color1: #F3F7FA;
}

.custom-container {
  width: 75%;
  margin: 0 auto;
  display: block;
}

.common-heading {
  font-family: var(--heading-font);
  font-size: 40px;
  color: var(--black);
  text-align: center;
  line-height: 52px;
}

.mb-50 {
  margin-bottom: 50px;
}
.common-para{
  font-family: var(--paragraph-font);
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  color: var(--bg-color);
}
.mfp-container{
position: fixed;
}
/**********************Navbar css************************/
.main-header {
    width: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.5s ease;
    z-index: 1111;
    height: 100px;
    display: flex;
    align-items: center;
    font-family: var(--paragraph-font);
}
.navbar-toggler:focus{
  box-shadow: none;
}
.sticky {
    position: fixed;
    top: 0;
    transition: all 0.5s ease;
    background-color: #fff;
    height: 90px;
}
.main-header.sticky .navbar-light .navbar-toggler-icon{
  background-image:url("../img/hamberger-icon-black.svg")
}
.navbar-light .navbar-toggler{
  border: none;
}
.main-header.sticky .navbar .navbar-nav a {
  color: var(--bg-color);
}
.navbar-light .navbar-toggler-icon{
  background-image:url("../img/hamberger-icon-white.svg");
}

.main-header.sticky .navbar img {
  width: 85%;
  transition:all 0.6s ease;
}

.desk{
  display: block;
}
.mob{
  display: none;
}
.main-header .navbar .navbar-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 17px;
  margin-right: 35px;
  position: relative;
  padding: 10px 0;
  line-height: 15px;
  transition:all 0.6s ease;
}

.main-header .navbar .navbar-nav a:hover {
  color: var(--secondary-color);
  transition: .3s;
}

.main-header .navbar .navbar-nav a.active {
  color: var(--secondary-color);
}

.main-header .navbar .navbar-nav a.active:before {
  width: 100%;
}
.navbar-brand{
  width: 200px;
}
.navbar img {
  width: 100%;
}

.main-header .navbar .navbar-nav a::before {
  position: absolute;
  content: "";
  width: 0;
  background-color: #a6cf39;
  left: 0;
  bottom: 0;
  height: 0.1em;
  transition: 0.3s;
}

.main-header .navbar .navbar-nav a:hover::before {
  width: 100%;
  transition: 0.3s;
}

.main-header .navbar .navbar-nav a:nth-last-child(1) {
  margin-right: 0;
}

.main-header .navbar .nav-item:hover .dropdown-menu {
  top: 100%;
  visibility: visible;
  transition: .5s;
  opacity: 1;
}

/**********************Home Carousel css************************/
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}



.mil-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.slider-content,
.slider-content .slick-list,
.slider-content .slick-track,
.slider-content .slick-slide {
  height: 100vh !important;
}


.slider-content .slick-slide > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .slider-content .slick-slide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000000d9;
    z-index: 1;
} */




.hero-carousel-navigations {
  position: absolute;
  z-index: 1;
  top: 35%;
}

.hero-carousel-navigations .slider .slick-slide {
  float: none;
  cursor: pointer;
}

.hero-carousel-navigations .slider .slick-track {
  width: 100% !important;
  padding: 0 10px 10px 0;
}

.slider-content .slick-slide {
  position: relative;
}

.hero-section .slider-content  .slick-dots{
  bottom: 45px;
}
.hero-section .slider-content  .slick-dots li{
  margin: 0 2px;
}
.hero-section .slider-content .slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  opacity: 1;
  color: transparent;
  background:var(--white);
  border-radius: 50px;
}
.hero-section .slider-content .slick-dots li.slick-active button:before{
  background:var(--secondary-color);
}
.slider-content img {
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;
}

.slider-thumb div {
  width: 100% !important;
}

.slider-thumb .slider-thumb-content {
  display: flex;
  align-items: center;
  padding: 15px 75px 30px 5px;
  border-bottom: 1px solid #fff;
  transition: all 0.5s ease;
  position: relative;
}

.slider-thumb .slider-thumb-content:hover::before {
  opacity: 1;
  transition: all 0.5s ease;
}

.slider-thumb .slider-thumb-content::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  right: -9px;
  bottom: -5px;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.5s ease;
}

.slider-thumb .slider-thumb-content:hover {
  border-bottom: 1px solid var(--secondary-color);
  transition: all 0.5s ease;
  color: var(--secondary-color);
}

.slider-thumb .slider-thumb-content img {
  width: 100%;
}


.slider-thumb .slider-thumb-content .icons {
  width: 45px;
  display: block;
  height: 45px;
}

.slider-thumb-content h4 {
  font-size: 18px;
  font-family: var(--paragraph-font);
  margin-left: 10px;
  line-height: 22px;
}

.slider .slick-prev:before,
.slider-vertical .slick-next:before {
  display: none;
}

.slider .slick-prev,
.slider .slick-next {
  width: 28px;
  height: 28px;
  border-style: solid;
  margin: 10px;
  display: inline-block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}

.slider .slick-prev:before,
.slider .slick-next:before {
  display: none;
}

.slider .slick-prev {
  border-width: 14px 14px 14px 0px;
  border-color: transparent #ffffff;
  left: 0px;
  right: auto;
}

.slider .slick-next {
  border-width: 14px 0px 14px 14px;
  border-color: transparent #ffffff;
  right: 0px;
  left: auto;
}

.slider .slick-prev:hover,
.slider .slick-next:hover {
  border-color: transparent #ffd200;
}

.slider .slick-prev.slick-disabled,
.slider .slick-next.slick-disabled,
.slider .slick-prev.slick-disabled:hover,
.slider .slick-next.slick-disabled:hover {
  opacity: 0.1;
  cursor: default;
  border-color: transparent #000000;
}

.slider div {
  color: #ffffff;
}

.slider-thumb div {
  line-height: 50px;
  font-size: 25px;
}

.slider-thumb .slick-slide.slick-current {
  border-bottom: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.slider-thumb .slick-slide.slick-current:before {
  opacity: 1;
  transition: all 0.5s ease;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.banner-content h1 {
  font-family: var(--paragraph-font);
  font-size: 65px;
  text-align: center;
  font-weight: 400;
  color: var(--white);
}

.animated {
  opacity: 0;
  transition: all 1s ease;
}
.slick-active .animated {
  opacity: 1;
  transform: translateY(0);
}

.banner-content h1 span {
  color: var(--secondary-color);
  font-weight: 600;
}

.animated {
  transition: all .5s ease;
}

/* .slider [data-animation-in] {
  opacity: 0;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
} */

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  animation-name: zoomInImage;
}

/*********************Homepage Counter Css***********************/
.homepage-counter {
  width: 100%;
  background-color: var(--bg-color);
  padding: var(--common-padding);
  display: flex;
  align-items: center;
}
.homepage-counter .counter-box{
  background-color: #15152abd;
  padding: 25px;
  border-radius: 15px;
}
.mb-100-mobile{
  margin-bottom: 0;
}
.homepage-counter .counter-content h1 {
  color: var(--white);
  text-align: left;
}

.homepage-counter .counter-content hr {
  width: 35%;
  height: 1px;
  background-color: var(--secondary-color);
  opacity: 1;
}

/* .homepage-counter .counter-content p {
  color: #a9a9a9;
  font-family: var(--paragraph-font);
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 1px;
  margin-top: 45px;
} */
.homepage-counter .counter-content ul{
  margin: 0;
  padding: 0;
  margin-top: 25px;
}
.homepage-counter .counter-content ul li{
  text-decoration: none;
  color: var(--white);
  font-family: var(--paragraph-font);
  font-size: 17px;
  line-height: 35px;
  letter-spacing: 1px;
}
.homepage-counter .counter-content ul li strong{
  color: var(--secondary-color);
      font-size: 20px;
}
.homepage-counter .main-counter {
  color: var(--white);
  text-align: center;
  height: 100%;
    display: flex;
    align-items: center;
}

.homepage-counter .main-counter span {
  font-family: var(--paragraph-font);
  font-size: 70px;
  font-weight: 700;
  color: var(--white);
  position: relative;
}



.homepage-counter .main-counter p {
  font-family: var(--heading-font);
  font-size: 21px;
  color: var(--secondary-color);
  margin: 0;
margin-top: -12px;
    font-weight: 500;
}

.mb-100 {
  margin-bottom: 100px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mt-80 {
  margin-top: 80px;
}

/********************Homepage Brands Carousel css************************/
.brands-container {
  width: 80%;
  margin: 0 auto;
  display: block;
  margin-top: 80px;
}
.brands-container .brands-carousel1{
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}
.brands-container .brands-carousel2{
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}
.why-choose-us-bg{
  background-image: url("../img/why-choose-us-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; 
  background-attachment: fixed;
}

.why-choose-us-bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #000000b8;
  z-index: 0;
}


.brands-carousel {
  text-align: center;
  width: 100%;
  padding: var(--common-padding);
  background-color: var(--bg-color1);
}

.brands-carousel .slick-list {
  height: 90px;
}

.mt-50 {
  margin-top: 25px !important;
}

.brands-carousel .img-box {
  box-shadow: var(--tc-shadow-1);
  background-color: var(--white);
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
}

.brands-carousel .img-box:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.brands-carousel .img-box img {
  width: 75%;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.brands-carousel .slick-slide {
  margin-right: 30px;
}

/**********************Contact Us css*************************/
.contact-us {
  width: 100%;
  padding: var(--common-padding);
  background-color: var(--bg-color1);
}

.left-icon{
  width: 10%;
  float: left;
}
.right-content{
  width: 90%;
  float: right;
}
.contact-form h4 {
  font-family: var(--paragraph-font);
  font-size: 40px;
}

.contact-form form {
  width: 100%;
}

.contact-form form input {
  padding: 10px 20px;
  color: var(--black);
  font-family: var(--paragraph-font);
  font-size: 17px;
  border: none;
  font-weight: 500;
  border: 1px solid #8f8f8f;
}



.contact-form form input::placeholder {
  opacity: 1;
  color: var(--black);
}

.contact-form form input::-ms-input-placeholder {
  color: var(--black);
  opacity: 1;
}

.contact-form form textarea {
  font-family: var(--paragraph-font);
  color: var(--black);
  font-size: 16px;
  border: none;
  font-weight: 500;
  border: 1px solid #8f8f8f;
}

.contact-form .form-control:focus {
  box-shadow: none;
}

.contact-form form textarea::placeholder {
  opacity: 1;
  color: var(--black);
}

.contact-form form textarea::-ms-input-placeholder {
  color: var(--black);
  opacity: 1;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-submit-btn {
  padding: 10px 20px;
  background-color: var(--bg-color);
  color: var(--white);
  font-family: var(--paragraph-font);
  width: auto;
  outline: none;
  border: none;
  border-radius: 35px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 30px;
  transition: all 0.5s ease;
}

.form-submit-btn:hover {
  background-color: var(--secondary-color);
  transition: all 0.5s ease;
}

.contact-info {
  padding: 0 0 0 70px;
}

.contact-info h1 {
  font-family: var(--heading-font);
  font-size: 40px;
  color: var(--bg-color);
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 45px;
}

.contact-info p {
  font-family: var(--paragraph-font);
  font-size: 17px;
  line-height: 28px;
  color: var(--bg-color);
  font-weight: 500;
}

.contact-info p a {
  color: var(--bg-color);
  text-decoration: none;
}

.contact-info ul {
  padding: 0;
  margin-bottom: 0;
}

.contact-info ul li {
  list-style: none;
  display: block;
  width: 100%;
  float: left;
}

.contact-info ul li .icons {
  width: 45px;
  height: 45px;
  background-color: var(--secondary-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info ul li .icons img {
  width: 50%;
}

.contact-info ul li .address-content span {
  font-size: 21px;
  font-family: var(--paragraph-font);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  display: block;
}


/**********************Home about css***************************/
.home-about-us {
  width: 100%;
  padding: 6% 0;
  background-color: var(--bg-color1);
  position: relative;
  overflow-x: hidden;
}
.about-us-page-main{
  padding: var(--common-padding)!important;
}

.usps-list ul li:nth-last-child(1){
  border-bottom: none;
  padding-bottom: 0;
}
.usps-section {
  width: 100%;
  background-color: var(--white);
}

.sec-title {
  padding-bottom: 20px;
}

.about-container {
  width: 85%;
  margin: 0 auto;
  display: block;
}
.about-page-container{
  width: 75%!important;
  margin: 0 auto;
  display: block;
}

.about-us-div {
  position: relative;
}
.about-us-div .features-list{
width: 100%;
}
.about-us-div .features-list li span{
  width: 200px;
  cursor: pointer;
  overflow: hidden;
}
.about-us-div .features-list li span:hover img{
  transform: scale(1.1);
  transition: all 0.5s ease;
  filter: grayscale(70%);
}
.about-us-div .features-list li span img{
  width: 90%;
  margin: 0 auto;
  display: block;
  transition: all 0.5s ease;
}
.sec-title h3 {
  font-size: 40px;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 55px;
}

.about-one__top__text {
  font-size: 17px;
  font-family: var(--paragraph-font);
  font-weight: 400;
  color: var(--bg-color);
  line-height: 32px;
  margin-bottom: 25px;

}

.about-one__top__text span {
  color: var(--secondary-color);
  font-size: 20px;
  font-family: var(--paragraph-font);
  font-weight: 600;
}

a.wallox-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--bg-color);
  color: var(--white);
  font-family: var(--heading-font);
  padding: 12px 18px;
  transition: 500ms;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  text-transform: capitalize;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
}

a.wallox-btn:hover {
  background-color: var(--secondary-color);
  transition: 500ms;
}

.center-img {
  z-index: 1;
}

.center-img img {
  width: 100%;
  border-radius: 5px;
}

.pd-right95 {
  padding-right: 75px;
}

.usps-list {
  z-index: 1;
}

.usps-list ul {
  padding: 0;
  margin: 0;
}

.usps-list ul li {
  list-style: none;
  border-bottom: 1px solid var(--secondary-color);
  padding: 25px 0;
}
.about-page-list{
  margin-top: 70px;
}
.about-page-list ul{
 display: grid;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    grid-auto-rows: auto;
    grid-template-columns: repeat(auto-fill, minmax(335px, 1fr));
    grid-gap: 2em;
        margin-top: 20px;
}
.gap30{
  gap: 30px;
}
.about-page-list ul li{
  border-bottom: none;
  position: relative;
  text-align: left;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.5s ease;
}
.about-page-list ul li:hover{
    -webkit-box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
  }
.about-page-list ul li p{
  line-height: 26px;
}
.about-us-page-main::before{
  display: none;
}
/* .about-page-list ul li::after{
  position: absolute;
  content: "";
  width: 1px;
  height: 85%;
  right: 0;
  top: 20px;
  background-color: var(--secondary-color);
} */
.about-page-list ul li:nth-last-child(1)::after{
  display: none;
}
.usps-list ul li .num {
  color: var(--secondary-color);
  font-size: 24px;
  font-family: var(--heading-font);
  font-weight: 500;
}

.usps-list ul li h4 {
  font-family: var(--heading-font);
  font-size: 23px;
  color: var(--bg-color);
  margin: 12px 0;
  font-weight: 600;
}

/*********************why mmf css**************************/
.why-mmf {
  width: 100%;
  padding: var(--common-padding);
  background-image: url("../img/why-mmf-bg.webp");
  position: relative;
  background-attachment: fixed;
}

.why-mmf::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #15152ac2;
  z-index: 0;
}

.why-mmf-main {
  position: relative;
}

.why-mmf h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.why-mmf p {
  text-align: center;
  color: var(--white);
  font-family: var(--paragraph-font);
  margin-bottom: 60px;
  line-height: 28px;
}

.why-mmf-content i {
  font-size: 50px;
  color: var(--secondary-color);
}

.why-mmf-content img {
  width: 9%;
  margin-bottom: 20px;
}

.why-mmf-content h4 {
  font-family: var(--heading-font);
  color: var(--bg-color);
  font-size: 21px;
}

.why-mmf-content span {
  font-family: var(--paragraph-font);
  font-size: 16px;
  color: var(--black);
  display: block;
  margin-top: 12px;
  line-height: 26px;
}

.why-mmf-content {
  background-color: #ffffff1f;
  text-align: center;
  padding: 30px 0;
}

/*************************our services css****************************/
.our-services {
  width: 100%;
  background-color: var(--bg-color);
  background-image: url("../img/service-bg-shape.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  padding: var(--common-padding);
  overflow-x: hidden;
}


.our-services h1 {
  color: var(--white);
}

.our-services h4 {
  font-size: 20px;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  font-weight: 500;
  position: relative;
  text-align: center;
  color: var(--white);
}

.projects-one__single {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.projects-one__single-img {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.projects-one__single-icon {
  position: absolute;
  top: 21px;
  right: 30px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 700ms ease;
  z-index: 5;
}

.projects-one__single:hover .projects-one__single-icon {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: 400ms;
}

.projects-one__single-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

.projects-one__single-icon a span::before {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.projects-one__single-icon a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--black);
  transform: scale(0.6);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: -1;
}

.projects-one__single-icon a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.projects-one__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.projects-one__single-img-inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: #082c4b99;
  opacity: 0;
  z-index: 1;
  content: "";
}

.projects-one__single:hover .projects-one__single-img-inner:before {
  opacity: 1;
}

.projects-one__single-img-inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.projects-one__single:hover .projects-one__single-img-inner img {
  transform: scale(1);
}

.projects-one__overlay-content {
  position: absolute;
  left: 20px;
  bottom: -91px;
  right: 20px;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  background: #ccff46c9;
  padding: 27px 25px 26px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  z-index: 2;
  opacity: 0;
}

.projects-one__single:hover .projects-one__overlay-content {
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  bottom: 20px;
  opacity: 1;
}

.projects-one__overlay-content .content-box {
  position: relative;
  display: block;
}

.projects-one__overlay-content .content-box h2 {
  font-size: 28px;
  line-height: 31px;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(50px);
  transition: all 500ms ease;
  font-family: var(--heading-font);
  margin-bottom: 10px;
  color: var(--primary-color);
}

.projects-one__single:hover .projects-one__overlay-content .content-box h2 {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.projects-one__overlay-content .content-box h2 a {
  color: var(--white);
  text-decoration: none;
}

.projects-one__overlay-content .content-box h2 a:hover {
  color: var(--black);
}

.services-carousel-outer{
  width: 100%;
}
.project__bottom__text p{
color: var(--white);
}
@keyframes dot-anim-2{
  0% {
    transform: translateX(20px);
}
100% {
    transform: translateX(0px);
}
}
.project__bottom__img {
  animation: dot-anim-2 3s linear 0s infinite alternate;
}
.services-carousel-outer .section__title__button{
  font-family: var(--heading-font);
  font-size: 20px;
  color: var(--secondary-color);
}
.services-carousel-outer h1{
  color: var(--white);
  text-align: left;
}
.project__img--2 {
  position: relative;
}
.project__img--2 img{
  width: 100%;
  border-radius: 8px;
}
.project__img--2::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 95%;
  display: block;
  z-index: 1;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--primary-color) 120%);
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  cursor: pointer;
  opacity: 0;
  border-radius: 8px;
}
.project__heading--2 {
  position: absolute;
  bottom: 50px;
  left: 35px;
  z-index: 11;
}
.project__heading h3{
line-height: 30px;
}
.project__heading h3 a {
  font-size: 24px;
  font-weight: 400;
  
  color: var(--white);
  text-decoration: none;
  font-family: var(--heading-font);
}
  .project__heading--2 h3 .services-br{
display: none;
  }
.project__icon--2 {
  position: absolute;
  right: 40px;
  bottom: 22px;
  z-index: 11;
}
.project__img--2::after {
  background: linear-gradient(0deg, #011d47 0%, rgba(255, 255, 255, 0.00) 70%);;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  border-radius: 8px;
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
}

.direction__btn {
  height: 50px;
  width: 50px;
  line-height: 62px;
  background: var(--white);
  text-align: center;
  display: flex;
  border-radius: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
}
.project__icon a {
  background: var(--secondary-color);
}
.direction__btn svg {
  position: relative;
  z-index: 99;
}
.direction__btn::after {
  background: var(--gradientColor);
  position: absolute;
  border-radius: 100%;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  opacity: 0;
  z-index: 9;
}
.project__single:hover .project__img--2::before {
  opacity: 1;
}
.homepage-services-carousel{
  margin-top: 80px;
  width: 100%;
  display: grid;
  gap: 50px;
  grid-auto-rows: auto;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.homepage-services-carousel .project__single {
  width: 100%;
}
.homepage-services-carousel .slick-slide {
  margin: 0 10px;
}
.homepage-services-carousel .slick-dots li.slick-active button:before{
  color:transparent;
  background: var(--white);
  opacity: 1;
}
.homepage-services-carousel .slick-dots li button:before{
  opacity: 1;
  color:transparent;
  background: var(--secondary-color);
  border-radius: 50px;
  width: 12px;
  height: 12px;
}
.homepage-services-carousel .slick-dots{
bottom: -60px;
}
/*********************Homepage Network Section***********************/
.homepage-network {
  width: 100%;
  padding: var(--common-padding);
  background-color: var(--bg-color);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.homepage-network.map-box h1{
      font-family: var(--heading-font);
    font-size: 55px;
    color: var(--white);
}
.homepage-network.map-box p{
font-size: 18px;
    font-family: var(--paragraph-font);
    color: #a1cb2c;
    line-height: 30px;
}
    
.homepage-network .network-content {
  width: 100%;
  padding-right: 5%;
}
.technology-right-content span{
color: var(--black);
font-size: 18px;
font-family: var(--heading-font);
font-weight: 500;
display: block;
    line-height: 26px;
}
.technology-right-content span strong{
  color:#00317b;
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 10px;
  display: inline-block;
}
.network-content .technology-right-content p{
  font-size: 17px!important;
  font-family: var(--paragraph-font)!important;
  line-height: 26px!important;
}
.homepage-network .network-content p {
  font-size: 19px;
  font-family: var(--paragraph-font);
  line-height: 40px;
  color: var(--white);
}
/* .homepage-network .network-content.technology-content{
  padding-left: 7%;
} */
.homepage-network .network-content.technology-content h3{
  color: var(--black);
  font-size: 18px;
  font-family: var(--paragraph-font);
  font-weight: 400;
  display: block;
  line-height: 28px;
  margin-bottom: 20px;
}
.technology-list{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2em; /* shorthand for row+column gaps */
  margin-top: 50px;
}
.technology{
  padding: 0 20px;
}
.technology-content{
  padding-right: 0!important;
}
.technology-content .technology-list-content{
  width: 100%;
  display: block;
  padding: 20px;
  box-shadow: rgb(0 0 0 / 10%) 0px 5px 15px;
  gap: 5px;
  border-radius: 15px;
  align-items: center;
  text-align: center;
}
.technology-content .technology-list-content:nth-last-child(1){
  margin-bottom: 0;
}
.technology-list-content .left-icons{
  width: 45px;
  height: 45px;
  margin: 0 auto 17px;
}
.technology-list-content .left-icons img{
  width: 100%;
  margin-top: 0 !important;
}
.know-more {
  padding: 8px 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 17px;
  border: none;
  outline: none;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 400;
  margin-top: 40px;
  transition: all 0.5s ease;
}

.know-more:hover {
  background-color: var(--white);
  transition: all 0.5s ease;
}

.know-more a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
}
.brands-grid.mb-30:nth-last-child(1),.brands-grid.mb-30:nth-last-child(2){
  margin-bottom: 0!important;
}
.homepage-network .network-content p span {
  color: var(--secondary-color);
}

.video-section h1 {
  font-family: var(--heading-font);
  font-size: 55px;
  color: var(--white);
}
.homepage-network.map-box img{
  margin-top: 40px;
}
.video-section.technology h4{
  font-size: 16px;
  color: var(--white);
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.video-section.technology h2{
  font-size: 40px;
  color: var(--black);
  font-family: var(--paragraph-font);
  font-weight: 600;
  line-height: 45px;
  margin-top: 10px;
  margin-bottom: 12px;
  text-align: center;
}
.video-section.technology h2 span{
  color: var(--secondary-color);
}
.video-section.technology h1{
  font-size: 40px;
  color: #00317b;
  font-family: var(--paragraph-font);
  font-weight: 600;
  line-height: 45px;
  margin-top: 10px;
  margin-bottom: 12px;
}
.video-section.technology img{
  border-radius: 10px;
}
.video-section p {
  font-size: 18px;
  font-family: var(--paragraph-font);
  color: #a1cb2c;
  line-height: 30px;
  /* margin-bottom: 25px; */
}

.video-section img {
  width: 100%;
  cursor: pointer;
}
.video-section img:hover{
  transition: all 0.1s;
}
/**********************Footer css**********************/
.footer-section {
  width: 100%;
  padding: 4% 0;
  background-color: var(--black);
}

.footer-section ul {
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  list-style: none;
  color: var(--white);
}

.footer-section p {
  color: var(--white);
  font-size: 15px;
  font-family: var(--paragraph-font);
  line-height: 26px;
}

.footer-section h2 {
  font-family: var(--paragraph-font);
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.footer-section .address-content li {
  display: flex;

}

.footer-section .footer-info img {
  width: 25%;
}

.footer-section .footer-list {
  text-transform: uppercase;
}

.footer-section .footer-list li {
  margin-bottom: 10px;
}

.footer-section .address-content li {
  margin-bottom: 18px;
}

.footer-section .address-content p {
  font-weight: 600;
  text-transform: uppercase;
}

.footer-section .address-content span {
  color: var(--secondary-color);
  font-size: 21px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;

}

.footer-copyright {
  background-color: var(--black);
}

.footer-copy {
  border-top: 1px solid var(--secondary-color);
  padding: 15px 0;
}

.footer-copyright p {
  font-size: 12px;
  font-family: var(--paragraph-font);
  font-weight: 500;
  color: var(--white);
}

.footer-copyright p a {
  color: var(--white);
}

.footer-section .social-media li {
  display: flex;
  width: 43px;
  height: 43px;
  background-color: white;
  border-radius: 38px;
  float: left;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.footer-section .social-media li:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transition: all 0.5s ease;
}

.footer-section .social-media li a {
  color: var(--bg-color);
  font-size: 20px;
}

.footer-section .footer-list li:nth-last-child(1) {
  margin-bottom: 0;
}

#map {
  width: 100%;
  height: 250px;
}

#map iframe {
  border-radius: 10px;
}

/*********************our partners css********************/
.home-our-partners {
  width: 100%;
  padding: var(--common-padding);
  background: #f7f7f7;
  border-radius: 25px;
  text-align: center;
}

.home-our-partners p {
  font-family: var(--paragraph-font);
  font-size: 17px;
  text-align: center;
  line-height: 28px;
  margin-top: 15px;
}

.partners-section .partners-img img {
  margin: 0 auto;
  display: block;
  width: 55%;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-70 {
  margin-top: 70px;
}

.partners-section {
  background: #a5ce3814;
  padding: 60px 0;
  border-radius: 30px;
}

/**************scroll to top css****************/
#scroll-to-top-button {
  display: inline-block;
  background-color: var(--secondary-color);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  color: var(--bg-color);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 25px;
}

#scroll-to-top-button:hover {
  cursor: pointer;
  background-color: var(--white);
}

#scroll-to-top-button:active {
  background-color: var(--white);
}

#scroll-to-top-button.show {
  opacity: 1;
  visibility: visible;
}

/*******************************common top section css********************************/
.common-top-section{
  width: 100%;
  height: 315px;
  background-color: #212529b8;
  padding-top: 175px;
  position: relative;
}
.common-top-section.bg{
  background-image: url("../img/about-main-top-img.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.common-top-section.brandsbg{
  background-image: url("../img/brands-main-top-img.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.common-top-section.contactbg{
  background-image: url("../img/contact-main-top-img.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.common-top-section::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #212529b8;
  left: 0;
  top: 0;
}
.common-top-section h1{
  font-size: 44px;
  color:var(--white);
  text-align: center;
  font-weight: 500;
  font-family: var(--paragraph-font);
  position: relative;
}
.main-breadcrumbs{
  position: absolute;
  bottom: 0;
}
.main-breadcrumbs .breadcrumb-item+.breadcrumb-item::before{
  color: var(--white);
}
.main-breadcrumbs .breadcrumb-item a{
  color: var(--white);
  font-size: 17px;
  font-family: var(--paragraph-font);
  font-weight: 500;
  text-decoration: none;
}
.main-breadcrumbs .breadcrumb-item.active{
  color: var(--secondary-color);
  font-weight: 500;
}
/************************mission vision grid**********************/
.mission-vision{
  width: 100%;
  padding: var(--common-padding);
  background-image: url("../img/about-main-top-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
.mission-overlay{
  position: absolute;
  content:"";
  width: 100%;
  height: 100%;
  background-color: #000000c9;
  left: 0;
  top: 0;
}
.main_grid {
      display: grid;
      grid-auto-rows: minmax(500px, auto);
      grid-template-columns: repeat(auto-fill, minmax(335px, 1fr));
      grid-gap: 2em;
      z-index: 1;
      position: relative;
}
.mission-content{
  background-color: var(--white);
}
.mission-img{
  position: relative;
}
.mission-img h1{
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
}
.mission-img img{
  width: 100%;
}
.mission-content-main{
  padding: 65px 20px 20px 20px;
  background-color: var(--white);
  text-align: center;
}
.svg-icons{
  width: 23% !important;
  position: absolute;
  right: 26%;
  top: 100%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.destination-details-section{
  width: 100%;
  padding: var(--common-padding);
  background-color: #f3f7fa;
}
.contact-details-box {
  font-family: "Prompt", sans-serif;
  display: grid;
  grid-auto-rows: 280px;
  grid-template-columns: repeat(auto-fill, minmax(405px, 1fr));
  grid-gap: 2em;
  margin-top: 70px;
}
.contact-info-item {
  padding: 25px;
  color: #000;
  background: #fff;
  position: relative;
  border-radius: 20px;
  box-shadow: rgb(0 0 0 / 26%) 0px 5px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-info-item p{
  font-weight: 500!important;
}
.contact-info-item .icon {
  font-size: 55px;
  color: var(--secondary-color);
}
.contact-info-item .info span.title {
  font-family: var(--heading-font);
  font-size: 25px;
  line-height: 32px;
  margin-bottom: 10px;
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--bg-color);
}
.contact-info-item .info p a {
  text-decoration: none;
  color: var(--bg-color);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-item .social-media {
  display: flex;
  justify-content: center;
}
.social-media ul {
  margin: 0;
  padding: 0;
}
.social-media ul li {
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  margin-bottom: 0;
}
.contact-info-item .social-media ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 17px;
  margin-bottom: 0;
}
.contact-us-page-form{
width: 100%;
padding: var(--common-padding);
}
.contact-us-page-container{
  width: 55%;
  margin:  0 auto;
  display: block;
}
.mb-70{
  margin-bottom: 70px;
}
.map {
  width: 100%;
  height: 400px;
}
.retail-partners{
  width: 100%;
  padding: var(--common-padding);
  background-color: #f3f7fa;
}
.retail-partners-content{
  width: 100%;
  padding-right: 35px;
}
.retail-partners-content h1{
  text-align: left;
}

.card-style-eight {
  background: #f3f7fa;
  position: relative;
  height: 200px;
  box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
}
.mb-30 {
  margin-bottom: 30px;
}

.rounded-5 {
  border-radius: 2rem;
}

.rotator-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 70%;
  display: none;
  cursor: pointer;
}
.rotator-image:hover{
  filter: grayscale(100%);
}
ul.features-list {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.features-list li {
  list-style: none;
}
.features-list li span {
  padding: 15px 20px;
  -webkit-box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: block;
  font-size: 18px;
  font-family: var(--paragraph-font);
  font-weight: 500;
}

.features-list li span i {
  margin-right: 5px;
  color: var(--secondary-color);
}
.our-services-page{
  width: 100%;
  padding: var(--common-padding);
  background-color: var(--bg-color1);
  background-image: url(../img/service-bg-shape2.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.services-main-grid{
  display: grid;
    grid-auto-rows: 380px;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: 2em;
    margin-top: 75px;
}
.service-item-three {
  background-color: rgb(161 219 0 / 25%);
  border-radius: 5px;
  padding: 30px 30px 55px;
  transition: 0.3s;
  cursor: pointer;
}
.service-item-three h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: var(--heading-font);
  font-weight: 600;
}
.service-item-three h3 a {
  color: rgb(42, 40, 79);
}
.service-item-three .service-link {
  position: relative;
  margin-top: 15px;
}
.service-item-three:hover .service-link img {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.service-item-three .service-link img {
  left: unset;
  right: 0;
}
.service-item-three .service-link img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
service-item-three .service-link i {
  left: unset;
  right: 25px;
}
.service-item-three.two {
  background-color: #8084ff4d;
}
.service-item-three.three {
  background-color: rgb(161 219 0 / 25%);
}
.service-item-three .service-link i {
  display: inline-block;
  color: var(--primary-color);
  font-size: 26px;
  position: relative;
  z-index: 1;
  top: 20px;
  left: 25px;
  font-weight: 100;
}
.service-item-three:hover {
  -webkit-transform: translate(0, -10px)!important;
  transform: translate(0, -10px)!important;
}
.facts-section {
  position: relative;
  padding: 140px 0px;
  font-family: "Prompt", sans-serif;
}
.facts-section .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-attachment: fixed;
}
.facts-section .image-layer:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.0);
}
.facts-section .content-box {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.video-popup {
  position: relative;
  width: 110px;
  height: 110px;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  background: #fff;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.video-popup:after, .video-popup:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #e1e1e1;
  -webkit-animation: playpopup infinite linear 1s;
  animation: playpopup infinite linear 1s;
}
.video-popup:before {
  -webkit-animation: playpopup infinite linear 2s;
  animation: playpopup infinite linear 2s;
}
.video-popup i {
  font-size: 60px;
  color: var(--secondary-color);
}
.facts-section .content-box h2 {
  position: relative;
  font-weight: 500;
  color: var(--white);
  text-transform: none;
  margin: 0 0;
  font-size: 50px;
  font-family: var(--paragraph-font);
  line-height: 62px;
  margin-top: 80px;
}
@keyframes playpopup{
  0% {
    transform: scale(1);
    opacity: 0.6;
}
50% {
    transform: scale(1.5);
    opacity: 0.3;
}
100% {
    transform: scale(2);
    opacity: 0;
}
}

/*********************New Mission Vision Css************************/
.bg-position {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-relative {
  position: relative;
}
.fix {
  overflow: hidden;
}

#service-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#service-bg-img .service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  visibility: hidden;
  opacity: 0;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: scale(1.025);
  -moz-transform: scale(1.025);
  -ms-transform: scale(1.025);
  -o-transform: scale(1.025);
  transform: scale(1.025);
}
#service-bg-img .service-bg::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(30 39 45 / 76%);
}
#service-bg-img.service-img-1 .service-img-1 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#service-bg-img.service-img-2 .service-img-2 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#service-bg-img.service-img-3 .service-img-3 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.td-service-border {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.td-service-border::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background-color: #fff;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.td-service-wrap {
  padding: 25px 40px 50px 40px;
  cursor: pointer;
}
.td-service-cetagory {
  font-weight: 700;
  font-size: 14px;
  color: var(--td-common-white);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 6px 11px;
  position: absolute;
  right: -26px;
  top: 50px;
  transform: rotate(90deg);
}
.td-service-number {
  font-weight: 700;
  font-size: 100px;
  line-height: 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: rgba(249, 246, 246, 0.1);
  -webkit-text-stroke-width: 1px;
  opacity: 0.4;
  padding-bottom: 200px;
  transform: translateY(-60px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: var(--heading-font);
}
.td-service-title {
  font-weight: 500;
  font-size: 45px;
  line-height: 131%;
  color: var(--secondary-color);
}
.td-service-title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--secondary-color);
  text-decoration: none;
  font-family: var(--paragraph-font);
  position: relative;
}
.td-service-title a::after{
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--white);
  transition: all 0.5s ease;
}
.td-service-wrap:hover  .td-service-title a::after{

  transition:all 0.5s ease;
  left: 50%;
}
.td-service-content-inner {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-top: 10px;
}
.td-service-content-para {
  color: var(--white);
  opacity: 1;
  line-height: 30px;
}

.mb-45 {
  margin-bottom: 45px;
}
/* .td-service-wrap:hover .td-service-content {
  transform: translateY(0);
}
.td-service-wrap:hover .td-service-content-inner {
  opacity: 1;
  visibility: visible;
} */
.td-service-wrap:hover .td-service-number {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.td-service-border:hover::before {
  height: 100%;
  bottom: inherit;
  top: 0;
}

/**************************Thank You Page css*************************/

.thank-page-content{
  background-color: #1d1d36;
  width: 100%;
  height: 100vh;
  display:flex;
  align-items: center;
  justify-content: center;
}
.thank-you-content {
  width: 50%;
  text-align: center;
}
.thank-you-content h1 {
  font-family:var(--paragraph-font);
  color:var(--white);
  font-size: 60px;
  margin-bottom: 25px;
  font-weight: 500;
}
.thank-you-content p {
  font-family: var(--paragraph-font);
  color: var(--secondary-color);
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 35px;
}
.thank-you-content a{
  text-decoration: none;
  font-weight: 500;
  font-family: var(--paragraph-font)!important;
}

/************************social icons right side css*****************************/
.sticky-icon  {
	z-index:1;
	position:fixed;
  top: 40%;
	right:1.3%;
	width:190px;
	display:flex;
	flex-direction:column;}  
.sticky-icon a  {
	transform:translate(160px,0px);
	border-radius:50px 0px 0px 50px;
	text-align:left;
	margin:2px;
	text-decoration:none;
	text-transform:uppercase;
	padding:10px;
	font-size:18px;
  font-weight: 500;
	font-family:var(--paragraph-font);
	transition:all 0.8s;
  background-color: var(--secondary-color);
  color: var(--white);
}
.sticky-icon a:hover  {
	color:var(--white);
	transform:translate(28px,0px);}	
.sticky-icon a:hover i  {
	transform:rotate(360deg);}
					
.sticky-icon a i {
  font-size: 22px;
	background-color:var(--white);
	height:40px;
	width:40px;
	color:var(--black);
	text-align:center;
	line-height:40px;
	border-radius:50%;
	margin-right:10px;
	transition:all 0.5s;
  display: inline-block;
}	
.service-container{
  width: 65%;
  margin: 0 auto;
  display: block;
}
.initiatives-main-box{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.initiatives h2{
font-size: 40px;
    color: var(--black);
    font-family: var(--paragraph-font);
    font-weight: 500;
    line-height: 45px;
    margin-top: 10px;
    margin-bottom: 12px;
        text-align: center;
}
.initiatives h2 span{
  color: var(--secondary-color);
}

.services-grid{
  width: 100%;
  margin-top: 90px;
}
.services-grid .services-box{
  width: 100%;
  display: flex;
  align-items: center;
}
.services-grid .services-box .services-left{
  width: 40%;
  float: left;
}
.services-grid .services-box .services-left img{
  width: 100%;
  border-radius: 15px;
}
.services-grid .services-box .services-right{
  width: 60%;
  float: right;
}
.services-grid .services-box .services-right h1{
  font-family: var(--paragraph-font);
  font-size: 35px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.services-list{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.services-list li{
  text-decoration: none;
  color:var(--white);
  font-size: 19px;
  font-family: var(--paragraph-font);
  line-height: 30px;
  margin-bottom: 10px;
  margin-left: 25px;
  position: relative;
}
.services-list li::before{
  position: absolute;
  content: "\eb79";
  left: -25px;
  top: 0;
  color: var(--secondary-color);
  font-size: 20px;
  font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.services-list li:nth-last-child(1){
  margin-bottom: 0;
}
.pd-lft-20{
  padding-left: 5%;
}
.mb-140{
  margin-bottom: 90px;
}
.mt-100{
  margin-top: 90px;
}

.mid-hr{
  height: 1px;
  background-color: #ffffff52;
margin-top: 70px;
  opacity: 0.9;
}

/***********************our leadership css**************************/
.our-leadership-section{
  width: 100%;
  padding: var(--common-padding);
  background-color: var(--white);

}
.left-img-div{
  width: 100%;
  border-radius: 15px;
}
.left-img-div img{
  width: 100%;
  border-radius: 15px;
}
.founders-profile-content{
  width: 100%;
  height: 550px;
  overflow: auto;
      padding-right: 25px;
}
.founders-profile-content h2{
  font-size: 38px;
  color: var(--black);
  font-family: var(--paragraph-font);
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 20px;
  position: relative;
}
.founders-profile-content h2::after{
     position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: var(--secondary-color);
    left: 0;
    bottom: -8px;
}
.founders-profile{
  margin-top: 40px;
}

.founders-profile-content span{
    font-size: 19px;
    color: var(--black);
    font-family: var(--paragraph-font);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.founders-profile-content p{
      font-size: 16px;
    font-family: var(--paragraph-font);
    font-weight: 400;
    color: var(--bg-color);
    line-height: 28px;
    margin-bottom: 15px;
}
.founders-profile-content h4{
         font-size: 19px;
    font-family: var(--paragraph-font);
    font-weight: 600;
    color: var(--bg-color);
    line-height: 28px;
    margin-bottom: 10px;
}
.founders-profile-content ul{
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
}
.founders-profile-content ul li{
      list-style: none;
      font-size: 16px;
    font-family: var(--paragraph-font);
    font-weight: 400;
    color: var(--bg-color);
    line-height: 24px;
    position: relative;
    padding-left: 15px;
}

.founders-profile-content ul li::before{
 position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background-color: var(--black);
    border-radius: 50px;
    top: 8px;
    left: 0;
}

.our-team {
  width: 100%;
  padding: var(--common-padding);
  background-color: var(--bg-color1);
}

.our-team p{
      font-size: 16px;
    font-family: var(--paragraph-font);
    font-weight: 400;
    color: var(--bg-color);
    line-height: 28px;
    margin-bottom: 15px;
}

.dynamic-leadership-team .dynamic-management-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  gap: 80px;
  margin-top: 40px;
}

.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div {
  width: 100%;
  cursor: pointer;
}
.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div:hover .image-box .content-overlay {
  opacity: 1;
  transition: all 0.5s ease;
}
.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div:hover .content-box h4 {
  color: var(--secondary-color);
  transition: all 0.5s ease;
}
.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div .image-box {
  width: 100%;
  position: relative;
  border-radius: 15px;
}
.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div .image-box img {
  width: 100%;
  border-radius: 15px;
}
.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div .image-box .content-overlay {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8901960784);
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div .image-box .content-overlay ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div .image-box .content-overlay ul li {
  list-style: none;
  position: relative;
  color: #fff;
  padding-left: 15px;
  font-family: var(--paragraph-font);
}

.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div .content-box {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}

.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div .content-box h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 3px;
  transition: all 0.5s ease;
  font-family: var(--heading-font);
}

.dynamic-leadership-team .dynamic-management-grid .dynamic-management-div .content-box span {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--heading-font);
}
.key-strength-video{
padding-left: 40px;
}

.key-strength-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}