@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600&display=swap');

body {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 18px;
}

.bg-nav {
    background: white;
}
.abc-botton{
background: #1b98e0;
 color: white;
}


.logo-img {
  padding: 5px 10px 0;
  height: 110px !important;
}

@media (max-width: 980px) {
  .logo-img {
      padding: 5px 10px 0;
      height: 60px !important;
  }
}

@media (max-width: 980px) {
  .mob-display {
      display: none;
  }
}


/* navbar22222222222222222 */


.nav-container {
  /* max-width: 1200px; */
  width: 96%;
  margin: auto;
  padding: 3% 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%;
  background: #fff;
  /* 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;
}

.menu-items li {
  list-style: none;
  margin-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.menu-items a {
  color: #000247;
  margin: 8px;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}

.menu-items a:hover {
  color: #1b98e0;
  transition: color 0.3s ease-in-out;
}

.logo {
  order: 1;
  /* font-size: 2.3rem; */
  margin-bottom: 0.5rem;
  /* height: 100px; */
}


@media(max-width: 1180px) and (min-width: 760px) {
  .menu-items {
    order: 2;
    display: flex;
    align-items: center;
    margin-top: -45px!important;
  }
  .touchy-logo-wrapper{
    display: none!important;

  }
}


/* ......../ media query /.......... */

@media (max-width: 1180px) {
  .navbar {
    /* opacity: 0.95; */
  }

  .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: #333;
  }

  .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: 100px;
    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: 98%;
  /* 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: 0;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .dropdown-menu[data-bs-popper] {
  
    left: 0;
    margin-top: 0.125rem;
  }
  .cust-btn{
    font-size:13px!important;
  }
  .nav-container{
display: none;
  }


  .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;
}




/* Button***************** */

.cust-btn {
  /* background: -webkit-linear-gradient(0deg, #F2B145, #F0B95E 50%); */
  background: #fff;
  /* background-image: linear-gradient(to bottom, #11cdd4, #11999e); */
  -webkit-border-radius: 8;
  -moz-border-radius: 8;
  border-radius: 0px;
  font-family: 'Montserrat', sans-serif;
  color: #1b98e0;
  font-size: 18px;
  padding: 12px 36px;
  text-decoration: none;
  outline: none;
  transition: 0.5s ease;
  border-radius: 12px;
}

.cust-btn:hover{
  background: #1b98e0;
  color: white;
}





/* #accredation */

.main-container {
  margin: 0;
  padding: 0;

  background: #f3f5f7;;
  color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;

}

.main-container .container {
  margin: 0 auto;
  padding: 0 4rem;
  /* width: 48rem; */
}



.cust-accordion a {
  text-decoration: none;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem;
  color: #000247;
  font-size: 1.15rem;
  font-weight: 600;

}



.cust-accordion a:hover,
.cust-accordion a:hover::after {
  cursor: pointer;
  color: #000;
}

.cust-accordion a:hover::after {
  border: none;
}

.cust-accordion a.active {
  color: #000;
  border-bottom: none
}

.cust-accordion a::after {
  font-family: 'Ionicons';
  content: '\f218';
  position: absolute;
  float: right;
  right: 1rem;
  font-size: 1rem;
  color: #000;
  padding: 2px;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #000;
  text-align: center;
  box-sizing: border-box;
  margin-left: 5px;
}

.cust-accordion a.active::after {
  font-family: 'Ionicons';
  content: '\f209';
  color: #000;
  border: none;
}

.cust-accordion .content {
  display: none;
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
}

.cust-accordion .content p {
  font-size: 1rem;
  font-weight: 300;
}

.cust-accordion-item{
  border-bottom: 1px solid #000; 
  margin-bottom: 15px;
}



@media(max-width: 991px) {


  .cust-accordion a {
      text-decoration: none;
      position: unset;
      display: -webkit-box;
      display: -webkit-flex;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      flex-direction: column;
      width: 100%;
      padding: 1.5rem;
      color: #7288a2;
      font-size: 1.15rem;
      font-weight: 400;
      border-bottom: none;
  }

  .cust-accrodian-item{
   
  }
 

  .main-container .container {
      margin: 0 auto;
      padding: 2rem;
      width: 48rem;
  }
}

.dropdown-menu li:hover .sub-menu {
 visibility: visible;
}

.dropdown:hover .dropdown-menu {
 display: block;
}

.navbar-right .dropdown-menu {
 right:none !important; 
}
@media(max-width: 2500px) and (min-width: 760px) {

  .touchy-logo-wrapper{
    display: none!important;

  }
}
@media (min-width: 768px){
.col-md-6 {
    width: 49%!important;
    display: inline-blockl!important;
}
}

/***** yasi *****/