@font-face {
    font-family: 'Nebulas';
    src: url('fonts/Nebulas-Bold.ttf');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nebulas';
    src: url('fonts/Nebulas-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nebulas';
    src: url('fonts/Nebulas-Medium.ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nebulas';
    src: url('fonts/Nebulas-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cakra';
    src: url('fonts/Cakra-Normal.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html,
body {
    background-color: #E9E9E9;
    font-family: 'Nebulas', sans-serif;
    font-weight: 400;
    font-size: 21px;
    color: #323232;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #000;
}

span {
    display: inline-block;
}

li {
    list-style: none;
}

input,
button,
select,
textarea {
    outline: none;
}

.carcas {
    overflow: hidden;
}

.main_title {
    font-family: 'Cakra';
    font-weight: 400;
    font-size: 120px;
    color: #fff;
}

.container {
    max-width: 100%;
    padding: 0 40px 0 175px;
}

section {
    position: relative;
    z-index: 1;
}

.content li,
.text li {
    list-style: inside;
}

.text {
    display: flex;
    row-gap: 30px;
    line-height: 1.4;
}

.img img {
    width: 100%;
    height: 100%;
}

.obj_cover {
    object-fit: cover;
    object-position: center;
}

.obj_contain {
    object-fit: contain;
    object-position: center;
}

/*  HAMBURGER  */

.hamburger{
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger.active .hamburger-inner,
.hamburger.active .hamburger-inner::before,
.hamburger.active .hamburger-inner::after{
    background-color: #fff;
}

.hamburger-box{
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner{
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after{
    width: 40px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after{
    content: "";
    display: block;
}

.hamburger-inner::before{
    top: -10px;
}

.hamburger-inner::after{
    bottom: -10px;
}

.hamburger--collapse .hamburger-inner{
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after{
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before{
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.active .hamburger-inner{
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.active .hamburger-inner::after{
    top: 0;
    opacity: 1;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.active .hamburger-inner::before{
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*     MODAL     */

[data-btn] {
    cursor: pointer;
}

.modal {
    position: relative;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
	font-family: 'Nebulas', sans-serif;
    padding: 10px;
    z-index: 99;
}

.modal_wrap {
    position: relative;
    max-width: 865px;
    width: 100%;
    background-color: #CBDEA2;
    border-radius: 50px;
    padding: 80px 60px;
    overflow: hidden;
	z-index: 1;
}

.modal .close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.modal .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    transform: rotate(45deg);
    transform-origin: center;
    background-color: #323232;
    border-radius: 1px;
}

.modal .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    transform: rotate(-45deg);
    transform-origin: center;
    background-color: #323232;
    border-radius: 1px;
}

.modal .close:hover::before,
.modal .close:hover::after {
    background-color: #959595;
}

.modal_title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.modal_subtitle {
    font-size: 21px;
    text-align: center;
    margin-bottom: 30px;
}
.registration_modal .modal_content {
    overflow-y: auto;
    max-height: calc(100vh - 160px);
}

.registration_modal form {
    max-width: 497px;
    margin: 0 auto;
}

.registration_modal form input {
    border-color: #323232;
    margin-bottom: 30px;
}

.registration_modal .checkBox input:checked+.fake,
.registration_modal .checkBox .fake {
    border: 1px solid #323232;
}

.registration_modal .checkBox .fake i::before,
.registration_modal .checkBox .fake i::after {
    background-color: #323232;
}

.registration_modal .confirm {
    justify-content: center;
    text-align: center;
    margin: -7px 0 30px;
}

.registration_modal .confirm a {
    color: #384E0B;
}

.registration_modal form button {
    background-color: #9CDD13;
    margin: 0;
}

.registration_modal form button.disable {
    background-color: #a0a993;
}

.registration_modal form button:hover {
    background-color: #fff;
}

.registration_modal form button:focus {
    background-color: #384E0B;
    color: #fff;
}

.modal .bg_img {
    position: absolute;
    bottom: 5%;
    right: -80px;
    height: 80%;
    pointer-events: none;
	z-index: -1;
}

.modal .bg_img svg {
    height: 100%;
}

.registration_modal .bg_img {
    height: 70%;
}

.registration_end .bg_img {
    right: 0;
    bottom: 0;
    height: 90%;
}

/*     SLICK     */

.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: flex;
    outline: none;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* ======== стили для стрел ======== */

.slider_arrow {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    transform: translateY(-50%);
    transition: all 0.5s;
    background-color: #fff;
    box-shadow: 0px 4px 7px 0px #00000026;
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
}

.arrow_left {
    left: 10px;
}

.arrow_right {
    right: 10px;
}

.slider_arrow span {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.slider_arrow span::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 3px;
    background-color: #323232;
    transform: rotate(-49deg);
}

.slider_arrow span::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 3px;
    background-color: #323232;
    transform: rotate(49deg);
}

.arrow_left span::before {
    top: 0;
    left: 0;
    transform-origin: right;
}

.arrow_left span::after {
    bottom: 0;
    left: 0;
    transform-origin: right;
}

.arrow_right span::before {
    bottom: 0;
    right: 0;
    transform-origin: left;
}

.arrow_right span::after {
    top: 0;
    right: 0;
    transform-origin: left;
}

/* === если нужны дотсы === */

.slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
}

.slick-dots button {
    opacity: 0.5;
}

/*========================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 110px;
    min-height: 100vh;
    z-index: 99;
    padding: 65px 13px 65px 40px;
    transition: background-color 0.3s linear;
}

header.scroll {
    background-color: #323232;
}

header .menu {
    position: absolute;
    top: 0;
    left: 100vw;
    z-index: 99;
    height: 100%;
    width: 500px;
    transition: all 0.5s;
    background-color: #fff;
    padding: 30px 0;
    overflow: hidden;
    overflow-y: auto;
}

header .menu.active {
    left: calc(100vw - 500px);
}

header .menu .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    text-align: center;
    padding: 30px 20px;
}

header .menu form {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

header .menu input {
    color: #323232;
}

header .menu button {
    background-color: #C5C5C5;
    color: #fff;
    /* border: 1px solid #ACAC; */
    margin-bottom: 30px;
}

.menu_logo {
    max-width: 100%;
}

header .menu form p a {
    font-weight: 500;
    color: #779734;
}

header .menu form p a:hover {
    color: #9CDD13;
}

.menu_burger {
	position: absolute;
    top: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
	cursor: pointer;
}

.menu_burger::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 41px;
	height: 3px;
	background-color: #000;
	transform: rotate(45deg);
	transform-origin: left;
}

.menu_burger::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 41px;
	height: 3px;
	background-color: #000;
	transform: rotate(-45deg);
	transform-origin: right;
}

.logo {
    max-width: 56px;
}

.banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    background-image: url(../../img/banner-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 120px 0;
}

.banner h1 {
    margin-bottom: 80px;
}

.banner .text {
    flex-direction: row;
    column-gap: 75px;
    font-size: 25px;
}

.banner .text p {
    max-width: 755px;
}

.section_title {
    position: relative;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.7;
    margin-bottom: 60px;
}

.section_title span {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 190px;
    line-height: 1.18;
    color: #779734;
    white-space: nowrap;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.section_title.reverse {
    text-align: right;
}

.section_title.reverse span {
    top: 20px;
    right: unset;
    left: 0;
    font-size: 160px;
}

.banner .registration_btn {
    position: absolute;
    top: 65px;
    right: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    min-width: 217px;
    width: fit-content;
    background-color: #9CDD13;
    border: 2px solid #9CDD13;
    border-radius: 12px;
    color: #323232;
    line-height: 1;
    padding: 14px 25px 14px 18px;
    cursor: pointer;
}

.banner .registration_btn:hover {
    background-color: #fff;
    border: 2px solid #fff;
}

.call_btn {
    display: flex;
    align-items: center;
    column-gap: 15px;
    width: fit-content;
    border: 2px solid #fff;
    border-radius: 12px;
    color: #fff;
    line-height: 1;
    padding: 14px 25px 14px 18px;
    cursor: pointer;
}

.call_btn:hover {
    border: 2px solid #9CDD13;
    background-color: #9CDD13;
    color:#000;
}

.call_btn:hover svg path {
    stroke: #000;
}

.call_btn:focus {
    border: 2px solid #5F850E;
    background-color: #5F850E;
}

.call_btn svg {
    max-width: 10px;
}

.banner .call_btn {
    position: absolute;
    top: 65px;
    right: 40px;
}

.header_mail {
    transform: rotate(-90deg);
    color: #fff;
}

.about_script {
    background-image: url(../../img/script-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 50px;
}

.about_script .content {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 30px;
}

.about_script .text {
    position: relative;
    flex-direction: column;
    max-width: 620px;
    height: fit-content;
    font-size: 25px;
    padding-bottom: 18px;
}

.about_script .text::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 96px;
    height: 96px;
    background-image: url(../../img/script-figure-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}

.about_script .text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 96px;
    width: 96px;
    height: 96px;
    background-image: url(../../img/script-figure-2.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}

.about_script .img_wrapper {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    min-width: 550px;
}

.about_script .img {
    height: 432px;
    border-radius: 50px;
    overflow: hidden;
}

.ticker_section {
    position: relative;
    height: 214px;
    min-height: 12vw;
    overflow: hidden;
}

.ticker_section::before {
    content: '';
    position: absolute;
    top: -6vw;
    left: 0;
    height: 12vw;
    width: 100%;
    background-image: url(../../img/script-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: rotate(-4deg);
}

.ticker {
    position: relative;
    transform: rotate(-4deg);
    transform-origin: right;
    font-weight: 500;
    font-size: 35px;
    color: #000;
    background-color: #9CDD13;
    z-index: 1;
}

.ticker::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 200px;
    background-color: #9CDD13;
    z-index: 1;
}

.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 200px;
    background-color: #9CDD13;
    z-index: 1;
}

.ticker p {
    display: flex;
    column-gap: 58px;
    white-space: nowrap;
    padding: 20px 0;
    animation: tickerScroll 20s linear infinite;
}

@keyframes tickerScroll {
    from {
      transform: translateX(calc(-100% - 20px));
    }
    to {
      transform: translateX(0);
    }
}

.advantages {
    position: relative;
    padding: 50px 0 100px;
	overflow: hidden;
}

.advantages .section_figure {
    position: absolute;
    top: 190px;
    right: 0;
    pointer-events: none;
    z-index: -1;
}

.advantages .cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    max-width: 1374px;
}

.advantage_card {
    position: relative;
    width: calc(50% - 10px);
    background-color: #CBDEA2;
    border-radius: 50px;
    padding: 70px 60px 60px;
    z-index: 1;
}

.advantage_card:hover {
    box-shadow: 0px 7px 6px 0px #0000001A;
}

.advantage_card .figure {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.4;
    z-index: -1;
}

.advantage_card .title {
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 52px;
}

.callback {
    background-color: #323232;
    padding: 74px 0;
}

.callback .container {
    display: flex;
    align-items: center;
    column-gap: 50px;
    justify-content: space-between;
}

.callback .images_wrapper {
    display: flex;
    column-gap: 50px;
    row-gap: 50px;
}

.callback .images_wrapper .img {
    max-width: 550px;
    min-width: 350px;
    border-radius: 50px;
    overflow: hidden;
}

.callback .images_wrapper .part {
    max-width: 465px;
    margin-top: auto;
}

.callback .content {
    max-width: 497px;
    width: 100%;
    color: #fff;
    text-align: center;
}

.callback .content h2 {
    max-width: 320px;
    font-weight: 400;
    font-size: 40px;
    margin: 0 auto 50px;
}

.callback form {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    width: 100%;
}

input {
    width: 100%;
    font-size: 21px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #ACACAC;
    border-radius: 12px;
    padding: 14px 18px;
}

.callback form input + input {
    margin-top: 10px;
}

.callback form .info_text {
    max-width: 359px;
    font-size: 18px;
    color: #959595;
}

.confirm {
    display: flex;
    column-gap: 15px;
    font-size: 18px;
}

.confirm a {
    text-decoration: underline;
    color: #9CDD13;
}

form button {
    width: 100%;
    font-size: 21px;
    color: #323232;
    background-color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    margin-top: 10px;
    cursor: pointer;
}

form button:hover {
    background-color: #C5C5C5;
}

form button.active {
    background-color: #384E0B;
    color: #fff;
}


form button.active:hover {
    background-color: #9CDD13;
    color: #000;
}

.checkBox {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.checkBox input {
    display: none;
}

.checkBox .fake {
    position: relative;
    width: 18px;
    min-width: 18px;
    height: 18px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.checkBox.black .fake::before {
    display: none;
}

.checkBox .fake i {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}

.checkBox .fake i::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0px;
    width: 9px;
    height: 2px;
    transform: rotate(45deg);
    background-color: #fff;
    transform-origin: bottom;
}

.checkBox .fake i::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 5px;
    width: 14px;
    height: 2px;
    transform: rotate(-52deg);
    background-color: #fff;
    transform-origin: bottom;
}

.checkBox input:checked+.fake i {
    display: block;
}

.checkBox input:checked+.fake {
    border: 1px solid #fff;
}

.questions {
    padding-top: 100px;
}

[data-switched] {
    display: none;
}

[data-switched].active {
    display: block;
}

.questions .questions_wrapper {
    display: flex;
    column-gap: 20px;
    max-height: 664px;
    padding-right: 30px;
    overflow-y: auto;
}

.questions .questions_wrapper::-webkit-scrollbar {
    width: 6px;
    border-radius: 2px;
}

.questions .questions_wrapper::-webkit-scrollbar-track {
    background: #D2D2D2;
    margin: 15px 0;
    border-radius: 2px;
}

.questions .questions_wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.questions .switchTitles {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: calc(50% - 10px);
}

.questions_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 14px;
    background-color: #E9E9E9;
    border: 2px solid #323232;
    border-radius: 12px;
    padding: 27px 30px 28px 40px;
    cursor: pointer;
}

[data-switch].active .questions_btn {
    background-color: #CBDEA2;
    border: 2px solid #CBDEA2;
}

.questions_btn .circle {
    min-width: 35px;
    width: 35px;
    height: 35px;
    border: 2px solid #323232;
    border-radius: 50%;
    overflow: hidden;
}

[data-switch].active .circle {
    background-color: #9CDD13;
    border: 1px solid #9CDD13;
}

.questions_wrapper .content_wrapper {
    width: calc(50% - 10px);
}

.questions_wrapper .content {
    background-color: #CBDEA2;
    border: 2px solid #323232;
    border-radius: 12px;
    padding: 32px 40px;
}

.questions_wrapper .content .text {
    flex-direction: column;
}

.reviews {
    padding: 100px 0;
}

.reviews .container {
    overflow: hidden;
}

.reviews_card {
    position: relative;
    min-height: 346px;
    background-color: #959595;
    border-radius: 12px;
    color: #fff;
    padding: 40px;
    overflow: hidden;
    z-index: 1;
}

.reviews_card::before {
    content: '';
    position: absolute;
    top: 11px;
    right: -161px;
    width: 322px;
    height: 322px;
    background-color: #CBDEA2;
    filter: brightness(0.8);
    border-radius: 50%;
    z-index: -1;
}

.reviews_card .top {
    display: flex;
    column-gap: 25px;
    margin-bottom: 30px;
}

.reviews_card .top .img {
    min-width: 80px;
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    border-radius: 50%;
    overflow: hidden;
}

.reviews_card .user .name {
    font-size: 25px;
    line-height: 1.4;
}

.reviews_card .user .profession {
    font-size: 18px;
    line-height: 1.4;
}

.reviews_card .text {
    font-size: 18px;
}

.reviews_slider {
    width: 100vw;
    padding-left: 85px;
}

.reviews_slider .item {
    margin: 0 10px;
}

.reviews_slider .arrow_right {
    right: unset;
    left: calc(100vw - 280px);
}

.reviews_slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100vw - 700px);
    height: 100%;
    width: 600px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #E9E9E9 58.08%);
    z-index: 1;
}

footer {
    background-color: #323232;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 50px;
    row-gap: 30px;
    color: #fff;
    padding-top: 62px;
    padding-bottom: 62px;
}

footer a {
    color: #fff;
}

.footer_menu ul,
.footer_contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 40px;
    row-gap: 20px;
}

.footer_contacts a {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.footer_contacts a:first-child {
    text-decoration: underline;
}

footer .logo {
    max-width: unset;
}

footer .logo a {
    display: flex;
    column-gap: 4px;
    font-size: 27px;
    text-transform: uppercase;
    line-height: 1.2;
}

footer .logo img {
    max-width: 56px;
}




































































@media (max-width: 1500px) {

    .callback .images_wrapper > .img {
        display: none;
    }

    .callback .images_wrapper .part {
        max-width: unset;
    }

    .callback .images_wrapper .img {
        max-width: unset;
        min-width: unset;
    }

}

@media (max-width: 1200px) {

    .about_script .content {
        flex-direction: column;
    }

    .about_script .text {
        max-width: unset;
    }

    .about_script .img_wrapper {
        min-width: unset;
    }

    .reviews_slider {
        padding-left: 0;
    }

}

@media (max-width: 992px) {

    .container {
        padding: 0 20px 0 130px;
    }

    .main_title {
        font-size: 100px;
    }

    .banner .text {
        flex-direction: column;
    }

    .advantage_card {
        border-radius: 40px;
        padding: 40px 30px 30px;
    }

    .advantage_card .title {
        margin-bottom: 30px;
    }

    .callback .images_wrapper {
        max-width: 375px;
    }

    .callback .main_title {
        font-size: 80px;
        margin-bottom: 20px;
    }

    .callback .content h2 {
        font-size: 36px;
    }

    .questions_btn {
        height: 100%;
        font-weight: 500;
        font-size: 19px;
        padding: 15px 20px 16px;
    }

    .questions .questions_wrapper {
        max-height: unset;
    }

    .questions .questions_wrapper {
        flex-direction: column;
    }

    .questions .switchTitles {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 20px;
        margin-bottom: 30px;
    }

    .questions [data-switch] {
        width: calc(50% - 10px);
    }

    .questions .switchTitles,
    .questions_wrapper .content_wrapper {
        width: 100%;
    }

    .questions .circle {
        display: none;
    }

    .reviews_slider .arrow_right {
        left: calc(100vw - 240px);
    }

    .reviews_slider::before {
        left: calc(100vw - 300px);
        width: 150px;
    }

    .reviews_slider {
        width: 100%;
    }

}

@media (max-width: 768px) {
	
	.menu_burger {
		display: none;
	}

    header .menu {
        width: calc(100% - 80px);
        height: 100vh;
        left: -100%;
    }

    header .menu.active {
        left: 0;
    }

    .main_title,
    .callback .main_title {
        font-size: 70px;
    }

    .advantage_card {
        width: 100%;
    }

	.banner .registration_btn,
    .banner .call_btn,
    .header_mail {
        display: none;
    }

    header {
        flex-direction: row;
        align-items: center;
        width: 100%;
        min-height: unset;
        padding: 10px 20px 10px;
    }

    .container {
        padding: 0 20px 0;
    }

    .reviews_slider .arrow_right {
        left: calc(100vw - 120px);
    }

    .reviews_slider::before {
        display: none;
    }

    .about_script .img {
        height: 36vw;
        border-radius: 12px;
    }

    .callback .container {
        flex-direction: column;
        row-gap: 40px;
    }

    .callback .images_wrapper {
        max-width: 100%;
        text-align: center;
    }

    .banner .text,
    .about_script .text {
        font-size: 21px;
    }

    .text {
        font-size: 18px;
    }

    .banner h1 {
        margin-bottom: 50px;
    }

    footer .container {
        flex-direction: column;
        row-gap: 40px;
    }

    .footer_menu ul, .footer_contacts {
        justify-content: center;
    }

    .advantage_card .title {
        font-size: 21px;
        margin-bottom: 20px;
    }

}

@media (max-width: 600px) {

    .questions .questions_wrapper {
        padding-right: 0;
    }

    .questions .switchTitles {
        flex-direction: column;
    }

    .questions [data-switch] {
        width: 100%;
    }

    .section_title {
        margin-bottom: 30px;
    }

    .section_title span,
    .section_title.reverse span {
        top: 35px;
        font-size: 90px;
    }

    .advantages {
        padding: 0 0 50px;
    }

    .about_script,
    .callback,
    .reviews {
        padding: 40px 0 50px;
    }

    .questions {
        padding-top: 40px;
    }

    footer .container {
        padding: 40px 20px;
    }

    .reviews_slider .item {
        margin: 0;
    }

    .reviews_card {
        padding: 30px;
    }

    .arrow_left {
        left: -10px;
    }

    .slider_arrow {
        opacity: 0.5;
    }

    .slider_arrow:hover {
        opacity: 1;
    }

    .reviews_slider .arrow_right {
        right: -10px;
        left: unset;
    }
	
	.registration_modal .confirm {
        flex-direction: column;
        align-items: center;
        row-gap: 10px;
    }

}

@media (max-width: 540px) {
	
    .modal_wrap {
        border-radius: 40px;
        padding: 60px 20px;
    }

    .modal .close {
        top: 20px;
        right: 20px;
    }

    .modal_title {
        font-size: 32px;
    }

    .registration_modal form input {
        margin-bottom: 20px;
    }

    .callback .content h2 {
        font-size: 30px;
    }

    .main_title,
    .callback .main_title {
        font-size: 50px;
    }

    .confirm {
        flex-direction: column;
        align-items: center;
        row-gap: 10px;
    }

}

@media (max-width: 400px) {

    header {
        padding: 10px;
    }

    header .menu form p {
        font-size: 18px;
    }

    .section_title {
        font-size: 36px;
    }

    .arrow_left {
        left: 0;
    }

    .reviews_slider .arrow_right {
        right: 0;
    }

    .container {
        padding: 0 10px 0;
    }

    footer .container {
        padding: 40px 10px;
    }

    .main_title,
    .callback .main_title {
        font-size: 38px;
    }

}