/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  hyphens: none;
  scroll-behavior: smooth;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  max-width: 160px;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 800px) {
  header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 90;
    transition: all .4s ease;
    font-weight: bold;
    border-bottom: 1px solid #f1f1f1;
  }

  .header {
    height: 5.848vw;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    gap: 2vw;
  }

  .header__group {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
  }

  .header__item {
    padding: 0 0.5vw;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
  }

  .header__link {
    padding-bottom: 0.5848vw;
    text-decoration: none;
    font-size: 1.0234vw;
    font-weight: 400;
    color: #1E2B69;
    transition: opacity .2s ease;
    z-index: 5;
    display: flex;
    align-items: center;
  }

  .header__link:hover {
    border-bottom: 1px solid #28A3DD;
    color: #28A3DD;
  }

  .header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header__social {
    display: flex;
    align-items: center;
    gap: 1.5vw;
  }

  .phone {
    font-weight: 700;
    font-size: 1.6082vw;
    color: #1E2B69;
    text-decoration: none;
  }

  .header__contacts_mobile {
    display: none;
  }

  .burger-menu {
    display: none;
  }
}

footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer__wrapper {
  position: relative;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.footer__column {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  list-style: none;
}

.footer__column ul {
  list-style: none;
}

.footer__link {
  text-decoration: none;
  font-weight: 400;
  line-height: 19px;
  color: #000;
  cursor: pointer;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer-shedule_mobile {
  display: none;
}

/* Pricing and Agreements Styles */
.pricing-agreements {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #1E2B69;
}

/* Country Dropdown Styles */
.country-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.country-dropdown-btn {
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #1E2B69;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 20px;
}

.country-dropdown-btn::after {
  content: '';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #1E2B69;
}

.country-dropdown-btn:hover {
  background-color: #e8e8e8;
  border-color: #28A3DD;
}

.country-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  list-style: none;
  min-width: 150px;
  display: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.country-dropdown:hover .country-dropdown-list {
  display: block;
}

.country-dropdown-list li {
  padding: 10px 15px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #1E2B69;
  transition: background-color 0.2s ease;
}

.country-dropdown-list li:hover {
  background-color: #f0f0f0;
}

.country-dot {
  margin-right: 8px;
  font-size: 14px;
}

/* Contacts Page */
.contacts-page {
  padding: 70px 24px;
}

.contacts-page__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.contacts-page__title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1E2B69;
}

.contacts-address-section {
  background-color: #1E2B69;
  padding: 60px 24px;
}

.contacts-address__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-address__text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 39px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}

/* Contacts Links Section */
.contacts-links-section {
  padding: 60px 24px;
  background-color: #ffffff;
}

.contacts-links__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-link__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-link__text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: #000000;
}

@media screen and (max-width: 800px) {
  .container {
    padding: 0 12px;
  }

  header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 90;
    transition: all .4s ease;
    border-bottom: 1px solid #f1f1f1;
  }

  .header {
    min-height: 80px;
    display: flex;
    align-items: center;
  }

  .header__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
  }

  .header__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
  }

  .header__link {
    text-decoration: none;
    font-size: 14px;
    color: #1E2B69;
  }

  .header__social {
    display: flex;
    gap: 12px;
  }

  .country-dropdown {
    margin-right: 0;
  }

  .country-dropdown-btn {
    font-size: 14px;
    line-height: 18px;
  }

  .header__contacts_mobile {
    display: none;
  }

  .burger-menu {
    display: none;
  }

  .contacts-page {
    padding: 40px 16px;
  }

  .contacts-page__title {
    font-size: 32px;
    line-height: 40px;
  }

  .contacts-address-section {
    padding: 40px 16px;
  }

  .contacts-address__text {
    font-size: 24px;
    line-height: 30px;
  }

  .contacts-links-section {
    padding: 40px 16px;
  }

  .contacts-links__container {
    gap: 40px;
    flex-direction: column;
  }

  .contact-link {
    width: 100%;
    justify-content: center;
  }

  .contact-link__text {
    font-size: 20px;
    line-height: 25px;
  }

  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}
