@import "common.css";
@import "works.css";
@import "about.css";
@import "contact.css";
@import "collaborate.css";
@import "careers.css";

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

*,
*::before,
*::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}


body {
  font-family: "Onest", sans-serif;
   font-size: 16px;
   line-height: 26px;
}




/* ========================================= header ========================================= */

/* Header Styling */
.header {
   background-color: #fff;
   padding: 20px 0;
}


.header-wrapper {
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: relative;

   
   font-weight: 300;
   font-size: 18px;
   letter-spacing: -0.4px;
   line-height: 28px;
   color: #000;
}

.brand img {
   max-width: 180px;
   height: auto;
}

.header-nav-wrapper {
   display: flex;
}

.header-nav {
   display: flex;
}

.header-nav .nav-item {
   margin-left: 36px;
   list-style: none !important;
   display: inline-flex;
}


.header-nav .nav-item a {
   text-decoration: none;
   
   font-weight: 300;
   font-size: 18px;
   letter-spacing: -0.4px;
   line-height: 28px;
   color: #000;
   transition: color 0.3s ease;
}


.header-nav .nav-item a.btn {
   
   font-weight: 300;
   font-size: 14px;
   letter-spacing: -0.4px;
   line-height: 14px;
   color: #fff;
   background-color: #000;
   padding: 14px 20px;
   border-radius: 45px;
   transition: color 0.3s ease;
}

.header-nav .nav-item a.btn:hover {
   background-color: #262626;
   text-decoration: none;
}

/* Mobile Navigation (Hamburger Menu) */
.mob-navigation-toggle {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   position: absolute;
   top: 20px;
   right: 20px;
   z-index: 1000;
}

.hamburger-menu {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   width: 25px;
   height: 20px;
}

.hamburger-menu span {
   background-color: #333;
   height: 3px;
   width: 100%;
   transition: all 0.3s ease;
}

/* Mobile Menu Toggle Effects */
.mob-navigation-toggle[aria-expanded="true"] .hamburger-menu span:nth-child(1) {
   transform: rotate(45deg);
   position: relative;
   top: 9px;
}

.mob-navigation-toggle[aria-expanded="true"] .hamburger-menu span:nth-child(2) {
   opacity: 0;
}

.mob-navigation-toggle[aria-expanded="true"] .hamburger-menu span:nth-child(3) {
   transform: rotate(-45deg);
   position: relative;
   top: -8px;
}

/* hoder/active */
.header-nav .nav-item > .nav-item-link {
   position: relative;
   color: black;
   text-decoration: none;
   display: inline-block;
   padding-bottom: 4px; /* some spacing for the underline */
 }
 
 .header-nav .nav-item > .nav-item-link::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: 0;
   height: 2px;
   width: 0%;
   background-color: #000;
   transition: width 0.4s ease;
 }
 
 .header-nav .nav-item:hover > .nav-item-link::after,
 .header-nav .nav-item.active > .nav-item-link::after {
   width: 100%;
 }

 

/* Responsive Styles */
@media (max-width: 991px) {

   .header-wrapper {
      flex-direction: column;
      align-items: flex-start;
   }
   

   .header-nav-wrapper {
      display: none;
      /* Hide the navigation on mobile */
   }

   .mob-navigation-toggle {
      display: block;
      /* Show the hamburger button */
   }

   .header-nav{
      position: fixed;
      right: -4%;
      top: 0;
      background:#fff;
      z-index: 999;
      height: 100vh;
      width: 100%;
      transition: right 0.3s ease-in-out;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  padding-left: 0.5rem;

   }
   .header-nav .nav-item {
      margin-left: 0;
   }

   .header-nav .nav-item a {
      font-size: 22px;
      padding: 10px 0;
   }

   /* When mobile menu is expanded */
   .mob-navigation-toggle[aria-expanded="true"]+.header-nav-wrapper {
      display: block;
   }

   /* Adjusting menu items for mobile */
   .header-nav-wrapper ul {
      display: flex;
      flex-direction: column;
      margin-top: 70px;
   }

   .header-nav .nav-item a.btn {
      font-size: 20px;
      letter-spacing: -0.4px;
      line-height: 16px;
      padding: 16px 20px;
      margin-top: 20px;
      margin-bottom: 6px;
   }

   .header-nav .nav-item {
      margin-left: 0;
      padding: 10px 0;
      width: 100%;
      text-align: center;
   }
}


      /* Hide menu by default on small screens */
      @media (max-width: 768px) {
         .header{
            z-index: 1000;
         }
        .header-nav-wrapper {
          display: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          background: white;
          width:100%;
          box-shadow: 0 4px 10px rgba(0,0,0,0.1);
          z-index: 999;
        }
      
        .header-nav-wrapper.open {
          display: block;
        }
      
        .mob-navigation-toggle {
          display: block;
          background: none;
          border: none;
        }
      
      }
      .header-nav-wrapper {
        transition: all 0.3s ease-in-out;
      }
      
      
      /* Hide hamburger on desktop */
      @media (min-width: 769px) {
        .mob-navigation-toggle {
          display: none;
        }
      }
      


/* ========================================= Hero ========================================= */


.Hero {
   background-image: url(../images/hero-bg.png);
   background-repeat: no-repeat;
   background-position: bottom;
   background-size: contain;
}

.hero-wrapper .hero-title {
   font-weight: 500;
   font-size: 55px;
   letter-spacing: -1px;
   line-height: 64px;
   color: #000;
   max-width: 830px;
   margin-top: 17rem;
}


.hero-video-wrapper {
   background-image: url(../images/hero-img.jpg);
   background-size: 100%;
   background-position: center;
   background-repeat: no-repeat;
   width: 100%;
   height: 731px;
   border-radius: 26px;
   position: relative;
   margin-top: 65px;
}

.hero-video-wrapper .video-logo {
   position: absolute;
   left: 44px;
    top: 51px;
}


.hero-video-wrapper .hero-video-title {
   z-index: 999;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   
   font-weight: 600;
   font-size: 55px;
   letter-spacing: -1px;
   line-height: 64px;
   color: #fff;
   width: 100%;
   max-width: 961px;
   text-align: center;
}

.hero-video-wrapper .hero-video-title span {
   color: #56FFF5;
}


@media (max-width: 768px) {
   .Hero .container{
   margin: 0;
   padding: 0;
   width: 100%;
}

   .hero-wrapper .hero-title {
      font-weight: 700;
      font-size: 36px;
      letter-spacing: -1px;
      line-height: 48px;
      color: #000;
      max-width: 100%;
      text-align: center;
      margin-top: 3rem;
      padding: 0px 28px;
   }
   .hero-video-wrapper {
      background-image: url(../images/hero-img-mob.webp);
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     
      width: 100%;
      height: 400px;
      border-radius: 0px;
      position: relative;
      margin-top: 5rem;
   }
   .hero-video-wrapper .hero-video-title {
      z-index: 999;
      position: absolute;
      left: 50%;
      top: 60%;
      transform: translate(-50%, -50%);
      
      font-weight: 500;
      font-size: 34px;
      letter-spacing: -0.67px;
      line-height: 42px;
      color: #fff;
      width: 100%;
      padding: 20px;
      text-align: center;
   }
}




/* ========================================= product-slider ========================================= */



.product-slider {
   width: 100%;
   /* Full width of the container */
   overflow: hidden;
   /* Hide the overflow to only show the text within the container */
}

.product-slider ul {
   display: flex;
   /* Make the list items display horizontally */
   animation: scroll-right-to-left 50s linear infinite;
   /* Apply the animation */
   padding: 0;
   margin: 0;
}

.product-slider li {
   white-space: nowrap;
   padding: 1px 10px;
   margin-right: 30px;
   /* Space out the list items for better readability */
}

@keyframes scroll-right-to-left {
   0% {
      transform: translateX(10);
   }

   100% {
      transform: translateX(-100%);
   }
   
}


.product-type-wrapper {
   background-color: #000;
   position: relative;
   padding-top: 80px;
   padding-bottom: 40px;
}

.product-slider ul li {
   color: #fff;
   
   font-weight: 300;
   font-size: 22px;
   letter-spacing: 0px;
   line-height: normal;
   color: #fff;
   text-transform: capitalize;
}

.left-mask,
.right-mask {
   position: absolute;
}

.left-mask {
   position: absolute;
   left: 0;
   top: 0;
   z-index: 999;
   background: linear-gradient(to right, #000000 28%, #00000000 100%);
   height: 100%;
   width: 200px;
}

.right-mask {
   position: absolute;
   right: 0;
   top: 0;
   z-index: 999;
   background: linear-gradient(to left, #000000 28%, #00000000 100%);
   height: 100%;
   width: 200px;
}


@media (max-width: 768px) {
  .product-type-wrapper {
    background-color: #000;
    position: relative;
    padding-top: 50px;
    padding-bottom: 20px;

 }
  .product-slider ul {
    animation: scroll-right-to-left 5s linear infinite;
  }
  .left-mask,
  .right-mask {
    width: 80px ;
  }
}


/* ========================================= OurWorks ========================================= */



.OurWorks {
   background-color: #000;
   color: #fff;
   padding: 3rem 0;
}

.Our-Works-wrapper {
   margin-left: 100px;
   margin-right: 100px;
}
.Our-Works-wrapper .Our-Works-items .item{
  margin-bottom: 2rem !important;
}
.Our-Works-wrapper h1,
.Our-Works-wrapper h2,
.Our-Works-wrapper h3 {
   font-weight: 200;
   font-size: 35px;
   letter-spacing: -1px;
   line-height: 54px;
   color: #fff;
   text-transform: capitalize;
   text-align: center;
}

.Our-Works-wrapper .filter-wrapper {
   margin-top: 2rem;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}

.Our-Works-wrapper .filter-wrapper .filter-category{
  margin-bottom: 30px;
}

.Our-Works-wrapper .filter-wrapper a {
   font-weight: 400;
   font-size: 14px;
   letter-spacing: -0.4px;
   line-height: 14px;
   color: #fff;
   background-color: #262626;
   border-radius: 40px;
   max-width: 57px;
   width: 100%;
   text-decoration: none !important;
   padding: 14px 20px;
   margin: 0px 3px;
}

.Our-Works-wrapper .filters a.active {
   
   font-weight: 400;
   font-size: 14px;
   letter-spacing: -0.4px;
   line-height: 14px;
   color: #000;
   background-color: #fff;
   border-radius: 40px;
   max-width: 57px;
   width: 100%;
   text-decoration: none !important;
   padding: 14px 20px;
   margin: 0px 3px;
}

.Our-Works-wrapper a {
   text-decoration: none !important;
}
.Our-Works-wrapper a.item-wrap:hover {
   cursor: url('../images/icons/view-curser.svg') 27.5 27.5, auto;
   object-fit: cover;
   transform: scale(1);
   transition: transform .4s ease;
   will-change: transform;
}

.Our-Works-wrapper .img-fluid {
   width: 100%;
}

.Our-Works-wrapper a {
   text-decoration: none !important;
}

.Our-Works-wrapper .work-info {
   text-decoration: none !important;
   color: #fff;
   text-align: left !important;
   padding-top: 20px;
}

.Our-Works-wrapper .work-info h3 {
   text-align: left !important;
   color: #fff;
   
   font-weight: 400;
   font-size: 20px;
   letter-spacing: 0px;
   line-height: 30px;
}

.Our-Works-wrapper .work-info span {
   color: #fff;
   opacity: 40%;
   font-weight: 400;
   font-size: 16px;
   line-height: 26px;
}

.Our-Works-wrapper .work-info p {
   color: #fff;
   font-weight: 300;
   font-size: 16px;
   line-height: 26px;
   margin-top: 14px;
}

.view-all-works-wrapper {
   display: flex;
   justify-content: center;
}

.view-all-works-wrapper a {
   
   font-weight: 400;
   font-size: 14px;
   letter-spacing: -0.4px;
   line-height: 14px;
   color: #fff;
   background-color: #262626;
   border-radius: 40px;
   display: inline-block;
   text-decoration: none !important;
   padding: 14px 20px;
   margin: 30px auto;
}

@media (max-width: 768px) {
  .Our-Works-wrapper {
    margin-left: 0px;
    margin-right: 0px;
 }
 .Our-Works-wrapper .Our-Works-items .item{
  margin-bottom: 2.5rem !important;
}
 .Our-Works-wrapper .filters a {
  margin: 20px 3px;
}
.Our-Works-wrapper .work-info p {
  font-size: 15px;
  line-height: 23px;
  margin-top: 10px;
  margin-bottom: 0px !important;
}
.Our-Works-wrapper .work-info span {
  line-height: 22px;
}
.Our-Works-wrapper .work-info h3 {
  letter-spacing: -0.3px;
  line-height: 28px;
  font-weight: 500;
}
.Our-Works-wrapper .work-info {
  padding-top: 10px;
}
.view-all-works-wrapper a {
  font-size: 15px;
  margin: 10px auto;
}
}


/* -------  OurWork Listing Page  ------ */

.OurWork-LisPage{
   background: #fff;
   color: #000;
}
.OurWork-LisPage .Our-Works-wrapper h1,
.OurWork-LisPage .Our-Works-wrapper h2,
.OurWork-LisPage .Our-Works-wrapper h3{
   background: #fff;
   color: #000;
}
.OurWork-LisPage .Our-Works-wrapper .work-info h3 {
   color: #000 ;
}
.OurWork-LisPage .Our-Works-wrapper .work-info span {
   color: #000 ;
}
.OurWork-LisPage .Our-Works-wrapper .work-info p {
   color: #000 ;
}
.OurWork-LisPage .Our-Works-wrapper .filter-wrapper a {
color: #000;
background-color: #F2F2F2;
}

.OurWork-LisPage .Our-Works-wrapper .filters a.active {
color: #fff;
background-color: #000;
}


/* =========================================  AboutUs ========================================= */



.AboutUs {
   margin: auto;
}

.AboutUs .AboutUs-left {
   height: 460px;
   background-image: url(../images/bg-work-1.webp);
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   padding: 0 !important;
}

.AboutUs-left h4 {
   max-width: 600px;
   
   font-weight: 100;
   font-size: 48px;
   letter-spacing: -1px;
   line-height: 57px;
   color: #fff;
   text-transform: capitalize;
   padding-top: 112px;
   padding-left: 84px;
}

.AboutUs .AboutUs-right {
   max-height: 460px;
   height: 100%;
   width: auto;
}

.AboutUs .AboutUs-right-content {
   max-width: 600px;
   padding-top: 94px;
   padding-left: 69px;
}

.AboutUs .AboutUs-right h4 {
   
   font-weight: 100;
   font-size: 55px;
   letter-spacing: -1px;
   line-height: 64px;
   color: #000;
   text-transform: capitalize;
   margin-bottom: 16px;
}

.AboutUs .AboutUs-right p {
   
   font-weight: 100;
   font-size: 20px;
   letter-spacing: 0px;
   line-height: 32px;
   color: #000;
   margin-bottom: 24px;
}

.AboutUs .AboutUs-right a {
   text-decoration: none;
   background-color: #000;
   border-radius: 45px;
   color: #fff;
   
   font-weight: 200;
   font-size: 14px;
   letter-spacing: -0.4px;
   line-height: 14px;
   padding: 14px 20px 14px 27px;
}

.AboutUs .AboutUs-right a img {
   padding-left: 10px;
}


@media (max-width: 768px) {
  .AboutUs .AboutUs-right-content {
    max-width: 100%;
    padding-top: 40px;
    padding-left: 18px;
    padding-right: 10px;
    padding-bottom: 54px;
}
.AboutUs .AboutUs-right h4 {
  font-weight: 300;
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 48px;
  margin-bottom: 20px;
}
.AboutUs .AboutUs-right p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 28px;
}
.AboutUs .AboutUs-right a {
  font-weight: 400;
  letter-spacing: 0px;
}
.AboutUs-left{
  height: auto !important;
}
.AboutUs-left h4 {
  max-width: 100%;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 40px;
  padding: 55px 18px;

    text-align: center;
}
}


/* =========================================  Services ========================================= */


.Services {
   background-image: url(../images/bg-yellow.webp);
   background-repeat: no-repeat;
   background-size: cover;
}

.Services-wrapper {
   height: 720px;
   padding-top: 70px;
}

.Services-wrapper .service-tab {
   margin-top: 26px;
}

.Services-wrapper .service-tab a{
  display: block;
  text-decoration: none;
  color: inherit;
}
.Services-wrapper .service-tab h4 {
   font-weight: 100;
   font-size: 44px;
   letter-spacing: -1px;
   line-height: 64px;
   color: #000;
   cursor: pointer;
   text-transform: capitalize;
}

.Services-wrapper .service-tab img {
   display: none;
}

.Services-wrapper .service-tab h4.active img {
   display: inline-block;
   padding-left: 10px;
}

.Services-wrapper .service-tab h4.active {
   font-weight: 400;
}

.Services-wrapper .service-tab-content {
   display: none;
   max-width: 566px;
   margin-top: 20px;
}

.Services-wrapper .service-tab-content.active {
   display: block;
}

.Services-wrapper .service-tab-content img {
   border: 0px !important;
   box-shadow: none !important;
   max-width: 440px;
   height: auto;
   width: 100%;
   margin-bottom: 24px;
}

.Services-wrapper .service-tab-content p {
   font-weight: 300;
   font-size: 20px;
   letter-spacing: 0px;
   line-height: 32px;
   color: #000;
}

@media (max-width: 768px) {
  .Services-wrapper {
    height: auto;
    padding: 50px 0px;
 }
  .Services-wrapper .service-tab h4 {
    font-weight: 300;
    font-size: 36px;
    letter-spacing: -1px;
    line-height: 40px;
  }
  .Services-wrapper .service-tab img {
    display: none;
 }
 
 .Services-wrapper .service-tab h4.active img {
    display: none;
 }
 
 .Services-wrapper .service-tab h4.active {
  font-weight: 300;
 }
 .Services-wrapper .service-tab {
  margin-top: 20px;
  margin-bottom: 20px;
  /* outline: 1px solid red; */
}
}



/* =========================================  Clients ========================================= */



.Clients {
   background-color: #000;
}

.Clients .clients-wrapper {
   background-color: #000;
   padding-top: 2rem;
   padding-bottom: 5rem;
   
}

.Clients .clients-wrapper .clients-logos {
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-items: center;
}

.Clients .clients-wrapper h4 {
   max-width: 524px;
   
   font-weight: 200;
   font-size: 35px;
   letter-spacing: -1px;
   line-height: 56px;
   color: #fff;
   text-transform: capitalize;
   margin-top: 60px;
}

.Clients .clients-wrapper .clients-logos {
   margin-bottom: 36px;
}

.Clients .clients-wrapper .clients-logos img {
   height: auto;
   margin-top: 20px;
   margin-bottom: 10px;
   margin-right: 50px;
}

.Clients .clients-wrapper a {
   text-decoration: none;
   background-color: #262626;
   border-radius: 45px;
   color: #fff;
   
   font-weight: 400;
   font-size: 14px;
   letter-spacing: -0.4px;
   line-height: 14px;
   padding: 14px 20px 14px 27px;
}

.Clients .clients-wrapper a img {
   padding-left: 10px;
}

@media (max-width: 768px) {
  .Clients .clients-wrapper {
    background-color: #000;
    padding-top: 3rem;
    padding-bottom: 4rem;
    
 }

  .Clients .clients-wrapper h4 {
  max-width: 100%;
    font-size: 22px;
        letter-spacing: -.5px;
        line-height: 31px;
        margin-bottom: 20px;
        font-weight: 300;
        text-transform: capitalize;
        text-align: left;
    margin-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
}
    .Clients .clients-wrapper .clients-logos {
      display: flex;
      flex-wrap: nowrap;
    }


      .Clients .clients-wrapper {
        width: 100%;
        overflow: hidden;
      }

      .Clients .clients-wrapper .clients-logos  {
        animation: scroll-right-to-left 10s linear infinite;
      }

      .Clients .clients-wrapper .clients-logos {
        white-space: nowrap;
        padding: 1px 10px;
        margin-right: 30px;
        /* Space out the list items for better readability */
      }

      @keyframes scroll-right-to-left {
        0% {
          transform: translateX(30);
          /* Start the text off-screen to the right */
        }

        100% {
          transform: translateX(-100%);
          /* Move the text off-screen to the left */
        }
      }
}


/* =========================================  Testimonials ========================================= */


.Testimonials .testimonial-wrapper {
   padding-bottom: 4rem;
}

.Testimonials .testimonial-wrapper h4 {
   max-width: 768px;
   
   font-weight: 200;
   font-size: 35px;
   letter-spacing: -1px;
   line-height: 54px;
   color: #000;
   text-transform: capitalize;
   text-align: center;
   margin-top: 60px;
   margin-bottom: 34px;
   margin-left: auto;
   margin-right: auto;
}

.Testimonials .testimonial-wrapper .owl-Testimonials a {
   text-decoration: none !important;
}

.Testimonials .testimonial-wrapper .owl-Testimonials .card-title {
   
   font-weight: 400;
   font-size: 20px;
   letter-spacing: 0px;
   line-height: normal;
   color: #000;
   text-align: left;
   margin-top: 16px;
   margin-bottom: 1px;
}

.Testimonials .testimonial-wrapper .owl-Testimonials .card-desc {
   
   font-weight: 300;
   font-size: 16px;
   letter-spacing: 0px;
   line-height: 26px;
   color: #000;
   opacity: 40% !important;
   text-align: left;
}

.Testimonials .testimonial-wrapper .owl-Testimonials .item-thumb {
   position: relative;
}

.Testimonials .testimonial-wrapper .owl-Testimonials .play-icon {
   max-width: 50px;
   width: 100%;
   height: auto;
   position: absolute;
   bottom: 16px;
   left: 16px;
}

.Testimonials .view-all-testimonials {
   display: flex;
   justify-content: center;
   margin-top: 40px;
}

.Testimonials .view-all-testimonials a {
   
   font-weight: 300;
   font-size: 14px;
   letter-spacing: -0.4px;
   line-height: 14px;
   color: #fff;
   background-color: #262626;
   border-radius: 40px;
   text-align: center;
   text-decoration: none;
   padding: 14px 20px;
}


@media (max-width: 768px) {

.Testimonials .testimonial-wrapper h4 {
  max-width: 100%;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 32px;
}
.Testimonials .testimonial-wrapper .owl-Testimonials .card-title {
  font-weight: 400;
  font-size: 18px;
  margin-top: 10px;
}

.Testimonials .testimonial-wrapper .owl-Testimonials .card-desc {
  font-weight: 400;
  font-size: 13px;
  line-height: normal;
}
}

/* =========================================  Collaborate ========================================= */

.Collaborate {
   background-color: #162120;
   color: #fff;
}

.Collaborate .Collaborate-wrapper {
   padding-top: 80px;
   padding-bottom: 80px;
}

.Collaborate .Collaborate-wrapper h4 {
   max-width: 360px;
   
   font-weight: 200;
   font-size: 35px;
   line-height: 54px;
   letter-spacing: -1px;
   color: #fff;
   text-transform: capitalize;
}

.Collaborate .Collaborate-wrapper .Collaborate-info {
   margin-top: 20px;
}

.Collaborate .Collaborate-wrapper .Collaborate-info a {
   
   font-weight: 200;
   font-size: 46px;
   line-height: 56px;
   letter-spacing: -0.87px;
   color: #45BFB3;
   text-decoration: none;
   margin-top: 2px;
}

.Collaborate .Collaborate-wrapper .Collaborate-info span {
   
   font-weight: 100;
   font-size: 46px;
   line-height: 56px;
   letter-spacing: -0.87px;
   color: #45BFB3;
   text-decoration: none;
   opacity: 40%;
   margin-top: 2px;
   margin-left: 7px;
}

.Collaborate .Collaborate-wrapper .Collaborate-info .mob {
   display: flex;
   flex-wrap: nowrap;
   justify-content: space-between;
}

.Collaborate .Collaborate-wrapper .Collaborate-info .email {
   padding-left: 6px;
}

.Collaborate .Collaborate-wrapper .Collaborate-info .btns {
   padding-left: 6px;
   margin-top: 38px;
}

.Collaborate .Collaborate-wrapper .Collaborate-info .btns .drop-msg-btn {
   
   font-weight: 400;
   font-size: 16px;
   letter-spacing: -0.4px;
   line-height: 14px;
   color: #162120;
   background-color: #45BFB3;
   border-radius: 40px;
   text-align: center;
   text-decoration: none;
   padding: 14px 20px;
   margin-right: 18px;
}

.Collaborate .Collaborate-wrapper .Collaborate-info .btns .whatsapp-btn {
   
   font-weight: 400;
   font-size: 16px;
   letter-spacing: -0.4px;
   line-height: 14px;
   color: #45BFB3;
   border: 1px solid #45BFB3;
   background-color: #162120;
   border-radius: 40px;
   text-align: center;
   text-decoration: none;
   padding: 14px 20px;
}

@media (max-width: 768px) {

  .Collaborate-info .mob {
      justify-content: flex-start;
      flex-direction: column;
      flex-wrap: wrap;
      margin-left: 0px;
    padding-left: 0px;
      
  }

  .Collaborate .Collaborate-wrapper .Collaborate-info span {
    display: none !important;
  }
  .Collaborate .Collaborate-wrapper .Collaborate-info a {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
    margin-left: 0px;
    padding-left: 0px;
    font-weight: 300;
 }
 
 .Collaborate .Collaborate-wrapper h4 {
    max-width: 100%;
    font-size: 34px;
    line-height: 38px;
    letter-spacing: 0px;
    margin-left: 0px;
    padding-left: 0px;
  }
  .Collaborate .Collaborate-wrapper .Collaborate-info .btns {
    margin-left: 0px !important;
    padding-left: 0px !important;
  }
  .Collaborate .Collaborate-wrapper .Collaborate-info .btns .drop-msg-btn {
    margin-right: 6px;
  }
}



/* =========================================  EventsAndBlogs ========================================= */


.EventsAndBlogs {
   background-color: #fff;
}

.EventsAndBlogs .EventsAndBlogs-wrapper {
   padding-top: 4rem;
   padding-bottom: 4.5rem;
}

.EventsAndBlogs .EventsAndBlogs-wrapper h4 {
   font-weight: 200;
   font-size: 35px;
   line-height: 54px;
   letter-spacing: -1px;
   color: #000;
   text-transform: capitalize;
   margin-bottom: 28px;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .owl-EventsAndBlogs a {
   text-decoration: none !important;
   color: #000;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .owl-EventsAndBlogs .blog-img {
   width: 100%;
   height: auto;
   max-width: 416px;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .owl-EventsAndBlogs .blog-info {
   display: flex;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .owl-EventsAndBlogs .blog-info p {
   
   font-weight: 200;
   font-size: 14px;
   line-height: 26px;
   letter-spacing: 0px;
   color: #000;
   opacity: 40%;
   margin-top: 8px;
   margin-bottom: 0px;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .owl-EventsAndBlogs .blog-info span {
   font-weight: 400;
   font-size: 14px;
   line-height: 26px;
   letter-spacing: 0px;
   color: #000;
   opacity: 40%;
   margin: 0px 8px;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .owl-EventsAndBlogs .blog-title {
   
   font-weight: 400;
   font-size: 16px;
   line-height: 22px;
   letter-spacing: 0px;
   color: #000;
   margin-top: 5px !important;
   margin-right: 2px !important;
}

.EventsAndBlogs .EventsAndBlogs-wrapper {
   position: relative;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .EventsAndBlogs-carousel-btn {
   position: absolute;
   top: 75px;
   right: 85px;
   display: flex;
   align-items: center;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .EventsAndBlogs-carousel-btn button {
   background-color: transparent;
   border: none;
   border-radius: 50px;
   border: 1px solid #A0A0A0;
   width: 45px;
   height: 45px;
   display: flex;
   vertical-align: middle;
   justify-content: center;
   align-items: center;
   transition: all 0.3s ease;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .EventsAndBlogs-carousel-btn button img {
   max-width: 70px;
   width: 100%;
   height: auto;
   padding: 18px 15px;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .EventsAndBlogs-carousel-btn button:hover {
   background-color: #f5f5f5;
}

.EventsAndBlogs .EventsAndBlogs-wrapper .EventsAndBlogs-carousel-btn .owl-prev {
   margin-right: 10px;
   /* 10px gap between arrows */
}

@media (max-width: 768px) {
   .EventsAndBlogs .EventsAndBlogs-wrapper {
      padding-top: 2.5rem;
      padding-bottom: 1rem;
   }
   .EventsAndBlogs .EventsAndBlogs-wrapper h4 {
      font-weight: 300;
      font-size: 28px;
      margin-bottom: 18px;
      margin-left: 0px;
   }
   .EventsAndBlogs .EventsAndBlogs-wrapper .EventsAndBlogs-carousel-btn {
      position: absolute;
      top: 46px;
      right: 20px;
   }
   .EventsAndBlogs .EventsAndBlogs-wrapper .owl-EventsAndBlogs .blog-info span{
      color: #000;
      opacity: 45%;
      font-weight: 300;
   }
   .EventsAndBlogs .EventsAndBlogs-wrapper .owl-EventsAndBlogs .blog-info p {
      color: #000;
      opacity: 75%;
      font-weight: 300;
   }
   
}


/* =========================================  footer ========================================= */



.footer {
   background-color: #000;
}

.footer .footer-wrapper {
   color: #fff;
   text-decoration: none;
   padding-top: 7.5rem;
   padding-bottom: 3.5rem;
}

.footer .footer-wrapper .footer-logo .copyright {
   
   font-weight: 200;
   font-size: 14px;
   line-height: auto;
   letter-spacing: 0px;
   color: #fff;
   margin-top: 16px;
   margin-bottom: 0px;
}

.footer .footer-wrapper .footer-logo .footer-link-social{
   display: flex;
   margin-top: 6rem;
   gap: 20px;
}

.footer .footer-wrapper .footer-links-wrapper {
   display: flex;
   justify-content: space-around; 
   
}

.footer .footer-wrapper .footer-links-wrapper .footer-link-1 a,
.footer .footer-wrapper .footer-links-wrapper .footer-link-2 a,
.footer .footer-wrapper .footer-links-wrapper .footer-link-3 a,
.footer .footer-wrapper .footer-links-wrapper .footer-link-social a {
   display: block;
   text-decoration: none;
   font-weight: 200;
   font-size: 14px;
   line-height: auto;
   letter-spacing: 0px;
   color: #fff;
   margin-bottom: 16px;
}
.footer .footer-wrapper .footer-links-wrapper .footer-link-address{
   max-width: 300px;
}
.footer .footer-wrapper .footer-links-wrapper .footer-link-address .address-1 {
   margin-bottom: 20px;
}
.footer .footer-wrapper .footer-links-wrapper .footer-link-address .address-1 h5,
.footer .footer-wrapper .footer-links-wrapper .footer-link-address .address-2 h5{
   font-size: 16px;
   font-weight: 400 !important;
   line-height: auto;
   opacity: 50%;
}
.footer .footer-wrapper .footer-links-wrapper .footer-link-address .address-1 p,
.footer .footer-wrapper .footer-links-wrapper .footer-link-address .address-2 p{
   font-weight: 200;
   font-size: 14px;
   line-height: auto;
   letter-spacing: 0px;
   color: #fff;
   margin-bottom: 0px;
}
.footer .footer-wrapper .footer-links-wrapper .footer-link-address .address-1 a,
.footer .footer-wrapper .footer-links-wrapper .footer-link-address .address-2 a{
   text-decoration: none;
   font-weight: 200;
   font-size: 14px;
   line-height: auto;
   letter-spacing: 0px;
   color: #fff;
   margin-bottom: 10px;
   
}


.footer .footer-wrapper .footer-links-wrapper .footer-link-social a img {
   margin-right: 10px;
}


@media (max-width: 768px) {
   .footer .footer-wrapper .footer-links-wrapper {
      flex-wrap: wrap;
   }
   .footer .footer-wrapper .footer-links-wrapper .footer-link-1,
.footer .footer-wrapper .footer-links-wrapper .footer-link-2,
.footer .footer-wrapper .footer-links-wrapper .footer-link-3,
.footer .footer-wrapper .footer-links-wrapper .footer-link-social {
   display: block !important;
   margin-right: 1rem;
   margin-top: 2rem;
   /* border: 1px solid red; */
   width: 40%;
   justify-content: flex-start;
   font-weight: 300;
   opacity: 90%;
}

.footer .footer-wrapper .mob-block{
   font-weight: 200;
   font-size: 14px;
   line-height: auto;
   letter-spacing: 0px;
   color: #fff;
   margin-top: 3.6rem;
   margin-bottom: 2rem;
}
}





/* ========================================= whatsapp sticky bottom  ========================================= */


  .whatsapp-float {
      position: fixed;
      bottom: 2.4rem;
      right: 2.4rem;
      background-color: transparent;
      z-index: 1000;
      transition: transform 0.2s ease-in-out;
      text-decoration: none;
    }
  .whatsapp-float img{
       max-width: 60px;
    }

    .whatsapp-float:hover {
      transform: scale(1.2);
    }




    .privacy-policy-page-title-wrapper .inner-page-title h3{
            padding-bottom: 1rem;
            max-width: 500px;
        }
        .privacy-policy-details-wrapper .privacy-policy-details-container{
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 1.5rem;
        }
        .privacy-policy-details-wrapper .privacy-policy-details-container h3 {
            font-size: 22px;
            line-height: 30px;
            margin-bottom: .5rem;
            margin-top: 2rem;
        }
        .privacy-policy-details-wrapper .privacy-policy-details-container ul li,
        .privacy-policy-details-wrapper .privacy-policy-details-container a,
        .privacy-policy-details-wrapper .privacy-policy-details-container p {
            font-size: 18px;
            line-height: 30px;
            font-family: "Onest", sans-serif;
            font-weight: 200;
            padding-right: 10px;
            color: #000;
            margin-bottom: 4px;
        }