@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
html {
    margin-top: 0 !important;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Luckiest Guy", "cursive", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
}

[class*=__container] {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  color: #51032D;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}

[class*=__text] {
  color: #51032D;
  font-family: "Luckiest Guy";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
[class*=__text] a {
  color: #51032D;
}

.btn {
  color: #51032D;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-transform: capitalize;
  border-radius: 29px;
  border: 4px solid #51032D;
  background: #FFF;
  padding: 12px 129px;
}

.fs-12 {
  color: #FFF;
  font-size: 12px;
  line-height: 150%;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 200px;
}

.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 60;
  background: linear-gradient(0deg, #51032D 0%, #51032D 100%), url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.header_white {
  background: #FFF;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
@media (max-width: 767px) {
  .header__content {
    flex-direction: column;
    gap: 24px;
  }
}
.header__logo {
  color: #FAFAFA;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  text-transform: capitalize;
}
.header__logo_color {
  color: #51032D;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 575px) {
  .header__menu {
    gap: 12px;
  }
}
.header__link {
  color: #FAFAFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.header__link_color {
  color: #51032D;
}

@media (max-width: 575px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #0172C2;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 575px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 0 0;
    background: #1C1C1C;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  gap: 20px;
}
@media (max-width: 575px) {
  .menu__list {
    flex-direction: column;
    align-items: center;
  }
}
.menu__link {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .menu__link {
    color: #fff;
  }
}

.footer__menu {
  display: flex;
  gap: 130px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
@media (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__link {
  color: #51032D;
  text-align: center;
  font-family: "Luckiest Guy";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__bg {
  height: 120px;
  width: 100%;
}
.footer__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home {
  margin: 80px 0 0;
  background: linear-gradient(0deg, #51032D 0%, #51032D 100%), url(<path-to-image>) lightgray 50%/cover no-repeat;
  padding: 120px 0 160px;
}
.home__content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.home__label {
  color: #FAFAFA;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  border-radius: 40px;
  border: 1px solid #FFF;
  padding: 12px 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.home__title {
  color: #FAFAFA;
  text-align: center;
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
.home__text {
  color: #FAFAFA;
  text-align: center;
}
.home__link {
  color: #51032D;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  text-transform: capitalize;
  border-radius: 29px;
  border: 4px solid #51032D;
  background: #FFF;
  padding: 20px 60px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 36px auto 0;
}
.home__arrow_left {
  position: absolute;
  bottom: 53px;
  left: -125px;
}
@media (max-width: 991px) {
  .home__arrow_left {
    top: -150px;
    left: -32px;
  }
}
.home__arrow_right {
  position: absolute;
  right: -130px;
  bottom: -100px;
}
@media (max-width: 991px) {
  .home__arrow_right {
    bottom: -150px;
  }
}

.choose {
  padding: 64px 0;
}
@media (max-width: 767px) {
  .choose {
    position: relative;
  }
}
.choose__content {
  margin: 32px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}
@media (max-width: 767px) {
  .choose__content {
    position: static;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.choose__card {
  padding: 24px;
  background: #FAD4E8;
  -webkit-backdrop-filter: blur(32.9425163269px);
          backdrop-filter: blur(32.9425163269px);
  max-width: 344px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .choose__card {
    max-width: 100%;
  }
}
.choose__name {
  color: #51032D;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}
.choose__arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .choose__arrow {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    transform: rotate(-180deg) scaleX(-1);
  }
}

.service {
  padding: 64px 0;
  position: relative;
}
.service__content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0;
  justify-content: center;
}
.service__arrow {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .service__arrow {
    right: 0;
    left: auto;
  }
}
@media (max-width: 575px) {
  .service__arrow {
    display: none;
  }
}
.service__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 344px;
}
.service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__plan {
  color: #51032D;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin: 24px 0 12px;
}
.service__name {
  color: #51032D;
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 24px;
}
.service__text {
  margin-bottom: 24px;
}
.service__link {
  display: inline-block;
  padding: 20px 0;
  width: 100%;
}

.works {
  padding: 64px 0;
}
.works__content {
  margin: 32px 0 0;
  display: flex;
  gap: 24px;
}
@media (max-width: 575px) {
  .works__content {
    flex-direction: column;
  }
}
.works .choose__card {
  width: 100%;
}
.works__num {
  color: #51032D;
  font-size: 92px;
  font-weight: 400;
  line-height: 120%;
}

.plan {
  margin: 80px 0 0;
  padding: 100px 0;
}
@media (max-width: 575px) {
  .plan {
    padding: 112px 0;
  }
}
.plan__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}
@media (max-width: 991px) {
  .plan__row {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .plan__row {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .plan__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.plan__about {
  color: #51032D;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
}
.plan__name {
  color: #51032D;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  margin: 12px 0 8px;
}
.plan__price {
  color: #51032D;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin: 32px 0;
}
.plan__link {
  display: inline-block;
  width: 100%;
  padding: 20px 0;
}
.plan__row-sub {
  margin: 120px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 120px;
}
@media (max-width: 991px) {
  .plan__row-sub {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .plan__row-sub {
    flex-direction: column;
    gap: 120px;
  }
}
.plan__name-sub {
  color: #51032D;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 12px;
}

.privacy {
  margin: 160px 0 80px;
}