/* USER VARIABLES SECTION */
:root {
  --accent: #f57d7d;
  --text: #8b8987;
  --regular-text: 16px;
  --lineheight: 1.2;
  --userfont: inter, sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* container style */
.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 536px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 728px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 952px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
@media (min-width: 1520px) {
  .container {
    max-width: 1480px;
  }
}
/* FONTS LOAD SECTION */
@font-face {
  src: url("../fonts/inter-300.woff2") format("woff2");
  font-family: "inter";
  font-weight: 300;
  font-style: normal;
}
@font-face {
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-family: "inter";
  font-weight: 400;
  font-style: normal;
}
@font-face {
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-family: "inter";
  font-weight: 600;
  font-style: normal;
}
@font-face {
  src: url("../fonts/inter-700.woff2") format("woff2");
  font-family: "inter";
  font-weight: 700;
  font-style: normal;
}
@font-face {
  src: url("../fonts/cormorant-garamond-400.woff2") format("woff2");
  font-family: "cormorant-garamond";
  font-weight: 400;
  font-style: normal;
}
/* GENERAL CSS SETTINGS */
::-moz-placeholder {
  color: #666;
}
::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: var(--accent);
  color: #fff;
}

::selection {
  background-color: var(--accent);
  color: #fff;
}

input,
textarea {
  outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid,
textarea:required:valid {
  border-color: green;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* USER STYLES */
.head {
  background: #f3f3f3;
  position: relative;
  padding-top: 40px;
  padding-bottom: 100px;
}
.head__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.top-line {
  border: 3px solid #e86666;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}
.top-line__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 126px;
  padding-left: 36px;
  padding-right: 36px;
  position: relative;
}
.top-line__mnu {
  padding: 0;
  margin: 0;
}
.top-line__mnu li {
  list-style-type: none;
  display: inline-block;
  margin-right: 80px;
}
.top-line__mnu li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #201613;
  transition: all 0.25s ease-in-out;
}
.top-line__mnu li a:hover {
  color: #f57d7d;
}
.top-line__mnu li:last-child {
  margin-right: 0;
}
.top-line__login {
  display: inline-block;
  height: 70px;
  line-height: 70px;
  border: 1px solid #e86666;
  background: #eeadad;
  border-radius: 70px;
  padding-left: 44px;
  padding-right: 44px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: 28px;
  right: 36px;
  transition: all 0.25s ease-in-out;
}
.top-line__login:hover {
  color: #e86666;
  background: transparent;
}

.head__row {
  margin-top: 60px;
  display: flex;
  position: relative;
  gap: 142px;
  align-items: center;
  justify-content: space-between;
}

.head__image {
  position: relative;
}
.head__image-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 94px;
  background: rgba(232, 102, 102, 0.5);
  border: 1px solid #e86666;
  left: -24px;
  bottom: -24px;
}
.head__image-hero img {
  border-radius: 70px;
  border: 1px solid #e86666;
  z-index: 1;
  position: relative;
}
.head__image-mark {
  position: absolute;
  top: 140px;
  right: -117px;
  z-index: 2;
}

.head__content {
  max-width: 724px;
}
.head__content-domen {
  height: 70px;
  line-height: 70px;
  border: 1px solid #e86666;
  border-radius: 70px;
  padding-left: 44px;
  padding-right: 44px;
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  color: #e86666;
  text-transform: uppercase;
}
.head__content-title {
  font-family: cormorant-garamond, sans-serif;
  margin-top: 56px;
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  color: #201613;
}
.head__content-description {
  margin-top: 30px;
  max-width: 547px;
  font-weight: 400;
  font-size: 30px;
  line-height: 140%;
  color: #8b8987;
}
.head__content-description span {
  color: #2f2f2e;
}
.head__content-btn {
  margin-top: 60px;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  border: 1px solid #e86666;
  border-radius: 70px;
  background: #f57d7d;
  padding-left: 44px;
  padding-right: 44px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.head__content-btn:hover {
  color: #e86666;
  background: transparent;
}

.top-mnu-mobile {
  display: block;
  position: fixed;
  top: -100px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  background-color: #fff;
  padding-top: 64px;
  z-index: 99;
  transition: z-index 0.1s ease-in-out, opacity 0.4s ease-in-out, top 0.6s ease-in-out, visibility 0.8s ease-in-out;
}
.top-mnu-mobile ul {
  border-top: 1px solid rgba(43, 43, 43, 0.1);
  padding-top: 32px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
}
.top-mnu-mobile ul li {
  margin-bottom: 24px;
  list-style-type: none;
  text-align: left;
}
.top-mnu-mobile ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: rgba(43, 43, 43, 0.6);
  text-decoration: none;
  display: block;
  transition: all 0.25s ease;
}
.top-mnu-mobile ul li a:hover {
  color: #345155;
}
.top-mnu-mobile ul li:last-child {
  margin-top: 48px;
}
.top-mnu-mobile ul li:last-child a {
  color: #2b2b2b;
  font-weight: 500;
  transition: all 0.25s ease;
}
.top-mnu-mobile ul li:last-child a:hover {
  color: #345155;
}
.top-mnu-mobile .mnu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
}

.top-line__burger {
  display: none;
  cursor: pointer;
}

.top-mnu-mobile.active {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.overlay {
  background: rgba(42, 42, 43, 0.662745098);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: z-index 0.1s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
}

.top-line__mnu-mob {
  display: block;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding-top: 64px;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  transition: z-index 0.1s ease-in-out, opacity 0.4s ease-in-out, top 0.6s ease-in-out, visibility 0.8s ease-in-out;
}
.top-line__mnu-mob.active {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.top-line__mnu-mob .mnu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
}
.top-line__mnu-mob ul {
  border-top: 1px solid rgba(43, 43, 43, 0.1);
  padding-top: 32px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
}
.top-line__mnu-mob ul li {
  margin-bottom: 24px;
  list-style-type: none;
  text-align: left;
}
.top-line__mnu-mob ul li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #2B2B2B;
  opacity: 0.6;
  text-decoration: none;
  transition: all 0.25s ease;
}
.top-line__mnu-mob ul li a:hover {
  color: #f57d7d;
  opacity: 1;
}
.top-line__mnu-mob ul li a.active {
  color: #f57d7d;
  pointer-events: none;
  cursor: default;
}
.top-line__mnu-mob ul li:last-child {
  margin-top: 48px;
}
.top-line__mnu-mob ul li:last-child a {
  opacity: 1;
}

@media (max-width: 1200px) {
  .top-line__mnu li {
    margin-right: 40px;
  }
  .head__row {
    align-items: start;
    gap: 90px;
  }
}
@media (max-width: 992px) {
  .top-line__row {
    justify-content: start;
  }
  .top-line__mnu li {
    margin-right: 20px;
  }
  .head__row {
    flex-wrap: wrap;
  }
  .head__content {
    order: 1;
    text-align: center;
  }
  .head__image {
    order: 2;
  }
  .head__image {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .head__content-btn {
    margin-top: 8px;
    position: relative;
    z-index: 1;
  }
  .head__image-hero::before {
    left: 0;
  }
  .head__content-description {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .top-line__burger {
    display: block;
  }
  .top-line {
    display: none;
  }
  .top-line__burger img {
    width: 40px;
  }
  .head .container {
    position: relative;
  }
  .top-line__burger {
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 3;
  }
  .head__row {
    margin-top: 0;
  }
  .head {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .head__content {
    position: relative;
    padding-top: 53px;
  }
  .head__content-domen {
    height: 40px;
    line-height: 40px;
    padding-left: 21px;
    padding-right: 21px;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .head__content-title {
    margin-top: 13px;
    text-align: center;
    font-size: 16px;
  }
  .head__content-description {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
  }
  .head__image-mark {
    display: none;
  }
  .head__image {
    margin-top: 10px;
  }
  .head__image-hero img {
    border-radius: 60px;
  }
  .head__image-hero::before {
    border-radius: 60px;
    bottom: -20px;
  }
  .head__content-btn {
    height: 55px;
    line-height: 55px;
    font-size: 16px;
    padding-left: 22px;
    padding-right: 22px;
  }
  .head__bg {
    right: auto;
    left: 0;
  }
}
.sect-1 {
  padding: 120px 0;
}

.sect-1__row {
  display: flex;
  align-items: center;
  gap: 124px;
  justify-content: space-between;
}

.sect-1__content {
  max-width: 608px;
}
.sect-1__content-title {
  font-family: cormorant-garamond, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  color: #201613;
}
.sect-1__content-text {
  margin-top: 32px;
}
.sect-1__content-text p {
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #8b8987;
}
.sect-1__content-text p span {
  color: #2f2f2e;
}
.sect-1__content-text p:last-child {
  margin-bottom: 0;
}

.sect-1__image-wrap {
  position: relative;
}
.sect-1__image-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(232, 102, 102, 0.5);
  border: 1px solid #e86666;
  border-radius: 94px;
  z-index: 0;
  right: -22px;
  bottom: -22px;
}
.sect-1__image-hero {
  border-radius: 70px;
  z-index: 1;
  position: relative;
}
.sect-1__image-mark {
  position: absolute;
  top: -36px;
  left: -129px;
  z-index: 2;
}

@media (max-width: 1200px) {
  .sect-1__content {
    max-width: 500px;
  }
}
@media (max-width: 992px) {
  .sect-1__row {
    flex-wrap: wrap;
    gap: 60px;
  }
  .sect-1__content {
    max-width: 100%;
    order: 2;
  }
  .sect-1__image-mark {
    left: auto;
    right: 0;
    top: 0;
  }
}
@media (max-width: 768px) {
  .sect-1 {
    padding: 20px 0;
  }
  .sect-1__image-wrap::before {
    right: 0;
    bottom: -20px;
    border-radius: 60px;
  }
  .sect-1__image-hero {
    border-radius: 60px;
  }
  .sect-1__image-mark {
    width: 129px;
    height: 129px;
  }
  .sect-1__row {
    gap: 40px;
  }
  .sect-1__content-title {
    font-size: 16px;
    text-align: center;
  }
  .sect-1__content-text {
    margin-top: 20px;
  }
  .sect-1__content-text p {
    font-size: 13px;
    text-align: center;
    margin-bottom: 20px;
  }
  .sect-1 {
    background-image: url(../img/sect-1/mark-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
  }
}
.sect-2 {
  padding-top: 100px;
  padding-bottom: 95px;
  background: #f4b3b3;
  background-image: url(../img/sect-2/mark-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}
.sect-2__wrap {
  max-width: 1315px;
  margin-left: auto;
  margin-right: auto;
}

.sect-2__top {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.sect-2__top-title {
  font-family: cormorant-garamond, sans-serif;
  max-width: 486px;
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  color: #201613;
}
.sect-2__top-description {
  max-width: 607px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #70432f;
}

.sect-2__row {
  margin-top: 34px;
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.sect-2__item {
  max-width: calc(50% - 18px);
  display: flex;
  align-items: center;
  gap: 30px;
}
.sect-2__item-num {
  flex: 0 0 60px;
}
.sect-2__item-content {
  max-width: 491px;
}
.sect-2__item-content-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #201613;
}
.sect-2__item-content-description {
  margin-top: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #70432f;
}

@media (max-width: 1200px) {
  .sect-2__top-description {
    max-width: 476px;
  }
}
@media (max-width: 992px) {
  .sect-2__top {
    flex-wrap: wrap;
  }
  .sect-2__top-title {
    max-width: 100%;
  }
  .sect-2__top-description {
    max-width: 100%;
  }
  .sect-2__item {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .sect-2 {
    padding-top: 20px;
    padding-bottom: 20px;
    background-image: none;
  }
  .sect-2__top-title {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }
  .sect-2__top-description {
    text-align: center;
    font-size: 13px;
  }
  .sect-2__row {
    margin-top: 24px;
  }
  .sect-2__item-num {
    flex: 0 0 50px;
  }
  .sect-2__item {
    gap: 26px;
  }
  .sect-2__item-content-title {
    font-size: 20px;
    font-weight: 700;
  }
  .sect-2__item-content-description {
    margin-top: 13px;
    font-size: 15px;
  }
  .sect-2__row {
    gap: 28px;
  }
}
.sect-3 {
  padding: 100px 0;
  background: #f3f3f3;
  background-image: url(../img/sect-3/bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.sect-3__top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid #ccd6eb;
}
.sect-3__top-title {
  max-width: 558px;
  font-family: cormorant-garamond, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  color: #201613;
}
.sect-3__top-description {
  max-width: 607px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #8b8987;
}

.sect-3__row {
  margin-top: 53px;
  padding-bottom: 53px;
  border-bottom: 1px solid #ccd6eb;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sect-3__item {
  display: flex;
  width: 100%;
  align-items: center;
}
.sect-3__item-num {
  flex: 0 0 60px;
  margin-right: 41px;
}
.sect-3__item-image img {
  border-radius: 40px;
}
.sect-3__item-content {
  margin-left: 79px;
  max-width: 607px;
}
.sect-3__item-content-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #2f2f2e;
}
.sect-3__item-content-description {
  margin-top: 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #8b8987;
}

@media (max-width: 1200px) {
  .sect-3__item-content {
    max-width: 380px;
  }
  .sect-3__top-description {
    max-width: 475px;
  }
}
@media (max-width: 992px) {
  .sect-3__item-num {
    display: none;
  }
  .sect-3__item-content {
    margin-left: 30px;
  }
}
@media (max-width: 768px) {
  .sect-3 {
    padding: 20px 0;
  }
  .sect-3__top {
    flex-wrap: wrap;
    gap: 18px;
    padding-bottom: 24px;
  }
  .sect-3__top-title {
    max-width: 100%;
    width: 100%;
    font-size: 16px;
    text-align: center;
  }
  .sect-3__top-description {
    max-width: 100%;
    width: 100%;
    font-size: 13px;
    text-align: center;
  }
  .sect-3__row {
    margin-top: 24px;
    gap: 16px;
  }
  .sect-3__item {
    flex-wrap: wrap;
  }
  .sect-3__item-image {
    position: relative;
  }
  .sect-3__item-image img {
    border-radius: 60px;
    z-index: 1;
    position: relative;
  }
  .sect-3__item-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(232, 102, 102, 0.5);
    border: 1px solid #e86666;
    border-radius: 60px;
    z-index: 0;
    bottom: -20px;
  }
  .sect-3__item {
    gap: 32px;
    justify-content: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #ccd6eb;
  }
  .sect-3__item-content {
    margin-left: 0;
    min-width: 100%;
    width: 100%;
  }
  .sect-3__item-content-title {
    text-align: center;
  }
  .sect-3__item-content-description {
    margin-top: 8px;
    text-align: center;
    font-size: 15px;
  }
  .sect-3__row {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.sect-4 {
  padding: 100px 0;
  background: #f4b3b3;
  position: relative;
  background-image: url(../img/sect-4/bg.svg);
  background-size: cover;
  background-position: top center;
}

.sect-4__row {
  display: flex;
  align-items: center;
  gap: 72px;
}

.sect-4__content {
  max-width: 607px;
}
.sect-4__content-title {
  font-family: cormorant-garamond, sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 120%;
  text-transform: uppercase;
  color: #201613;
}
.sect-4__content-description {
  margin-top: 40px;
  max-width: 607px;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #70432f;
}

.sect-4__image-hero {
  position: relative;
}
.sect-4__image-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(232, 102, 102, 0.5);
  border: 1px solid #e86666;
  border-radius: 50px;
  right: -24px;
  bottom: -24px;
  z-index: 0;
}
.sect-4__image-hero img {
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

@media (max-width: 1520px) {
  .sect-4__mark-right img {
    max-width: 40%;
  }
}
@media (max-width: 1200px) {
  .sect-4__content {
    max-width: 502px;
  }
}
@media (max-width: 992px) {
  .sect-4__row {
    flex-wrap: wrap;
  }
  .sect-4__content {
    max-width: 100%;
  }
  .sect-4 {
    background-position: bottom left;
  }
}
@media (max-width: 768px) {
  .sect-4 {
    background-image: url(../img/sect-4/bg-mob.svg);
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .sect-4__content-title {
    font-size: 16px;
    text-align: center;
  }
  .sect-4__content-description {
    margin-top: 18px;
    text-align: center;
    font-size: 15px;
  }
  .sect-4__row {
    gap: 20px;
  }
  .sect-4__image-hero img {
    border-radius: 60px;
  }
  .sect-4__image-hero::before {
    border-radius: 60px;
    right: 0;
    bottom: -20px;
  }
}
.tarifs__item-mark {
  position: absolute;
  left: -108px;
  top: -79px;
}

.tarifs__item-list-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #201613;
  margin-bottom: 11px;
}

.tarifs {
  padding-top: 80px;
  padding-bottom: 113px;
  position: relative;
  background: #f3f3f3;
}
.tarifs__title {
  font-family: cormorant-garamond, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  color: #201613;
  text-align: center;
}
.tarifs__wrap {
  margin-top: 58px;
  display: flex;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}
.tarifs__item {
  position: relative;
  padding: 24px 40px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}
.tarifs__item-image {
  border-radius: 13px;
  order: 1;
}
.tarifs__item-title {
  margin-top: 40px;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
}
.tarifs__item-prise-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  order: 3;
  margin: 0 25px 60px 25px;
  margin-top: 60px;
}
.tarifs .check-btn-box {
  margin-top: 0;
}
.tarifs__item-old {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 100%;
  text-decoration-line: line-through;
  color: #2d2d2d;
  opacity: 0.5;
}
.tarifs__item-new {
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  color: #2d2d2d;
}
.tarifs__item-list {
  padding: 0;
  max-width: 424px;
  order: 2;
  margin-top: 0;
  margin-bottom: 0;
}
.tarifs__item-list li {
  list-style-type: none;
  position: relative;
  padding-left: 39px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #8b8987;
  margin-bottom: 10px;
}
.tarifs__item-list li span {
  color: #201613;
}
.tarifs__item-list li:last-child {
  margin-bottom: 0;
}
.tarifs__item-list li img {
  position: absolute;
  left: 0;
  top: 1px;
}

.tariffs__button {
  width: 100%;
  height: 70px;
  margin: 0 0 18px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #e86666;
  background: #f57d7d;
  border-radius: 70px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.25s ease;
}
.tariffs__button:hover {
  color: #e86666;
  background: transparent;
}

@media (max-width: 1520px) {
  .tarifs__item-list {
    max-width: 330px;
  }
}
@media (max-width: 1200px) {
  .tarifs__item-old {
    font-size: 18px;
  }
  .tarifs__item-new {
    font-size: 48px;
  }
  .tarifs__item-list {
    max-width: 290px;
  }
  .tarifs__item-prise-box {
    margin: 0 15px 60px 15px;
  }
}
@media (max-width: 991.98px) {
  .tarifs__wrap {
    margin: 42px 0 0 0;
  }
  .tarifs__item {
    flex-direction: column;
    max-width: 320px;
    margin: 0 auto;
    padding: 16px 16px 32px 16px;
  }
  .tarifs__item-prise-box {
    margin: 16px auto;
  }
  .tarifs__item-list {
    max-width: 100%;
    margin: 24px 0 0 0;
  }
}
@media (max-width: 768px) {
  .tarifs {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .tarifs__title {
    max-width: 100%;
    margin: 0 auto;
    text-align: start;
    font-size: 26px;
    line-height: 120%;
  }
  .tarifs__wrap {
    margin-top: 32px;
  }
}
.check-btn-box {
  max-width: 364px;
  order: 4;
}

@media (max-width: 1200px) {
  .check-btn-box {
    max-width: 245px;
  }
  .tarifs__item-list {
    max-width: 252px;
  }
  .tarifs__item-list li {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .check-btn-box {
    max-width: 100%;
  }
}
.check-btn-box .checkbox {
  margin-top: 16px;
}
.check-btn-box .checkbox span {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #8b8987;
}
.check-btn-box .checkbox b {
  color: #201613;
  font-weight: 400;
}
.check-btn-box .checkbox span a {
  text-decoration-line: underline;
  color: #8b8987;
  transition: all 0.25s ease;
}
.check-btn-box .checkbox span a:hover {
  opacity: 1;
  color: #f57d7d;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox + label {
  display: inline-flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
}
.custom-checkbox + label::before {
  content: "";
  display: inline-block;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid rgba(43, 43, 43, 0.5);
  border-radius: 4px;
  margin-right: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: border 0.25s ease;
  cursor: pointer;
}

a.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.4;
}

.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #757575;
}
.custom-checkbox:checked + label::before {
  background-image: url(../img/tarifs/check-btn.png);
  background-size: 10px 8px;
}
.custom-checkbox:disabled + label::before {
  background-color: #e9ecef;
  transition: all 0.25s ease-uot;
}
.custom-checkbox + label::before {
  content: "";
  display: inline-block;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid rgba(43, 43, 43, 0.5);
  border-radius: 4px;
  margin-right: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: border 0.25s ease;
  cursor: pointer;
}
.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #757575;
}
.custom-checkbox:checked + label::before {
  background-image: url(../img/tarifs/check-btn.png);
  background-size: 10px 8px;
}

@media (max-width: 768px) {
  .custom-checkbox + label::before {
    margin-right: 8px;
  }
}
@media (max-width: 1520px) {
  .check-btn-box {
    max-width: 292px;
  }
  .tarifs__item-list {
    margin-left: 10px;
  }
  .tarifs__item {
    align-items: center;
  }
  .tarifs__item-list {
    margin-top: 0;
  }
  .tarifs__item-prise-box {
    margin-top: 0;
  }
  .tarifs .check-btn-box {
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .tarifs__item-list {
    margin-top: 24px;
  }
  .tarifs__item-prise-box {
    margin-top: 16px;
  }
  .tarifs__item-prise-box {
    margin-bottom: 24px;
  }
  .tariffs__button {
    margin-bottom: 24px;
  }
  .tarifs__item-list {
    margin-left: 0;
    max-width: 100%;
  }
  .tarifs__item-mark {
    display: none;
  }
}
@media (max-width: 768px) {
  .tarifs {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .tarifs__title {
    font-size: 18px;
    line-height: 120%;
    text-align: center;
  }
  .tarifs__wrap {
    margin-top: 20px;
  }
  .tarifs__item-list-title {
    font-size: 18px;
    text-align: center;
  }
  .tarifs__item-list li {
    font-size: 12px;
    padding-left: 30px;
  }
  .tarifs__item-list li img {
    width: 20px;
    top: -2px;
  }
  .tariffs__button {
    height: 55px;
    line-height: 55px;
    font-size: 15px;
  }
}
.sect-5 {
  padding: 100px 0;
  background: #f4b3b3;
  background-image: url(../img/sect-5/bg.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}

.sect-5__box {
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 50px;
  padding-top: 96px;
  padding-bottom: 59px;
  padding-left: 20px;
  padding-right: 20px;
}

.sect-5__content {
  max-width: 1094px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sect-5__content-title {
  font-family: cormorant-garamond, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #201613;
}
.sect-5__content-btn {
  display: inline-block;
  margin-top: 32px;
  padding-left: 44px;
  padding-right: 44px;
  height: 70px;
  line-height: 70px;
  background: #e86666;
  border: 1px solid #e86666;
  text-decoration: none;
  border-radius: 70px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  transition: all 0.25s ease-in-out;
}
.sect-5__content-btn:hover {
  background: transparent;
  color: #e86666;
}
.sect-5__content-subtitle {
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #8b8987;
}

@media (max-width: 768px) {
  .sect-5 {
    padding: 20px 0;
    background-image: none;
  }
  .sect-5__box {
    border-radius: 40px;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .sect-5__content-title {
    font-size: 18px;
  }
  .sect-5__content-btn {
    margin-top: 25px;
    height: 56px;
    line-height: 56px;
    padding-left: 37px;
    padding-right: 37px;
    font-size: 18px;
  }
  .sect-5__content-subtitle {
    margin-top: 25px;
    font-size: 12px;
  }
}
.sect-6 {
  padding-top: 100px;
}

.sect-6__title {
  font-family: cormorant-garamond, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  color: #201613;
  text-align: center;
}

.sect-6__wrap {
  margin-top: 52px;
}

.sect-6 .owl-carousel .owl-item img {
  display: inline-block;
  width: 150px;
}

.sect-6__item-image {
  width: 100%;
  text-align: center;
}
.sect-6__item-image img {
  display: inline-block;
  border-radius: 16px;
}
.sect-6__item-name {
  margin-top: 20px;
}
.sect-6__item-name p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #8b8987;
}
.sect-6__item-name span {
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #201613;
}
.sect-6__item-comment {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #8b8987;
}

.owl-nav {
  display: none;
}

.owl-dots {
  display: none;
}

@media (max-width: 1200px) {
  .owl-dots {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
  .owl-carousel button.owl-dot {
    width: 8px;
    height: 8px;
    background-color: #2B2B2B;
    border-radius: 100%;
    margin-left: 4px;
    margin-right: 4px;
    opacity: 0.2;
    transition: all 0.25s ease;
  }
  .owl-carousel button.owl-dot.active {
    width: 16px;
    height: 16px;
    background-color: #f57d7d;
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .sect-6__item {
    text-align: center;
  }
  .sect-6__item-image {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .sect-6 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .sect-6__title {
    font-size: 18px;
    line-height: 120%;
  }
  .sect-6__wrap {
    margin-top: 18px;
  }
  .sect-6 .owl-carousel .owl-item img {
    width: 116px;
  }
  .sect-6__item-name {
    margin-top: 13px;
    text-align: left;
  }
  .sect-6__item-name span {
    font-size: 23px;
  }
  .sect-6__item-name p {
    margin-top: 2px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .sect-6__item-comment {
    margin-top: 8px;
    text-align: left;
    font-size: 13px;
  }
}
.payment {
  margin-top: 85px;
}

.payment__row {
  display: flex;
  align-items: start;
  gap: 20px;
  justify-content: space-between;
}

.payment__title {
  font-family: cormorant-garamond, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-transform: uppercase;
  color: #201613;
  max-width: 233px;
}

.payment__text {
  max-width: 1093px;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #8b8987;
}
.payment__text a {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #8b8987;
  transition: all 0.25s ease-in-out;
}
.payment__text a:hover {
  color: #f57d7d;
}

@media (max-width: 768px) {
  .payment {
    margin-top: 20px;
  }
  .payment__row {
    flex-wrap: wrap;
    gap: 18px;
  }
  .payment__title {
    max-width: 100%;
    width: 100%;
    text-align: center;
    font-size: 18px;
  }
  .payment__text {
    font-size: 10px;
  }
  .payment__text a {
    font-size: 10px;
  }
}
.foot {
  background-color: #f3f3f3;
  padding: 40px 0;
  margin-top: 100px;
}
.foot_menu {
  padding-bottom: 40px;
  border-bottom: 1px solid #d5dcea;
  text-align: center;
}
.foot_menu ul {
  padding: 0;
  margin: 0;
}
.foot_menu ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 48px;
}
.foot_menu ul li a {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #201613;
  text-decoration: none;
  transition: all 0.25s ease;
}
.foot_menu ul li a:hover {
  color: #f57d7d;
}
.foot_menu ul li:last-child {
  margin-right: 0;
}
.foot_menu-bottom {
  display: flex;
  padding-top: 40px;
  justify-content: space-between;
}
.foot_nav ul {
  padding: 0;
  margin: 0;
}
.foot_nav ul li {
  display: inline-block;
  font-size: 14px;
  line-height: 140%;
  color: #6e7882;
  margin-bottom: 8px;
}
.foot_nav ul li:nth-child(3) {
  display: block;
}
.foot_nav ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #6e7882;
  text-decoration: none;
}
.foot__copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #6e7882;
}
.foot__pay img {
  display: inline-block;
}
.foot__info {
  max-width: 424px;
}
.foot__info ul {
  padding: 0;
  margin: 0;
}
.foot__info ul li {
  list-style-type: none;
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #6e7882;
}
.foot__info ul li:first-child {
  text-transform: uppercase;
}
.foot__info ul li:nth-child(2) {
  display: block;
}
.foot__info ul li:nth-child(3) {
  display: block;
}
.foot__info ul li:last-child img {
  margin-top: -3px;
}
.foot__info ul li:last-child a {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #6e7882;
  margin-left: 4px;
}
.foot_menu-mob {
  display: none;
}
.footer__copy-mob {
  display: none;
}

@media (max-width: 1200px) {
  .foot .container {
    max-width: 100%;
  }
  .foot_menu-bottom {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .foot_menu ul li {
    margin-right: 20px;
  }
  .foot__info {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .foot_menu ul li a {
    font-size: 16px;
    line-height: 20px;
  }
  .foot_menu ul li {
    margin-right: 20px;
  }
  .foot_menu-bottom {
    flex-wrap: wrap;
    text-align: center;
  }
  .foot_nav {
    width: 100%;
    max-width: 100%;
  }
  .foot__pay {
    width: 100%;
    max-width: 100%;
  }
  .foot__info {
    width: 100%;
    max-width: 100%;
  }
  .foot_menu {
    padding-bottom: 24px;
  }
  .foot_menu-bottom {
    padding-top: 24px;
  }
  .foot_menu {
    display: none;
  }
  .foot_menu-mob {
    display: block;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #d5dcea;
  }
  .foot_menu-mob ul {
    padding: 0;
    margin: 0;
  }
  .foot_menu-mob ul li {
    list-style-type: none;
    margin-bottom: 16px;
  }
  .foot_menu-mob ul li:last-child {
    margin-bottom: 0;
  }
  .foot_menu-mob ul li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #201613;
    text-decoration: none;
    transition: all 0.25s ease;
  }
  .foot_menu-mob ul li a:hover {
    color: #da8bff;
  }
  .foot_nav {
    display: none;
  }
  .footer__copy-mob {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #6e7882;
    border-top: 1px solid #d5dcea;
  }
  .foot__info ul li {
    display: block;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 20px;
  }
  .foot__info ul li a {
    font-size: 16px;
    line-height: 20px;
  }
  .foot__info ul li:last-child {
    margin-bottom: 0;
  }
  .foot {
    margin-top: 20px;
  }
}
.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

@media (max-width: 1200px) {
  .xl-b {
    display: block;
  }
  .xl-f {
    display: flex;
  }
  .xl-n {
    display: none;
  }
}
@media (max-width: 992px) {
  .lg-dib {
    display: inline-block;
  }
  .lg-b {
    display: block;
  }
  .lg-f {
    display: flex;
  }
  .lg-n {
    display: none;
  }
}
@media (max-width: 768px) {
  .md-b {
    display: block;
  }
  .md-f {
    display: flex;
  }
  .md-n {
    display: none;
  }
}
@media (max-width: 576px) {
  .sm-b {
    display: block;
  }
  .sm-f {
    display: flex;
  }
  .sm-n {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */