*{
    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{
    text-align: center;
    font-family: Pop-500;
  }
  .pop-600{
    font-family: Pop-600;
  }
  .pop-700{
    font-family: Pop-700;
  }
  .amr-font{
    font-family: Amarante;
  }
.pop-aav{
  text-align: left !important;
}






/* 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;
}
.lt-blue{
    background-color: #0C8CEF1A;
}
.fs-5{
  color: #fff;
}
.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;
}
.text-green{
    color: #8AA03E;
}
.obj-cover{
    object-fit: cover;
}
.br-10{
    border-radius: 10px;
}
.br-gray{
    border-right: 0.5px solid #959595
}
.br-wh{
    border-right: 0.5px solid #ffffff
}
.bg-green{
    background-color: #8AA03E;
}
.show-all{
  width: 160px;
  padding-top: 0.8rem ;
  padding-bottom: 0.8rem ;
}
.bg-blue{
  background-color: #0C8CEF;
}
.text-blue{
  color: #0C8CEF;
}
.shad{
  box-shadow: 0px 0px 10px 0px #0000001A;
}
.text-gray{
  color: #1E1E1E;
}
.text-lt-gray{
  color: #6F7171;
}
.sec-head{
  font-size: 36px;
}
.br-20{
  border-radius: 20px;
}
.br-wh{
  border-right: 0.5px solid #fff;
}
.br-lt{
  border-right: 0.5px solid #BDBDBD;
}

.cmn-btn{
  width: 200px;
  font-size: 14px;
  border-radius: 5px;
  display: block;
  text-align: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.cmn-btn:hover{
  background-color: #0861a5;
}

.mt-8{
  margin-top: 8rem;
}


/* ================================================================= */

/* *******Navbar********* */

#nav {
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 999;
    width: 100%;
}
.nav-link{
  color: #4E4D4B;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}
.nav-item .active-tab , .nav-item .active{
  color: #0C8CEF !important;
  border-bottom: 2px solid #0C8CEF;
}
.navbar-brand{
    max-width: 160px;
}
.logo{
    /*width:70%;*/
    width:40%;
}

.dropdown-toggle::after {

  color: #0C8CEF;
}

.nav-link:hover{
  color: #0C8CEF;
  
}
.nav-btn:hover{
  color: #0C8CEF;

}

.dropdown-menu{
  max-height: 70vh;
  overflow-y: scroll;
}
.dropdown-menu::-webkit-scrollbar {
  display: none;
}


.mega-drop{
  width: 75%;
  left: 50% !important; /* changed this for onclick effect*/
  transform: translateX(-50%);
}
.br-rt{
  border-right: 1px solid #ddd;
}

.list-group ul li{
  padding-bottom: 0.8rem;
  /* border-bottom: 2px solid #ddd; */
  list-style-type: circle;
}

.drop-header:focus, .drop-header:hover {
    background-color: #ffffff00 !important;
  }
  .nav-link2:hover, .nav-link2:focus{
    color: #68B95F;
    background-color: #ffffff00 !important;
}








/* ********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;
}

@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;
}














/* *********Hero********* */

.carousel-item img{
  /*height: 560px;*/
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}
.carousel-item {
  border-radius: 20px;
  overflow: hidden;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 0;
    left: 0%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: start;
    height: 100%;
    width: 80%;
    background: linear-gradient(270deg, rgba(229, 244, 255, 0) -1.17%, #E5F4FF 65.85%);
}

.carousel-control-prev {
    left: 82%;
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 80%;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;

}

.carousel-control-next{
  right: 7%;
}


.carousel-caption {
  padding-left: 5rem;
  display: flex;
  align-items: center;


  .head1{
    font-size: 64px;
  }
  .head2{
    font-size: 75px;
  }

  .btn{
    width: 300px;

  }
}


.carousel-control-next-icon {
    background-image: url(images/next2.png) !important;
    width: 50px;
    height: 50px;
}
.carousel-control-prev-icon {
    background-image: url(images/prev2.png) !important;
    width: 50px;
    height: 50px;
}

.carousel-control-next, .carousel-control-prev{
  opacity: 0.8 !important;
}

.carousel-control-next:hover{
  opacity: 1 !important;
  z-index: 99;
}

.carousel-control-prev:hover{
  opacity: 1 !important;
  z-index: 99;
}



.service-box{
  border-radius: 10px;

  .col-lg-cus{
    text-wrap-mode: wrap;
    
    h4{
      text-wrap-mode: wrap;
    }
    .ser{
      max-width: 50px;
      max-height: 50px;
    }
  }
}


.foot-logo{
    width:125px;
}






/* ********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;
  }
}










/* 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 */
.test-slider .card-wrapper{
  max-width: 80vw;
}

.test-box{
  width: 330px;
  height: 280px;
  border-radius: 20px;
  object-fit: cover;
  background-color: #fff;
  word-wrap: wrap;
  text-wrap-mode: wrap;
}

.quote{
  height: 30px;
  width: 37px;
  /* object-fit: cover; */
}

.test-box p i{
  font-size: 30px;
}
.test-prev {
    left: 4%;
    top: 40%;
}
.test-next {
    right: 5%;
    top: 40%;
}




/* contact section */

.con-form .form-control{
  border: 0.5px solid #0C8CEF80;
}
.con-form .form-control::placeholder{
  color: #6F7171;
  font-family: Pop-300;
  font-size: 14px;

}




/* *****cta section***** */

.cta-search{
  width: 500px;
  border: 1px solid #1E1E1E;
  border-radius: 5px;
}
.cta-search::placeholder{
  color: #8B8B8B;
  font-family: Pop-300;
  font-size: 14px;

}





/* /////////////Form a business Page\\\\\\\\\\\\\\\\\ */

.bus-hero{
  width: 100%;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  /* background-image: url(images/bus-hero.png); */
  background-position: center;
  background-repeat: no-repeat;
  /* background-f */

  img{
    width: 100%;
    height: 560px;
    border-radius: 20px;
    object-fit: cover;
  }
}

.bus-text{
    position: absolute;
    z-index: 10;
    top: 0%;
    left: 8%;
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;


  h1{
    font-size: 64px;
  }
  h6{
    line-height: 22px;
  }
}


.bus-opt-sec{
  background-color: #0C8CEF80;
}
.bus-opt{
  width: 400px;
  height: 450px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 0px #0000001A;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.bus-opt{
    .first{
      border-bottom: 0.5px solid #BDBDBD;
    }
  .first svg{
    width: auto;
    height: 100px;
  }
  .first svg .cls-1{
    fill: #0C8CEF;
  }
  a{
    border: 0.5px solid #bbb !important;
    border-radius: 5px;
  }
}

.first h4 , .second h5{
  font-size: 24px;
}

.first , .second , .bus-opt a{
    position: relative;
    z-index: 99;
}
.view i{
  color: #0C8CEF;
  rotate: 40deg;
}
.hov{
  /* background-color: #0C8CEF; */
  background-color: #035b9fe6;
  position: absolute;
  z-index: 90;
  width: 25%;
  height: 100%;
  top: 0;
  opacity: 0;
  transform: scaleX(0);
  transition: 0.5s ease-in-out;

}

  .bus-opt:hover{
      .hov{
          opacity: 1;
          transform: scale(1);
      }
      /* .first svg .cls-1{
          fill: #fff;
      } */
      .second {
          h5 , p {
              color: #fff !important;
            }
          }
      .view p , .view i{
        color: #fff !important;
      }
  }


  .hov1{
      left: 0%;
  }
  .hov2{
      left: 25%;
  }
  .hov3{
      left: 50%;
  }
  .hov4{
      left: 75%;
  }



/* *******busineess inner pages******* */

/* ////////opc Registration\\\\\\\\\\ */

.content-box{
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
  padding:2rem 2rem 2rem 2rem ;
}
.call-btn{
  border-radius: 15px;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.call-btn:hover{
  background-color: #0861a5;
}

.cmn-p{
  padding: 2rem 2.5rem 2rem 2.5rem;
}

.cmn-24{
  font-size: 24px;
}


.fixed-box {
  position: sticky;
  top: 10%; /* Adjust as needed */
  z-index: 10;
  transition: top 0.3s ease, transform 0.3s ease;
  will-change: transform;
}

.editor-content{
  h2,h3,h4{
    font-size: 24px;
    color: #0C8CEF;
    font-family: Pop-400;
    margin-bottom: 1.5rem;
  }
  p{
    font-size: 14px;
    color: #6F7171;
    font-family: Pop-300;
    text-align: justify;
    margin-bottom: 1.5rem;
  }
  ul , ol{
    padding-left: 1.5rem ;
    color: #6F7171;
    
    li{
      color: #6F7171;
      font-size: 14px;
      font-family: Pop-300;
    }
  }
  

}






/* /////About us Page\\\\\\ */

.hero-over{
  position: absolute;
    z-index: 5;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    background: linear-gradient(270deg, rgba(242, 242, 242, 0) -1.17%, #F2F2F2 58.06%);

}

.abt-tax-h6{
  line-height: 20px;
}

.kick-p{
  padding-right: 8rem ;
  padding-left: 8rem ;
}


.kick-box{
  width: 400px;
  height: 500px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 0px #0000001A;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;

  .first img{
    max-width: 110px;
    max-height: 100px;
  }
}

.kick-box{
    .first{
      border-bottom: 0.5px solid #BDBDBD;
    }
  
}

.first h4 , .second h5{
  font-size: 24px;
}

.first , .second {
    position: relative;
    z-index: 99;
}

.hov{
  /* background-color: #0C8CEF; */
  background-color: #035b9fe6;
  position: absolute;
  z-index: 90;
  width: 25%;
  height: 100%;
  top: 0;
  opacity: 0;
  transform: scaleX(0);
  transition: 0.5s ease-in-out;

}

  .kick-box:hover{
      .hov{
          opacity: 1;
          transform: scale(1);
      }
      .second {
          h5 , p {
              color: #fff !important;
            }
          }
      .view p , .view i{
        color: #fff !important;
      }
  }


  .hov1{
      left: 0%;
  }
  .hov2{
      left: 25%;
  }
  .hov3{
      left: 50%;
  }
  .hov4{
      left: 75%;
  }


.thoughts{
  padding: 2rem;
  /* padding-bottom: 2rem; */
}

.choose-box{
   h3{
    font-size: 20px;
   }
   p{
    font-size: 14px;
   }
   img{
    width: 125px;
    height: 125px;
   }
}

.choose-1st , .choose-4th{
  margin-left: -9rem;
}
.choose-2nd , .choose-3rd{
  margin-left: -7rem;
}

.why-box{
  height: 630px;
}



/* //////////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\\\\\\\\\\ */

.cmn-p2 {
  padding: 3rem 2.5rem 3rem 2.5rem;
}
.con-box{

  h1{
    font-size: 60px;
  }

  p{
    line-height: 24px;
  }
  
  a{
    border-radius: 15px;
    width: 380px;
    height: 70px;

    i{
      font-size: 24px;
    }
  }

  a:hover ,.btn:focus-visible , a:focus-visible ,.a:checked+a, a.active, a.show, a:first-child:active, :not(.a)+a:active{
    background-color: #087bd3 !important;
  }
}

.s-btn{
  padding-right: 4.5rem ;
  padding-left: 4.5rem ;
  padding-top: .7rem ;
  padding-bottom: .7rem ;
}
.s-btn:hover{
  background-color: #0861a5;
}

.contact-form .form-control{
  border: 0.5px solid #0C8CEF80;
}

.contact-form .form-control::placeholder{
  font-size: 14px;
  font-family: Pop-300;
  color: #6F7171;
}





/* ////Thank you -Sorry Page */

.thanks{
  width: 45%;
}

.thank-btn:hover{
  background-color: #0861a5;
}




/* blog list page */

.blog-list{
  width: 400px;
  height: 470px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 0px #0000001A;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;


  .top-div{

    img{
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    h3{
      font-size: 20px;
    }
  }

  a{
    border: 0.5px solid #bbb !important;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
  }

  a:hover{
    box-shadow: 0px 0px 10px 1px #0000003d;
  }
}



/* Blog Details Page */

.blog-content{
  padding: 2rem;
}
































/* ====+++++++++++================++++++++++++++===============++++++++++++=========== */
/* ====+++++++++++================++++++++++++++===============++++++++++++=========== */

/* ************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;
      }
    }
  }

  @media(max-width:1100px){
    .nav-link {
      color: #4E4D4B;
      font-size: 11px;
    }
    .logo{
      /*width: 80%;*/
      width: 55%;
    }
    .owner-about {
      width: 340px;
    }
    .test-slider .card-wrapper {
      max-width: 82vw;
    }
    .test-box {
      width: 260px;
      height: 280px;
    }
    .test-prev {
    left: 3%;
    top: 40%;
    }
    .test-next {
        right: 3%;
        top: 40%;
    }
    .bus-opt {
      width: 300px;
      height: 420px;
      padding: 2rem;
    }
    .first h4, .second h5 {
      font-size: 20px;
    }
    .second p{
      font-size: 12px !important;
    }
    .why-box{
      height: auto;
    }
    .kick-p {
        padding-right: 3rem;
        padding-left: 3rem;
    }
    .kick-box {
        width: 300px;
        height: 475px;
    }
    .kick-box {
      .first img {
          max-width: 75px;
          max-height: 75px;
      }
    }

    .blog-list {
        width: 300px;
        height: 470px;
        padding: 1.5rem;
    }
  }



  @media(max-width:900px){
    .carousel-caption{
      .sec-head {
        font-size: 30px;
      }
      .head1 {
        font-size: 50px;
      }
      .head2 {
        font-size: 55px;
      }
    }
    .carousel-control-prev {
      left: 75%;
    }
    .owner-about {
        width: 240px;

        h4 {
        font-size: 20px;
        background-color: #fff;
      }
    }
    .test-slider .card-wrapper {
        max-width: 85vw;
    }
    .test-box {
      width: 210px;
      height: 280px;

      h6{
        font-size: 12px;
      }
    }
    .test-box p i {
        font-size: 20px;
    }
    .test-prev {
    left: 1%;
    top: 40%;
    }
    .test-next {
        right: 1%;
        top: 40%;
    }
    .quote {
      height: 20px;
      width: 25px;
    }
    .bus-opt {
      width: 325px;
      height: 400px;
      padding: 2rem;
    }
    .kick-box {
        width: 335px;
        height: 475px;

      .first h4, .second h5 {
        font-size: 22px;
      }
      .second p {
        font-size: 13px !important;
      }
    }

    .con-box {
      h1 {
          font-size: 45px;
      }
      h6{
        font-size: 14px;
      }
      a{
        width: 100%;

        .fs-20{
          font-size: 15px;
        }
        .fs-15 {
          font-size: 12px;
        }
      }
    }

    .faq-text {
      h1 {
          font-size: 60px;
      }
    }

    .blog-list {
      width: 325px;
      height: 470px;
      padding: 1.5rem;
    }
    .mt-8 {
        margin-top: 10rem;
    }
  }


  @media(max-width:800px){
    .test-box {
      width: 200px;
      height: 280px;
    }
    .content-box {
      padding: 2rem 1rem 2rem 1rem;

      .fs-14{
        font-size: 12px;
      }
    }
    .call-btn{
      .fs-20 {
        font-size: 15px;
      }
    }
  }


  @media(max-width:576px){
    .carousel-caption {
      padding-left: 1rem;
      width: 90%;

        .sec-head {
          font-size: 20px;
        }
        .head1 {
            font-size: 35px;
        }
        .head2 {
            font-size: 40px;
        }
    }

    .carousel-control-prev {
        left: 65%;
    }
    .owner-about {
        /* width: 300px; */
        width: auto;
    }
    .test-box {
      width: 260px;
      height: 280px;
    }
    .test-prev {
      left: 3%;
      top: 40%;
    }
    .test-next {
      right: 3%;
      top: 40%;
    }
    .cta-search {
      width: 350px;
      height: 45px;
    }
    .bus-text {
      position: absolute;
      z-index: 10;
      top: 0%;
      left: 5%;
      height: 100%;
      width: 90%;
    }
    .bus-text {
      h1 {
          font-size: 40px;
      }
      h6{
        font-size: 14px;
        line-height: 20px;
      }
    }
    .bus-opt {
        width: 360px;
        height: 420px;
        padding: 2rem;
    }
    .second p {
        font-size: 14px !important;
    }
    .doc-check{
      flex-direction: column;
    }
    .choose-box {
      img {
          width: 85px;
          height: 85px;
      }
    }
    .choose-1st , .choose-4th{
      margin-left: 0rem;
    }
    .choose-2nd , .choose-3rd{
      margin-left: 0rem;
    }
    .con-box {
      & a {
          .fs-20 {
            font-size: 16px;
          }
          .fs-15 {
            font-size: 13px;
          }
      }
      h1 {
        font-size: 40px;
      }
    }

    .cmn-p2 {
      padding: 3rem 1rem 3rem 1rem;
    }
    .kick-p {
      padding-right: 0.5rem;
      padding-left: 0.5rem;
    }
    .cmn-24 {
      font-size: 20px;
    }

    .blog-list {
        width: 350px;
        height: 470px;
        padding: 1.5rem;
    }

    .dropdown-menu {
      max-height: 35vh !important;
      overflow-y: scroll;
    }
    .navbar .dropdown.position-static .dropdown-menu {
      left: 50%;
      transform: none !important;
    }
    
    .mt-8 {
        margin-top: 12rem;
    }


}

  @media(max-width:390px){
    .carousel-control-prev {
      left: 60%;
    }
    .owner-about {
      /* width: 240px; */
    }
    .test-box {
      width: 225px;
      height: 260px;
    }
  }








    /* 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;
      }
    }

    @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;
      } */
    }