/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
*/
/* header start here */
/* body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
  color: #808285;

} */
@import "stylenew.css"; /* Using a string */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  width: 100vw !important;
  overflow-x: hidden;
}
body {
  padding-top: 70px;
  width: 100%;
  overflow-x: hidden;
}
/* desktop nav */
.hero {
  display: flex;
  width: 100vw;
  padding: 8px;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  padding-right: 20px;
}
.sub-hero {
  display: flex;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}
.hero-logo {
  width: 192.985px;
  height: 64px;
  flex-shrink: 0;
}

.hero-links {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav_links {
  display: flex;
  list-style-type: none;
}
.desk_link {
  text-decoration: none;
  display: flex;
  padding: 14px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Grey-900, #121212);
  text-align: center;
  font-feature-settings: "cv05" on;
  border-radius: 40px;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.desk_link:hover {
  border: 1px solid hsla(191, 100%, 45%, 1);
}

.active {
  border-radius: 40px;
  background: #e5f8fc;
  color: hsla(191, 100%, 45%, 1);
}
.navButton {
  display: flex;
  padding: 14px 24px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 40px;
  background: #00b9e3;
  border-color: transparent;
  color: #fff;
  text-align: center;
  font-feature-settings: "cv05" on;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}
/* services desktop  */
.show_desktop_servcies {
  position: fixed;
  top: 80px;
  width: 100%;
  left: 0px;
  display: none;
  border-radius: 40px;
  z-index: 998;
}
.services_desktop_container {
  display: flex;
  width: 100%;
  padding-inline: 40px;
  align-items: flex-start;
  gap: 24px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.08);
  padding-block: 30px;
}

/* mobile nav */
.mobile_view_nav {
  display: none;
}

.mobile-view {
  display: none;
}

#hidden-box {
  position: fixed;
  top: 70px;
  left: 0px;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.425);
  z-index: 999;
}
.menu_container {
  width: 100vw;
  display: flex;
  justify-content: flex-end;
  height: 100vh;
}

#menu {
  display: flex;
  width: 188px;
  padding: 16px;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  border-radius: 0px 0px 0px 24px;
  background: #fff;
  overflow-y: auto;
  height: 80%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#menu::-webkit-scrollbar {
  display: none;
}
.mob_link {
  text-decoration: none;
  display: flex;
  padding: 14px 16px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  color: var(--Grey-900, #121212);
  text-align: center;
  font-feature-settings: "cv05" on;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}
.mob_link:hover {
  background: #e5f8fc;
  color: #00b9e3;
}
.nav_links_mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#hidden-box {
  display: none;
}

/* header  ends here */

.servcies_mob_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 2px solid #00b9e3;
}
.servcies_mob_link {
  text-decoration: none;
  text-align: right;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: var(--Grey-900, #121212);
  width: 100%;
  display: inline-block;
  padding: 12px 8px 12px 8px;
}
.servcies_mob_link:hover {
  color: #00b9e3;
}

.show_mobile_servcies {
  display: none;
}
.services_desktop_container {
  display: block;
}

/* servcies desktop ui  */
/*enable if 4 menu present*/
/* .services_dopdown_menu_container {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  border: none;
  flex-wrap: wrap;
  width: 100%;
} */
.services_dopdown_menu_container {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    flex-direction: row;
    border: none;
    flex-wrap: wrap;
    width: 100%;
}
.services_dopdown_menu_container li {
  flex-basis: 30%;
  margin-bottom: 24px;
  list-style-type: none;
  margin-right: 20px;
}
.services_dopdown_menu_container li a {
  text-decoration: none;
}
.service_tabs {
  display: flex;
  padding: 16px;
  gap: 16px;
  border-radius: 24px;
  align-items: flex-start;
  white-space: wrap;
  border: 2px solid #f7f7f7;
  height: 135px;
}
.service_tabs:hover {
  border: 2px solid #eeeeee;
}
.noun_brain {
  padding: 12px;
  border-radius: 12px;
  background-color: #e5f8fc;
}
.noun_child {
  background-color: #fff5f2;
}
.noun_four {
  padding: 12px 17px;
  color: #ff7e9a;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  background-color: #fff2f5;
}
.noun_speaking {
  background-color: #f0fde7;
}
.service_tabs_header {
  margin: 10px 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #121212;
}
.service_tabs_details {
  margin-bottom: 0;
  color: #545454;
  font-size: 12px;
  line-height: 16px;
}

/* media queries */
@media screen and (max-width: 1180px) {
  .custom-logo {
    height: 48px;
  }
  /* .hero {
    display: none;
  } */
  .hero {
    /* display: flex;
    width: 100%;
    padding: 8px;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7); */
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(0px);
    z-index: 999;
    /* position: sticky;
    top: 0px;
    left: 0px; */
  }
  .hero-logo {
    height: 48px;
    width: auto;
  }
  .hero-links {
    display: none;
  }
  .navButton {
    display: none;
  }
  .mobile-view {
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 44px; */
    height: 70px;
    padding: 8px;
  }
  .mobile_view_nav {
    display: block;
  }
  .mobile-view-logo {
    width: 50%;
  }
  .mobile-view-icon {
    width: 50%;
    text-align: right;
    cursor: pointer;
  }

  #cross {
    display: none;
  }
  .services_desktop_container {
    display: none;
  }
}

.about_us_menu {
  position: fixed;
  top: 80px;
  width: 100%;
  left: 0px;
  display: none;
  border-radius: 40px;
  z-index: 998;
}
.show_mobile_about{
  display: none;
}

@media (min-width: 1100px) and (max-width: 1299px) {
  .service_tabs {
    height: 162px !important;
}
}
