/*animations*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");
@keyframes anim-1 {
  0% {
    background: rgba(255, 0, 122, 0.1);
  }
  100% {
    background: rgba(255, 122, 0, 0.1);
  }
}
@keyframes anim-2 {
  0% {
    background: rgba(128, 0, 255, 0.4);
  }
  100% {
    background: rgba(255, 0, 122, 0.36);
  }
}
@keyframes anim-3 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes anim-4 {
  0% {
    background: rgba(255, 122, 0, 0.1);
  }
  100% {
    background: rgba(255, 0, 122, 0.1);
  }
}
@keyframes anim-5 {
  0% {
    background: rgba(255, 78, 120, 0.15);
  }
  100% {
    background: rgba(0, 255, 133, 0.12);
  }
}
@keyframes anim-6 {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-1px, 1px);
  }
  40% {
    transform: translate(-1px, -1px);
  }
  60% {
    transform: translate(1px, 1px);
  }
  80% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes anim-7 {
  0% {
    background: rgba(5, 0, 255, 0.15);
  }
  100% {
    background: rgba(255, 0, 122, 0.15);
  }
}
@keyframes anim-8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-animations*/
/*fonts*/
.title-xl {
  display: block;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.title-x {
  display: block;
  font-weight: 700;
  font-size: 48px;
  line-height: 80px;
  letter-spacing: 0.05em;
  color: #414141;
}
.title-x span {
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.title-lg {
  display: block;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.05em;
  color: #414141;
}
.title-lg span {
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.title-l {
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  color: #414141;
}

.title-m {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #414141;
}

.title-s {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #414141;
}

.text-xl {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.05em;
  color: #414141;
}

.text-x {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #414141;
}

.text-lg {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #414141;
}

@media (max-width: 800px) {
  .title-xl {
    font-size: 34px;
    line-height: 44px;
  }
  .title-x {
    font-size: 30px;
    line-height: 40px;
  }
  .title-lg {
    font-size: 28px;
    line-height: 38px;
  }
  .title-l {
    font-size: 18px;
    line-height: 28px;
  }
  .title-m {
    font-size: 16px;
  }
  .text-xl {
    font-size: 16px;
    line-height: 24px;
  }
  .text-x {
    font-size: 14px;
    line-height: 24px;
  }
}
/*-fonts*/
/*options*/
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-thumb {
  background: #414141;
  border-radius: 5px;
}

body::-webkit-scrollbar-track {
  background: #FFFFFF;
}

p {
  width: fit-content;
  margin: 0px;
}

h1, h2, h3, h4, h5 {
  width: fit-content;
  margin: 0px;
}

img {
  height: auto;
  max-width: 100%;
}

ul, ol {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: none;
}

select {
  opacity: 1;
  border-radius: 0;
  font-family: "Outfit", sans-serif;
}
select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  font-family: "Outfit", sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
}
textarea::-webkit-input-placeholder {
  color: #F7FBFF;
}
textarea::-moz-placeholder {
  color: #F7FBFF;
}
textarea:-ms-input-placeholder {
  color: #F7FBFF;
}
textarea:-moz-placeholder {
  color: #F7FBFF;
}
textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: "Outfit", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
}
input::-webkit-input-placeholder {
  color: #F7FBFF;
}
input::-moz-placeholder {
  color: #F7FBFF;
}
input:-ms-input-placeholder {
  color: #F7FBFF;
}
input:-moz-placeholder {
  color: #F7FBFF;
}
input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

button {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0px;
}
button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1350px;
  padding: 0 15px;
  margin: 0 auto;
}

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

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

.section-one {
  padding: 60px 0px;
}

.section-two {
  margin-bottom: 60px;
}
.section-two .section-top {
  margin-top: 140px;
}
.section-two .section-title {
  color: #FFFFFF;
}
.section-two .section-descr {
  color: #FFFFFF;
}

.section-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}

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

.section-descr {
  text-align: center;
  margin-top: 24px;
}

.section-bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 550px;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

@media (max-width: 1200px) {
  .container {
    max-width: 800px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 500px;
  }
  .section-one {
    padding: 40px 0px;
  }
  .section-two {
    margin-bottom: 40px;
  }
  .section-two .section-top {
    margin-top: 100px;
  }
  .section-top {
    margin-bottom: 32px;
  }
  .section-bg {
    height: 100%;
  }
  .section-descr {
    margin-top: 16px;
  }
}
/*-options*/
/*buttons*/
.btn-one {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  width: fit-content;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  border-radius: 36px;
  box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
  animation: anim-6 0.7s linear infinite both;
  padding: 0px 36px;
}
.btn-one::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 50px;
  background: #FFFFFF;
  opacity: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
.btn-one::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  transition: 0.7s;
  background-size: 100%;
}
.btn-one span {
  display: block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background: url("../icons/elements/btn-1.svg") center no-repeat;
  background-size: contain;
  margin-left: 24px;
}

.btn-two {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  width: fit-content;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  padding: 0px 36px;
  transition: 0.3s;
}
.btn-two span {
  display: block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background: url("../icons/elements/btn-2.svg") center no-repeat;
  background-size: contain;
  margin-left: 24px;
}
.btn-two::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #FFFFFF;
  border-radius: 36px;
  transition: 0.3s;
}
.btn-two::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(59.41deg, #9CB2FF 4.72%, #2036FF 62.85%);
  border-radius: 36px;
  opacity: 0;
  transition: 0.3s;
}

.btn-three {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: fit-content;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  border-radius: 36px;
  padding: 0px 36px;
  transition: 0.3s;
}
.btn-three::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #282828;
  border-radius: 36px;
}
.btn-three::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(59.41deg, #9CB2FF 4.72%, #2036FF 62.85%);
  border-radius: 36px;
  opacity: 0;
  transition: 0.3s;
}
.btn-three span {
  display: block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background: url("../icons/elements/btn-1.svg") center no-repeat;
  background-size: contain;
  margin-left: 24px;
}

@media (max-width: 800px) {
  .btn-one {
    height: 56px;
    font-size: 16px;
  }
  .btn-one span {
    width: 24px;
    height: 24px;
    margin-left: 16px;
  }
  .btn-two {
    height: 56px;
    font-size: 16px;
  }
  .btn-two span {
    width: 24px;
    height: 24px;
    margin-left: 16px;
  }
  .btn-three {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .btn-one {
    width: 100%;
  }
  .btn-two {
    width: 100%;
  }
  .btn-three {
    width: 100%;
    padding: 0px;
  }
}
@media (min-width: 1200px) {
  .btn-one:hover {
    animation: none;
  }
  .btn-one:hover:before {
    opacity: 1;
  }
  .btn-one:hover:after {
    background-size: 200%;
    background-position: 100% 0;
  }
  .btn-two:hover {
    color: #2036FF;
  }
  .btn-two:hover::after {
    background: #FFFFFF;
  }
  .btn-two:hover::before {
    opacity: 1;
    transform: translate(6px, 6px);
  }
  .btn-three:hover:before {
    opacity: 1;
    transform: translate(4px, 4px);
  }
}
/*-buttons*/
/*form*/
.form-label {
  display: block;
  width: fit-content;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 4px;
}
.form-label span {
  background: #FF3B20;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

span.form-error {
  position: absolute;
  left: 0;
  bottom: -17px;
  font-size: 12px;
  color: #FF3B20;
}

.book-radio span.form-error {
  white-space: nowrap;
}

.form-input {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 24px;
}

.form-input_point {
  width: 100%;
  height: 44px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #414141;
  border-width: 2px;
  border-style: solid;
  border-image: #414141;
  border-top: none;
  border-left: none;
  border-right: none;
}

.form-input_point:focus {
  border-image: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%) 1;
}

.form-textarea {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 24px;
}

.form-textarea_point {
  width: 100%;
  height: 240px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #414141;
  border-width: 2px;
  border-style: solid;
  border-image: #414141;
  border-top: none;
  border-left: none;
  border-right: none;
}

.form-textarea_point:focus {
  border-image: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%) 1;
}

.form-checkbox {
  position: relative;
  display: flex;
  cursor: pointer;
}

.form-checkbox_point {
  padding: auto;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  padding: 0px;
  margin: 0px;
}

.form-checkbox_wrap {
  display: flex;
  align-items: center;
}

.form-checkbox_box {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-right: 16px;
}
.form-checkbox_box::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
}
.form-checkbox_box::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 2px;
  background: #FFFFFF;
}

.form-checkbox_text {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #414141;
}

.form-checkbox_point:checked + .form-checkbox_wrap .form-checkbox_box:after {
  opacity: 0;
}

.form-radio {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  margin-bottom: 24px;
}

.form-radio_point {
  position: absolute;
  z-index: -1;
  padding: 0px;
  margin: 0px;
  width: 0px;
  height: 0px;
  opacity: 0;
}

.form-radio_text {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 24px;
  color: #414141;
  text-align: center;
}
.form-radio_text::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #F1F8FF;
  border-radius: 22px;
}
.form-radio_text::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F1F8FF;
  border-radius: 24px;
}
.form-radio_text img {
  height: 70px;
  width: auto;
  margin-right: 16px;
}

.form-radio_point:checked + .form-radio_text::after {
  background: #FFFFFF;
}
.form-radio_point:checked + .form-radio_text::before {
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
}

.form-radio:nth-child(even) .form-radio_text::after {
  background: #FFFAFA;
}
.form-radio:nth-child(even) .form-radio_text::before {
  background: #FFFAFA;
}

.form-radio:nth-child(even) .form-radio_point:checked + .form-radio_text::after {
  background: #FFFFFF;
}
.form-radio:nth-child(even) .form-radio_point:checked + .form-radio_text::before {
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
}

.form-btn {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  width: fit-content;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  border-radius: 36px;
  box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
  padding: 0px 36px;
  cursor: pointer;
}
.form-btn::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 50px;
  background: #FFFFFF;
  opacity: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
.form-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  transition: 0.7s;
  background-size: 100%;
}

.form-btn_point {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 0px;
  padding: 0px;
  margin: 0px;
  opacity: 0;
}

.form-btn_text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-btn_text::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("../icons/elements/btn-3.svg") center no-repeat;
  background-size: contain;
  margin-right: 24px;
}

@media (max-width: 800px) {
  .form-input_point {
    height: 34px;
  }
  .form-textarea_point {
    height: 100px;
  }
  .form-btn {
    height: 56px;
    width: 100%;
    font-size: 16px;
  }
  .form-btn span:before {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }
  .form-radio_text {
    font-size: 16px;
    text-align: center;
    padding: 14px 10px;
  }
  .form-radio_text img {
    height: 44px;
    margin-right: 8px;
  }
}
@media (min-width: 1200px) {
  .form-btn:hover:before {
    opacity: 1;
  }
  .form-btn:hover:after {
    background-size: 200%;
    background-position: 100% 0;
  }
}
/*-form*/
/*header*/
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  padding: 16px 0px;
}
.header::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1A1A1A;
  opacity: 0;
  transition: 0.05s;
}

.header.active:before {
  opacity: 1;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  display: flex;
  align-items: flex-start;
}
.header-logo img {
  height: 36px;
}

.header-info {
  display: flex;
  align-items: center;
}

.header-menu {
  display: flex;
  align-items: center;
}
.header-menu li {
  margin-right: 40px;
}
.header-menu li:last-child {
  margin-right: 0px;
}
.header-menu a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}
.header-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 6px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .8s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='white' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: 0 100%;
  background-size: auto 4px;
  background-repeat: repeat-x;
  transition: 0.3s;
}

.header-lang {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.header-lang li {
  display: flex;
  align-items: center;
}
.header-lang li:after {
  content: "|";
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0px 5px;
}
.header-lang li:last-child:after {
  display: none;
}
.header-lang a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-transform: uppercase;
}
.header-lang a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(0px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  opacity: 0;
  transition: 0.3s;
}
.header-lang li.active a {
  font-weight: 700;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.header-socials {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.header-socials li {
  margin-right: 40px;
}
.header-socials li:last-child {
  margin-right: 0px;
}
.header-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

.header-btn {
  height: 48px;
  padding: 0px 24px;
  margin-left: 40px;
}

.header-burger {
  display: none;
}

.header-close {
  display: none;
}

.header-bg {
  display: none;
}

@media (max-width: 1200px) {
  .header-logo {
    position: relative;
    z-index: 2;
  }
  .header-info {
    position: fixed;
    right: 0;
    top: 0;
    width: 290px;
    height: 100%;
    padding: 68px 15px 0px 15px;
    background: #1A1A1A;
    display: block;
    transform: translateX(100%);
    transition: 0.3s;
  }
  .header-info.active {
    transform: translate(0);
  }
  .header-menu {
    display: block;
  }
  .header-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header-menu a {
    font-size: 18px;
    padding: 16px 0px;
  }
  .header-btn {
    position: absolute;
    left: 15px;
    bottom: 30px;
    width: calc(100% - 30px);
    margin: 0px;
  }
  .header-lang {
    position: absolute;
    left: 15px;
    bottom: 95px;
    margin: 0px;
  }
  .header-socials {
    position: absolute;
    right: 15px;
    bottom: 95px;
    margin: 0px;
  }
  .header-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
  }
  .header-burger span {
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: #FFFFFF;
    margin: 4px 0px;
  }
  .header-close {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
  }
  .header-close span {
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: #FFFFFF;
    margin: 4px 0px;
  }
  .header-close span:nth-child(1) {
    transform: translate(0px, 8px) rotate(45deg);
  }
  .header-close span:nth-child(2) {
    transform: translate(0px, -4px) rotate(-45deg);
  }
  .header-bg {
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: calc(100% - 290px);
    height: 100%;
    background: rgba(26, 26, 26, 0.5);
    display: block;
    transform: translateX(-100%);
    transition: 0.3s;
  }
  .header-bg.active {
    transform: translate(0);
  }
}
@media (min-width: 1200px) {
  .header-menu a:hover:after,
  .header-menu li.current_page_item:not(.menu-item-home) a:after {
    width: 100%;
  }
  .header-socials a:hover {
    transform: scale(1.3) rotate(360deg);
  }
  .header-lang a:hover:before {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
  }
}
/*-header*/
/*footer*/
.footer {
  background: #1A1A1A;
  border-radius: 36px 36px 0px 0px;
  padding: 80px 0px;
  margin-top: 60px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}
.footer-logo img {
  max-height: 40px;
}

.footer-info {
  display: flex;
  align-items: center;
}

.footer-menu {
  display: flex;
  align-items: center;
}
.footer-menu li {
  margin-right: 40px;
}
.footer-menu li:last-child {
  margin-right: 0px;
}
.footer-menu a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}
.footer-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 6px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .8s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='white' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: 0 100%;
  background-size: auto 4px;
  background-repeat: repeat-x;
  transition: 0.3s;
}

.footer-lang {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.footer-lang li {
  display: flex;
  align-items: center;
}
.footer-lang li:after {
  content: "|";
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0px 5px;
}
.footer-lang li:last-child:after {
  display: none;
}
.footer-lang a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-transform: uppercase;
}
.footer-lang a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(0px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  opacity: 0;
  transition: 0.3s;
}
.footer-lang li.active a {
  font-weight: 700;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-socials {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.footer-socials li {
  margin-right: 40px;
}
.footer-socials li:last-child {
  margin-right: 0px;
}
.footer-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.footer-links li {
  display: flex;
  align-items: center;
}
.footer-links li:after {
  content: "|";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0px 10px;
}
.footer-links li:last-child:after {
  display: none;
}
.footer-links a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  transition: 0.15s;
}

.footer-descr {
  color: #FFFFFF;
}

.footer-company {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.footer-company img {
  margin-left: 16px;
}

@media (max-width: 1200px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-descr {
    margin-bottom: 10px;
  }
  .footer-links {
    position: static;
    transform: translate(0);
    margin-bottom: 10px;
  }
}
@media (max-width: 800px) {
  .footer {
    padding: 40px 0px;
    margin-top: 40px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-links a {
    font-size: 14px;
  }
  .footer-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  .footer-menu li {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .footer-menu li:last-child {
    margin-bottom: 0px;
  }
  .footer-lang {
    margin-left: 0px;
    margin-top: 20px;
  }
  .footer-socials {
    margin-left: 0px;
    margin-top: 20px;
  }
  .footer-company {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .footer-menu a:hover:after {
    width: 100%;
  }
  .footer-socials a:hover {
    transform: scale(1.3) rotate(360deg);
  }
  .footer-lang a:hover:before {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
  }
  .footer-links a:hover {
    background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
/*-footer*/
/*content*/
.content *:last-child {
  margin-bottom: 0px;
}
.content h2 {
  display: block;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.05em;
  color: #414141;
  margin-bottom: 16px;
}
.content h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.05em;
  color: #414141;
  margin-bottom: 16px;
}
.content h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  color: #414141;
  margin-bottom: 16px;
}
.content h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.05em;
  color: #414141;
  margin-bottom: 16px;
}
.content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #414141;
  margin-bottom: 24px;
}
.content a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #2036FF;
  text-decoration: underline;
}
.content ul {
  margin-bottom: 24px;
}
.content ul li {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #414141;
  padding-left: 16px;
  margin-bottom: 16px;
}
.content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #414141;
}
.content ol {
  list-style: none;
  counter-reset: num;
  margin-bottom: 24px;
}
.content ol li {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #414141;
  padding-left: 16px;
  margin-bottom: 16px;
}
.content ol li:before {
  content: counter(num) ".";
  counter-increment: num;
  position: absolute;
  left: 0px;
  top: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #2036FF;
}
.content img {
  margin-bottom: 24px;
}

@media (max-width: 800px) {
  .content h2 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 8px;
  }
  .content h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 8px;
  }
  .content h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 8px;
  }
  .content h5 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .content p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .content a {
    font-size: 14px;
  }
  .content ul {
    margin-bottom: 16px;
  }
  .content ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .content ul li:before {
    top: 9px;
  }
  .content ol {
    margin-bottom: 16px;
  }
  .content ol li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .content ol li:before {
    font-size: 14px;
  }
  .content img {
    margin-bottom: 16px;
  }
}
/*-content*/
/*modal*/
.modal {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
}

.modal-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
}

.modal-box {
  position: relative;
  max-height: 100%;
  width: 1000px;
  padding: 48px 24px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(68, 99, 189, 0.1);
  border-radius: 16px;
  overflow: auto;
}
.modal-box::-webkit-scrollbar {
  width: 12px;
}
.modal-box::-webkit-scrollbar-thumb {
  background: #414141;
}
.modal-box::-webkit-scrollbar-track {
  background: #FFFFFF;
}

.modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  stroke: #414141;
  cursor: pointer;
  transition: 0.3s;
}

.modal-title {
  text-align: center;
  margin-bottom: 48px;
}

.modal-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 24px;
}

.modal-choice .form-label {
  margin-bottom: 16px;
}

.modal-event {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-bottom: 24px;
}
.modal-event .modal-radio {
  margin-bottom: 0px;
}

.modal-setup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-bottom: 24px;
}
.modal-setup .modal-radio {
  margin-bottom: 0px;
}
.modal-setup .form-radio_text {
  text-align: left;
  justify-content: flex-start;
}

.modal-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .modal-box {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .modal-event {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
  .modal-setup {
    grid-template-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
  .modal-box {
    padding: 32px 16px;
  }
  .modal-close {
    right: 10px;
    top: 10px;
  }
  .modal-title {
    margin-bottom: 32px;
  }
  .modal-inputs {
    display: block;
  }
  .modal-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
  }
  .modal-checkbox {
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .modal-close:hover {
    transform: scale(1.3) rotate(360deg);
  }
}
/*-modal*/
/*start*/
.start {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  margin-bottom: 60px;
}

.start-video {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.start-video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.start-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width:567px) {
	.start-video::before {
		content: "";
		position: absolute;
		z-index: 2;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 250px;
		background: url("../icons/elements/bg-3.svg") top no-repeat;
		background-size: cover;
	}
}
.start-wrap {
  display: flex;
  align-items: center;
  height: 100vh;
}

.start-text {
  max-width: 616px;
}

.start-text .start-subtitle {
  color: #fff;
  margin-top: 20px;
}

.start-buttons {
  display: flex;
  align-items: center;
  margin-top: 36px;
}

.start-check {
  margin-left: 24px;
}

@media (max-width: 800px) {
  .start {
    margin-bottom: 40px;
  }
  .start-text {
    max-width: 100%;
  }
  .start-buttons {
    margin-top: 24px;
  }
}
@media (max-width: 500px) {
  .start-title {
    text-align: center;
  }
  .start-text .start-subtitle {
    text-align: center;
    width: auto;
  }
  .start-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .start-check {
    margin-top: 16px;
    margin-left: 0px;
  }
}
/*-start*/
/*here*/
.here {
  position: relative;
}
.here::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 210px);
  background: url("../img/bg-1.png.webp") bottom no-repeat;
  background-size: cover;
}

.here-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 24px;
  max-width: 848px;
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 0px 4px 48px rgba(62, 28, 133, 0.12);
  border-radius: 48px;
  margin: auto;
}
.here-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -154px;
  bottom: -60px;
  width: 308px;
  height: 308px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-1 2s linear infinite alternate both;
}
.here-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -94px;
  right: -160px;
  width: 436px;
  height: 436px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-1 2s linear infinite alternate-reverse both;
}

.here-wrap_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 512px;
  background: #E2E1FF;
  border-radius: 24px;
  overflow: hidden;
}
.here-wrap_img::after {
  content: "";
  position: absolute;
  width: 256px;
  height: 256px;
  left: -40px;
  top: -64px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-2 2s linear infinite alternate both;
}
.here-wrap_img::before {
  content: "";
  position: absolute;
  width: 308px;
  height: 308px;
  right: -64px;
  bottom: -32px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-2 2s linear infinite alternate-reverse both;
}
.here-wrap_img img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.here-content {
  margin-top: 24px;
}

.here-info {
  padding: 24px;
  background: #FFF7F2;
  border-radius: 24px;
  margin-top: 24px;
}

.here-sub {
  color: rgba(64, 29, 14, 0.36);
}

.here-price {
  display: block;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.05em;
  color: #282828;
}

.here-label {
  color: rgba(64, 29, 14, 0.36);
}

.here-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1100px;
  margin: auto;
}

.here-box_img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 530px;
  width: 530px;
}
.here-box_img img {
  max-height: 100%;
}
.here-box_img::before {
  content: "";
  position: absolute;
  z-index: -2;
  right: 0;
  top: 0;
  display: block;
  width: 428px;
  height: 428px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-7 2s linear infinite alternate both;
}
.here-box_img::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-7 2s linear infinite alternate-reverse both;
}

.here-box_text {
  width: 424px;
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 0px 4px 48px rgba(62, 28, 133, 0.12);
  border-radius: 48px;
}

.here-book {
  margin-top: 24px;
}

.here-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
}

.here-item_img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 530px;
  width: 530px;
}
.here-item_img img {
  max-height: 100%;
}
.here-item_img::before {
  content: "";
  position: absolute;
  z-index: -2;
  right: 0;
  top: 0;
  display: block;
  width: 428px;
  height: 428px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-7 2s linear infinite alternate both;
}
.here-item_img::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-7 2s linear infinite alternate-reverse both;
}

.here-item_text {
  width: 520px;
}

@media (max-width: 1200px) {
  .here-box {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .here-box_img {
    margin-bottom: 30px;
  }
  .here-item {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .here-item_img {
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .here-wrap {
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
    border-radius: 16px;
    padding: 16px;
  }
  .here-wrap_img {
    min-height: 100%;
    border-radius: 16px;
  }
  .here-wrap_img::after {
    width: 200px;
    height: 200px;
    left: -100px;
    top: -100px;
  }
  .here-wrap_img::before {
    width: 200px;
    height: 200px;
    right: -100px;
    bottom: -100px;
  }
  .here-content {
    margin-top: 16px;
  }
  .here-info {
    padding: 16px;
    border-radius: 16px;
  }
  .here-price {
    font-size: 40px;
    line-height: 50px;
  }
  .here-box_img {
    width: 100%;
    height: auto;
  }
  .here-box_img::after {
    width: 160px;
    height: 160px;
  }
  .here-box_img::before {
    width: 160px;
    height: 160px;
  }
  .here-box_text {
    width: 100%;
    border-radius: 16px;
  }
  .here-item_img {
    width: 100%;
    height: auto;
  }
  .here-item_img::after {
    width: 160px;
    height: 160px;
  }
  .here-item_img::before {
    width: 160px;
    height: 160px;
  }
  .here-item_text {
    width: 100%;
    border-radius: 16px;
  }
}
@media (max-width: 500px) {
  .here-wrap_img {
    height: 112vw;
  }
}
/*-here*/
/*offer*/
.offer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 24px;
}

.offer-img {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column-start: 1;
  grid-column-end: 5;
  height: 100%;
}
.offer-img img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.offer-boxs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-start: 5;
  grid-column-end: 13;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
}

.offer-box {
  grid-column-start: 1;
  grid-column-end: 3;
  padding: 24px;
  background: #FFF7F7;
  border-radius: 24px;
  transition: 0.2s;
}

.offer-box:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 2;
}

.offer-box:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 3;
}

@media (max-width: 1200px) {
  .offer-wrap {
    display: block;
  }
  .offer-img {
    height: 650px;
    width: 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 800px) {
  .offer-img {
    height: 400px;
    margin-bottom: 16px;
  }
  .offer-img img {
    border-radius: 16px;
  }
  .offer-boxs {
    display: block;
  }
  .offer-box {
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .offer-box:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 500px) {
  .offer-img {
    height: 80vw;
  }
}
@media (min-width: 1200px) {
  .offer-box:hover {
    box-shadow: 0px 4px 48px rgba(62, 28, 133, 0.12);
  }
}
/*-offer*/
/*benefits*/
.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.benefits-list_point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  border-radius: 24px;
  background: #FEF7FF;
  transition: 0.2s;
}

.benefits-list_point:nth-child(2) {
  background: #FFFBF9;
}

.benefits-list_point:nth-child(3) {
  background: #F9FDFF;
}

.benefits-list_point:nth-child(4) {
  background: #FFF9F9;
}

.benefits-list_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(158.99deg, #FFFAFA 4.78%, #F9EDFF 95.64%);
  border-radius: 24px;
}
.benefits-list_icon img {
  width: 88px;
  height: 88px;
}

.benefits-list_title {
  margin-top: 24px;
}

.benefits-list_descr {
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .benefits-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .benefits-list {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
  }
  .benefits-list_point {
    border-radius: 16px;
    padding: 8px;
  }
  .benefits-list_icon {
    width: 100px;
    height: 100px;
    border-radius: 16px;
  }
  .benefits-list_icon img {
    width: 60px;
    height: 60px;
  }
  .benefits-list_title {
    margin-top: 16px;
  }
  .benefits-list_descr {
    margin-top: 8px;
  }
}
@media (min-width: 1200px) {
  .benefits-list_point:hover {
    box-shadow: 0px 4px 48px rgba(62, 28, 133, 0.12);
  }
}
/*-benefits*/
/*use*/
.use-boxs {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 160px;
}

.use-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 24px;
}

.use-box_number {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  width: 144px;
  height: 144px;
  border-radius: 50%;
}
.use-box_number:before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg-3.png.webp") center no-repeat;
  background-size: contain;
  animation: anim-8 15s linear infinite;
}
.use-box_number::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 20px);
  transform: translateX(-50%);
  z-index: -3;
  height: 600px;
  width: 2px;
  border-right: 2px dashed #F1F1F1;
}

.use-box:last-child .use-box_number:after {
  display: none;
}

.use-box_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column-start: 3;
  grid-column-end: 8;
  height: 550px;
}
.use-box_img img {
  max-height: 100%;
}

.use-box_text {
  grid-column-start: 8;
  grid-column-end: 13;
}

.use-box_content {
  margin-top: 24px;
}

.use-box:nth-child(even) .use-box_number::before {
  background: url("../img/bg-4.png.webp") center no-repeat;
  background-size: contain;
  animation: anim-8 15s linear infinite reverse;
}

.use-box:nth-child(1) .use-box_img::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  display: block;
  width: 428px;
  height: 428px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-4 2s linear infinite alternate both;
}
.use-box:nth-child(1) .use-box_img::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-4 2s linear infinite alternate-reverse both;
}

.use-box:nth-child(2) .use-box_img::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-4 2s linear infinite alternate-reverse both;
}
.use-box:nth-child(2) .use-box_img::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: 0;
  top: 0;
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-4 2s linear infinite alternate both;
}

.use-box:nth-child(3) .use-box_img::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: 0;
  top: 0;
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-5 2s linear infinite alternate-reverse both;
}

@media (max-width: 1200px) {
  .use-boxs {
    display: block;
  }
  .use-box {
    display: block;
    margin-bottom: 100px;
  }
  .use-box:last-child {
    margin-bottom: 0px;
  }
  .use-box_img {
    margin-bottom: 30px;
  }
  .use-box_number {
    margin-bottom: 30px;
  }
  .use-box_number::after {
    display: none;
  }
}
@media (max-width: 800px) {
  .use-box {
    margin-bottom: 60px;
  }
  .use-box_number {
    position: relative;
    left: 50%;
    top: 0;
    transform: translateY(0) translateX(-50%);
    width: 100px;
    height: 100px;
    font-size: 30px;
    line-height: 30px;
  }
  .use-box_img {
    height: auto;
  }
  .use-box_img img {
    width: 100%;
  }
  .use-box:nth-child(1) .use-box_img::after {
    width: 160px;
    height: 160px;
  }
  .use-box:nth-child(1) .use-box_img::before {
    width: 160px;
    height: 160px;
  }
  .use-box:nth-child(2) .use-box_img::after {
    width: 160px;
    height: 160px;
  }
  .use-box:nth-child(2) .use-box_img::before {
    width: 160px;
    height: 160px;
  }
  .use-box:nth-child(3) .use-box_img::after {
    width: 160px;
    height: 160px;
  }
}
/*-use*/
/*check*/
.check {
  position: relative;
}
.check::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(100% - 200px);
  left: 0;
  width: 100%;
  height: 1800px;
  background: url("../img/bg-2.png.webp") top no-repeat;
  background-size: cover;
}

.check-img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
}

.check-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 870px;
  margin: 140px auto 60px auto;
}

.check-title {
  color: #FFFFFF;
}

.check-descr {
  color: #FFFFFF;
  margin-top: 32px;
}

.check-book {
  margin-top: 32px;
}

.check-sub {
  color: #FFFFFF;
  margin-top: 164px;
}

.check-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 880px;
  grid-row-gap: 40px;
  grid-column-gap: 40px;
  margin-left: 180px;
}

.check-photo_box {
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(68, 99, 189, 0.1);
  border-radius: 16px;
  transition: 0.2s;
}

.check-photo_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 480px;
  border-radius: 4px 4px 0px 0px;
  overflow: hidden;
}
.check-photo_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-photo_title {
  margin-top: 16px;
}

.check-photo_box:nth-child(3),
.check-photo_box:nth-child(4),
.check-photo_box:nth-child(5),
.check-photo_box:nth-child(6) {
  position: relative;
  left: 70px;
}

.check-video {
  width: 880px;
  margin-left: 180px;
}

.check-video_box {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(68, 99, 189, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
  transition: 0.2s;
}

.check-video_box:nth-child(even) {
  margin-left: 90px;
}

.check-video_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 470px;
}
.check-video_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.check-video_wrap svg {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  fill: #FFFFFF;
  transition: 0.2s;
}

.check-video_box:last-child {
  margin-bottom: 0px;
}

@media (max-width: 1200px) {
  .check-text {
    margin: 20px 0px 60px 0px;
  }
  .check-sub {
    margin-top: 60px;
  }
  .check-photo {
    width: 100%;
    margin-left: 0px;
  }
  .check-photo_img {
    height: 400px;
  }
  .check-video {
    width: 100%;
    margin-left: 0px;
  }
  .check-video_box:last-child {
    margin-left: 30px;
  }
  .check-video_wrap {
    height: 400px;
  }
}
@media (max-width: 800px) {
  .check-img {
    height: 600px;
    object-fit: cover;
  }
  .check-sub {
    margin-top: 40px;
  }
  .check-text {
    margin-bottom: 40px;
  }
  .check-descr {
    margin-top: 16px;
  }
  .check-photo {
    grid-row-gap: 8px;
    grid-column-gap: 8px;
  }
  .check-photo_box {
    padding: 8px;
    border-radius: 8px;
  }
  .check-photo_img {
    height: 250px;
  }
  .check-photo_box:nth-child(3), .check-photo_box:nth-child(4), .check-photo_box:nth-child(5), .check-photo_box:nth-child(6) {
    left: 12px;
  }
  .check-photo_title {
    width: 100%;
    margin-top: 8px;
    text-align: center;
  }
  .check-video_box {
    position: relative;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .check-video_box:nth-child(even) {
    left: 12px;
    margin-left: 0px;
  }
  .check-video_wrap {
    height: 300px;
  }
}
@media (max-width: 500px) {
  .check-photo_img {
    height: 50vw;
  }
  .check-video_wrap {
    height: 60vw;
  }
  .check-video_wrap svg {
    width: 36px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .check-photo_box:hover {
    box-shadow: 0px 4px 48px rgba(62, 28, 133, 0.12);
  }
  .check-video_box:hover {
    box-shadow: 0px 10px 30px rgba(62, 28, 133, 0.3);
  }
  .check-video_wrap:hover svg {
    fill: #2036FF;
  }
}
/*-check*/
/*faq*/
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 24px;
  width: 980px;
  margin: auto;
}

.faq-list_point {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0px 4px 48px rgba(62, 28, 133, 0.12);
}

.faq-list_title {
  width: calc(100% - 50px);
  font-weight: 500;
  transition: 0.15s;
}

.faq-list_top {
  display: flex;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
}

.faq-list_arrow {
  stroke: #2036FF;
  transition: 0.3s;
}

.faq-list_top.active .faq-list_arrow {
  stroke: #FF3B20;
  transform: rotate(-180deg);
}

.faq-list_bottom {
  display: none;
  padding: 24px;
  border-top: 1px solid #E3E5E4;
}

@media (max-width: 1200px) {
  .faq-list {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .faq-list {
    grid-row-gap: 16px;
  }
  .faq-list_point {
    border-radius: 16px;
  }
  .faq-list_top {
    padding: 16px;
  }
  .faq-list_bottom {
    padding: 16px;
  }
  .faq-list_arrow {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 1200px) {
  .faq-list_top:hover .faq-list_title {
    color: #2036FF;
  }
  .faq-list_top.active:hover .faq-list_title {
    color: #FF3B20;
  }
}
/*-faq*/
/*gallery*/
.gallery-list_point {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32%;
  margin-bottom: 24px;
}
.gallery-list_point img {
  width: 100%;
  border-radius: 8px;
  transition: 0.3s;
}

.gallery-slider {
  overflow: visible;
}

.gallery-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 520px;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

.gallery-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.gallery-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  outline: none;
  margin: 12px;
}
.gallery-arrow svg {
  stroke: #2036FF;
  transition: 0.15s;
}

.can-arrow.swiper-button-disabled {
  opacity: 0.5;
}

.gallery-video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 700px;
  max-width: 1200px;
  background: #FFFFFF;
  padding: 24px;
  box-shadow: 0px 4px 40px rgba(68, 99, 189, 0.1);
  border-radius: 16px;
  margin: 120px auto 0px auto;
}
.gallery-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.gallery-video svg {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  fill: #FFFFFF;
  transition: 0.2s;
}

@media (max-width: 1200px) {
  .gallery-list_point {
    width: calc(50% - 17px);
  }
  .gallery-video {
    height: 500px;
  }
}
@media (max-width: 800px) {
  .gallery-list_point {
    margin-bottom: 8px;
    width: calc(50% - 5px);
  }
  .gallery-arrows {
    justify-content: flex-start;
  }
  .gallery-video {
    height: 350px;
    margin-top: 80px;
  }
}
@media (max-width: 500px) {
  .gallery-slide {
    height: 100vw;
  }
  .gallery-video {
    height: 67vw;
    padding: 16px;
  }
  .gallery-video svg {
    width: 36px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .gallery-arrow:hover svg {
    stroke: #FF3B20;
  }
  .gallery-list_point:hover img {
    transform: scale(1.04);
    box-shadow: 0px 10px 30px rgba(62, 28, 133, 0.3);
  }
  .gallery-slide:hover img {
    box-shadow: 0px 10px 30px rgba(62, 28, 133, 0.3);
  }
  .gallery-video:hover svg {
    fill: #2036FF;
  }
}
/*-gallery*/
/*can*/
.can-wrap {
  display: flex;
}

.can-box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 340px;
  margin-right: 70px;
}

.can-arrows {
  display: flex;
  align-items: center;
}

.can-slider {
  width: 700px;
  overflow: visible;
  margin: 0;
}
.can-slider::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: calc(100% + 24px);
  top: 0;
  height: 100%;
  width: 2000px;
  background: #FFFFFF;
}

.can-slider.two::before {
  background: #FAFAFA;
}

.can-slide_img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
}
.can-slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

.can-slide_title {
  margin-top: 16px;
}

.can-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  outline: none;
  margin-right: 24px;
}
.can-arrow svg {
  stroke: #2036FF;
  transition: 0.15s;
}

.can-arrow.swiper-button-disabled {
  opacity: 0.5;
}

@media (max-width: 800px) {
  .can-wrap {
    display: block;
  }
  .can-slider {
    width: 90%;
  }
  .can-slider:before {
    display: none;
  }
  .can-slide_img {
    height: 470px;
  }
  .can-box {
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    margin-right: 0px;
    margin-bottom: 32px;
  }
  .can-title {
    width: calc(100% - 100px);
  }
  .can-arrow {
    margin-right: 16px;
  }
  .can-next {
    margin-right: 0px;
  }
}
@media (max-width: 500px) {
  .can-slide_img {
    height: 94vw;
  }
  .can-slide_title {
    margin-top: 8px;
  }
}
@media (min-width: 1200px) {
  .can-arrow:hover svg {
    stroke: #FF3B20;
  }
  .can-slide:hover .can-slide_img img {
    box-shadow: 0px 10px 30px rgba(62, 28, 133, 0.3);
  }
}
/*-can*/
/*platform*/
.platform {
  position: relative;
  z-index: 2;
}

.platform-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 650px;
  height: 650px;
  margin-right: 24px;
}
.platform-img img {
  max-height: 100%;
}
.platform-img::before {
  content: "";
  position: absolute;
  z-index: -2;
  right: 0;
  top: 0;
  display: block;
  width: 428px;
  height: 428px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-4 2s linear infinite alternate both;
}
.platform-img::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  animation: anim-4 2s linear infinite alternate-reverse both;
}

.platform-text {
  width: 424px;
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(68, 99, 189, 0.1);
  border-radius: 24px;
}

.platform-title span {
  font-size: 70px;
  line-height: 120%;
}

.platform-descr {
  margin-top: 24px;
}

.platform-btn {
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .platform-wrap {
    flex-direction: column;
    align-items: center;
  }
  .platform-text {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 800px) {
  .platform-img {
    width: 100%;
    height: auto;
  }
  .platform-img::after {
    width: 160px;
    height: 160px;
  }
  .platform-img::before {
    width: 160px;
    height: 160px;
  }
  .platform-title span {
    font-size: 50px;
  }
  .platform-text {
    padding: 24px;
    border-radius: 16px;
  }
  .platform-descr {
    margin-top: 16px;
  }
}
/*-platform*/
/*price*/
.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
  align-items: flex-start;
}

.price-list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 0px 4px 48px rgba(62, 28, 133, 0.12);
  border-radius: 24px;
  text-align: center;
}

.price-list_icon {
  max-height: 170px;
}

.price-list_title {
  margin-top: 24px;
}

.price-list_num {
  display: block;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.05em;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-top: 16px;
}

.price-list_descr {
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
}

.price-list_btn {
  margin-top: 24px;
}

.price-list_points {
  width: 100%;
  margin-top: 16px;
  text-align: left;
  display: none;
}

.price-list_point {
  position: relative;
  display: block;
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  padding-left: 16px;
  margin-bottom: 8px;
}
.price-list_point:last-child {
  margin-bottom: 0px;
}
.price-list_point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1A1A1A;
}

.price-list_more {
  display: block;
  margin-top: 16px;
  text-align: center;
  color: #414141;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1px;
  text-decoration: underline;
  cursor: pointer;
}
.price-list_more span:nth-child(2) {
  display: none;
}

.price-list_more.active span:nth-child(1) {
  display: none;
}
.price-list_more.active span:nth-child(2) {
  display: block;
}

.price-descr {
  display: block;
  text-align: center;
  max-width: 1000px;
  margin: 32px auto 0px auto;
}

.price-boxs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
  margin-top: 32px;
}

.price-box {
  padding: 24px;
  background: #FFF6F6;
  border-radius: 24px;
}
.price-box h3 {
  margin-bottom: 24px;
}
.price-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
}

.price-box:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 9;
}

.price-box:nth-child(2) {
  grid-column-start: 9;
  grid-column-end: 13;
  background: #EEF2FF;
}
.price-box:nth-child(2) ul {
  grid-template-columns: 1fr;
}

@media (max-width: 1200px) {
  .price-list {
    grid-template-columns: 1fr 1fr;
  }
  .price-boxs {
    display: block;
  }
  .price-box:nth-child(1) {
    margin-bottom: 24px;
  }
}
@media (max-width: 800px) {
  .price-list {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
  }
  .price-list_item {
    border-radius: 16px;
    padding: 16px;
  }
  .price-list_title {
    margin-top: 16px;
  }
  .price-list_num {
    font-size: 30px;
    line-height: 40px;
  }
  .price-list_btn {
    margin-top: 16px;
  }
  .price-box {
    padding: 16px;
    border-radius: 16px;
  }
  .price-box h3 {
    margin-bottom: 16px;
  }
  .price-box ul {
    grid-column-gap: 16px;
  }
  .price-list_point {
    font-size: 14px;
  }
  .price-list_point::before {
    top: 7px;
    width: 4px;
    height: 4px;
  }
  .price-list_more {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (min-width: 1200px) {
  .price-list_more:hover {
    background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
/*-price*/
/*question*/
.question-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.question-tabs {
  width: 290px;
  min-width: 290px;
  margin-right: 48px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0px 4px 40px rgba(68, 99, 189, 0.1);
}
.question-tabs span {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  color: #414141;
}
.question-tabs li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 84px;
  width: 100%;
  padding: 0px 24px;
  cursor: pointer;
}
.question-tabs li::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  border-radius: 24px;
  opacity: 0;
}
.question-tabs li::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 4px;
  top: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: #FFFFFF;
  border-radius: 23px;
}
.question-tabs li.active span {
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.question-tabs li.active:before {
  opacity: 1;
}

.question-box {
  display: none;
}

.question-box.active {
  display: block;
}

@media (max-width: 1200px) {
  .question-wrap {
    display: block;
  }
  .question-tabs {
    width: 100%;
    min-width: 100%;
    margin-right: 0px;
    margin-bottom: 32px;
  }
}
@media (max-width: 800px) {
  .question-tabs {
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .question-tabs li {
    justify-content: center;
    height: 44px;
    text-align: center;
  }
  .question-tabs span {
    font-size: 16px;
  }
  .question-tabs li:before {
    border-radius: 16px;
  }
  .question-tabs li:after {
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 14px;
  }
}
/*-question*/
/*contact*/
.contact-boxs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 4px 40px rgba(68, 99, 189, 0.1);
  margin-bottom: 64px;
}

.contact-label {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 36px;
  text-transform: uppercase;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 24px;
}

.contact-link {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  text-align: justify;
  color: #414141;
}
.contact-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 6px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .8s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='grey' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: 0 100%;
  background-size: auto 4px;
  background-repeat: repeat-x;
  transition: 0.3s;
}

.contact-social {
  display: flex;
  align-items: center;
}
.contact-social li {
  margin-right: 40px;
}
.contact-social li:last-child {
  margin-right: 0px;
}
.contact-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.contact-info {
  padding: 48px 24px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(68, 99, 189, 0.1);
  border-radius: 16px;
}

.contact-title {
  width: 100%;
  margin-bottom: 48px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 24px;
}

.contact-form_wrap .contact-input:last-child {
  margin-bottom: 0px;
}

.contact-textarea {
  height: 100%;
  margin-bottom: 0px;
}
.contact-textarea .form-textarea_point {
  height: calc(100% - 20px);
}

.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  grid-column-start: 1;
  grid-column-end: 3;
  margin-top: 48px;
}

@media (max-width: 800px) {
  .contact-boxs {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-bottom: 32px;
  }
  .contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .contact-box:last-child {
    margin-bottom: 0px;
  }
  .contact-label {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .contact-link {
    font-size: 16px;
    line-height: 24px;
  }
  .contact-info {
    padding: 16px;
  }
  .contact-title {
    margin-bottom: 32px;
  }
  .contact-form {
    display: block;
  }
  .contact-form_wrap {
    margin-bottom: 24px;
  }
  .contact-textarea .form-textarea_point {
    height: 100px;
  }
  .contact-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
  }
  .contact-checkbox {
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .contact-link:hover:after {
    width: 100%;
  }
  .contact-social a:hover {
    transform: scale(1.3) rotate(360deg);
  }
}
/*-contact*/
/*mistake*/
.mistake .section-bg {
  height: 100%;
}
.mistake-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.mistake-wrap h1 {
  color: #FFFFFF;
  margin-bottom: 32px;
}

.mistake-number {
  display: block;
  font-size: 170px;
  line-height: 100%;
  font-weight: 700;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (max-width: 800px) {
	.mistake .section-bg {
	  height: 120%;
	}
  .mistake-wrap {
    margin-top: 90px;
  }
  .mistake-wrap h1 {
    margin-top: 32px;
  }
  .mistake-number {
    font-size: 100px;
  }
}
/*-mistake*/
/*page*/
.page-wrap {
  max-width: 1000px;
  padding: 24px;
  border-radius: 16px;
  margin: auto;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(68, 99, 189, 0.1);
}

@media (max-width: 800px) {
  .page-wrap {
    padding: 16px;
  }
}
/*-page*/
/*book*/
.book-form {
  max-width: 870px;
  margin: auto;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px 0px rgba(68, 99, 189, 0.1);
  padding: 50px 110px;
}

.book-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.book-error {
  position: absolute;
  left: 0;
  bottom: -20px;
  display: none;
  font-size: 14px;
  color: #D43232;
}

.book-label {
  position: absolute;
  left: 16px;
  top: 17px;
  color: #7F7F7F;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  background: #FFFFFF;
  padding: 0px 4px;
  transition: 0.2s;
}
.book-label span {
  color: #D43232;
}

.book-icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  pointer-events: none;
}

.book-input {
  position: relative;
  display: block;
  width: 100%;
}

.book-input-date {
  min-height: 50px;
}

.book-input_point {
  width: 100%;
  height: 50px;
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  border-radius: 10px;
  border: 1px solid #7F7F7F;
  padding: 0px 16px;
}

.book-input_point:focus {
  border: 1px solid #2036FF;
}
.book-input_point:focus + span + .book-label {
  color: #2036FF;
  font-size: 12px;
  top: -6px;
}
.book-input_point:focus + .book-label {
  color: #2036FF;
  font-size: 12px;
  top: -6px;
}

.book-input_point:valid + span + .book-label {
  font-size: 12px;
  top: -6px;
}
.book-input_point:valid + .book-label {
  top: -6px;
}

.book-input .dpifs-fake-input {
  width: 100%;
  height: 50px;
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  border-radius: 10px;
  border: 1px solid #7F7F7F;
  padding: 0px 16px;
  position: relative;
}

.book-input .dpifs-fake-input + .book-label {
  pointer-events: none;
}

.book-input .dpifs-fake-input:focus,
.datepicker-in-fullscreen-modal.dpifs-show ~ .wrapper .book-input .dpifs-fake-input {
	border: 1px solid #2036FF;
}

.datepicker-in-fullscreen-modal.dpifs-show ~ .wrapper .book-input .dpifs-fake-input + span + .book-label {
  color: #2036FF;
  font-size: 12px;
  top: -6px;
}

.datepicker-in-fullscreen-modal.dpifs-show ~ .wrapper .book-input .dpifs-fake-input + .book-label {
  color: #2036FF;
  font-size: 12px;
  top: -6px;
}

.book-input .dpifs-fake-input:not(:empty) + span + .book-label {
  font-size: 12px;
  top: -6px;
}
.book-input .dpifs-fake-input:not(:empty) + .book-label {
  top: -6px;
}

.book-textarea {
  position: relative;
  display: block;
  width: 100%;
}

.book-textarea_point {
  width: 100%;
  height: 82px;
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  border-radius: 10px;
  border: 1px solid #7F7F7F;
  padding: 16px 16px;
}

.book-textarea_point + span + .book-label {
  top: -6px;
}
.book-textarea_point + .book-label {
  top: -6px;
}

.book-textarea_point[data-val=""] + span + .book-label,
.book-textarea_point[data-val=""] + .book-label {
  font-size: 16px;
  top: 17px;
}

.book-textarea_point:focus {
  border: 1px solid #2036FF;
}
.book-textarea_point:focus + span + .book-label {
  color: #2036FF;
  font-size: 12px;
  top: -6px;
}
.book-textarea_point:focus + .book-label {
  color: #2036FF;
  font-size: 12px;
  top: -6px;
}

.book-input_point.form-error,
.book-textarea_point.form-error,
.form-error[data-toggle="datepicker"] ~ .dpifs-fake-input {border-color: #FF3B20;}

.book-box {
  margin-bottom: 30px;
}

.book-sub {
  display: block;
  color: #414141;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 16px;
}
.book-sub span {
  color: #E54C4C;
}

.book-radio {
  position: relative;
  cursor: pointer;
}

.book-radio_point {
  position: absolute;
  z-index: -1;
  padding: 0px;
  margin: 0px;
  width: 0px;
  height: 0px;
  opacity: 0;
}

.book-radio_text {
  position: relative;
  display: flex;
  align-items: center;
  height: 22px;
  color: #404040;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  padding-left: 32px;
}
.book-radio_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #414141;
}
.book-radio_text::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #414141;
  display: none;
}

.book-radio_point:checked + .book-radio_text:after {
  display: block;
}

.book-radio_point:checked + span + .book-radio_text:after {
  display: block;
}

.book-check {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}

.book-check_point {
  position: absolute;
  z-index: -1;
  padding: 0px;
  margin: 0px;
  width: 0px;
  height: 0px;
  opacity: 0;
}

.book-check_text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  font-weight: 500;
  font-size: 18px;
  color: #414141;
}
.book-check_text::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #F1F8FF;
  border-radius: 22px;
}
.book-check_text::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F1F8FF;
  border-radius: 24px;
}
.book-check_text img {
  width: 60px;
  min-width: 60px;
  height: 60px;
}

.book-check_point:checked + .book-check_text::after {
  background: #FFFFFF;
}
.book-check_point:checked + .book-check_text::before {
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
}

.book-check:nth-child(1) .book-check_text::after {
  background: #FFFAFA;
}
.book-check:nth-child(1) .book-check_text::before {
  background: #FFFAFA;
}

.book-check:nth-child(2) .book-check_text::after {
  background: #FFF2F2;
}
.book-check:nth-child(2) .book-check_text::before {
  background: #FFF2F2;
}

.book-check:nth-child(2) .book-check_point:checked + .book-check_text::after,
.book-check:nth-child(1) .book-check_point:checked + .book-check_text::after {
  background: #FFFFFF;
}
.book-check:nth-child(2) .book-check_point:checked + .book-check_text::before,
.book-check:nth-child(1) .book-check_point:checked + .book-check_text::before {
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
}

.book-choice {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 24px;
}

.book-select {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.book-checkbox {
  position: relative;
  display: flex;
  cursor: pointer;
  margin-bottom: 24px;
}

.book-checkbox_point {
  padding: auto;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  padding: 0px;
  margin: 0px;
}

.book-checkbox_wrap {
  display: flex;
  align-items: center;
}

.book-checkbox_box {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-right: 16px;
}
.book-checkbox_box::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
}
.book-checkbox_box::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 2px;
  background: #FFFFFF;
}

.book-checkbox_text {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #414141;
}

.book-checkbox_point:checked + .book-checkbox_wrap .book-checkbox_box:after {
  opacity: 0;
}

.book-btn {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  width: fit-content;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  border-radius: 36px;
  box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
  padding: 0px 36px;
  cursor: pointer;
}
.book-btn::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 50px;
  background: #FFFFFF;
  opacity: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
.book-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(59.41deg, #2036FF 4.72%, #9CB2FF 62.85%);
  transition: 0.7s;
  background-size: 100%;
}

.book-btn_point {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 0px;
  padding: 0px;
  margin: 0px;
  opacity: 0;
}

.book-btn_text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-btn_text::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("../icons/elements/btn-1.svg") center no-repeat;
  background-size: contain;
  margin-right: 24px;
}

.book-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .book-form {
    padding: 50px;
  }
}
@media (max-width: 800px) {
  .book-form {
    padding: 32px 16px;
  }
  .book-inputs {
    grid-template-columns: 1fr;
  }
  .book-select {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}
@media (min-width: 1200px) {
  .book-btn:hover:before {
    opacity: 1;
  }
  .book-btn:hover:after {
    background-size: 200%;
    background-position: 100% 0;
  }
}

.use-box_content.content + .start-book.btn-one.btn-book {
margin-top:20px;
}
/*-book*/


/* --- Forms --- */

form {position: relative;}
form .form-notice {display: none; background: #5fca5f; color: #fff; padding: 10px; margin-bottom: 20px;}
form.success .form-notice {display: block;}
form.error .form-notice {display: block; background: #ff1744; color: #fff;}
form .form-notice:empty {display: none;}
form.awaiting > * {opacity: 0.5; pointer-events: none;}
form.awaiting:after {content: ''; display: block; width: 80px; height: 80px; border-radius: 50%; animation: formawaitingfx 1s infinite linear; opacity: 1; position: absolute; top: 50%; left: 50%; margin: -40px 0 0 -40px; border: 8px solid #f7eeee; border-top: 8px solid #6691eb;}
@keyframes formawaitingfx {to{transform: rotate(1turn)}}