@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 10px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 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-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat";
  background-color: #fff;
  color: #000;
  font-size: 10px;
}

.container {
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lock {
  overflow: hidden;
}

.title {
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 5rem;
  text-align: center;
  word-break: break-all;
}

.input__wrap {
  text-align: center;
  padding-bottom: 6rem;
}
.input__wrap p {
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-weight: 500;
  margin-top: 1.8rem;
}
.input__box {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.input__box input {
  background: #d9d9d9;
  width: 100%;
  height: 60px;
  padding-left: 1rem;
}
.input__box button {
  background: #ac0000;
  color: #bf9b51;
  border-radius: 0px 15px 15px 0px;
  padding: 2rem 4rem;
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: uppercase;
}

@media screen and (max-width: 599px) {
  .title {
    font-size: 2rem;
    line-height: 2.3rem;
  }

  .subtitle {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .input__box {
    overflow: auto;
    flex-direction: column;
    row-gap: 1rem;
  }
  .input__box input,
  .input__box button {
    border-radius: 15px;
  }
}
/* blocks */
.header {
  background: #fff5d2;
  border-radius: 0px 0px 40px 40px;
  position: relative;
}
.header__wrap {
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top {
  background: #641f66;
  border-radius: 40px;
  font-size: 3.6rem;
  line-height: 4.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
  margin-top: -2rem;
}
.header__list {
  display: flex;
  align-items: center;
  column-gap: 3rem;
}
.header__item {
  overflow: hidden;
  padding: 1rem;
  border-radius: 1rem;
}
.header__link {
  color: #641f66;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.header__item.active {
  background-color: #641f66;
}
.header__item.active .header__link {
  color: #fff;
}
.header__burger {
  display: none;
  width: 40px;
  height: 16px;
  background: none;
  border: none;
  padding: 0;
  font-size: 0;
  color: transparent;
  position: relative;
}
.header__burger::before,
.header__burger::after {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #641f66;
  position: absolute;
  right: 0;
  z-index: 99999;
  border-radius: 10px;
}
.header__burger::before,
.header__burger::after {
  content: "";
  transition: linear 0.3s;
}

.header__burger::before {
  top: 0;
}
.header__burger::after {
  bottom: 0;
}
.header__burger.active::before,
.header__burger.active::after {
  top: 50%;
}
.header__burger.active::after {
  width: 40px;
}

.header .header__burger.active::before {
  transform: rotate(45deg) translate(0, -15%);
}
.header .header__burger.active::after {
  transform: rotate(-45deg) translate(0, 15%);
}

@media screen and (max-width: 768px) {
  .header__wrap {
    padding: 1rem 0;
  }
  .header-top {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    max-width: 390px;
    width: 100%;
    height: 100%;
    background-color: #fff5d2;
    padding-top: 16rem;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  .header__nav.active {
    transform: translateX(0%);
  }
  .header__logo img {
    width: 100px;
  }
  .header__list {
    flex-direction: column;
    text-align: center;
  }
  .header__link {
    font-size: 2.2rem;
  }
  .header__item + .header__item {
    margin-top: 3rem;
  }
  .header__burger {
    display: block;
  }
}
.home__wrap {
  padding: 12rem 0;
}
.home__title {
  color: #641f66;
  font-size: 3.6rem;
  line-height: 4rem;
  text-align: center;
  font-weight: 700;
}
.home__title span {
  display: inline-block;
  padding: 0 1rem;
  background: #fff5d2;
  border-radius: 50px;
}
.home__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  column-gap: 1.5rem;
  row-gap: 2rem;
}
.home__column {
  position: relative;
}

.home__img {
  width: 100%;
}
.home__proc {
  position: absolute;
  right: 0;
  top: 50px;
}
.home__body-mod .home__proc {
  top: 30px;
  right: 10px;
  width: 60px;
}
.home__name {
  color: #641f66;
  font-size: 3.6rem;
  line-height: 4rem;
  font-weight: 700;
}
.home__text {
  color: #8b6f8c;
  font-size: 2.4rem;
  line-height: 3rem;
  margin: 2rem 0;
}
.home__btn {
  background: #641f66;
  color: #fff;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 1rem 4rem;
  text-transform: uppercase;
}
@media screen and (max-width: 599px) {
  .home__wrap {
    padding: 6rem 2rem;
  }
  .home__title {
    display: none;
  }
  .home__name {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .home__proc {
    width: 60px;
    right: 10px;
    top: 40px;
  }
  .home__btn {
    padding: 0.8rem 2.7rem;
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .home__text {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
.order__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16rem;
  padding: 6.8rem 0;
}
.order__title {
  font-size: 3.6rem;
  line-height: 4.3rem;
  font-weight: 700;
  color: #641f66;
  position: relative;
}

.order__title:first-child {
  margin-bottom: 5rem;
}
.order__title:first-child::before {
  position: absolute;
  left: 0;
  bottom: -2rem;
  content: "";
  width: 100%;
  background-color: #641f66;
  height: 2px;
}

.order__title-last {
  margin-top: 5rem;
}
.order__title-last::after {
  position: absolute;
  left: 0;
  top: -2rem;
  content: "";
  width: 100%;
  background-color: #641f66;
  height: 2px;
}

.order__btn {
  background: #641f66;
  border-radius: 10px;
  padding: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  text-transform: uppercase;
}
.order__box {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  margin-bottom: 3rem;
}
.order__btn + .order__btn {
  margin-top: 3rem;
}
.order__box span {
  font-size: 2rem;
  color: #641f66;
  font-weight: 700;
  text-transform: uppercase;
}
.order__images {
  max-width: 360px;
  width: 100%;
}

.about .container {
  max-width: 1200px;
}
.about__wrap {
  padding: 10rem 0;
}
.about__title {
  margin-bottom: 4rem;
}
.about__title-last {
  margin-top: 10rem;
}
.about__row {
  display: flex;
  align-items: flex-start;
  column-gap: 4rem;
  background: #fff5d2;
  color: #641f66;
  font-size: 3.6rem;
  line-height: 4rem;
  font-weight: 700;

  border-radius: 40px;
  padding: 4rem;
}
.about__row + .about__row {
  margin-top: 2rem;
}
.about__row-mod {
  background: none;
  align-items: center;
}
@media screen and (max-width: 799px) {
  .order__title {
    font-size: 3rem;
    text-align: center;
  }
  .about__title {
    display: block;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .about__row {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 2rem;
  }

  .about__row img {
    width: 40px;
  }
  .about__row-mod {
    flex-direction: column;
    text-align: center;
  }
  .about__row-sec {
    flex-direction: column-reverse;
  }
  .about__row-mod img {
    width: 200px;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .info__title {
    font-size: 3.6rem;
    line-height: 4.5rem;
  }
  .info__body {
    row-gap: 3.2rem;
  }
  .info__column {
    min-height: 530px;
  }
  .info__column img {
    width: 100%;
    object-fit: contain;
    margin-bottom: auto;
  }
  .info__box {
    max-width: 100%;
    max-height: 279px;
    top: auto;
    bottom: 0;
  }
}
.table__wrap {
  padding: 4rem 0;
}
.table__body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 6rem;
}
.table__column {
  width: 270px;
  position: relative;
  background-color: #fff;
  border-radius: 15px;
}
.table__name {
  background: rgba(14, 14, 14, 0.9);
  position: absolute;
  border-radius: 15px;
  top: 0;
  width: 100%;
  padding: 2.5rem 0;
  height: 80px;
  text-align: center;
  color: #bf9b51;
  font-size: 1.8rem;
  line-height: 2rem;
}

@media screen and (max-width: 599px) {
  .table__body {
    justify-content: center;
    row-gap: 4rem;
  }
}
.terms {
  padding: 5rem 0;
}
.terms__wrap {
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 4rem;
}
.terms__wrap-acces {
  height: 100vh;
}
.terms__wrap h2 {
  font-size: 4rem;
  line-height: 4.4rem;
  font-weight: 700;
}

.terms__wrap h4 {
  font-size: 3.2rem;
  line-height: 3.6rem;
  font-weight: 700;
}

.terms__wrap ul {
  padding-left: 2rem;
}

.terms__wrap span {
  font-weight: 700;
}

@media screen and (max-width: 599px) {
  .terms__wrap {
    padding: 2rem;
  }
}
.contact .container {
  max-width: 1200px;
}
.contact__wrap {
  padding: 10rem 0;
  display: flex;
  column-gap: 10rem;
}
.contact__title {
  text-align: left;
}
.contact__list {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.contact__map {
  max-width: 560px;
  width: 100%;
  height: 484px;
  border-radius: 20px;
}
.contact__input {
  background: #fff5d2;
  border-radius: 10px;
  width: 100%;
  padding-left: 1rem;
}

.contact__input-area {
  height: 140px;
  margin-top: 6rem;
  padding-top: 1rem;
  resize: none;
}
.contact__input-mod {
  height: 50px;
  margin-top: 1.8rem;
}
.contact__input::placeholder {
  color: #641f66;
  font-weight: 700;
}
.contact__btn {
  display: block;
  padding: 1.3rem 3rem;
  background: #641f66;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2.8rem;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .contact__wrap {
    flex-direction: column;
    row-gap: 7rem;
  }
}
.footer {
  background-color: #dbdbdb;
}
.footer__wrap {
  padding: 3.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
.footer__wrap img {
  width: 215px;
  margin-bottom: 2rem;
}
.footer__list a {
  color: #000;
}
.footer__item {
  text-transform: capitalize;
}
.footer__item + .footer__item {
  margin-top: 2rem;
}
.footer__box {
  display: flex;
  align-items: center;
  height: 50px;
  margin-top: 2rem;
  max-width: 330px;
  width: 100%;
}
.footer__box input {
  background: #ffffff;
  border-radius: 10px 0px 0px 10px;
  height: 100%;
  width: 100%;
  padding-left: 2rem;
}
.footer__box button {
  background: #641f66;
  color: #fff;
  font-weight: 700;
  border-radius: 0px 10px 10px 0px;
  padding: 1.5rem 3rem;
  height: 100%;
}
.order__input {
  margin-top: 5rem;
}
.order__input input {
  background: #fff5d2;
}
@media screen and (max-width: 599px) {
  .footer__wrap {
    text-align: center;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .footer__item {
    width: 100%;
  }
  .footer__top_bottom {
    flex-direction: column-reverse;
  }
  .footer__add {
    text-align: left;
    margin-bottom: 4rem;
  }
  /*.footer__box {
    flex-direction: column;
    align-items: flex-start;
  }*/
  .footer__box p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
