.under_top_menu {
  background-color: #101A18;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 110;
  height: 46px;
  position: relative;

  a {
    color: #00b09a;
    text-decoration: none;
    text-align: center;
    font-weight: 200;
    font-size: 14px;
  }
}

.sticky_header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 56px;
  padding-top: 0;

  .landing-header-menu {
    max-height: 100vh;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);

    .logo-wrapper {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;

      img {
        max-width: 170px;
        height: auto;
      }

      .navbar-toggler {
        padding: 0;
        border: none;
      }

      .navbar-toggler:focus {
        box-shadow: none;
      }
    }

    .mobile-menu {
      max-height: 60vh;
      overflow-y: scroll;
      a:hover {
        color: #00B09A;
      }
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.5);
      z-index: -1;
      height: 100%;
    }

    .mobile-menu > .menu-item {
      padding-top: 16px;
      font-size: 16px;
      font-weight: 600;

    }

    .mobile-menu > .menu-item > .sub-menu > li {
      padding-top: 8px;
      font-size: 14px;
      font-weight: 400;
    }
  }

  .menu-item > a {
    color: black;
    text-decoration: none;
  }

  .header-btn-send {
    height: 40px;
    font-size: 16px;
    width: auto;
    padding: 0 16px;
    line-height: 34px;
  }
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.searchform-landing {
  padding-block: 24px;
  box-sizing: border-box;
  position: relative;

  input, .btn-close {
    -webkit-appearance: none;
  }

  input {
    border: 2px solid #00b09a;
    border-radius: 0;
  }

  .btn-close {
    position: absolute;
    right: 52px;
  }

  input[type="search"] {
    appearance: textfield;
    outline: none;
  }

  input[type="search"]:focus {
    outline: none;
    border: 2px solid #00b09a;
    box-shadow: none;
  }

  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
  }

  .btn-search {
    width: 40px;
    height: 40px;
    background: #00b09a;
    border: none;

    svg {
      color: white;
    }
  }
}

.searchform-landing:not(.active) {
  .btn-search {
    background: none;
    display: inline-block;
    margin: 0;
    border: none;
    vertical-align: middle;

    svg {
      color: #00b09a;
    }
  }
}

footer {
  background-color: #101A18;
  color: white;
  padding-block: 48px;

  .info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;

    .subtitle {
      font-size: 24px;
      font-weight: 900;
    }

    .company-menu {
      .company-menu-block {
        display: flex;
        padding-bottom: 16px;
        flex-wrap: wrap;

        .menu-subheader {
          width: 100%;
          font-size: 20px;
          font-weight: 700;
          padding-bottom: 8px;
        }

        a {
          font-size: 16px;
          margin: 0 12px 4px 0;
        }
      }
    }

    .soc-icons {
      img {
        width: 36px;
        height: 36px;
      }
    }
  }

  .technology-menu {

    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;

    .technology-menu-block {
      display: flex;
      flex-direction: column;
      padding-top: 24px;
      font-size: 16px;
      gap: 16px;

      .menu-subheader {
        font-size: 20px;
        font-weight: 700;
        color: #00B09A;
      }
    }
  }

  .privacy-block {
    p {
      font-size: 16px;
      font-weight: 300;
    }

    opacity: 0.6;
    margin-top: 36px;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 8px;

  }
}

.to_top_landings_btn {
  bottom: 125px !important;
  z-index: 100;
}

@media only screen and (min-width: 768px) {
  footer {
    .technology-menu {
      flex-direction: row;
      gap: 48px;
    }
  }
}


@media only screen and (min-width: 992px) {
  .under_top_menu {
    a {
      font-size: 17px;
    }
  }

  .sticky_header {
    height: 80px;

    .landing-header-menu {
      display: flex;
      align-items: center;
      height: 100%;
      position: relative;
      max-height: unset;
      overflow-y: unset;
      box-shadow: none;

      .container {
        display: flex;
        justify-content: space-between;
      }

      .logo-wrapper {
        width: unset;

        img {
          max-width: 200px;
        }
      }

      .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-grow: 1;
        padding-inline: 16px;
      }

      .navbar-nav > li {
        position: relative;
      }

      .navbar-nav > li > a {
        display: block;
      }

      .navbar-nav > .menu-item > a {
        color: black;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding-inline: 4px;

        &:hover {
          color: #00B09A;
        }
      }

      .navbar-nav > .menu-item > .sub-menu {
        background-color: white;
        padding: 16px 16px 0 16px;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0;
        list-style: none;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
        z-index: 1000;
        font-size: 16px;
        font-weight: 600;

        a:hover {
          color: #00B09A;
        }
      }

      .navbar-nav .dropdown-toggle:hover > .sub-menu {
        display: block;
        position: absolute;
        min-width: 300px;
      }

      .navbar-nav > .menu-item > .sub-menu > li {
        padding-bottom: 16px;
      }

      .navbar-nav > .menu-item > .sub-menu > li > a {
        padding-left: 0;
        padding-bottom: 8px;
        display: block;
        font-size: 16px;
        font-weight: 700;
      }

      .navbar-nav > .menu-item > .sub-menu > li > .sub-menu > li {
        padding-bottom: 4px;
        font-size: 14px;
        font-weight: 200;
      }

      .dropdown-toggle:after {
        display: none;
      }

      .menu-wrapper-desktop {
        flex-grow: 1;
        padding-inline: 16px;
        justify-content: space-between;
      }
    }
  }

  .searchform-landing {
    padding-block: 0;

    input, .btn-close {
      position: absolute;
    }

    input {
      right: 38px;
      min-width: 350px;
    }

    .btn-close {
      right: 44px;
    }
  }

  .searchform-landing:not(.active) {
    input, .btn-close {
      display: none;
    }
  }

  footer {
    .info-block {
      display: flex;
      flex-direction: column;
      gap: 24px;

      .subtitle {
        font-size: 28px;
      }
    }
    .technology-menu {
      margin-top: 72px;
    }

    .privacy-block {
      margin-top: 48px;
      flex-direction: row;
      gap: 24px;
    }
  }

  .to_top_landings_btn {
    bottom: 25px !important;
    z-index: 100;
  }
}

@media only screen and (min-width: 1200px) {
  .sticky_header {

    .header-btn-send {
      height: 40px;
      font-size: 20px;
    }

    .landing-header-menu {
      .logo-wrapper {
        img {
          max-width: unset;
        }
      }

      .navbar-nav > .menu-item > a {
        font-size: 16px;
      }
    }
  }
}

/* ========================================
   (≥ 1400px)
   ======================================== */
@media only screen and (min-width: 1400px) {

}

