*, *:after, *:before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

strong {
  font-weight: 700;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "Play";
  src: url("../fonts/Play/Play-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Play";
  src: url("../fonts/Play/Play-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Play";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  color: #000;
}

.container {
  display: grid;
  width: min(100%, 1556px);
  padding-inline: 16px;
}
.container--center {
  margin-inline: auto;
}
.container--full {
  width: 100%;
}
.container--navbar {
  box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 56px;
  background: #FFFFFF;
}
.container--hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/hero-image.jpg) no-repeat center;
  background-size: cover;
  min-height: 100vh;
  height: 100%;
}
.container--hero .container {
  min-height: 100vh;
  height: 100%;
  padding-block: 104px 48px;
  align-content: space-between;
  gap: 100px;
}
.container--section {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .container--section {
    padding: 40px;
  }
}
.container--section-gray {
  background: #F8F8F8;
}
.container--section-footer {
  background: #F7BAD2;
}

.lang-bar {
  background: #ffdce9;
  position: fixed;
  top: 0;
  padding: 8px 16px;
}

.lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  height: 40px;
}
.lang a {
  display: flex;
  align-items: center;
  color: #000000;
  gap: 4px;
}
.lang a.active {
  color: #EB6096;
  font-weight: 700;
}
.lang a img {
  width: 20px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  width: 100%;
  position: relative;
}
@media (min-width: 845px) {
  .navbar .mobile-menu {
    display: none;
  }
}
.navbar .mobile-menu.active + .navbar__links {
  display: grid;
}
.navbar__links {
  display: none;
  align-items: center;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  width: 100%;
}
@media (min-width: 845px) {
  .navbar__links {
    display: flex !important;
    position: static;
    margin-left: auto;
    width: auto;
    box-shadow: none;
  }
}
.navbar__item--logo {
  display: block;
}
.navbar__item--logo img {
  display: block;
  width: clamp(250px, 32vw, 540px);
}
.navbar__item--link {
  padding: 8px 16px;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  border-bottom: 3px solid transparent;
}
@media (min-width: 992px) {
  .navbar__item--link {
    font-size: 1.25rem;
  }
}
.navbar__item--link:hover {
  color: #C3829E;
}
.navbar__item--link.active {
  font-weight: 700;
  color: #C3829E;
  border-color: currentColor;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 7.25rem);
  font-weight: 700;
  padding-top: 1rem;
  color: #FFFFFF;
}
@media (min-width: 800px) {
  .hero-title {
    width: 50%;
    padding-top: 4rem;
  }
}

.hero-sub-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 800px) {
  .hero-sub-title {
    font-size: 3rem;
  }
}
.hero-sub-title-para {
  text-transform: uppercase;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1.8;
}
@media (min-width: 800px) {
  .hero-sub-title-para {
    font-size: 1.5rem;
  }
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
  padding-top: 32px;
}
.hero-desc .text-highlight {
  font-weight: 700;
}
@media (min-width: 800px) {
  .hero-desc {
    font-size: 1.5rem;
  }
}

.text-highlight {
  color: #EB6096;
}

.section-title {
  font-size: 2rem;
  line-height: 1.8;
  color: #EB6096;
  text-transform: uppercase;
  padding-block-end: 24px;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.our-services {
  background: #F8F8F8;
}
.our-services__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 500px) {
  .our-services__cards {
    grid-template-columns: repeat(auto-fit, minmax(490px, 1fr));
  }
}
.our-services__card {
  display: grid;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #F7BAD2;
}
@media (min-width: 768px) {
  .our-services__card {
    grid-template-rows: 65px 1fr;
  }
}
.our-services__card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .our-services__card__title {
    font-size: 1.5rem;
  }
}
.our-services__card__desc {
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .our-services__card__desc {
    font-size: 1.25rem;
  }
}

.payment-table {
  display: grid;
  gap: 16px;
  padding-block: 32px;
}
@media (min-width: 768px) {
  .payment-table {
    gap: 8px;
  }
}
.payment-table__column {
  display: grid;
  gap: 8px;
}
.payment-table__column--header {
  font-weight: 700;
}
@media (min-width: 768px) {
  .payment-table__column {
    border: 1px solid #F7BAD2;
    padding: 16px;
  }
}
.payment-table__row {
  display: grid;
  padding: 16px;
  border: 1px solid #F7BAD2;
  gap: 8px;
}
@media (min-width: 768px) {
  .payment-table__row {
    grid-template-columns: 180px 1fr;
    border: none;
    padding: 0;
  }
}

.payment-info {
  display: grid;
  gap: 16px;
}

.how-to-buy {
  list-style-type: none;
  display: grid;
  gap: 32px;
}
.how-to-buy li {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .how-to-buy li {
    gap: 56px;
  }
}
.how-to-buy li img {
  width: 40px;
}
@media (min-width: 768px) {
  .how-to-buy li img {
    width: 100px;
  }
}
.how-to-buy li h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  .how-to-buy li h4 {
    font-size: 1.5rem;
  }
}
.how-to-buy li p {
  font-size: 1rem;
  line-height: 1.3;
  padding-block-start: 16px;
}
@media (min-width: 768px) {
  .how-to-buy li p {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.where-we-are__details {
  display: grid;
  gap: 24px;
}
.where-we-are__title {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .where-we-are__title {
    font-size: 1.5rem;
  }
  .where-we-are__address, .where-we-are__contacts {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}