@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  list-style: none;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}
img {
  max-width: 100%;
  width: 100%;
}
.container {
  max-width: 1620px;
  padding: 0 42px;
  margin: 0 auto;
}
.flx {
  display: flex;
}
header .container {
  justify-content: space-between;
  align-items: center;
}
.logo {
  max-width: 124px;
}
.menu ul {
  gap: 4px;
}
.menu ul li a {
  display: inline-block;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 29px;
  cursor: pointer;
}
.language-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 29px;
  cursor: pointer;
  padding-right: 46px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.language-selected::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 8px;
  height: 8px;
  background: url("./assets/imgs/arrow-right.svg") no-repeat center center;
  background-size: contain;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}
footer {
  padding-top: 80px;
  padding-bottom: 40px;
}
footer .container {
  padding: 0 80px;
}
.footer-bot {
  margin-top: 80px;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.footer-left img {
  max-width: 124px;
}
.footer-top {
  justify-content: space-between;
}
.footer-list {
  gap: 71px;
}
.footer-list-item-title h3 {
  font-size: 24px;
}
.footer-list-item-list {
  margin-top: 32px;
}
.footer-list-item-list a {
  font-size: 18px;
  line-height: 32px;
  opacity: 0.5;
}
.footer-bot-left span {
  font-size: 18px;
  line-height: 32px;
  opacity: 0.5;
}
.footer-bot-right-list {
  gap: 24px;
}
.footer-bot-right-list a {
  font-size: 18px;
  line-height: 32px;
}
.btn {
  display: inline-block;
  font-size: 16px;
  padding: 24px 25px;
  border-radius: 24px;
}
.btn.btn-black {
  background: #000;
  color: #fff;
}
.btn.btn-white {
  border: 1px solid rgba(0, 0, 0, 1);
  background: #fff;
}
.area-section-title .btn {
  border: none;
}
.btn.btn-arrow-right {
  padding-right: 60px;
  position: relative;
}
.btn.btn-arrow-right::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 14px;
  height: 14px;
  background: url("./assets/imgs/arrow-right.svg") no-repeat center center;
  background-size: contain;
}
.btn.btn-icon-left {
  padding-left: 60px;
  position: relative;
}
.btn.btn-icon-left::before {
  content: "";
  position: absolute;
  left: 25px;
  width: 24px;
  height: 24px;
  background: url("./assets/imgs/phone-white.svg") no-repeat center center;
  background-size: contain;
}
.btn-gray {
  background: rgba(246, 246, 246, 1);
}
.form-section-left-title h2 {
  font-size: 48px;
}
.form-section-left-title {
  max-width: 700px;
  margin-bottom: 24px;
}
.form-section-left-form-item {
  margin-bottom: 24px;
}
.form-section-left-form-item label {
  display: block;
  font-size: 16px;
  line-height: 100%;
  color: rgba(24, 26, 32, 1);
}
.footer-form {
  flex-wrap: wrap;
  gap: 20px;
}
.form-section-left-form-item {
  width: 100%;
}
.form-section-left-form-item.input-half {
  width: calc(50% - 10px);
}
.footer-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  font-size: 18px;
  line-height: 100%;
  color: #000;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer-form textarea {
  resize: none;
}
.form-section-left-form-item button {
  width: 100%;
}
.contact-section-left {
  width: 45%;
  min-width: 45%;
  background-image: url("./assets/imgs/contact-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-section-right {
  width: 55%;
}
.contact-section .container {
  justify-content: space-between;
  gap: 32px;
}
.contact-section-right {
  padding: 35px 0;
}
.contact-section-right-info {
  padding: 24px 32px;
  border-radius: 100px;
  background: rgba(250, 250, 250, 1);
  justify-content: space-between;
  margin-top: 24px;
}
.contact-section-right-info-item-icon {
  width: 20px;
  height: 20px;
}
.contact-section-right-info-item {
  align-items: center;
  gap: 4px;
}
.contact-section-right-info-item:last-child {
  align-items: flex-start;
}
.map-section {
  display: none;
}

.desktop {
  display: block;
}
.container.desktop {
  display: flex;
}
.mobile {
  display: none;
}
@media (max-width: 1440px) {
  h1 {
    font-size: 72px;
  }
  .hero-title {
    max-width: 566px;
  }
  .btn-long {
    min-width: 150px;
  }
}
@media (max-width: 1024px) {
  .burger-block {
    width: 29px;
    height: 24px;
    background-image: url("./assets/imgs/burger.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .mobile-header-logo {
    justify-content: center;
    gap: 24px;
    align-items: center;
  }
  .mobile-header-logo img {
    max-width: 97px;
  }
  .header-mobile {
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }
  .mobile-header-menu {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 24px;
    border-radius: 24px;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .header-mobile {
    display: flex;
  }
  .container.desktop {
    display: none;
  }
  .container {
    padding: 0 16px;
  }
  h1 {
    font-size: 48px;
  }
  footer .container {
    padding: 0 16px;
  }
  footer {
    padding: 42px 0;
  }
  footer .footer-top {
    flex-direction: column;
  }
  .footer-list {
    flex-wrap: wrap;
    gap: 0;
  }
  .footer-list-item {
    width: 50%;
    margin-bottom: 24px;
  }
  .footer-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bot {
    flex-direction: column;
    margin-top: 24px;
    gap: 12px;
  }
  .footer-list-item-list {
    margin-top: 12px;
  }
  .footer-top {
    gap: 24px;
  }
  .footer-list-item-title h3 {
    font-size: 18px;
  }
  .footer-list-item-list a {
    font-size: 16px;
  }
  .mobile-header-menu ul {
    display: flex;
    gap: 23px;
    flex-direction: column;
  }
  .header-mobile {
    position: relative;
    z-index: 1000;
  }
  .mobile-header-logo,
  .language {
    position: relative;
    z-index: 1000;
  }
  .mobile-header-menu {
    transition: all 0.3s;
    z-index: 100;
  }
  .burger-block.burger-close {
    background-image: url(./assets/imgs/burger.svg);
  }
  .burger-block.burger-open {
    background-image: url(./assets/imgs/close.svg);
  }
  .contact-section .container {
    flex-direction: column;
  }
  .contact-section-right {
    width: 100%;
  }
  .contact-section-left {
    width: 100%;
    height: 202px;
  }
  .contact-section-right {
    padding-top: 0;
  }
  .form-section-left-title h2 {
    font-size: 32px;
  }
  .form-section-left-form-item.input-half {
    width: 100%;
  }
  .contact-section-right-info {
    display: none;
  }
  .contact-section .container {
    padding-top: 10px;
  }
}
