@font-face {
    font-family: "Helvetica";
    src: url('../../fonts/Helvetica/HelveticaNeue-Roman.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica";
    src: url('../../fonts/Helvetica/HelveticaNeue-Medium.woff2') format('woff2');
    font-weight: 550;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica";
    src: url('../../fonts/Helvetica/HelveticaNeue-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #FFFEFD;
    --orange: #ED6B2D;
    --orange-hover: #DD4B19;
    --red: #B83716;
    --light-orange: #F5B07C;
    --light-orange-bg: #FDEAD7;
    /* --light-orange-bg2: #FEF6EE; */
    --orange-50: #FEF6EE;
    --orange-100: #FDEAD7;
    --orange-200: #F9D1AF;
    --orange-300: #F5B07C;
    --orange-400: #F08447;
    --orange-600: #DD4B19;
    --orange-700: #B83716;
    --orange-800: #922E1A;
    --orange-900: #762818;
    --text-color: #0F1B24;
    --black: #0F1B24;
    --font-primary: "Helvetica", sans-serif;
    --trans: all .2s ease;
    --color-yellow: #FFD84D;
    --width-container: 1400px;
    --white-space-container: calc((100vw - var(--width-container)) / 2);
    --header-height: 84px;
    --block-padding: 120px;
    --error: #F90000;
}

html {
    margin-top: var(--header-height) !important;
    overflow-x: hidden;
}

body {
    background-color: var(--white);
    font-family: var(--font-primary);
    color: var(--text-color);
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    width: var(--width-container);
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    outline: 1px solid transparent;
    text-decoration: none;
    background: var(--red);
    border-radius: 4px;
    border: none;
    font-size: 15px;
    font-weight: 550;
    line-height: 1;
    font-family: var(--font-primary);
    padding: 18.5px 24px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: var(--trans);
    text-align: center;
}

.btn:hover {
    background: var(--orange-hover);
}

.btn:focus {
    background: var(--red);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-white {
    background: var(--white);
    color: var(--orange-700);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    color: var(--text-color);
    background: var(--orange-300);
}

.btn-orange {
    background: var(--orange);
}


.btn-transparent-red {
    background: transparent;
    border: 1px solid var(--orange-700);
    color: var(--orange-700);
}

.btn-transparent-red:hover,
.btn-transparent-red:focus,
.btn-transparent-red:active {
    color: var(--white);
}

.btn-transparent-white {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-transparent-white:hover {
    border: 1px solid var(--orange-hover);
    background: var(--orange-hover);
}

.btn-transparent-white:focus,
.btn-transparent-white:active {
    border: 1px solid var(--red);
    background: var(--red);
}

.title {
    font-size: 50px;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
}

.subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 133.333%;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.inp {
    width: 100%;
    color: rgba(0, 0, 0, 1);
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    padding: 14px 16px;
    outline: none;
}

.inp::placeholder {
    color: rgba(0, 0, 0, 0.50);
}

.inp:focus {
    border: 1px solid rgba(0, 0, 0, 0.40);
}

.inp::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.inp::-webkit-outer-spin-button,
.inp::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.inp-name {
    margin-bottom: 4px;
    font-size: 14px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    margin-left: 9px;
}

.block-padding {
    padding: var(--block-padding) 0;
}

.block-padding-top {
    padding-top: var(--block-padding);
}

.subtext {
    margin-top: 24px;
}

.background-50 {
    background-color: var(--orange-50);
}

.background-100 {
    background-color: var(--orange-100);
}

.background-300 {
    background-color: var(--orange-300);
}

.background-700 {
    background-color: var(--orange-700);
}

.border-top-200 {
    border-top: 1px solid var(--orange-200);
}

.decoration-underline {
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.text-transform-none {
    text-transform: none;
}

.header {
    padding: 0px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 10;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-menu,
.header-mobile,
.mobile-menu-close,
.submenu-title-mobile,
.footer-mobile-btn,
.header-center-mobile {
    display: none;
}

.header-last {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    text-decoration: none;
    color: var(--red);
    font-size: 15px;
    font-weight: 550;
    line-height: 150%;
    transition: var(--trans);
}

.header-phone:hover {
    color: var(--orange-hover);
}

.header-phone svg {
    margin-right: 8px;
}

.header-phone svg path {
    transition: var(--trans);
    fill: var(--red);
}

.header-phone:hover svg path {
    fill: var(--orange-hover);
}

.header-menu {
    display: flex;
    justify-content: center;
    margin-left: 180px;
}

.header-menu li {
    list-style-type: none;
}

.header-menu>li {
    position: relative;
    margin-right: 40px;
    z-index: 4;
    padding: 30px 0;
}

.header-menu>li:last-child {
    margin-right: 0;
}

.header-menu li a {
    text-decoration: none;
    color: #131717;
}

.header-menu li:hover a {
    transition: all 0.1s ease;
}

.submenu li a {
    transition: none;
}

.header-menu li:hover>.submenu li a {
    transition: all 0.1s ease;
}

.header-menu li a:hover {
    color: var(--orange-hover);
}

.header-menu a.current-page {
    pointer-events: none;
    color: var(--orange-hover);
}

.header-menu>li>a {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.menu-item-has-children:hover>a {
    color: var(--orange-hover);
}

.header-menu li.link-arrow a {
    position: relative;
    padding-right: 23px;
}

.header-menu li.link-arrow a::after {
    content: '';
    width: 13px;
    height: 11px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 13 11" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_4722_4910)"><path d="M11.5 5.5L1 5.5M11.5 5.5L7 1M11.5 5.5L7 10" stroke="%230F1B24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_4722_4910"><rect width="13" height="11" fill="white"/></clipPath></defs></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 3px;
    right: 0;
}

.header-menu li:hover>.submenu li.link-arrow a::after {
    transition: var(--trans);
}

.header-menu li.link-arrow a:hover::after {
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 13 11" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_4722_4910)"><path d="M11.5 5.5L1 5.5M11.5 5.5L7 1M11.5 5.5L7 10" stroke="%23DD4B19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_4722_4910"><rect width="13" height="11" fill="white"/></clipPath></defs></svg>');
}

/* 
.menu-item-has-children:after {
    content: '';
    width: 11px;
    height: 7px;
    background-image: url(../../images/menu-children-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 3px);
    right: 0px;
    transition: all 0.3s ease;
} */

.header-menu .submenu {
    width: 100%;
    visibility: hidden;
    /* visibility: visible; */
    position: fixed;
    /* padding-top: 30px; */
    top: var(--header-height);
    left: 0;
    z-index: 8;
}

.header-menu li:hover>.submenu {
    visibility: visible;
}

.submenu-wrapper {
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: center
}

.submenu-item {
    padding-right: 80px;
    margin-right: 80px;
    position: relative;
}

.submenu-item:nth-child(1) {
    width: calc(230px + 80px);
}

.submenu-item:nth-child(2) {
    width: calc(230px + 80px);
}

.submenu-item:nth-child(3) {
    width: calc(255px + 80px);
}

.submenu-item::before {
    content: '';
    height: 257px;
    border-right: 1px solid var(--orange-200);
    position: absolute;
    top: 0;
    right: 0;
}

.submenu-item:last-child {
    margin-right: 0;
    padding-right: 0;
}

.submenu-item:last-child::before {
    display: none;
}

.submenu-item__title {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 550;
    line-height: 150%;
    margin-bottom: 16px;
    display: block;
    transition: none;
}

.submenu-item__list li {
    margin-bottom: 16px;
}

.submenu-item__list li:last-child {
    margin-bottom: 0;
}

.submenu-item__list li a {
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.breadcrumbs {
    padding: 16px 0;
}

.breadcrumbs-list {
    display: flex;
    list-style-type: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--red);
}

.breadcrumbs-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--trans);
}

.breadcrumbs-list a:hover {
    color: var(--orange-hover);
}

.breadcrumbs-list li+li::before {
    content: "/";
    padding: 0 4px 0 8px;
    color: var(--text-color);
}


/* Points */
.points .text {
    font-size: 20px;
}

.points-box {
    display: flex;
    justify-content: space-between;
    margin: 80px 0 40px;
}

.points-item {
    width: calc(25% - (24px * 3) / 4);
    padding: 40px;
    border-radius: 40px;
    border: 1px solid var(--orange-400);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--trans);
}

.points-item:hover {
    background-color: var(--light-orange-bg);
}

.points-item__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 24px;
}

.points-item__title span {
    color: var(--red);
}



/* Our Partners */
.our-partners {
    overflow: hidden;
}

.our-partners-wrapper {
    padding-top: 120px;
    margin-top: 64px;
    border-top: 1px solid var(--orange-200);
}

.our-partners-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.our-partners__item {
    width: 290px;
    height: 256px;
    padding: 30px;
    border-radius: 40px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 12px;
}

.our-partners__item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.scrolling-content {
    width: 100%;
    display: flex;
    width: max-content;
    animation-name: scroll-left;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* .scrolling-wrapper:hover .scrolling-content {
    animation-play-state: paused;
} */

.scrolling-slide {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Benefits Block */
.benefits-block {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white);

}

.benefits-block .container {
    position: relative;
    z-index: 2;
}

.blackout {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.benefits-block__content {
    max-width: 700px;
    margin-left: auto;
}

.benefits-block__content .text {
    font-size: 32px;
    line-height: 120%;
    margin-top: 16px;
}

.benefits-block__content .btn {
    margin-top: 40px;
}

.link-with-arrow {
    display: inline-block;
    font-size: 15px;
    font-weight: 550;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--orange-800);
    text-decoration: none;
    position: relative;
    padding-right: 27px;
    transition: all 0.3s ease;
}

.link-with-arrow::before {
    content: '';
    width: 17px;
    height: 10px;
    background-image: url(../../images/agency/link-arrow-red.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 6px;
    right: 0;
}


/* Stories */
.stories-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stories-top .title {
    max-width: 550px;
}

.stories-top .text {
    max-width: 700px;
}

.stories-slider {
    margin-top: 108px;
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: calc(40px + 52px);
}

.stories-item {
    border-radius: 40px;
    border: 1px solid var(--orange-400);
    overflow: hidden;
    margin: 0 20px;
}

.stories-item__img {
    width: 100%;
    height: 180px;
    line-height: 0;
    overflow: hidden;
    position: relative;
}

.stories-item__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.stories-item-main {
    padding: 40px;
}

.stories-item__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
}

.stories-item-benefits__title {
    font-weight: 550;
    margin: 24px 0;
}

.stories-item-benefits {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-top: -8px;
}

.stories-item-benefits__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    color: var(--orange-700);
    padding: 7px 11px;
    border-radius: 64px;
    border: 1px solid var(--orange-100);
    background: var(--orange-200);
    margin-left: 8px;
    margin-top: 8px;
}

.stories-item-content {
    margin: 24px 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stories-item-content-left,
.stories-item-content-right {
    width: calc(50% - 31px);
}

.stories-item-content-left__quote {
    line-height: 0;
    margin-bottom: 16px;
}

.stories-item-content-left p {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 8px;
}

.stories-item-content-right {
    position: relative;
}

.stories-item-content-right::before {
    content: '';
    border-left: 1px solid var(--orange-200);
    height: 100%;
    position: absolute;
    top: 0;
    left: -32px;
}

.stories-item-content__item {
    margin-bottom: 24px;
}

.stories-item-content__item:last-child {
    margin-bottom: 0;
}

.stories-item-content__item-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 8px;
}

.stories-item-main .link-with-arrow:not(:hover) {
    color: var(--orange-700);
}

.stories-item-main .link-with-arrow:not(:hover)::before {
    background-image: url(../../images/agency/link-arrow-orange.svg);
}

.slick-arrow {
    font-size: 0;
    background: transparent;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--orange-700);
    cursor: pointer;
    margin: 0;
    position: absolute;
    bottom: 0px;
}

.slick-arrow::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../../images/agency/slider-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.slick-prev::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.stories-slider .slick-prev {
    left: calc(50% - 12px - 52px);
}

.stories-slider .slick-next {
    left: auto;
    right: calc(50% - 12px - 52px);
}

.section-content {
    max-width: 612px;
}

.section-content .text {
    margin-top: 24px;
}


/* Marketing */
.marketing {
    position: relative;
}

.marketing .container {
    position: relative;
    z-index: 1;
}

.marketing-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 518px;
    background: var(--orange-300);
    z-index: 0;
}

.marketing-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.marketing .section-content {
    color: var(--text-color);
    max-width: 824px;
}

.marketing-wrapper {
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -24px;
}

.marketing-item {
    text-decoration: none;
    padding: 40px;
    width: calc(33.33% - 24px);
    margin-left: 24px;
    margin-bottom: 24px;
    border-radius: 40px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    border: 1px solid var(--orange-100);
    background: var(--white);
    transition: var(--trans);
    position: relative;
}

.marketing-item:hover {
    border-radius: 40px;
    border: 1px solid var(--orange-200);
    background: var(--orange-100);
}

.marketing-item__popular {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    color: var(--orange-700);
    padding: 7px 11px;
    border-radius: 64px;
    border: 1px solid var(--orange-100);
    background: var(--orange-200);
    position: absolute;
    top: -1px;
    right: -1px;
}

.marketing-item-top {
    display: flex;
    align-items: center;
}

.marketing-item-top.two {
    flex-direction: column;
    align-items: flex-start;
}

.marketing-item__icon img {
    max-width: 85px;
}

.marketing-item__title {
    color: #0F1B24;
    font-size: 28px;
    font-weight: 400;
    line-height: 110%;
    text-transform: capitalize;
    margin-left: 16px;
}

.marketing-item-top.two .marketing-item__title {
    margin-top: 32px;
    margin-left: 0;
}

.marketing-item__text {
    color: #0F1B24;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 60px 0px 28px;
}

.marketing-item__list {
    list-style: none;
    margin-top: 24px;
}

.marketing-item__list li {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: var(--text-color);
    padding-left: 14px;
    position: relative;
}

.marketing-item__list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--orange-600);
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 0;
}

.learn-more {
    color: #131717;
    font-size: 15px;
    font-weight: 550;
    line-height: 120%;
    text-transform: uppercase;
    text-decoration: none;
}

.learn-more img {
    margin-left: 10px;
    transition: var(--trans);
}

.learn-more:hover img {
    transform: translateX(5px);
}


/* Action Block */
.action-block {
    color: var(--white);
}

.action-block .title {
    font-weight: 550;
    line-height: 150%;
}

.action-block-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-block-content {
    color: var(--white);
    display: flex;
    align-items: center;
}

.action-block-content__img {
    margin-right: 50px;
    line-height: 0;
}

.action-block-content__right {
    max-width: 900px;
}

.action-block__text {
    font-size: 40px;
    font-weight: 550;
    line-height: 150%;
}

.action-block .btn {
    min-width: 210px;
}


/* Blog block*/
.mainBlog-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.mainBlog-wrapper {
    margin-top: 56px;
    display: flex;
    justify-content: space-between;
}

.mainBlog-item {
    display: flex;
    margin-bottom: 24px;
    padding-bottom: 24px;
    text-decoration: none;
    border-bottom: 1px solid var(--orange-200);
}

.mainBlog-item:last-child {
    margin-bottom: 0;
}

.mainBlog-item__img {
    width: 240px;
    min-width: 240px;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.mainBlog-item__img img {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--trans);
}

.mainBlog-item:hover .mainBlog-item__img img {
    scale: 1.05;
    opacity: 0.8;
}

.mainBlog-item-content {
    margin-left: 16px;
    width: 524px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mainBlog-item__title {
    font-size: 20px;
    font-weight: 550;
    line-height: 140%;
    color: var(--black);
    margin-bottom: 8px;
}

.mainBlog-item__text {
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mainBlog-item-bottom {
    margin-top: 16px;
    margin-right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainBlog-video .mainBlog-item-bottom {
    margin-top: 20px;
}

.mainBlog-item__date,
.mainBlog-item__readtime {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.mainBlog-item__readtime {
    position: relative;
}

.mainBlog-item__readtime::before {
    content: '';
    width: 24px;
    height: 25px;
    background-image: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15.1729 16.041L12.0059 12.874V6.54102" stroke="%230F1B24" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/><path d="M12 22.3691C14.5196 22.3691 16.9359 21.3683 18.7175 19.5867C20.4991 17.8051 21.5 15.3887 21.5 12.8691C21.5 10.3496 20.4991 7.93322 18.7175 6.15163C16.9359 4.37003 14.5196 3.36914 12 3.36914C9.48044 3.36914 7.06408 4.37003 5.28249 6.15163C3.50089 7.93322 2.5 10.3496 2.5 12.8691C2.5 15.3887 3.50089 17.8051 5.28249 19.5867C7.06408 21.3683 9.48044 22.3691 12 22.3691Z" stroke="%230F1B24" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -1px;
    left: -32px;
}

.mainBlog-video,
.mainBlog-elements {
    width: calc(50% - 12px);
}

.mainBlog-video .mainBlog-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mainBlog-video .mainBlog-item__title {
    font-size: 28px;
    font-weight: 550;
    line-height: 120%;
    margin-top: 16px;
    margin-bottom: 0;
}

.mainBlog-video .mainBlog-item__img,
.mainBlog-video .mainBlog-item-content {
    width: 100%;
    margin-left: 0;
}

.mainBlog-video .mainBlog-item__date,
.mainBlog-video .mainBlog-item__readtime {
    font-size: 16px;
}

.mainBlog-item__video {
    height: 410px;
    width: 100%;
    position: relative;
}

.mainBlog-item__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.mainBlog-bottom-btn {
    display: none;
}



/* FAQ */
.faq .title {
    margin-bottom: 24px;
}

.faq-tabs-wrapper {
    margin-top: 56px;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
}

.faq-tabs__item {
    margin-right: 8px;
    margin-bottom: 16px;
    border-radius: 24px;
    border: 1px solid var(--orange-300);
    padding: 8px 16px 7px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 550;
    line-height: 150%;
    text-transform: uppercase;
    transition: var(--trans);
}

.faq-tabs__item.current,
.faq-tabs__item:hover {
    background: var(--orange-300);
}

.faq-tabs__item:last-child {
    margin-right: 0;
}

.faq-tabs-content__item {
    display: none;
}

.content_show_all .faq-tabs-content__item,
.faq-tabs-content__item.show {
    display: block;
}

.content_show_all .faq-tabs-content__item details:not(:first-child) {
    display: none;
}

.faq-tabs-content__item details {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--orange-200);
    transition: var(--trans);
}

.faq-tabs-content__item details:has(> summary:hover) {
    border-bottom: 1px solid var(--orange-700);
}

.faq-tabs-content__item summary {
    padding-top: 32px;
    padding-bottom: 16px;
    cursor: pointer;
    position: relative;
    padding-right: calc(40px + 24px);
}

.faq-tabs-content__item summary::after {
    content: '';
    width: 24px;
    height: 25px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 5.30469V19.3047" stroke="%230F1B24" stroke-linecap="round"/><path d="M5 12.3047H19" stroke="%230F1B24" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 34px;
    right: 16px;
    transition: var(--trans);
}

.faq-tabs-content__item details[open] summary::after {
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 12.3047H19" stroke="%230F1B24" stroke-linecap="round"/></svg>');
}

.faq-tabs-content__item summary:hover::after {
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 5.30469V19.3047" stroke="%23F08447" stroke-linecap="round"/><path d="M5 12.3047H19" stroke="%23F08447" stroke-linecap="round"/></svg>');
}

.faq-tabs-content__item h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    transition: var(--trans);
}

.faq-tabs-content__item summary:hover {
    color: var(--orange-700);
}

.faq-tabs-content__item p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding-right: calc(40px + 24px);
}



/* Footer */
.footer {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    max-width: 204px;
    margin-top: 24px;
}

.footer .social {
    margin-top: 48px;
}

.social {
    display: flex;
    align-items: center;
}

.social-item {
    margin-right: 24px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--trans);
}

.social-item:last-child {
    margin-right: 0;
}

.social-item svg {
    fill: var(--white);
    transition: var(--trans);
}

.social-item:hover {
    border: 1px solid var(--orange);
}

.social-item:hover svg {
    fill: var(--orange);
}

.footer-right {
    display: flex;
    align-items: flex-start;
}

.footer-item {
    margin-right: 64px;
    margin-bottom: 60px;
}

.footer-item__title {
    font-size: 15px;
    font-weight: 550;
    line-height: 150%;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-item-last {
    display: flex;
    align-items: flex-start;
}

.footer-list {
    list-style-type: none;
}

.footer-list li {
    margin-bottom: 12px;
    word-wrap: break-word;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-list li a {
    font-size: 14px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
}

.footer-list li a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-copyright {
    color: rgba(254, 246, 238, 0.70);
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

.footer-list a.current-page {
    pointer-events: none;
    color: rgba(255, 255, 255, 1);
}




/* Contacts */
.contacts {
    padding: 52px 0 100px;
}

.contacts-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contacts-content {
    position: relative;
    width: 600px;
}

.contacts-content .text {
    max-width: 344px;
    margin-top: 24px;
}

.contacts-content .text span,
.contacts-content .text a {
    color: var(--text-color);
    text-decoration: none;
}

.contacts-top-line {
    position: absolute;
    top: -6px;
    left: 130px;
    z-index: -1;
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    transform: rotate(-18deg);
}

.contacts-form {
    width: 744px;
    position: relative;
}

.contacts-form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 12px;
}

.contacts-form__item {
    width: calc(50% - 8px);
    position: relative;
}

.contacts-form__lastitem,
.inp-item {
    position: relative;
}

.contacts-form__title {
    margin-bottom: 12px;
}


.contacts-form textarea {
    resize: none;
    width: 100%;
    height: 203px;
    min-height: 50px;
    line-height: 24px;
}

.contacts-form__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.contacts-form__submit .checkbox-permission {
    max-width: 480px;
    padding-left: 40px;
}

.checkbox-permission label {
    color: rgba(15, 27, 36, 0.50);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    display: block;
}

.checkbox-permission label::before {
    content: '';
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #868C91;
    border-radius: 2px;
    position: absolute;
    top: 1px;
    left: -40px;
    cursor: pointer;
}

.checkbox-permission label::after {
    display: none;
    content: '';
    width: 14px;
    height: 11px;
    background: url(../../images/agency/check-mark-primary.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 8px;
    left: -34px;
}

.checkbox-permission input:checked+label::before {
    border: 1px solid var(--orange);
}

.checkbox-permission input:checked+label::after {
    display: block;
}

.checkbox-permission label a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--trans);
}

.checkbox-permission label a:hover {
    color: var(--orange-hover);
}

.checkbox-permission input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.contacts-form-lines {
    position: absolute;
    bottom: -4px;
    left: -180px;
    -webkit-transform: rotate(197deg);
    -ms-transform: rotate(197deg);
    transform: rotate(197deg);
    z-index: -1;
}


.back-link {
    color: var(--orange-700);
    font-size: 15px;
    font-weight: 550;
    line-height: 150%;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--trans);
}

.back-link:hover {
    color: var(--orange-hover);
}


.contact-thanks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contact-thanks-right {
    width: 660px;
}

.contact-thanks__title {
    font-size: 50px;
    max-width: 640px;
    line-height: 128%;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-thanks__text {
    margin-top: 24px;
    font-size: 16px;
}

.contact-thanks .btn {
    margin-top: 40px;
}

.contact-thanks__line {
    width: 100%;
    border-bottom: 1px solid var(--orange-200);
    margin: 40px 0 60px;
}

.contact-thanks-info__text {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 24px;
}

.contact-thanks-info-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 520px;
}

.contact-thanks-info__item {
    width: 48%;
    margin-bottom: 16px;
}

.contact-thanks-info__item:last-child {
    margin-bottom: 0;
}

.contact-thanks-info__item a {
    color: var(--text-color);
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    line-height: 160%;
    font-weight: 550;
    font-size: 15px;
    text-underline-offset: 3px;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.contact-thanks-social {
    margin-top: 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 440px;
    margin-left: 0;
}

.contact-thanks-social .social-item {
    width: 40px;
    height: 40px;
    border: 1px solid var(--red);
    margin: 0;
    transition: var(--trans);
}

.contact-thanks-social .social-item svg {
    fill: var(--red);
    transition: var(--trans);
}

.contact-thanks__text a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    white-space: nowrap;
    transition: var(--trans);
}

.contact-thanks-info__item a:hover,
.contact-thanks__text a:hover,
.contact-thanks-social .social-item:hover {
    opacity: 0.8;
}

.contacts-gift {
    margin: 32px 0;
    border-radius: 4px;
    border: 1px solid var(--orange);
    background: #EFC1A8;
    position: relative;
    padding: 42px 37px;
    max-width: 430px;
    margin-top: 40px;
}

.contacts-gift p {
    color: var(--orange-900);
    font-weight: 550;
    line-height: 140%;
    position: relative;
    z-index: 1;
    margin-left: auto;
    font-size: 16px;
    max-width: 255px;
}

.contacts-gift__img1 {
    position: absolute;
    left: 0;
    z-index: 0;
    display: block;
    width: 130px;
    top: 10px;
}

.contacts-gift__img2 {
    position: absolute;
    right: 0;
    z-index: 0;
    width: 170px;
    top: 5px;
}

.contacts-form-services {
    margin: 32px 0;
}

.contacts-form-services__list {
    margin-top: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border: 1px solid transparent;
}

.contacts-form-services__list input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}


.contacts-form-services__list label {
    display: inline-block;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    border-radius: 36px;
    border: 1px solid var(--orange);
    cursor: pointer;
    text-align: left;
    margin-top: 8px;
    padding: 8px 16px;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.contacts-form-services__list input:checked+label {
    border: 1px solid var(--orange-hover);
    background: var(--orange-hover);
    color: #fff;
    padding-right: 46px;
    position: relative;
}

.contacts-form-services__list label::before {
    content: '';
    width: 15px;
    height: 10px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 15 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.85714L6.14286 9L14.1429 1" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.contacts-form-services__list input:checked+label::before {
    opacity: 1;
}


.tab_item {
    display: none;
}

.tab_item.active {
    display: block;
}

.inp.error-text {
    border: 1px solid var(--error) !important;
    color: var(--error);
}

.inp.error-text::placeholder {
    color: var(--error);
}

.error-hint {
    color: var(--error);
    font-size: 12px;
    font-weight: 550;
    line-height: 150%;
    border: none !important;
    position: absolute;
    bottom: -18px;
    left: 0;
}

#loader {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader.active {
    visibility: visible;
}

.loading {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--orange);
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

.response-output {
    display: none;
    margin-top: 16px;
    padding: 15px;
}

.response-output.failed {
    display: block;
    border: 1px solid red;
}

.response-output.sent {
    display: block;
    border: 1px solid #46b450;
}



/* Popup */
.popup {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    display: flex;
    justify-content: center;
    overflow-y: scroll;
    transition: var(--trans);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.popup::-webkit-scrollbar {
    display: none;
}

.popup.active {
    visibility: visible !important;
    opacity: 1;
}

.popup-wrapper {
    margin-top: auto;
    margin-bottom: auto;
    background: #fff;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

.popup-close__icon {
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.16113 21L20.8388 3.32233" stroke="%230F1B24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.16113 3L20.8388 20.6777" stroke="%230F1B24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.popup.active .popup-close__icon {
    transition: all 0.3s ease;
}

.popup-close:hover .popup-close__icon {
    transform: rotate(-90deg);
}

.popup-consultation .popup-wrapper {
    padding: 40px 48px;
    width: 1049px;
    border-radius: 16px;
}

.popup-consultation-second .popup-wrapper {
    padding: 40px 48px 48px;
    width: 727px;
}

.popup-consultation__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 130%;
    padding-right: 30px;
}

.popup-consultation__text {
    line-height: 150%;
    margin-top: 16px;
}

.consultation-box {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--orange-200);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.consultation-content {
    max-width: calc(100% - 348px - 32px);
    margin-right: 32px;
}

.consultation-content__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 140%;
}

.consultation-content-items {
    margin: 16px 0 40px;
}

.consultation-content__item {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.consultation-content__item:last-child {
    margin-bottom: 0;
}

.consultation-content__item svg {
    min-width: 36px;
    max-width: 36px;
    height: auto;
}

.consultation-content__item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-left: 16px;
}

.consultation-content__bottom {
    position: relative;
}

.consultation-content__bottom-arrow {
    position: absolute;
    bottom: -28px;
    left: 324px;
    pointer-events: none;
    z-index: 0;
}

.consultation-bonus {
    border-radius: 40px;
    border: 2px solid var(--orange-200);
    background: var(--orange-50);
    padding: 24px 20px 32px;
    width: 348px;
    text-align: center;
}

.consultation-bonus__title {
    color: var(--orange);
    font-size: 32px;
    font-weight: 550;
    line-height: 120%;
    margin: 8px 0 16px;
}

.consultation-bonus__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.popup-consultation-second__img {
    text-align: center;
    line-height: 0;
    margin-bottom: 40px;
}

.popup-consultation-second .popup-consultation__title {
    text-align: center;
    padding: 0;
}

.popup-consultation-second__text {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 16px;
}

.popup-consultation-second__text.first {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-consultation-second__text a {
    color: var(--orange);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    font-weight: 550;
}

.popup-consultation-second__text svg {
    margin-right: 16px;
    min-width: 28px;
}

.popup-consultation__separator {
    width: 100%;
    border-bottom: 1px solid var(--orange-200);
    margin: 32px 0 40px;
}

.popup-consultation-sent {
    border-radius: 40px;
    border: 2px solid var(--orange-200);
    background: var(--orange-50);
    padding: 24px 20px;
    display: flex;
    max-width: 451px;
    margin-left: auto;
    margin-right: auto;
}

.popup-consultation-sent p {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

.popup-consultation-sent svg {
    margin-right: 16px;
    min-width: 40px;
}


.popup-title {
    color: var(--text-color);
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
}

.partner-popup-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
}

.popup-partner .popup-wrapper {
    padding: 40px 32px;
    width: 672px;
}

.popup-partner__text {
    margin: 12px 0 32px;
    line-height: 150%;
}

.partner-form__btn {
    text-align: center;
}

.popup-consent {
    margin: 16px 0 32px;
}

.popup-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.popup-consent label {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    padding-left: 28px;
    position: relative;
    display: flex;
    cursor: pointer;
    border: 1px solid transparent;
}

.popup-consent label::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="15" height="15" rx="1.5" stroke="%23CECECE"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 2px;
    left: 0;
}

.popup-consent input:checked+label::before {
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="15" height="15" rx="1.5" stroke="%230F1B24"/><path d="M3.07141 7.14286L6.92855 11L12.9286 5" stroke="%230F1B24" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.popup-consent input.error-text+label {
    border: 1px solid var(--error);
}

.partner-form__item {
    margin-bottom: 16px;
    position: relative;
}

.partner-form textarea {
    min-height: 50px;
    height: 150px;
    resize: none;
}

.error-hint {
    margin-top: 2px !important;
}


.popup-thank .popup-wrapper {
    padding: 40px 32px;
    width: 576px;
}

.popup-thank__img {
    text-align: center;
    line-height: 0;
    margin-bottom: 32px;
}

.popup-thank__img img {
    max-width: 240px;
    height: auto;
}

.popup-thank__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    text-align: center;
}

.popup-thank__separator {
    margin: 24px 0;
    border-bottom: 1px solid var(--orange-200);
}

.popup-thank__text {
    font-size: 14px;
    line-height: 150%;
}

.popup-thank__buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.popup-thank__buttons .btn {
    width: calc(50% - 8px);
}



/* Responsive */
@media screen and (max-width: 1439px) {
    :root {
        --width-container: 1140px;
    }

    /* Header */

    .header-phone {
        margin-right: 16px;
    }

    .header-menu {
        margin-left: 50px;
    }

    .submenu-item {
        padding-right: 30px;
        margin-right: 30px;
    }

    .submenu-item:nth-child(1),
    .submenu-item:nth-child(2) {
        width: calc(230px + 30px);
    }

    .submenu-item:nth-child(3) {
        width: calc(255px + 30px);
    }

    /* Footer */
    .footer-item {
        margin-right: 36px;
    }


    /* Marketing */
    .marketing-item {
        width: calc(33.3% - 21px);
        margin-left: 21px;
    }

    .marketing-wrapper {
        margin-left: -21px;
    }

    .marketing-item-top {
        flex-direction: column;
    }

    .marketing-item__title {
        margin-left: 0;
        width: 100%;
    }

    .marketing-item__icon {
        width: 100%;
        margin-bottom: 16px;
        height: 85px;
        width: 85px;
        margin-right: auto;
    }

    .marketing-item__icon img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }

    /* Action Block */
    .action-block-content__img {
        margin-right: 40px;
    }

    .action-block-content__right {
        max-width: 745px;
    }

    /* Сontacts */
    .contacts-form {
        width: calc(100% - 460px - 36px);
    }

    .contacts-content {
        width: 450px;
    }

    .contacts-top-line {
        top: -30px;
        left: 90px;
    }

    .contacts-form__submit .checkbox-permission {
        max-width: 440px;
    }

    .contacts-content .title {
        font-size: 40px;
    }

    .contact-thanks-right {
        width: 550px;
    }

    .contact-thanks__title {
        font-size: 42px;
        max-width: 540px;
    }

    /* Points */
    .points-item {
        padding: 40px 16px;
    }

    /* Stories */
    .stories-top .text {
        max-width: 550px;
    }

    .stories-item {
        margin: 0 10px;
    }

    .stories-item-main {
        padding: 32px 20px;
    }

    .stories-slider {
        margin-left: -10px;
        margin-right: -10px;
    }

}


@media screen and (max-width: 1199px) {
    :root {
        --width-container: 960px;
    }


    /* Header */
    .header-menu {
        margin-left: 0;
    }

    .header-menu>li {
        margin-right: 24px;
    }

    .submenu-item:nth-child(1),
    .submenu-item:nth-child(2) {
        width: calc(210px + 30px);
    }

    .submenu-item:nth-child(3) {
        width: calc(180px + 30px);
    }

    /* Footer */
    .footer-wrapper {
        flex-direction: column-reverse;
    }

    .footer-right {
        justify-content: space-between;
    }

    .footer-item {
        margin-right: 70px;
    }

    .footer-left {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .footer .social {
        margin-top: 0;
    }

    .social-item {
        width: 40px;
        height: 40px;
    }

    .social-item svg {
        width: 100% !important;
        height: auto !important;
    }

    /* Marketing */
    .marketing-item__text {
        margin: 40px 0px 28px;
    }

    .marketing-item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 25px;
    }

    .marketing-item__icon {
        height: 75px;
        width: 75px;
    }

    .marketing .section-content {
        max-width: 612px;
    }


    /* Action Block */
    .action-block-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-block-btn {
        margin-left: 150px;
    }

    .action-block-content {
        margin-bottom: 32px;
    }

    /* Contacts */
    .contacts-main {
        flex-direction: column;
    }

    .contacts-form {
        width: 100%;
    }

    .contacts-gift {
        margin: 40px 0;
    }

    .contacts-form__submit .checkbox-permission {
        max-width: 480px;
    }

    .contact-thanks {
        flex-direction: column;
    }

    .contact-thanks__title {
        font-size: 50px;
        max-width: 640px;
        margin-bottom: 16px;
    }

    .contact-thanks-right {
        width: 100%;
    }


    /* Popup */
    .popup-consultation .popup-wrapper {
        max-width: calc(100% - 40px);
        padding: 32px;
    }

    /* Points */
    .points-box {
        flex-wrap: wrap;
    }

    .points-item {
        padding: 40px;
        width: calc(50% - 12px);
        margin-bottom: 24px;
    }

    .points-item:nth-last-child(-n+2) {
        margin-bottom: 0;
    }

    /* Stories */
    .stories-item-content-left,
    .stories-item-content-right {
        width: calc(50% - 16px);
    }

    .stories-item-content-right::before {
        left: -16px;
    }

    .stories-slider {
        margin-top: 40px;
    }

    .stories-top .text {
        max-width: 370px;
    }

    /* MainBlog */
    .mainBlog-wrapper {
        margin-top: 32px;
    }

    .mainBlog-video .mainBlog-item__title {
        font-size: 22px;
    }

    .mainBlog-item__img {
        width: 220px;
        max-height: 150px;
    }

    .mainBlog-item-content {
        width: 285px;
        margin-left: 12px;
    }

    .mainBlog-item__title {
        font-size: 18px;
    }

    .mainBlog-video {
        width: calc(45% - 12px);
    }

    .mainBlog-elements {
        width: calc(55% - 12px);
    }

    .mainBlog-item__video {
        height: 260px;
    }

    .mainBlog-video .mainBlog-item__date,
    .mainBlog-video .mainBlog-item__readtime {
        font-size: 15px;
    }
}


@media screen and (max-width: 991px) {
    :root {
        --width-container: 720px;
        --header-height: 72px;
        --block-padding: 100px;
    }

    .title {
        font-size: 32px;
    }

    .subtext {
        font-size: 16px;
        margin-top: 16px;
    }

    /* Header */
    .header-last {
        display: none;
    }

    .header {
        padding: 21px 0;
    }

    .mobile-menu {
        display: block;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
    }

    .mobile-menu span {
        position: absolute;
        right: 0;
        width: 100%;
        height: 2px;
        background-color: var(--black);
        border-radius: 1px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        top: 50%;
    }

    .mobile-menu span:nth-child(1) {
        transform: translateY(-10px);
        width: 24px;
    }

    .mobile-menu span:nth-child(2) {
        transform: translateY(0%);
        transition: none;
    }

    .mobile-menu span:nth-child(3) {
        transform: translateY(10px);
        width: 16px;
    }

    .mobile-menu.active span {
        width: 24px;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 50%;
    }

    .header-content {
        z-index: 99;
        position: fixed;
        top: var(--header-height);
        height: calc(100% - var(--header-height));
        min-height: calc(100% - var(--header-height));
        right: -1000px;
        width: 100%;
        background: var(--white);
        transition: all .3s;
        flex-direction: column;
        justify-content: space-between;
        padding: 32px 0;
        overflow-y: scroll;
    }

    .header-content.active {
        right: 0;
    }

    .header-menu {
        width: var(--width-container);
        margin-left: auto;
        margin-right: auto;
        justify-content: flex-start;
        flex-direction: column;
    }

    .header-menu .submenu {
        position: static;
        visibility: visible;
    }

    .submenu-wrapper {
        flex-direction: column;
        padding: 0;
        background: transparent;
        padding-top: 8px;
    }

    .header-menu>li {
        padding: 8px 0;
        margin-bottom: 32px;
        margin-right: 0;
    }

    .submenu-item {
        width: 100% !important;
        margin-right: 0;
        padding-right: 0;
        border-bottom: 1px solid var(--orange-200);
    }

    .header-menu>li>a {
        font-size: 18px;
    }

    .submenu-item__title {
        margin: 0;
    }

    .submenu-main-item {
        position: relative;
    }

    .submenu-main-item::before {
        content: '';
        width: 24px;
        height: 25px;
        background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5V20.5" stroke="%230F1B24" stroke-width="2" stroke-linecap="round"/><path d="M4 12.5L20 12.5" stroke="%230F1B24" stroke-width="2" stroke-linecap="round"/></svg>');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 20px;
        right: 0;
        pointer-events: none;
    }

    .submenu-item.active .submenu-main-item::before {
        background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 12.5L20 12.5" stroke="%230F1B24" stroke-width="2" stroke-linecap="round"/></svg>');
    }

    .submenu-main-item a {
        display: none;
    }

    .submenu-item__list {
        visibility: hidden;
        position: absolute;
        opacity: 0;
        z-index: -1;
    }

    .submenu-item.active .submenu-item__list {
        visibility: visible;
        position: static;
        opacity: 1;
        z-index: 1;
        margin: 8px 0 32px;
    }

    .submenu-item__list li {
        margin-bottom: 28px;
    }

    .submenu-title-mobile {
        padding: 20px 0;
        display: block;
        color: var(--text-color);
        font-size: 15px;
        font-weight: 550;
        line-height: 150%;
        transition: none;
    }

    .header-menu li a:hover,
    .menu-item-has-children:hover>a {
        color: var(--text-color);
    }

    .submenu-item::before {
        display: none;
    }

    .header-mobile {
        display: block;
        width: var(--width-container);
        margin-left: auto;
        margin-right: auto;
    }

    .header-mobile-main {
        display: flex;
        padding-bottom: 48px;
        margin-bottom: 32px;
        border-bottom: 1px solid var(--orange-200);
    }

    .header-phone {
        margin-right: 50px;
    }

    .header .social-item {
        width: 48px;
        height: 48px;
    }

    .header .social-item {
        border: 1px solid var(--orange-300);
        background: var(--red);
    }

    .header .social-item:hover {
        background-color: var(--orange-hover);
    }

    .header .social-item:hover svg {
        fill: var(--white);
    }

    /* Footer */
    .footer-item-last {
        flex-direction: column;
    }

    .footer-item {
        margin-right: 0;
        max-width: 230px;
    }

    .section-content {
        max-width: 412px;
    }

    .section-content .text {
        margin-top: 16px;
    }


    /* Marketing */
    .marketing-wrapper {
        margin-left: -16px;
        margin-top: 40px;
    }

    .marketing-item {
        padding: 20px;
        width: calc(33.3% - 16px);
        margin-left: 16px;
        margin-bottom: 16px;
        border-radius: 36px;
    }

    .marketing-item__icon {
        height: 56px;
        width: 56px;
    }

    .marketing-item__title {
        font-size: 20px;
    }

    .marketing {
        padding-top: 100px;
    }

    .marketing-background {
        height: 400px;
    }

    .marketing .section-content {
        max-width: 412px;
    }

    /* Action Block */
    .action-block__text {
        font-size: 20px;
        margin-top: 0;
    }

    .action-block-content__img img {
        max-width: 100px;
    }

    .action-block-content__img {
        margin-right: 40px;
    }

    .benefits-block__content .text {
        font-size: 16px;
    }

    .benefits-block__content .text {
        font-size: 22px;
    }

    .action-block-btn {
        margin-left: 140px;
    }


    /* Contacts */
    .contacts-content .title {
        font-size: 32px;
    }

    .contacts-gift {
        margin: 32px 0;
        max-width: 335px;
        padding: 23px 24px;
    }

    .contacts-gift p {
        font-size: 14px;
        max-width: 209px;
    }

    .contacts-gift__img1 {
        width: 109px;
        top: 0;
    }

    .contacts {
        padding: 48px 0;
    }

    .contacts-gift__img2 {
        width: 136px;
        top: 0;
    }

    .contacts-form__submit {
        flex-direction: column;
        margin-top: 0;
    }

    .contacts .checkbox-permission {
        margin: 32px 0 40px;
        max-width: 100%;
    }

    /* Popup */

    .popup-consultation__title {
        font-size: 32px;
        max-width: 587px;
    }

    .popup-consultation-second .popup-consultation__title {
        max-width: 100%;
    }

    .popup-consultation-second__text {
        font-size: 20px;
    }

    .popup-consultation__text {
        max-width: 565px;
    }

    .popup-consultation-sent p {
        font-size: 18px;
    }

    .popup-consultation-sent {
        padding: 24px 20px;
        border-radius: 32px;
    }

    .popup-consultation-second .popup-wrapper {
        width: 598px;
        max-width: calc(100% - 40px);
        padding: 32px 32px 40px;
    }

    .consultation-box {
        padding-top: 32px;
    }

    .consultation-content__title {
        font-size: 24px;
    }

    .consultation-bonus {
        width: 256px;
        padding: 20px 14px;
    }

    .consultation-content {
        max-width: calc(100% - 256px - 24px);
        margin-right: 24px;
    }

    .consultation-content__item {
        margin-bottom: 10px;
    }

    .consultation-content-items {
        margin: 16px 0 50px;
    }

    .consultation-bonus__title {
        font-size: 24px;
        margin: 6px 0 12px;
    }

    .consultation-content__bottom-arrow {
        bottom: 0;
        left: 290px;
    }

    .consultation-content__bottom-arrow svg {
        max-width: 110px;
        height: auto;
    }

    /* Points */
    .points-box {
        margin: 48px 0 40px;
    }

    .points .subtext {
        font-size: 16px;
    }

    .points-item {
        padding: 24px 20px 28px;
    }

    .points-item__title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    /* Our Partners */
    .our-partners-wrapper {
        padding-top: 80px;
    }

    /* Benefits Block */
    .benefits-block__content {
        max-width: 430px;
    }

    /* Stories */
    .stories-item-content-left,
    .stories-item-content-right {
        width: calc(50% - 31px);
    }

    .stories-item-content-right::before {
        left: -32px;
    }

    .stories-top .text {
        width: 350px;
    }

    .stories-top .title {
        width: 350px;
    }

    .stories-item__title {
        font-size: 24px;
    }


    /* MainBlog */
    .mainBlog-wrapper {
        flex-direction: column;
    }

    .mainBlog-video,
    .mainBlog-elements {
        width: 100%;
    }

    .mainBlog-item__video {
        height: 410px;
    }

    .mainBlog-video .mainBlog-item__title {
        max-width: 700px;
    }

    .mainBlog-video {
        margin-bottom: 32px;
    }

    .mainBlog-item__img {
        width: 284px;
        max-height: 190px;
    }

    .mainBlog-item-content {
        width: 420px;
        margin-left: 24px;
    }

    .mainBlog-item__title {
        font-size: 20px;
    }

    .mainBlog-item {
        margin-bottom: 24px;
    }

    /* FAQ */
    .faq-tabs-content__item summary:hover {
        color: var(--text-color);
    }

    .faq-tabs-content__item details:has(> summary:hover) {
        border-bottom: 1px solid var(--orange-200);
    }

    .faq-tabs-content__item summary:hover::after {
        background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 5.30469V19.3047" stroke="%230F1B24" stroke-linecap="round"/><path d="M5 12.3047H19" stroke="%230F1B24" stroke-linecap="round"/></svg>');
    }

}


@media screen and (max-width: 767px) {
    :root {
        --width-container: 540px;
    }

    /* Footer */
    .footer-item {
        max-width: 49%;
        width: auto;
    }

    .footer-right {
        flex-wrap: wrap;
    }

    .footer-item-last {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .footer-item-last .footer-item {
        max-width: 100%;
        width: auto;
    }

    .section-content {
        width: 100%;
        max-width: 100%;
    }

    /* Marketing */
    .marketing-item {
        box-shadow: none;
    }

    .marketing-item .learn-more {
        display: flex;
    }

    .marketing-wrapper .slick-list {
        padding-left: 0 !important;
    }

    .marketing-container-left {
        width: auto !important;
        padding: 0 !important;
        margin-left: var(--white-space-container);
        overflow: hidden;
    }

    .marketing-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .marketing .section-content {
        max-width: 100%;
        margin-bottom: 32px;
    }

    .marketing-item__text {
        margin: 0;
        margin-top: 18px;
    }

    .marketing-item {
        border-radius: 28px;
    }


    /* Contacts */
    .contacts-gift {
        margin: 32px 0 24px;
    }

    .contacts-content .title {
        font-size: 28px;
    }

    .contacts-form__item,
    .contacts-form__lastitem {
        margin-top: 12px;
    }

    .contacts-form-row {
        margin-bottom: 0;
        flex-direction: column;
    }

    .contacts-form__item {
        width: 100%;
    }

    .contact-thanks__title {
        font-size: 24px;
        font-weight: 550;
        line-height: 133%;
        margin-bottom: 0;
    }

    .contact-thanks__text {
        margin-top: 16px;
        font-size: 14px;
    }

    .contact-thanks__line {
        margin: 32px 0px 40px;
    }

    /* Popup */
    .consultation-box {
        flex-direction: column-reverse;
    }

    .consultation-bonus {
        width: 100%;
        max-width: 362px;
        margin-left: auto;
        margin-right: auto;
    }

    .consultation-content {
        max-width: 100%;
        margin-right: 0;
        margin-top: 20px;
    }

    .consultation-content__bottom-arrow {
        bottom: -10px;
        left: 310px;
    }

    .popup-consultation-second__text.first {
        text-align: left;
        align-items: flex-start;
    }

    .popup-consultation-second__text svg {
        max-width: 24px;
        height: auto;
    }

    .popup-partner .popup-wrapper {
        width: 96%;
        max-width: 648px;
        padding: 55px 20px 40px;
    }

    .partner-popup-title {
        font-size: 24px;
    }

    .popup-thank .popup-wrapper {
        width: 96%;
        max-width: 576px;
    }

    /* Stories */
    .stories-top {
        flex-direction: column;
    }

    .stories-top .title,
    .stories-top .text {
        width: 100%;
        max-width: 100%;
    }

    .stories-top .text {
        margin-top: 24px;
    }

    /* mainBlog */
    .mainBlog-item__video {
        height: 300px;
    }

    .mainBlog-item__title {
        font-size: 18px;
    }

    .mainBlog-item-content {
        margin-left: 12px;
        width: 290px;
    }

    .mainBlog-item {
        justify-content: space-between;
    }

    .mainBlog-item__img {
        width: 235px;
        max-height: 160px;
    }
}


@media screen and (max-width: 575px) {
    :root {
        --width-container: 380px;
        --block-padding: 64px;
    }

    .btn {
        width: 100%;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        margin-bottom: 12px;
        font-size: 14px;
    }

    /* Header */
    .header {
        padding: 16px 0;
    }

    .header-mobile-main {
        flex-direction: column-reverse;
    }

    .header-phone {
        margin-right: 0;
        margin-top: 38px;
    }

    .header-center-mobile {
        display: block;
    }

    .header-center-mobile .header-phone {
        margin: 0;
    }

    .header-center-mobile .btn {
        padding: 12.5px 16px;
    }

    .header .logo .logo-text {
        display: none;
    }

    /* Footer */
    .footer-right {
        flex-wrap: wrap;
    }

    .footer-item {
        margin-bottom: 40px;
        max-width: calc(50% - 16px);
    }

    .footer-item-last .footer-item {
        max-width: 100%;
        width: 100%;
    }

    .footer {
        padding: 64px 0;
    }

    .footer-item-last .btn {
        display: none;
    }

    .footer-mobile-btn {
        display: block;
    }

    .footer-wrapper {
        margin-top: 40px;
    }

    .footer-left .social {
        margin-bottom: 48px;
    }

    .footer-left {
        flex-direction: column-reverse;
    }

    /* Contacts */
    .contacts-content {
        width: 100%;
    }

    .contact-thanks-info__item {
        width: 100%;
    }

    .contact-thanks .btn {
        margin-top: 32px;
    }

    .contact-thanks-social {
        max-width: 260px;
        margin-top: 0px;
        flex-wrap: wrap;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-thanks-social .social-item {
        margin-top: 32px;
        margin-right: 70px;
    }

    .contact-thanks-social .social-item:nth-child(3n) {
        margin-right: 0;
    }

    /* Popup */

    .popup-consultation__title {
        font-size: 28px;
    }

    .popup-consultation .popup-wrapper {
        padding: 24px 20px 40px;
        max-width: calc(100% - 20px);
    }

    .popup-consultation__text {
        margin-top: 12px;
    }

    .consultation-box {
        margin-top: 24px;
        margin-top: 20px;
    }

    .consultation-bonus {
        padding: 16px 20px;
    }

    .consultation-bonus svg {
        max-width: 40px;
        height: auto;
    }

    .consultation-bonus__title {
        margin: 4px 0 8px;
    }

    .consultation-bonus__text {
        font-size: 16px;
    }

    .consultation-content__item {
        margin-bottom: 12px;
    }

    .consultation-content__bottom-arrow {
        display: none;
    }

    .consultation-content__bottom .btn {
        width: 100%;
    }

    .consultation-content-items {
        margin: 12px 0 32px;
    }

    .popup-consultation-second .popup-wrapper {
        padding: 48px 20px 40px;
        max-width: calc(100% - 20px);
    }

    .popup-consultation-second__img {
        margin-bottom: 32px;
    }

    .popup-consultation-second__text {
        font-size: 18px;
    }

    .popup-consultation__separator {
        margin: 32px 0;
    }

    .popup-consultation-sent {
        padding: 16px 20px;
        border-radius: 24px;
    }

    .popup-consultation-sent p {
        font-size: 16px;
    }

    .popup-thank .popup-wrapper {
        padding: 56px 24px 48px;
    }

    .popup-thank__title {
        font-size: 24px;
    }

    .popup-thank__buttons {
        flex-direction: column;
    }

    .popup-thank__buttons .btn {
        width: 100%;
    }

    .popup-thank__buttons .btn:last-child {
        margin-top: 16px;
    }

    .partner-popup-title {
        max-width: 350px;
    }

    .partner-form__btn .btn {
        width: 100%;
    }

    /* Points */
    .points-box {
        flex-direction: column;
        margin: 40px 0;
    }

    .points-item {
        width: 100%;
    }

    .points-item:nth-last-child(-n+2) {
        margin-bottom: 24px;
    }

    .points-item:last-child {
        margin-bottom: 0;
    }

    /* Our Partners */
    .our-partners__item {
        width: 160px;
        height: 142px;
        border-radius: 32px;
        margin: 0 7px;
        padding: 15px;
    }

    /* Benefits Block */
    .benefits-block {
        padding: 100px 0;
    }

    /* Stories */
    .stories-item-content-left p {
        font-size: 16px;
    }

    .stories-item-content__item-number {
        font-size: 20px;
    }

    .stories-item__img img {
        max-width: 100%;
    }

    /* Action Block */
    .action-block-content {
        flex-direction: column;
    }

    .action-block-content__img {
        margin-right: 0;
        margin-bottom: 24px;
    }

    .action-block-btn {
        width: 100%;
        margin-left: 0;
    }

    .benefits-block__content .text {
        font-size: 20px;
    }

    /* mainBlog */
    .mainBlog-video {
        margin-bottom: 24px;
    }

    .mainBlog-item__video {
        height: 220px;
    }

    .mainBlog-item {
        flex-direction: column;
    }

    .mainBlog-video .mainBlog-item__title {
        font-size: 18px;
    }

    .mainBlog-item__img {
        width: 100%;
        max-height: none;
        height: 210px;
        margin-bottom: 16px;
    }

    .mainBlog-video .mainBlog-item__date,
    .mainBlog-video .mainBlog-item__readtime {
        font-size: 14px;
    }

    .mainBlog-item-content {
        width: 100%;
        margin-left: 0;
    }

    .mainBlog-video .mainBlog-item-bottom {
        margin-top: 24px;
    }

    .mainBlog-video .mainBlog-item__category,
    .mainBlog-item__category {
        margin: 16px 0 8px;
    }

    .mainBlog-item {
        margin-bottom: 0;
    }

    .mainBlog-top .btn {
        display: none;
    }

    .mainBlog-bottom-btn {
        display: inline-block;
        margin-top: 32px;
    }

    /* FAQ */
    .faq-tabs-wrapper {
        margin-top: 48px;
    }

    .faq-tabs-content__item p {
        padding-right: 0;
    }

    .faq-tabs__item {
        font-size: 13px;
        margin-bottom: 10px;
        padding: 8px 10px 7px;
    }
}


@media screen and (max-width: 410px) {
    :root {
        --width-container: calc(100% - 30px);
    }

    /* Footer */
    .footer .social {
        width: 100%;
        justify-content: space-between;
    }

    .section-content .text {
        font-size: 16px;
        line-height: 150%;
    }

    /* Marketing */
    .marketing {
        padding-top: 64px;
    }

    .marketing-item {
        padding: 20px 10px 28px 20px;
    }

    .marketing-item {
        margin-bottom: 0;
    }

    .marketing-wrapper {
        margin-left: -32px;
    }

    .marketing-item {
        margin: 0px 8px;
    }

    .marketing-wrapper {
        margin-left: -8px;
    }


    /* Action Block */
    .action-block .btn {
        width: 100%;
    }

    /* Conatcts */


    .response-output {
        padding: 10px;
    }


    /* Popup */
    .popup-consultation .popup-wrapper,
    .popup-consultation-second .popup-wrapper,
    .popup-wrapper {
        margin-top: 0px;
        max-width: 100%;
        min-height: 100%;
        width: 100%;
        scrollbar-width: none;
        border-radius: 0;
    }

    .popup-partner .popup-wrapper,
    .popup-thank .popup-wrapper {
        width: 100%;
    }

    .popup-thank .popup-wrapper {
        padding: 56px 16px 48px;
    }

    .popup-thank__title {
        font-size: 22px;
    }

    .popup-title {
        font-size: 24px;
    }

    .popup-partner__text {
        margin: 16px 0 32px;
    }

    .partner-form__item {
        margin-bottom: 12px;
    }

    .partner-form textarea {
        height: 110px;
    }

    /* Benefits Block */
    .benefits-block__content .title {
        font-size: 24px;
    }

    /* Stories */
    .stories-item-content-left,
    .stories-item-content-right {
        width: calc(50% - 16px);
    }

    .stories-item-content-right::before {
        left: -16px;
    }
}


@media screen and (max-width: 359px) {

    .social-item {
        margin-right: 0px;
    }

    .social {
        justify-content: space-between;
    }

    .title {
        font-size: 26px;
    }

    .text {
        font-size: 14px;
    }


    /* Header */
    .header-center-mobile .btn {
        font-size: 14px;
        padding: 12.5px;
    }

    /* Footer */
    .footer-right {
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-item {
        width: 100%;
        max-width: 100%;
        margin-bottom: 36px;
    }

    /* Contacts */
    .contacts-gift__img1 {
        display: none;
    }

    .contacts-gift p {
        margin-left: 0;
    }

    .response-output {
        font-size: 14px;
    }

    .contacts-form__submit .checkbox-permission {
        padding-left: 35px;
    }

    .checkbox-permission label::before {
        left: -35px;
    }

    .checkbox-permission label::after {
        left: -30px;
    }

    /* Popup */
    .popup-consultation__title {
        font-size: 26px;
    }

    .consultation-bonus {
        padding: 16px 10px;
    }

    .popup-consultation .popup-wrapper {
        padding: 24px 16px 40px;
    }

    .popup-consultation-second__img img {
        max-width: 100%;
    }

    .popup-consultation-second__text {
        font-size: 16px;
    }

    .popup-partner__text {
        font-size: 14px;
    }

    .popup-thank .popup-wrapper {
        padding: 56px 16px 32px;
    }

    .popup-thank__title {
        font-size: 20px;
    }

    .popup-thank__img {
        margin-bottom: 24px;
    }

    .popup-thank__buttons {
        margin-top: 28px;
    }

    .popup-thank__separator {
        margin: 20px 0;
    }

    /* Points */
    .points .text {
        font-size: 18px;
    }

    /* Our Partners */
    .our-partners-wrapper {
        padding-top: 60px;
        margin-top: 40px;
    }


    /* Benefits Block */
    .benefits-block__content .title {
        font-size: 22px;
    }

    /* Stories */
    .stories-item-content {
        flex-direction: column;
    }

    .stories-item-content-left,
    .stories-item-content-right {
        width: 100%;
    }

    .stories-item-content-right {
        margin-top: 24px;
    }

    .stories-item-content-right::before {
        display: none;
    }

    .stories-item-content__item {
        margin-bottom: 16px;
    }

    .stories-item__title {
        font-size: 20px;
    }

    /* mainBlog */
    .mainBlog-item__video {
        height: 180px;
    }

    .mainBlog-item__img {
        height: 180px;
    }

    /* FAQ */
    .faq-tabs-content__item h3 {
        font-size: 18px;
    }
}