@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');



body {
  /* font-family: 'Montserrat', sans-serif !important; */
  font-family: 'DM Sans', sans-serif !important;

}
.col-md-6 {
    flex: 0 0 auto;
    width: 49%;
    display: inline-block;
}
.bg-nav {
  background: #fff;
}


.logo-img {
  height: 195px !important;
  padding: 40px 0;
}

.mob-show{
  display: none;
}

@media (max-width: 980px) {
  .logo-img {
    height: 120px !important;
    padding: 0px 0 60px;
  }

  .mob-display {
    display: none;
  }
  
  .mob-display-head {
    display: none;
  }


  .mob-show{
    display: block;
  }
}

.cust-btn {
  align-items: center;
  border-style: solid;
  border-width: 1px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: .02em;
  padding: 8px 35px !important;
  position: relative;
  transition: background-color .2s, color .2s;
  background: #2F91C1 !important;
  color: #fff !important;
  border-radius: 25px !important;
}

.cust-btn:hover {
  /* background: ; */
  /* border: 1px solid #fff; */
}


.banner-para {
  width: 60%;
  font-size: 20px;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .banner-para {
    width: 100%;
    font-size: 20px;
    line-height: 1.4;
  }
}



/* navbar22222222222222222 */


.nav-container {
  /* max-width: 1200px; */
  width: 98%;
  margin: auto;
  padding: 4% 0;
}



/* ............/navbar/............ *
      
      /* desktop mode............/// */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  /* box-shadow: 0px 5px 10px 0px #aaa; */
  /* position: fixed; */
  width: 100%;


  /* color: #000; */
  /* opacity: 0.85; */
  /* height: 50px; */
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-right: 60px;
}

.menu-items li {
  list-style: none;
  margin-left: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.menu-items a {
  color: #05456F;
  font-size: 16px;
  font-weight: 600;

  transition: color 0.3s ease-in-out;
  text-decoration: none;
}

.menu-items a:hover {
  color: #000;
  transition: color 0.3s ease-in-out;
}

.logo {
  order: 1;
  /* font-size: 2.3rem; */
  /* margin-top: 0.5rem; */
  /* height: 50px; */
}


@media(max-width: 1180px) and (min-width: 760px) {
  .menu-items {
    order: 2;
    display: flex;
    align-items: center;
    margin-top: -45px !important;
  }
}


/* ......../ media query /.......... */

@media (max-width: 1180px) {


  .navbar {
    /* opacity: 0.95; */
  }

  .navbar {
    /* box-shadow: 0px 5px 10px 0px #aaa; */
    /* position: fixed; */
    width: 100%;


    /* color: #000; */
    /* opacity: 0.85; */
    /* height: 50px; */
    z-index: 12;
  }

  .menu-items {
    order: 2;
    display: flex;
    align-items: center;
    margin-top: -27px;
  }



  .nav-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 4.5% 3%;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    right: 20px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #000;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 150px;
    background: #fff;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -70px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    /* box-shadow: 5px 0px 10px 0px #aaa; */
    position: relative;
    z-index: 200;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 0px;
    /* left: 15px; */
    /* font-size: 2rem; */
    z-index: 500;
    height: 65px;
  }

  .navbar-container input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-35deg);
  }
}



/* Nabvar dropdowm ********************/

.dropdown-menu.show {
  background: #fff !important;

}

.dropdown-item {
  display: block;
  width: 100%;
  /* padding: 0.25rem 1rem; */
  /* padding: 0; */
  clear: both;
  /* font-weight: 400; */
  color: white;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-size: 14px;

}

.dropdown-menu a:hover {
  background: #fff !important;

}

.dropdown-menu {
  padding: 0.5rem 0.9rem 0.5rem 0 !important;
}

.dropdown-menu[data-bs-popper] {

  left: -20px !important;
  margin-top: 1.6rem !important;
}

@media (max-width: 768px) {
  .dropdown-menu[data-bs-popper] {

    left: 0;
    margin-top: 0.125rem;
  }

  .dropdown-menu[data-bs-popper] {

    left: 0px !important;
    margin-top: 0 !important;
  }


  .dropdown-menu {
    padding: 0.5rem 0.4rem 0.5rem 0 !important;
  }

  .dropdown-menu a {
    margin-left: 0;
    color: #000;
    margin: 8px;
    font-size: 12px;
    font-weight: 400px;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
  }

  .dropdown-menu a:hover {
    background: white;
  }

  .navbar .menu-items .dropdown-menu li {
    margin-bottom: 0rem;
    font-size: 1.3rem;
    font-weight: 500;
  }


}


.dropdown-menu a {
  margin-left: 0;
}

/* ///////////////// */


/* Top Shape */


.custom-shape-divider-bottom-1696855363 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 9;
}

.custom-shape-divider-bottom-1696855363 svg {
  position: relative;
  display: block;
  width: calc(119% + 1.3px);
  height: 75px;
}

.custom-shape-divider-bottom-1696855363 .shape-fill {
  fill: #FFFFFF;
}


/* ///////////////////////////////////////////////// */



/* Bottom shape */


.custom-shape-divider-bottom-1696926410 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1696926410 svg {
  position: relative;
  display: block;
  width: calc(117% + 1.3px);
  height: 150px;
}

.custom-shape-divider-bottom-1696926410 .shape-fill {
  fill: whitesmoke;
}


/* /////////////////////////////////////////////////////// */


/* ///////////////Homepage//////////////// */


.banner .container {
  padding-top: 18%;
}

.help-para-line {
  border-right: 1px solid gray;
}

#cta .button {
  display: flex;
  align-items: center;
}

#cta .number {
  margin-left: 20px
}

@media (max-width: 980px) {

  .banner .container {
    padding-top: 28%;
  }

  .help-para-line {
    border: none;
  }


  #cta .number {
    margin-left: 0px;
    padding-top: 20px;

  }



  #cta .button {
    display: block;
    text-align: center;
  }


}


.banner::after {
  content: '';
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;


  /* background: rgba(0, 0, 0, 0.100); */

  z-index: 5;
  padding-left: 30px;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.special-card {
  padding: 20px;
  margin: 10px;
  border-radius: 0px;
  background-color: #efede1;
  cursor: pointer;
  transition: .3s ease-in;
}

.special-card p{
  color: gray !important;
}

.special-card:hover{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}




.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  
}


.form-control{
  width: 95%;
  
  }
  .dropdown-menu li:hover .sub-menu {
 visibility: visible;
}

.dropdown:hover .dropdown-menu {
 display: block;
 display: block;
    width: max-content;
}

.navbar-right .dropdown-menu {
 right:none !important; 
}

.fa-square-whatsapp:before, .fa-whatsapp-square:before {
  content: "\f40c";
  font-size: 55px;
  color: #42C152;
  padding: 20px;
}


/* //////////////////////////////////////////// */