/* ------ large devices (Laptops, 1200 and up) -----*/
@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

/* ------ Medium and large devices (Laptops, 1199.98px and 992px) -----*/
@media (min-width: 992px) and (max-width: 1199.98px) {
  html {
    font-size: 55%;
  }
}

/* ------ Medium devices (tablets, 991px and down) -----*/
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  br {
    display: none;
  }

  .cols_gap_24 {
    gap: 2.4rem 0;
  }

  /* =========== Mobile Menu =========== */
  .mobile_menu {
    position: fixed;
    width: 100vw;
    left: 10%;
    top: 8rem;
    height: calc(100vh - 8rem);
    background: #fff;
    transition: 0.25s ease;
    opacity: 0;
    pointer-events: none;
    padding-top: 3rem;
    border-top: 0.1rem solid rgb(0, 0, 0, 0.1);
  }

  .toggled_menu .mobile_menu {
    pointer-events: all;
    opacity: 1;
    left: 0;
  }

  .mobile_menu > .mobile_menu_btn {
    position: fixed;
    bottom: 0;
    padding: 2.4rem 1.5rem;
    width: 100%;
  }

  .primary_menu {
    flex-direction: column;
    align-items: flex-start;
    max-height: 45rem;
    overflow-y: auto;
    gap: 0;
  }

  .menu_dropdown {
    position: relative;
    display: none;
    opacity: 1;
  }

  .link_menu .menu_dropdown {
    display: none;
    width: 100%;
    padding: 0 1.5rem;
    transform: translateX(0);
  }

  .link_menu .menu_dropdown a {
    height: 4.8rem;
    align-items: center;
    display: flex;
  }

  .link_menu.active .menu_dropdown {
    display: grid;
  }

  .link_menu.active .main_menu .icon_24 {
    transform: rotate(0deg);
  }

  .main_menu:hover .icon_24 {
    transform: rotate(-180deg);
  }

  .main_menu {
    width: 100%;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 5.2rem;
    align-items: center;
    border-bottom: 0.1rem solid rgb(0, 0, 0, 0.1);
    border-radius: 0;
  }

  .main_menu:hover {
    background: #fbfbfb;
  }

  .main_menu:last-child {
    border: none;
  }

  .link_menu {
    width: 100%;
    padding-right: 1.5rem;
  }

  .menu_icon {
    display: block;
  }

  .menu_cross_icon {
    display: none;
  }

  .hamburger.active .menu_cross_icon {
    display: block;
  }

  .hamburger.active .menu_icon {
    display: none;
  }

  .mobile_menu_top {
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .hamburger img {
    filter: brightness(0) saturate(100%) invert(6%) sepia(11%) saturate(0%)
      hue-rotate(165deg) brightness(92%) contrast(82%);
  }

  .mobile_menu_btn a {
    width: 100%;
  }

  .site_footer .col-lg-3 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .site_footer .row {
    gap: 2rem;
    padding: 4rem 0 0;
  }

  .footer_links {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }

  .site_footer {
    padding-bottom: 3rem;
  }
}

/*----- sm devices (tablets, 767px and down) -----*/
@media (max-width: 767px) {
  body {
    font-size: 1.8rem;
  }

  main {
    overflow: hidden;
  }

  .pb_120 {
    padding-bottom: 6rem;
  }

  .pb_60 {
    padding-bottom: 4rem;
  }

  .pt_60 {
    padding-top: 4rem;
  }

  .pb_40 {
    padding-bottom: 3rem;
  }

  /* sizes */
  h1 {
    font-size: 4.8rem;
    line-height: 110%;
  }

  h3 {
    font-size: 2.4rem;
    line-height: 115%;
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: 3.2rem;
    line-height: 115%;
    letter-spacing: -0.02em;
  }

  .text_lg {
    font-size: 1.6rem;
    line-height: 115%;
    letter-spacing: -0.02em;
  }

  .Noakhailla_people h1 {
    font-size: 3.2rem;
  }

  .noakhailla_people_section h2 {
    font-size: 2.5rem;
  }

  .footer_links a {
    font-size: 1.7rem;
    line-height: 1.1;
  }

  th,
  td {
    line-height: 1.35;
  }

  h4.pb_32.pt_25 {
    padding: 1.5rem 0;
  }

  .pb_100 {
    padding-bottom: 6rem;
  }

  .pt_100 {
    padding-top: 6rem;
  }

  h4 {
    font-size: 2.8rem;
    line-height: 115%;
  }

  td {
    padding: 0.8rem;
  }
}

/*----- xs devices (landscape phones, 575px and down) -----*/

@media (max-width: 575px) {
  html {
    font-size: 2.32vw;
  }

  th,
  td {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 3.8rem;
    line-height: 110%;
  }
}
