@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap");

html {
  box-sizing: border-box;
  font-size: 16px;
}

* {
  font-family: "Geologica";
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  all: unset;
  cursor: pointer;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

.burger_other {
  padding: 20px;
}

.navbar {
  display: flex;
  padding: 30px 0 0 0;
  width: 100%;
  align-items: center;
  color: white;
  justify-content: space-between;

  .navbar_logo {
    height: 80px;

    img {
      height: 100%;
    }
  }

  .navbar_links {
    display: flex;
    gap: 20px;
  }

  .navbar_btns {
    display: flex;
    gap: 10px;

    .navbar_btn_lang-dropdown {
      position: relative;
      display: inline-block;
    }

    .navbar_btn_lang-toggle {
      height: 41px;
      width: 60px;
      display: flex;
      align-items: center;
      gap: 6px;
      background-color: #ebc271;
      border: none;
      border-radius: 100px;
      padding: 6px 14px;
      font-family: sans-serif;
      font-weight: bold;
      font-size: 14px;
      color: white;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;
    }
    .navbar_btn_lang-toggle:hover {
      transform: scale(1.02);
    }

    .navbar_btn_lang-icon {
      font-size: 16px;
      display: flex;
      align-items: baseline;
    }

    .navbar_btn_lang-arrow {
      font-size: 10px;
    }

    .navbar_btn_lang-menu {
      display: none;
      position: absolute;
      margin-top: 4px;
      background-color: #ebc271;
      border-radius: 12px;
      padding: 6px 14px;
      z-index: 100;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .navbar_btn_lang-item {
      display: block;
      padding: 12px 16px;
      color: white;
      text-decoration: none;
      font-size: 14px;
      transition: background-color 0.2s;
    }

    .navbar_btn_lang-item.active {
      font-weight: bold;
      text-decoration: underline;
    }

    .navbar_btn_login {
      cursor: pointer;
      justify-content: center;
      padding: 0 24px;
      color: white;
      background-color: #ebc271;
      border-radius: 100px;
      display: flex;
      align-items: center;
      transition: transform 0.3s ease-in-out;
    }
    .navbar_btn_login:hover {
      transform: scale(1.02);
    }
    .navbar_btn_login a {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }
    .navbar_btn_login img {
      max-width: 20px;
      max-height: 20px;
    }
  }
}

.burger {
  display: none;
}

.navbar_mobile {
  display: none;
}

.navbar_other_pages {
  .navbar_links {
    a {
      color: black !important;
    }
  }
}

html {
  height: 100%;
}

.footer {
  flex-shrink: 0;
  background-color: #14215c;
  color: white;
}

.footer__wrapper {
  max-width: 1200px;
  padding: 30px 0;
  margin: 0 auto;
  padding: 20px 50px;
  display: flex;
  gap: 50px;
}

.footer__col1 {
  display: grid;
  gap: 20px;
}

.footer__col1__info {
  display: grid;
  gap: 20px;
}

.footer__col1__policy {
  display: flex;
  margin-top: 100px;
}

.footer__col1__info__number_wrap {
  color: #ebc271;

  .footer__col1__info__number {
    font-size: 48px;

    a {
      color: #ebc271 !important;
    }
  }

  .footer__col1__info__number_text {
    font-size: 16px;

    a {
      color: #ebc271 !important;
    }
  }
}

.footer__col1__info__whatsapp {
  display: flex;
  align-items: baseline;
  gap: 10px;

  .footer__col1__info__whatsapp_number {
    font-size: 24px;
  }

  .footer__col1__info__whatsapp_text {
    font-size: 14px;
  }
}

.footer__col2 {
  display: grid;
  gap: 10px;
  font-size: 18px;
}

.footer__col3 {
  display: grid;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
}

.footer_mobile_col {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer_desc {
  color: white;
  .footer_top_bg {
    background: #263e6e;

    .footer_top {
      max-width: 1100px;
      margin: auto;
      padding: 50px 0;
      display: grid;
      grid-template-columns: 1fr 1fr;

      .footer_top_1 {
        height: 70px;
        display: flex;
        gap: 20px;

        .footer_top_1_text {
          width: 220px;
        }
      }

      .footer_top_2 {
        display: flex;
        gap: 20px;
        justify-content: end;

        .footer_top_2_text {
          width: 220px;
        }
        .footer_top_2_number {
          display: flex;
          flex-direction: column;
          gap: 10px;
          .footer_top_2_number_phone {
            font-size: 48px;
          }
        }
        .footer_top_2_social {
          display: flex;
          flex-direction: column;
          gap: 10px;

          .footer_top_2_number_phone {
            display: flex;
            gap: 5px;
            align-items: center;
          }
          .footer_top_2_number_phone img {
            cursor: pointer;
          }
        }
      }
    }
  }
  .footer_bottom_bg {
    background: #1f1f1f;
    .footer_bottom {
      max-width: 1100px;
      margin: auto;
      padding: 15px 0;
    }
  }
}

@media (max-width: 900px) {
  .navbar {
    display: none;
  }

  .burger {
    display: flex;
    width: 100%;
    justify-content: end;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .burger.active {
    transform: rotate(90deg);
  }

  .navbar_mobile {
    display: flex;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    flex-direction: column;
    position: fixed;
    gap: 20px;
    top: 0;
    height: 100vh;
  }

  .navbar_mobile.active {
    transform: translateX(0);
  }

  .navbar_mobile {
    flex-direction: column;
    top: 0;

    z-index: 50;
    gap: 20px;
    position: fixed;
    right: 0;
    height: 100vh;

    background: rgba(255, 255, 255);
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);

    padding: 20px;

    .navbar_mobile_logo img {
      width: 50px;
    }

    .navbar_mobile_links {
      font-weight: 300;
      display: flex;
      flex-direction: column;
      gap: 20px;
      font-size: 20px;

      a {
        color: #ebc271;
      }
    }

    .navbar_mobile_btns {
      gap: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;

      .navbar_mobile_btns_up {
        display: flex;
        align-items: center;
        gap: 20px;

        .navbar_mobile_btns_lang {
          display: flex;
          align-items: center;

          a.active {
            display: flex;
            align-items: center;
            font-size: 16px;
            border-radius: 8px;
            padding: 0 15px;
            color: white;
            background-color: #ebc271;
            height: 40px;
          }

          a {
            display: flex;
            align-items: center;
            font-size: 16px;
            border-radius: 8px;
            padding: 0 15px;
            color: #ebc271;
            height: 40px;
          }
        }
      }
    }
    .navbar_mobile_btns_login {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: center;
      height: 50px;
      padding: 0 24px;
      color: #ebc271;
      border: 1px solid #ebc271;
      border-radius: 8px;
      align-items: center;
      a {
        color: #ebc271;
      }
    }
  }

  .navbar_links {
    display: grid;
    gap: 10px;
    a {
      color: #ebc271;
      font-size: 24px;
      font-weight: 300;
    }
  }
}

@media (max-width: 1200px) {
  .footer__wrapper {
    padding: 30px 50px !important;
  }
  .footer__wrapper {
    font-size: 16px !important;
  }

  .navbar {
    display: none;
  }

  .footer_bottom_bg {
    padding: 10px 30px !important;
  }

  .footer_top {
    padding: 30px !important;

    display: grid !important;
    gap: 30px;
    grid-template-columns: 1fr !important;

    .footer_top_2 {
      display: grid !important;
      grid-template-columns: 1fr !important;
    }
  }

  @media (max-width: 1024px) {
    .footer__col2 {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .footer {
      display: block;
    }
    .footer__wrapper {
      display: block !important;
      padding: 50px !important;
      height: 100%;
    }

    .footer__col3__text {
      font-size: 13px;
    }
  }
}
:root {
  --gold-color: rgba(235, 194, 113, 1);
}
