*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    overflow-x: hidden;
}


/* Fonts */

  @font-face {
    font-family: Pop-100;
    src: url('fonts/Poppins/Poppins-Thin.ttf');
  }
  @font-face {
    font-family: Pop-200;
    src: url('fonts/Poppins/Poppins-ExtraLight.ttf');
  }
  @font-face {
    font-family: Pop-300;
    src: url('fonts/Poppins/Poppins-Light.ttf');
  }
  @font-face {
    font-family: Pop-400;
    src: url('fonts/Poppins/Poppins-Regular.ttf');
  }
  @font-face {
    font-family: Pop-500;
    src: url('fonts/Poppins/Poppins-Medium.ttf');
  }
  @font-face {
    font-family: Pop-600;
    src: url('fonts/Poppins/Poppins-SemiBold.ttf');
  }
  @font-face {
    font-family: Pop-700;
    src: url('fonts/Poppins/Poppins-Bold.ttf');
  }
  @font-face {
    font-family: Amarante;
    src: url('fonts/Amarante/Amarante-Regular.ttf');
  }


  .pop-200{
    font-family: Pop-200;
  }
  .pop-300{
    font-family: Pop-300;
  }
  .pop-400{
    font-family: Pop-400;
  }
  .pop-500{
    font-family: Pop-500;
  }
  .pop-600{
    font-family: Pop-600;
  }
  .pop-700{
    font-family: Pop-700;
  }




  /* colors */

  :root {
    --first: #010042;
    --second: #1C3973;
    --third: #29A7E1;
    --gray1:#4C4C4C;
    --gray2:#7E7E7E;
    --gray3:#8D8D8D;
  }


  .bg-1{
    background-color: var(--first);
  }
  .bg-2{
    background-color: var(--second);
  }
  .bg-3{
    background-color: var(--third);
  }

  .text1{
    color: var(--first);
  }
  .text2{
    color: var(--second);
  }
  .text3{
    color: var(--third);
  }
  .text4{
    color: var(--gray1);
  }
  .text5{
    color: var(--gray2);
  }
  .text6{
    color: var(--gray3);
  }



/* common css */



.text-justify{
  text-align: justify;
}
.p-relative{
    position: relative;
}
.text-up{
  text-transform: uppercase;
}
.w-fit{
    width: fit-content;
}
.flex-col{
    flex-direction: column;
}
a{
    text-decoration: none;
}
.fs-10{
    font-size: 10px;
}
.fs-9{
    font-size: 9px;
}
.fs-13{
    font-size: 13px;
}
.fs-12{
    font-size: 12px;
}
.fs-14{
    font-size: 14px;
}
.fs-15{
    font-size: 15px;
}
.fs-16{
    font-size: 16px;
}
.fs-20{
    font-size: 20px;
}
.fs-23{
    font-size: 23px;
}
.obj-cover{
    object-fit: cover;
}
.br-10{
    border-radius: 10px;
}
.show-all{
  width: 160px;
  padding-top: 0.8rem ;
  padding-bottom: 0.8rem ;
}
.shad{
  box-shadow: 0px 0px 10px 0px #0000001A;
}
.sec-head{
  font-size: 36px;
}
.br-20{
  border-radius: 20px;
}

.cmn-btn{
  width: 200px;
  font-size: 14px;
  border-radius: 5px;
  display: block;
  text-align: center;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

  .show-btn{
    width: 160px;
    border-radius: 5px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .show-btn:hover{
    background-color: #2493c7;
  }











/* ================================================================= */

/* *******Navbar********* */

.nav-link{
  color: #ffffff;
  font-size: 14px;
  transition: 0.3s ease-in-out;
  font-family: Pop-300;
  padding: 0px;
}
.nav-item .active-tab , .nav-item .active ,.nav-link:hover{
  color: #ffffff !important;
  border-bottom: 2px solid var(--third);
  font-family: Pop-500;
}

.navbar{
  background: linear-gradient(90deg, #010042 20.19%, #29A7E1 100%);
}

.dropdown-toggle::after {

  color: var(--third);
}

.nav-link:hover{
  color: #0C8CEF;
  
}
/* .nav-btn:hover{
  color: #0C8CEF;

} */
.nav-btn{
  background-color: var(--first);
  border-radius: 50px;
  margin-left: 8px;
}
.nav-btn:hover{
  background-color: #03022e;
}

/* ********pop-up form*********** */
.quote-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-form-wrapper {
  width: 100%;
}

.quote-form {
  position: relative;
  animation: fadeInUp 0.3s ease;
}

.book-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-form-wrapper {
  width: 100%;
}

.book-form {
  position: relative;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000;
  cursor: pointer;
}



.dropdown select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    padding: 10px 20px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #959595;
    width: 10rem;
    box-sizing: border-box;
    position: relative;
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 10px;
}

.con-drop {
    width: 100% !important;
    /* height: 45px; */
    border-radius: 5px;
    background-color: #fff !important;
    font-size: 1rem !important;
    color: #5e6062 !important;
    padding: 6px 12px !important;
    border-color: #0C8CEF80 !important;
}
.drop-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
    background: white url(../images/drop.png) no-repeat right center;
    border: 1px solid #ccc;
    font-size: 16px;
}

.pop-up-form .form-control{
  border: 0.5px solid #0C8CEF80;
}

.pop-up-form{
  button:hover{
    background-color: #0861a5;
  }
}












/* *********Hero********* */

/* *********Hero Section********* */

.hero-cont{
    width: 100%;
    height: 510px;
}

.carousel-inner{
    /* height: 600px; */
    height: 500px;
}

.hero-rt {
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
}
.hero-rt img{
    height: 250px;
}

/* .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #fff;
    opacity: 1;
} */
.carousel-indicators [data-bs-slide-to] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #fff;
    opacity: 1;
}
.carousel-indicators .active {
    background-color: #fff;
}
.car-over {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    background: #00000024;

}
.carousel-item img{
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;         /* text ke size ke hisaab se rahega */
  max-width: 80%;      /* optional: overflow control */
  text-align: center;  /* beech mein alignment */
}

.carousel-caption{
    h2{
      font-size: 80px;
      margin-top: -16px;
    }
    h3{
      font-size: 64px;
    }
    .h3-2{
      margin-top: -16px;
    }
    .btn{
      border-radius: 50px;
    }
    .btn:hover{
      background-color: #087bd3;
    }
}

/* count */
.count{
  width: 100%;
  height: fit-content;
  background-image: url(images/count-bg.png);
  background-position: center;
  /* background-repeat: no-repeat; */
}

.count-box {
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px #00000033;
  aspect-ratio: 1 / 1; 
  padding: 2rem ;
  height: 100%;


  h2{
    font-size: 48px;
  }

  img{
    height: 100px;
  }
}








/* ********About us******* */

#about{
  border-radius: 20px;
}

.owner-about{
  width: 380px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 8px 0px #00000040;
  position: relative;
  z-index: 10;
  margin-top: -3rem;

  h6{
    background-color: #0C8CEF;
  }
  h4{
    font-size: 24px;
    background-color: #fff;
  }
}
.border1{
  width: 180px;
  height: 5px;
}
.border2{
  width: 320px;
  height: 5px;
}
.border3{
  width: 200px;
  height: 5px;
}

.about-text{

  .btn{
    width: 150px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  h2{
    font-size: 40px;
    letter-spacing: 8px;
  }
  .btn:hover{
    background-color: #2493c7;
  }
}




/* service */

.service{
  width: 100%;
  height: fit-content;
  background-image: url(images/service-bg.png);
  background-position: center;
  /* background-repeat: no-repeat; */


  .btn{
    width: 160px;
    border-radius: 5px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}


.service-box{
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px #00000033;
  aspect-ratio: 1 / 1; 
  /* padding: 2rem ; */
  height: 100%;
  border: 3px solid #fff;

  img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .info1{
    background: linear-gradient(180deg, #29a7e100 0%, #29a7e1e6 65%);
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    transition: 0.3s ease-in;
  }

  .info2{
    background-color: #1C3973CC;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s ease-in;
  }

}

.service-box:hover{

  .info1{
    opacity: 0;
  }

  .info2{
    opacity: 1;
  }
}

.ser-head{
  font-size: 40px;
  letter-spacing: 6px;
}

.service-img {
    border-radius: 20px;
}




/* choose */

.choose-text{
  h2{
    font-size: 40px;
    letter-spacing: 5px;
  }
}






/* card carousel */

.item-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.scroll-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  /* background-color: #00000025; */
  cursor: pointer;
  font-size: 1.5rem; /* Size of the arrow */
  font-weight: 800;
  color: #030303; /* Grey color for the arrow */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.scroll-btn img {
  width: 50px;
  height: 50px;
}

.scroll-btn:hover {
  color: #000000; /* Darker grey when hovering */
}

.card-wrapper {
  display: flex;
  overflow: hidden; /* Hide scrollbar */
  scroll-behavior: smooth;
  white-space: nowrap;
  width: 100%;
  max-width: 85vw; /* Adjust based on your design */
  box-sizing: border-box;
  position: relative; /* For positioning scroll buttons */
  flex-wrap: nowrap !important;
}

.card-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Webkit browsers */
}






/* testimonial */
.testimonial{
  width: 100%;
  height: fit-content;
  background-image: url(images/test-bg.png);
  background-position: center;
  /* background-repeat: no-repeat; */
}

.test-slider .card-wrapper{
  max-width: 80vw;
}

.test-box{
  box-shadow: 0px 0px 20px 0px #0000001A;
  width: 330px;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  padding: 1.8rem 1rem;
  text-wrap-mode: wrap;

  .client{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
  }

  .star{
    i{
      font-size: 20px;
      color: #DAB858;
    }
  }

  .quote{
    width: 40px;
    height: 30px;
  }

}

.test-prev {
    left: -2%;
    top: 40%;
}
.test-next {
    right: -2%;
    top: 40%;
}




/* contact section */
.contact{
  width: 100%;
  height: fit-content;
  background-image: url(images/con-bg.png);
  background-position: center;
  /* background-repeat: no-repeat; */
}

.con-head {
    font-size: 40px;
    letter-spacing: 5px;
}


.con-form .form-control{
  border: 1px solid #1C3973;
}
.con-form .form-control::placeholder{
  color: #6F7171;
  font-family: Pop-300;
  font-size: 14px;

}


footer{

  .foot{
    background: linear-gradient(90deg, #010042 30.29%, #29A7E1 100%);

    ul{
      padding-left: 0px;
      list-style-type: none;
    }

  }
}






/* /////About us Page\\\\\\ */

.about-pg{
  width: 100%;
  height: fit-content;
  background-image: url(images/count-bg.png);
  background-position: center;
  /* background-repeat: no-repeat; */


  h2{
    font-size: 64px;
  }

}

.abt-box{
  border: 1px solid #29A7E1;
  padding: 40px;
  border-radius: 20px;

  h2{
    font-size: 40px;
  }
}

.choose-bg{
  width: 100%;
  height: fit-content;
  background-image: url(images/service-bg.png);
  background-position: center;
  /* background-repeat: no-repeat; */


  h2{
    font-size: 40px;
  }

}

.cta-btn{
  display: flex;
  justify-content: center;
  align-items: center;

  a{
    width: 300px;
    border-radius: 50px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .bg-3:hover{
    background-color: #0861a5;
  }
  .bg-2:hover{
    background-color: #010042;
  }
}





/* //////////FAQ Page\\\\\\\\\\ */

.faq-text{
  left: 5%;
}
.faq-opt-box{
  border: 1px solid #0C8CEF;
  border-radius: 15px;
  overflow: hidden;
}
.faq-opt{
  i{
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  p{
    transition: 0.3s ease-in-out;
  }
}

.faq-opt:not(:last-child){
  border-bottom: 0.5px solid #BDBDBD;
}

.faq-opt:hover , .faq-opt .active , .faq-opt-box .active{
  background-color: #0C8CEF0D;

  p{
    color: #0C8CEF;
  }
  i{
    opacity: 1;
  }
}



.blue-section{

.accordion-button::after {
  display: none;
}

.faq-icon {
  font-size: 24px;
  margin-left: auto;
}
.accordion-button{
  box-shadow: 0px 0px 8px 0px #0000001A;
  border-radius: 15px;
}
.accordion-button.collapsed .icon-plus {
  display: inline;
}

.accordion-button.collapsed .icon-minus {
  display: none;
}

.accordion-button:not(.collapsed) .icon-plus {
  display: none;
}

.accordion-button:not(.collapsed) .icon-minus {
  display: inline;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
}
.accordion-item {
  background-color: #fff;
  border: none !important;
  }
  .accordion-button:not(.collapsed) {
      color: #0c63e4;
      background-color: #fff;
      /* box-shadow: none !important; */
  }

  /* .accordion{
      box-shadow: 0px 0px 15px 0px #00000033;
      border-radius: 20px;
  } */
  .accordion-body{
      /* border: 2px solid #54BA4F; */
      /* background-color: #54BA4F0D; */
      border-radius: 15px;
      padding: 1.5rem 2rem !important;
  }
  .accordion-body ul{
      padding-left: 1rem;
  }
  .accordion-button ,.accordion-button:not(.collapsed){
      color: #4A4A4A;
      font-family: Mulish-800;

  }

  .accordion-button:focus {
    z-index: 3;
    border-color: none;
    outline: 0;
    /* box-shadow: none; */
  }

  
}




/* //////////Contact Page\\\\\\\\\\ */

/* //// */
  .sub-btn {
    border-radius: 5px;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 50px;
  }

  .sub-btn:hover{
  background-color: #0861a5;
  }

  .form-area{
  background-image: url(images/con-bg.png);
  width: 100%;
  height: fit-content;
  background-position: center;
  /* background-repeat: no-repeat; */
  padding-bottom: 10rem;
  }

  .con-details{
    background-image: url(images/count-bg.png);
    width: 100%;
    height: fit-content;
    background-position: center;
  }

  .con-det{
    width: 100%;
    height: 220px;
    padding: 2rem 2rem;
    border: 1px solid #1C3973;
    border-radius: 10px;
    background-color: #fff;

    .img-div{
      width: 100%;
      height: 30%;
    }

    img{
      width: 120px;
      height: 120px;
      margin-top: -6rem;
    }
  }

  .con-det-row{
    margin-top: -3rem;
  }



/* ////Thank you -Sorry Page */

.thanks{
  width: 45%;
}

.thank-btn:hover{
  background-color: #0861a5;
}








































/* ====+++++++++++================++++++++++++++===============++++++++++++=========== */
/* ====+++++++++++================++++++++++++++===============++++++++++++=========== */

/* ************Media Query************** */

  /* Max widths */

  @media(max-width:1400px){
    .bus-opt {
      width: 360px;
      height: 420px;
      padding: 2rem;
    }
    .kick-box {
      width: 350px;
      height: 500px;

      p{
        font-size: 13px !important;
      }
    }
    .carousel-caption {
        h2 {
            font-size: 70px;
            margin-top: -16px;
        }
    }
  }

      @media(min-width: 1400px){
    }



  @media(max-width:1100px){
    .nav-link {
      color: #4E4D4B;
      font-size: 11px;
    }
    .logo{
      width: 80%;
    }
    .carousel-caption{
      h2{
        font-size: 58px;
        margin-top: 0px;
      }
      h3{
        font-size: 50px;
      }
    }
    .count-box {
      img {
          height: 80px;
      }
      h2 {
        font-size: 40px;
      }
    }
    .test-slider .card-wrapper {
      max-width: 82vw;
    }
    .test-box {
      width: 260px;
      height: 100%;
    }
    .test-box {
      & .star {
          i {
              font-size: 16px;
              color: #DAB858;
          }
      }
      .quote {
        width: 35px;
        height: 25px;
      }
      .client {
        width: 90px;
        height: 90px;
      }
    }
    .test-text{
      margin-top: 0.5rem !important;

      .fs-20 {
        font-size: 16px;
      }
    }
    .test-prev {
      left: 0%;
      top: 40%;
    }
    .test-next {
      right: 0%;
      top: 40%;
    }
    .info2{
      .fs-20 {
        font-size: 16px;
      }
      .fs-14 {
        font-size: 10px;
      }
    }
    .info1{
      .fs-20 {
        font-size: 16px;
      }
    }

    .contact-pg{
      .right {
        border-radius: 10px;
        box-shadow: 0px 0px 20px 0px #0000001A;
        width: 725px;
        margin-left: -85px;
        padding-left: 10rem;
        padding-top: 40px;
        padding-bottom: 40px;
      }
      .left {
        border-radius: 10px;
        height: 440px;
        width: 315px;
      }
    }



  }


  @media(max-width:1000px){
  .contact-pg{
    .left{
      margin-left: -100px;
    }
    .right{
      width: 690px;
      margin-left: -100px;
    }
  }
  .carousel-caption {
    .h3-2 {
        margin-top: 0px;
    }
  }
}


  @media(max-width:900px){
    .carousel-caption{
      max-width: 100%;
      .sec-head {
        font-size: 30px;
      }
    }
    .carousel-inner {
      height: 510px;
    }
    .test-slider .card-wrapper {
        max-width: 85vw;
    }
    .test-box {
      width: 90%;
      height: auto;

      h6{
        font-size: 12px;
      }
    }
    .test-box p i {
        font-size: 20px;
    }
    .test-prev {
      left: -4%;
      top: 40%;
    }
    .test-next {
        right: -4%;
        top: 40%;
    }
    .quote {
      height: 20px;
      width: 25px;
    }
    .nav-btn {
      background-color: var(--third);
      border-radius: 50px;
      margin-left: 0px;
      margin-bottom: 1rem;
    }
    .nav-link{
      margin-bottom: 1rem;
      width: fit-content;
    }
    .count-box {
      padding: 1rem;

      h2 {
          font-size: 30px;
      }
      img {
        height: 45px;
      }
      .fs-14 {
        font-size: 11px;
      }
    }

    .sec-head {
      font-size: 30px;
    }
    .foot-logo{
      width: 50%;
    }

    .contact-pg{
      .left {
      border-radius: 10px;
      height: 440px;
      width: 270px;
      padding: 35px;
      /* margin-left: -35px; */
      margin-left: -15px;
      left: -20%;
    }
    .right {
      border-radius: 10px;
      box-shadow: 0px 0px 20px 0px #0000001A;
      width: 570px;
      margin-left: -93px;
      padding-left: 8rem;
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }

  }


  @media(max-width:800px){

    .carousel-caption{
      h2{
        font-size: 50px;
        margin-top: 0px;
      }
      h3{
        font-size: 45px;
      }
    }
    .test-prev {
      left: -2%;
      top: 40%;
    }
    .test-next {
        right: -2%;
        top: 40%;
    }

    .content-box {
      padding: 2rem 1rem 2rem 1rem;

      .fs-14{
        font-size: 12px;
      }
    }
    .call-btn{
      .fs-20 {
        font-size: 15px;
      }
    }
    .contact-pg{
        .left {
        border-radius: 10px;
        height: 440px;
        width: 255px;
        padding: 35px;
        /* margin-left: -35px; */
        margin-left: -10px;
        left: -15%;
      }
    }


  }


  @media(max-width:576px){
    .carousel-caption {
      width: 90%;

        
    }

  
    .test-prev {
      left: 3%;
      top: 40%;
    }
    .test-next {
      right: 3%;
      top: 40%;
    }
    .count-box {
      img {
          height: 150px;
      }
      h2 {
        font-size: 55px;
      }
      .fs-14 {
        font-size: 24px;
      }
    }
    .count{
      .col-12{
        padding: 1.5rem;
      }
    }
    .info1 {
      .fs-20 {
          font-size: 30px;
      }
    }
    .info2 {
      .fs-20 {
          font-size: 20px;
      }
      .fs-14 {
        font-size: 17px;
      }
    }
    .test-box {
      width: 80%;
      height: auto;
    }
    .carousel-caption {
      top: 35%;

      .h3-2 {
          margin-top: 0px;
      }
      h2 {
        font-size: 42px;
      }
      h3 {
            font-size: 30px;
        }
      p{
        margin-bottom: 2rem;
      }
  }
  .carousel-inner {
    height: 600px;
  }

  .contact-pg{
    .left {
      border-radius: 10px;
      height: 400px;
      width: auto;
      padding: 35px;
      margin-right: 1.5rem ;
      margin-left: 1.5rem ;
      margin-bottom: -7rem;
      left: 0%;
    }
    .right {
      border-radius: 10px;
      box-shadow: 0px 0px 20px 0px #0000001A;
      width: auto;
      margin-left: 0px;
      padding-left: 0rem;
      padding-top: 40px;
      padding-bottom: 40px;
      padding-top: 10rem;
    }
      .con-bg {
        width: 100%;
        height: auto;
        object-fit: cover;
      }
  }
  .con-head {
    font-size: 30px;
    letter-spacing: 5px;
  }

  .top-left{
    .fs-12 {
      font-size: 10px;
        text-align: center;
    }
  }
  
  .nav-item{
      display:flex;
      justify-content:center;
  }

}

  @media(max-width:390px){
    .test-prev , .test-next{
        top: 45%;
    }
    .scroll-btn img {
      width: 40px;
      height: 40px;
    }
    .cta-btn{
      flex-direction: column;

      .bg-3{
        margin-bottom: 1rem;
        margin-right: 0px !important;
      }

    }


  }








    /* Min widths */

    


    @media (min-width: 992px) {
      .col-lg-cus {
        flex: 0 0 auto;
        width: 20%;
      }
      .px-sm-cus {
          padding-right: 2rem !important;
          padding-left: 2rem !important;
      }

      footer{
        .col-lg-2 {
            flex: 0 0 auto;
            width: 23%;
        }
      }

    }

    @media(min-width: 1150px){
      .px-sm-cus {
          padding-right: 4rem !important;
          padding-left: 4rem !important;
      }
    }






    @media (min-width: 576px) {
      /* .px-sm-cus {
          padding-right: 4rem !important;
          padding-left: 4rem !important;
      } */
    }