@font-face {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: normal;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-Regular.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 700;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-Bold.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: italic;
	font-weight: 700;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-BoldItalic.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 900;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-ExtraBold.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: italic;
	font-weight: normal;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-Italic.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 300;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-Light.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: italic;
	font-weight: 300;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-LightItalic.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 500;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-Medium.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: italic;
	font-weight: 500;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-MediumItalic.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 600;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-SemiBold.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: italic;
	font-weight: 600;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-SemiBoldItalic.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 200;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-Thin.otf') format('opentype'), 
}

@font-face {
	font-family: 'Proxima Nova';
	font-style: italic;
	font-weight: 200;
	src: local('Proxima Nova'),
		url('../fonts/ProximaNova-ThinItalic.otf') format('opentype'), 
}

:root {
    --main-color: #3981f5;
    --second-color: #f24646;
    --white-color: #fff;
    --text-color: #000;
    --light-back-color: #f5f5f5;
    --border-color: #98a7bb;
    
    --gap: 24px;
    --section-bottom-margin: 56px;
    --left-right-padding: 12px;
    --mini-radius: 8px;
    --small-radius: 16px;
    --radius: 24px;
    --normal-radius: 48px;
    --big-radius: 50px;
    --transition: 0.5s;
}

html {
    background-color: #fff;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    color: var(--text-color);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: var(--white-color);
}

* {
    outline: none;
}

*, *:before, *:after {
    box-sizing: inherit;
}

section {
    margin-bottom: var(--section-bottom-margin);
}

p {
    padding: 0;
    margin: 0 0 10px 0;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-delay);
}

a:focus-visible {
    color: var(--main-color);
}

a:hover {
    color: var(--main-color);
}

a:active {
    color: var(--main-color);
}

figure {
    padding: 0;
    margin: 0;
}

iframe {
    border-radius: var(--border-radius);
}

img {
    max-width: 100%;
}

h1 {
    padding: 20px 0 0 0;
    margin: 0 0 20px 0;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: normal;
}

h2 {
    padding: 20px 0 0 0;
    margin: 0 0 20px 0;
    font-weight: 600;
    font-size: 2rem;
    line-height: normal;
}

h3 {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 600;
    font-size: 1.75rem;
    line-height: normal;
}

h4 {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: normal;
}

h5 {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: normal;
}

.text-center {
    text-align: center;
}

.container {
    width: 100%;
    max-width: 1320px;
    padding: 0 var(--left-right-padding);
    margin: 0 auto;
}

.page__container {
    margin-bottom: var(--section-bottom-margin);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0)
}

.ui-front {
    z-index: 100000;
}

.section-header {
    padding: 0;
    margin-bottom: 36px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
}

/*----- CHECKBOX -----*/
.checkbox {
	position: relative;
	display: block;
	margin: 0 0 16px 0;
	cursor: pointer;
	user-select: none;
}

.checkbox:last-child {
    margin-bottom: 0;
}

.checkbox input[type=checkbox] {
	position: absolute;
    top: 24px;
    left: 12px;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0)
}

.checkbox span {
	display: inline-block;
	padding: 0 0 0 35px;
    font-size: 0.875rem; 
	line-height: 1.25rem;    
}

.checkbox span::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	display: inline-flex;
	width: 16px;
	height: 16px;
	background-color: var(--white-color);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 2px solid var(--text-color);
	transition: background var(--transition);
}

.checkbox span a {
    color: var(--main-color);
}
 
/* Checked */
.checkbox input[type=checkbox]:checked + span::before {
    background-color: var(--white-color);
	background-image: url('/upload/icons/template/checkbox-checked.svg');
}
 
/* Focus */
.focused span::before {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
 
/* Hover */
.checkbox span:hover::before {
	filter: brightness(110%);
}
 
/* Active */
.checkbox span:active::before {
	filter: brightness(80%);
}
 
/* Disabled */
.checkbox input[type=checkbox]:disabled + span {
	color: #666;
	cursor: default;
}

.checkbox input[type=checkbox]:disabled + span::before {
	filter: grayscale(100%);
	opacity: 0.6;
}
/*----- Конец CHECKBOX -----*/

/*----- BTN-TRANS -----*/
.btn-trans {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding: 0 24px;
    margin: 0;
    background-color: transparent;
    border: 1px solid var(--main-color);
    border-radius: var(--big-radius);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color: var(--main-color);
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition);
}

.btn-trans:focus-visible {
    background-color: var(--main-color);
    color: var(--white-color);
}

.btn-trans:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

.btn-trans:active {
    background-color: var(--main-color);
    color: var(--white-color);
}
/*----- Конец BTN-TRANS -----*/

/*----- BTN -----*/
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding: 0 24px;
    margin: 0;
    background-color: var(--main-color);
    border: none;
    border-radius: var(--big-radius);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color: var(--white-color);
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition);
}

.btn:focus-visible {
    background-color: var(--second-color);
    color: var(--white-color);
}

.btn:hover {
    background-color: var(--second-color);
    color: var(--white-color);
}

.btn:active {
    background-color: var(--second-color);
    color: var(--white-color);
}
/*----- Конец BTN -----*/

/*----- FORM INPUT -----*/
.form-input {
    display: inline-flex;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 0 0 0 24px;
    margin: 0 0 16px 0;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1.125rem;
    line-height: 1;
    color: var(--text-color);
    transition: border-color var(--transition);
}

.form-input:last-child {
    margin-bottom: 0;
}

.form-input::placeholder {
    color: var(--text-color);
}

.form-input:focus-visible {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.18);
}

.form-input:hover {
    border-color: var(--main-color);
}

.form-input:active {
    border-color: var(--main-color);
}

.form-input.form-error {
    background-color: var(--error-input-background-color);
    border-color: var(--error-input-border-color);
}
/*----- Конец FORM INPUT -----*/

/*----- FORM TEXTAREA -----*/
.form-textarea {
    display: inline-flex;
    align-items: center;
    width: 100%;
    height: 144px;
    padding: 16px;
    margin: 0 0 16px 0;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1.125rem;
    line-height: 1;
    color: var(--text-color);
    transition: border-color var(--transition);
}

.form-textarea:last-child {
    margin-bottom: 0;
}

.form-textarea::placeholder {
    color: var(--text-color);
}

.form-textarea:focus-visible {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.18);
}

.form-textarea:hover {
    border-color: var(--main-color);
}

.form-textarea:active {
    border-color: var(--main-color);
}
/*----- Конец FORM TEXTAREA -----*/

/*----- SELECT -----*/
.form-select {
    display: inline-flex;
    width: 100%;
    height: 46px;
    padding: 0 16px 0 16px;
    margin: 0;
    background-color: var(--white-color);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    font-weight: normal;
    color: var(--white-color);
}

.ui-selectmenu-button.ui-button {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    height: 48px;
    margin-bottom: 16px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: border-color var(--transition-delay);
}

.ui-selectmenu-button.ui-button:hover {
    border-color: var(--main-color);
}

.ui-selectmenu-button.ui-button:focus-visible {
    border-color: var(--main-color);
}

.ui-selectmenu-button.ui-button:active {
    border-color: var(--main-color);
}

.ui-selectmenu-button.ui-button.form-error {
    background-color: var(--error-input-background-color);
    border-color: var(--error-input-border-color);
}

.ui-selectmenu-button .ui-selectmenu-text {
    order: 1;
    margin-right: 20px;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.125rem;
    line-height: 1;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    transition: border-color var(--transition);
}

.ui-selectmenu-button .ui-selectmenu-icon.ui-icon {
    order: 2;
    float: unset;
    width: 18px;
    height: 10px;
    background-image: url('/upload/icons/template/arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.ui-selectmenu-button:hover .ui-selectmenu-icon.ui-icon {
    background-image: url('/upload/icons/template/arrow-main-color.svg');
}

.ui-selectmenu-button.ui-selectmenu-button-open .ui-selectmenu-icon.ui-icon {
    transform: rotateZ(180deg);
}
/*----- Конец SELECT -----*/

/*----- Шапка сайта -----*/
.mobile-header {
    display: none;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.header__logo-link {
    display: inline-flex;
}

.header__top-right {
    display: inline-flex;
    align-items: center;
}

.header__max-link {
    display: inline-flex;
    margin-right: 24px;
}

.header__top-phone {
    display: inline-flex;
    margin-right: 16px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
}

.header__top-callback-btn {
    margin-right: 16px;
}

.header-menu {
    height: 56px;
    background-color: var(--light-back-color);
    border-radius: var(--big-radius);
}

.header-menu__item {
    position: relative;
}

.header-menu__list {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-menu__link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    padding: 0 48px;
    border-radius: var(--big-radius);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1;
    color: var(--text-color);
    transition: background-color var(--transition), color var(--transition);
}

.header-menu__link:focus-visible {
    background-color: var(--main-color);
    color: var(--white-color);
}

.header-menu__link:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

.header-menu__link:active {
    background-color: var(--main-color);
    color: var(--white-color);
}

.header-menu__link_active {
    background-color: var(--main-color);
    color: var(--white-color);
}

.header-menu__submenu-wrapper {
    opacity: 0;
    position: absolute;
    top: 56px;
    left: 0;
    display: none;
    width: 100%;
    padding-top: 7px;
    transition: opacity var(--transition);
}

.header-menu__item:hover .header-menu__submenu-wrapper {
    opacity: 1;
    display: block;
}

.header-menu__sublist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 16px;
    margin: 0;
    background-color: var(--light-back-color);
    border-radius: 16px;
    list-style: none;
    box-shadow: 0px 0px 1px 0px rgba(9, 30, 66, 0.31);
    box-shadow: 0px 9px 12px 0px rgba(9, 30, 66, 0.15);
}

.callback-modal.fancybox-content {
    width: 500px;
    max-width: 100%;
    padding: 56px 32px 32px 32px;
    border-radius: var(--radius);
}

.callback-modal-form__header {
    padding: 0;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
}

.callback-modal-form__desc {
    margin-bottom: 16px;
    text-align: center;
}

.callback-modal-form__captcha-wrapper {
    margin-bottom: 16px;
}

.callback-modal-form__submit {
    width: 100%;
}

.callback-modal-form__result {
    display: none;
    padding-top: 10px;
    text-align: center;
}

.partner-modal.fancybox-content {
    width: 500px;
    max-width: 100%;
    padding: 56px 32px 32px 32px;
    border-radius: var(--radius);
}

.partner-modal-form__header {
    padding: 0;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
}

.partner-modal-form__desc {
    margin-bottom: 16px;
    text-align: center;
}

.partner-modal-form__captcha-wrapper {
    margin-bottom: 16px;
}

.partner-modal-form__submit {
    width: 100%;
}

.partner-modal-form__result {
    display: none;
    padding-top: 10px;
    text-align: center;
}


.partner-form-modal__success {
    text-align: center;
    font-size: 1.25rem;
}

.urgent-order-modal.fancybox-content {
    width: 500px;
    max-width: 100%;
    padding: 56px 32px 32px 32px;
    border-radius: var(--radius);
}

.urgent-order-modal-form__header {
    padding: 0;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
}

.urgent-order-modal-form__desc {
    margin-bottom: 16px;
    text-align: center;
}

.urgent-order-modal-form__captcha-wrapper {
    margin-bottom: 16px;
}

.urgent-order-modal-form__submit {
    width: 100%;
}

.urgent-order-modal-form__result {
    display: none;
    padding-top: 10px;
    text-align: center;
}

.urgent-order-form-modal__success {
    text-align: center;
    font-size: 1.25rem;
}

#urgent-order-modal-form-year-menu {
    padding: 16px;
    background-color: var(--light-back-color);
    border: 1px solid var(--light-back-color);
    border-radius: var(--radius);
}
/*----- Конец шапки сайта -----*/

/*----- Верхний баннер на главной -----*/
.main-banner {
    padding: 24px 0 0 0;
    margin-bottom: var(--section-bottom-margin);
}

.main-banner__inner {
    display: flex;
    flex-direction: column;
    min-height: 650px;
    padding: 69px 86px;
    border-radius: var(--normal-radius);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-banner__header {
    padding: 0;
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 3rem;
    line-height: 100%;
    color: var(--main-color);
}

.main-banner__desc {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
}

.main-banner__btn {
    margin-top: auto;
    align-self: flex-start;
}
/*----- Конец верхнего баннера на главной -----*/

/*----- Преимущества -----*/
.features {
    margin-bottom: var(--section-bottom-margin);
}

.features__items {
    --items: 2;
    --gap: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}

.features__item {
    display: flex;
    align-items: center;
    gap: 24px;
    width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
    min-height: 180px;
    padding: 32px;
    background-color: var(--light-back-color);
    border-radius: var(--radius);
}

.features__item-text {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
}

.features__item-icon {
    flex-shrink: 0;
}
/*----- Конец преимуществ -----*/

/*----- Какой транспорт принимаем -----*/
.accept-transport {
    margin-bottom: var(--section-bottom-margin);
}

.accept-transport__tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.accept-transport__tab {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 202px;
    height: 144px;
    padding: 22px 0 0 0;
    margin: 0;
    background-color: var(--light-back-color);
    border: 2px solid var(--light-back-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color var(--transition);
}

.accept-transport__tab:focus-visible {
    border-color: var(--border-color);
}

.accept-transport__tab:hover {
    border-color: var(--border-color);
}

.accept-transport__tab:active {
    border-color: var(--border-color);
}

.accept-transport__tab_active {
    border-color: var(--border-color);
}

.accept-transport__tab-name {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 100%;
}

.accept-transport__panel {
    display: none;
    padding: 48px 80px;
    background-color: var(--light-back-color);
    border-radius: var(--radius);
}

.accept-transport__panel_active {
    display: block;
}

.accept-transport__panel-inner {
    display: flex;
}

.accept-transport__panel-left {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding-right: 24px;
}

.accept-transport__panel-img {
    max-width: 100%;
    height: auto;
}

.accept-transport__panel-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    width: 50%;
}

.accept-transport__panel-header {
    padding: 0;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
}

.accept-transport__panel-subheader {
    margin-bottom: 16px;
    font-size: 1.5rem;
    line-height: 100%;
}

.accept-transport__panel-desc {
    margin-bottom: 48px;
    font-size: 1.125rem;
    line-height: 100%;
}

.accept-transport__panel-desc:last-child {
    margin-bottom: 0;
}

.accept-transport__panel-btn {
    align-self: flex-start;
}
/*----- Конец какой транспорт принимаем -----*/

/*----- Шаги -----*/
.steps {
    margin-bottom: var(--section-bottom-margin);
}

.steps__items {
    --items: 3;
    --gap: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}

.steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.steps__item-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: var(--second-color);
    border-radius: 50%;
    font-family: Proxima Nova;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 100%;
    color: var(--white-color);
}

.steps__item-header {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
}

.steps__item-text {
    text-align: center;
    font-size: 1.125rem;
}
/*----- Конец шагов -----*/

/*----- Портфолио -----*/
.portfolio {
    margin-bottom: var(--section-bottom-margin);
}

.portfolio__carousel-container {
    position: relative;
}

.portfolio__carousel-item {
    display: flex;
    flex-direction: column;
}

.portfolio__carousel-item-img {
    width: 100%;
    height: auto;
    margin-bottom: 14px;
    border-radius: 16px;
}

.portfolio__carousel-item-name {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.75rem;
}

.portfolio__carousel-item-desc {
    margin-bottom: 16px;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.portfolio__carousel-item-price {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.75rem;
}

.portfolio__carousel-item-price span {
    color: var(--second-color);
}

.portfolio__carousel-arrow-left {
    z-index: 2000;
    position: absolute;
    top: 105px;
    left: -24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    background-color: var(--white-color);
    border-radius: 50%;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: border-color var(--transition);
}

.portfolio__carousel-arrow-left:focus {
    border: 2px solid var(--second-color);
}

.portfolio__carousel-arrow-left:hover {
    border: 2px solid var(--second-color);
}

.portfolio__carousel-arrow-left:active {
    border: 2px solid var(--second-color);
}

.portfolio__carousel-arrow-right {
    z-index: 2000;
    position: absolute;
    top: 105px;
    right: -24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    background-color: var(--white-color);
    border-radius: 50%;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: border-color var(--transition);
}

.portfolio__carousel-arrow-right:focus {
    border: 2px solid var(--second-color);
}

.portfolio__carousel-arrow-right:hover {
    border: 2px solid var(--second-color);
}

.portfolio__carousel-arrow-right:active {
    border: 2px solid var(--second-color);
}

.portfolio__carousel-mobile-dots {
    display: none;
}
/*----- Конец портфолио -----*/

/*----- Выездной офис -----*/
.field-office {
    margin-bottom: var(--section-bottom-margin);
}

.field-office__inner {
    display: flex;
    min-height: 476px;
    background-color: var(--light-back-color);
    border: 4px solid var(--light-back-color);
    border-radius: var(--normal-radius);
    overflow: hidden;
}

.field-office__left {
    width: 620px;
}

.field-office__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.field-office__right {
    width: calc(100% - 620px);
    padding: 48px;
}

.field-office__header {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
}

.field-office__subheader {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.field-office__desc {
    margin-bottom: 24px;
    font-size: 1.125rem;
    line-height: 100%;
}

.field-office__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.field-office__input {
    margin-bottom: 0;
    width: 364px;
}

.field-office__submit {
    width: 200px;
}

.field-office__captcha-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.field-office-form__captcha-wrapper {
    flex-shrink: 0;
    width: 300px;
}

.field-office__max-text {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
    font-size: 1.125rem;
}

.field-office__max-link {
    display: inline-flex;
}

.field-office__max-img {
    width: 32px;
    height: auto;
}

.field-office__result {
    display: none;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}
/*----- Конец выездного офиса -----*/

/*----- Ответы на вопросы -----*/
.answers {
    margin-bottom: var(--section-bottom-margin);
}

.answers__row {
    display: flex;
    justify-content: space-between;
}

.answers__left {
    width: 477px;
}

.answers__right {
    width: 775px;
}

.answers__video-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 281px;
    margin-bottom: 16px;
    background-color: var(--light-back-color);
    border-radius: var(--radius);
}

.answers__video-text {
    font-size: 1.5rem;
    line-height: 100%;
}

.answers__question-block {
    margin-bottom: 16px;
}

.answers__question-block:last-child {
    margin-bottom: 0;
}

.answers__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 68px;
    padding: 0 34px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    font-size: 1.125rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--transition);
}

.answers__question:focus {
    background-color: var(--white-color);
}

.answers__question:hover {
    background-color: var(--white-color);
}

.answers__question:active {
    background-color: var(--white-color);
}

.answers__question::after {
    content: '';
    display: inline-flex;
    flex-shrink: 0;
    width: 18px;
    height: 10px;
    background-image: url('/upload/icons/template/answers-arrow.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.answers__question.answers__question_active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

.answers__question.answers__question_active::after {
    transform: rotate(180deg);
}

.answers__answer {
    display: none;
    height: 0;
    background-color: var(--white-color);
    border-radius: var(--radius);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid var(--border-color);
    border-top: none;
    font-size: 1rem;
    line-height: 1.5rem;
    overflow: hidden;
    transition: height var(--transition);
}

.answers__question.answers__question_active+.answers__answer {
    display: block;
    height: auto;
    padding: 0 34px 24px 34px;
}
/*----- Конец ответов на вопросы -----*/

/*----- Остались вопросы? -----*/
.other-questions {
    margin-bottom: var(--section-bottom-margin);
}

.other-questions__header {
    padding: 0;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    line-height: 100%;
}

.other-questions__subheader {
    margin-bottom: 36px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 100%;
}

.other-questions__items {
    --items: 3;
    --gap: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}

.other-questions__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
    padding: 32px;
    background-color: var(--light-back-color);
    border-radius: var(--radius);
}

.orher-questions__item-header {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.other-questions__item-phone {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    color: var(--main-color);
}

.other-questions__item-max {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--main-color);
}

.other-questions__item-max-img {
    width: 32px;
    height: auto;
}
/*----- Конец остались вопросы -----*/

/*----- Отзывы -----*/
.testims {
    margin-bottom: var(--section-bottom-margin);
}

.testims__header {
    margin-bottom: 16px;
    text-align: center;
}

.testims__desc {
    max-width: 1056px;
    margin: 0 auto 36px auto;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.6rem;
}

.testims-carousel .owl-stage {
    display: flex;
}

.testims-carousel__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.testims-carousel__item-top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.testims-carousel__item-img {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    margin-right: 24px;
    border-radius: 50%;
}

.testims-carousel__item-right {
    display: flex;
    flex-direction: column;
}

.testims-carousel__item-name {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.75rem;
}

.testims-carousel__item-status {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--border-gray-color);
}

.testims-carousel__item-stars-list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.testims-carousel__item-stars-item {
    margin-right: 4px;
}

.testims-carousel__item-link {
    margin-top: auto;
    font-size: 0.75rem;
    line-height: 1;
    color: #3b82f6;
}

.testims-carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
}

.testims-carousel__dots .owl-dot {
    display: flex;
    width: 48px;
    height: 4px;
    padding: 0;
    background-color: #e2e8f0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.testims-carousel__dots .owl-dot:last-child {
    margin-right: 0;
}

.testims-carousel__dots .owl-dot.active {
    background-color: var(--main-color);
}
/*----- Конец отзывов -----*/

/*----- Блок контактов -----*/
.contacts-block {
    margin-bottom: var(--section-bottom-margin);
}

.contacts-block__inner {
    display: flex;
    justify-content: space-between;
    padding: 86px;
    background-color: var(--light-back-color);
    border-radius: var(--normal-radius);
}

.contacts-block__map {
    width: 702px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.contacts-block__right {
    display: flex;
    flex-direction: column;
    width: 374px;
    padding: 32px;
    background-color: var(--white-color);
    border-radius: var(--radius);
}

.contacts-block__header {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
}

.contacts-block__address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 100%;
}

.contacts-block__address::before {
    content: '';
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    width: 24px;
    height: 27px;
    margin-bottom: 16px;
    background-image: url('/upload/icons/template/contacts-block-address.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contacts-block__phone-header {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 100%;
}

.contacts-block__phone {
    align-self: flex-start;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
    color: var(--main-color);
}

.contacts-block__hours {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    margin-bottom: 74px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
}

/* .contacts-block__hours::before {
    content: '';
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-image: url('/upload/icons/template/contacts-block-clock.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
} */
/*----- Конец блока контактов -----*/

/*----- Информационный блок -----*/
.info-block__text {
    margin-bottom: var(--section-bottom-margin);
    padding: 40px 48px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.info-block p {
    font-size: 1.125rem;
    line-height: 100%;
}
/*----- Конец информационного блока -----*/

/*----- Калькулятор -----*/
.calculator__inner {
    display: flex;
    justify-content: space-between;
    padding: 80px;
    margin-bottom: var(--section-bottom-margin);
    background-color: var(--light-back-color);
    border-radius: var(--normal-radius);
}

.calculator__left {
    display: flex;
    flex-direction: column;
    width: 722px;
}

.calculator__slider-row {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 104px;
    margin-bottom: 70px;
    background-color: var(--white-color);
    border-top-left-radius: var(--small-radius);
    border-top-right-radius: var(--small-radius);
    padding: 16px 24px 0 24px;
}

.calculator__slider-span {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
}

.calculator__slider-price {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1;
}

.calculator__slider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.calculator__slider-block {
    position: absolute;
    left: 0;
    bottom: -23px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.calculator__slider.ui-widget.ui-widget-content {
    height: 4px;
    background: none;
    border: none;
    border-radius: var(--mini-radius);
}

.calculator__slider.ui-slider-horizontal .ui-slider-range {
    background-color: var(--main-color);
}

.calculator__slider .ui-slider-handle.ui-corner-all.ui-state-default {
    top: -6px;
    display: inline-flex;
    width: 16px;
    height: 16px;
    background-color: var(--main-color);
    border: none;
    border-radius: 50%;
}

.calculator__slider-range {
    font-size: 0.875rem;
    line-height: 1;
}

.calculator__left-bottom {
    padding: 32px;
    background-color: var(--white-color);
    border-radius: var(--radius);
}

.calculator__left-header {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.calculator__sum {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
    color: var(--second-color);
}

.calculator__persent {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.calculator__persent span {
    color: var(--second-color);
}

.calculator__month {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.calculator__month span {
    color: var(--second-color);
}

.calculator__persent-text {
    margin-bottom: 16px;
}

.calculator__question {
    position: relative;
    display: inline-flex;
    margin-top: -2px;
    cursor: pointer;
}

.calculator__question-text {
    z-index: 200;
    position: absolute;
    bottom: 30px;
    left: -98px;
    display: none;
    padding: 16px 24px;
    background-color: #fff;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.875rem;
    color: #000;
    box-shadow: 0px 0px 1px 0px #091E424F, 0px 9px 12px 0px #091E4226;
}

.calculator__question-text_vs {
    display: block;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    width: 364px;
    padding: 32px;
    background-color: var(--white-color);
    border-radius: var(--radius);
}

.calculator-form__header {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 100%;
}

.calculator-form__captcha-wrapper {
    margin-bottom: 16px;
}

#calculator-form-year-menu {
    padding: 16px;
    background-color: var(--light-back-color);
    border: 1px solid var(--light-back-color);
    border-radius: var(--radius);
}

.calculator-form__result {
    padding-top: 10px;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1;
}
/*----- Конец калькулятора -----*/

/*----- Подвал -----*/
.footer__inner {
    padding: 48px;
    margin-bottom: 85px;
    background-color: var(--light-back-color);
    border-radius: var(--normal-radius);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-menu__list {
    display: flex;
    align-items: center;
    gap: 260px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu__link {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
}

.footer__center {
    padding-bottom: 26px;
}

.footer__under-logo-text {
    margin-bottom: 8px;
    font-size: 0.875rem;
    line-height: 1;
}

.footer__phone-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.footer__phone {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
}

.footer__max {
    display: inline-flex;
    width: 32px;
    height: 32px;
}

.footer__email-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer__email {
    font-size: 0.875rem;
    line-height: 100%;
    color: var(--main-color);
}

.footer__hours {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    line-height: 100%;
}

.footer__address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    line-height: 100%;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer__copy {
    font-size: 0.875rem;
    line-height: 1;
}

.footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__link {
    font-size: 0.875rem;
    line-height: 1;
    color: var(--main-color);
}
/*----- Конец подвала -----*/

/*----- Блок куки -----*/
.cookie {
    z-index: 1000;
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: none;
    width: 328px;
    max-width: 100%;
    padding: 24px;
    background-color: var(--white-color);
    border-radius: var(--mini-radius);
    box-shadow: 0px 0px 1px 0px rgba(9, 30, 66, 0.31), 0px 9px 12px 0px rgba(9, 30, 66, 0.15);
}

.cookie__inner {
    display: flex;
    flex-direction: column;
}

.cookie__header {
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
}

.cookie__text {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 100%;
}

.cookie__text a {
    color: var(--main-color);
}
/*----- Конец блока куки -----*/

/*----- Хлебные крошки -----*/
.breadcrumbs {
    padding: 24px 0;
    margin-bottom: 0;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumbs__item {
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
}

.breadcrumbs__link {
    color: var(--main-color);
}
/*----- Конец хлебных крошек -----*/

/*----- Контакты -----*/
.contacts {
    margin-bottom: var(--section-bottom-margin);
}

.contacts__top {
    --items: 3;
    --gap: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    margin-bottom: var(--section-bottom-margin);
}

.contacts__left {
    display: flex;
    flex-direction: column;
    width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
    padding: 32px;
    background-color: var(--light-back-color);
    border-radius: var(--radius);
}

.contacts__center {
    display: flex;
    flex-direction: column;
    width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
    padding: 32px;
    background-color: var(--light-back-color);
    border-radius: var(--radius);
}

.contacts__right {
    display: flex;
    flex-direction: column;
    width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
    padding: 32px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.contacts__header {
    padding: 0;
    margin: 0 0 24px 0;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
}

.contacts__header_small-margin {
    margin-bottom: 0;
}

.contacts__address {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.125rem;
    line-height: 100%;
}

.contacts__address::before {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 24px;
    height: 27px;
    background-image: url('/upload/icons/template/contacts-address.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contacts__phone-header {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 100%;
}

.contacts__phone {
    align-self: flex-start;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
    color: var(--main-color);
    transition: color var(--transition);
}

.contacts__phone:focus-visible {
    color: var(--second-color);
}

.contacts__phone:hover {
    color: var(--second-color);
}

.contacts__phone:active {
    color: var(--second-color);
}

.contacts__email-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.contacts__email {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 100%;
    color: var(--main-color);
    transition: color var(--transition);
}

.contacts__email:focus-visible {
    color: var(--second-color);
}

.contacts__email:hover {
    color: var(--second-color);
}

.contacts__email:active {
    color: var(--second-color);
}

.contacts__hours {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 48px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
}

.contacts__hours svg {
    flex-shrink: 0;
}

.contacts__requisite {
    margin-bottom: 16px;
    font-size: 1.125rem;
    line-height: 1;
}

.contacts__desc {
    margin-bottom: 16px;
}

.contacts-form__captcha-wrapper {
    margin-bottom: 16px;
}

.contacts__map {
    margin-bottom: var(--section-bottom-margin);
    height: 650px;
    border-radius: var(--normal-radius);
    overflow: hidden;
}

.about__img {
    margin-bottom: var(--section-bottom-margin);
    border: 1px solid var(--border-color);
    border-radius: var(--normal-radius);
}

.about__first-block {
    padding: 48px;
    margin-bottom: var(--section-bottom-margin);
    background-color: var(--light-back-color);
    border-radius: var(--normal-radius);
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.about__first-block p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.about__first-block h1 {
    padding: 0;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2.25rem;
}

.about__second-block {
    padding: 48px;
    margin-bottom: var(--section-bottom-margin);
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--normal-radius);
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.about__second-block p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    line-height: 1.5rem;
}
/*----- Конец контактов -----*/

/*----- Документы -----*/
.documents__header {
    text-align: center;
}

.documents__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.documents__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 26px 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.documents__item-left {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.75rem;
}

.documents__item-left svg {
    flex-shrink: 0;
}

.documents__item-link {
    flex-shrink: 0;
}
/*----- Конец документов -----*/

/*----- Верхний баннер в партнерской программе -----*/
.partner-banner {
    padding: 24px 0 0 0;
    margin-bottom: var(--section-bottom-margin);
}

.partner-banner__inner {
    display: flex;
    flex-direction: column;
    min-height: 650px;
    padding: 96px 86px;
    border-radius: var(--normal-radius);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.partner-banner__header {
    padding: 0;
    margin-bottom: 66px;
    font-weight: 700;
    font-size: 3rem;
    line-height: 3.5rem;
    color: var(--text-color);
}

.partner-banner__desc {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
}

.partner-banner__btn {
    margin-top: auto;
    align-self: flex-start;
}
/*----- Конец верхнего баннера в партнерской программе -----*/

/*----- Условия партнерской программы -----*/
.terms__header {
    margin-bottom: 10px;
}

.terms__desc {
    margin-bottom: 36px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 100%;
}

.terms__items {
    --items: 4;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}

.terms__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
    padding: 42px 32px;
    background-color: var(--light-back-color);
    border-radius: var(--radius);
}

.terms__item-icon {
    margin-bottom: 30px;
}

.terms__item-name {
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.75rem;
    line-height: 100%;
}

.terms__item-desc {
    text-align: center;
    font-size: 1rem;
    line-height: 100%;
}
/*----- Конец условий партнерской программы -----*/

/*----- Выплата за нового клиента -----*/
.payout__inner {
    display: flex;
    flex-direction: column;
    padding: 48px 78px;
    background-color: var(--light-back-color);
    border-radius: var(--normal-radius);
}

.payout__header {
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
}

.payout__desc {
    max-width: 865px;
    margin: 0 auto 34px auto;
    text-align: center;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 100%;
}

.payout__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.payout__input {
    max-width: 400px;
    margin-bottom: 0;
}

.payout__result {
    display: none;
    padding-top: 24px;
    text-align: center;
    color: red;
}

.payout__captcha-row {
    max-width: 400px;
    margin: 0 auto 0 auto;
}

.payout-form__captcha-wrapper {
    margin-bottom: 10px;
}

.payout-form__success {
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
}
/*----- Конец выплаты за нового клиента -----*/

/*----- Рабочие схемы -----*/
.schemes {
    margin-bottom: var(--section-bottom-margin);
}

.schemes__header {
    margin-bottom: 36px;
    text-align: center;
}

.schemes__desc {
    max-width: 1056px;
    margin: 0 auto 36px auto;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.6rem;
}

.schemes-carousel .owl-stage {
    display: flex;
}

.schemes-carousel__item {
    display: flex;
    flex-direction: column;
    width: 525px;
    height: 100%;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.schemes-carousel__item-top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.schemes-carousel__item-img {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    margin-right: 24px;
    border-radius: 50%;
}

.schemes-carousel__item-right {
    display: flex;
    flex-direction: column;
}

.schemes-carousel__item-name {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.75rem;
}

.schemes-carousel__item-status {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--border-gray-color);
}

.schemes-carousel__item-stars-list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.schemes-carousel__item-stars-item {
    margin-right: 4px;
}

.schemes-carousel__item-link {
    margin-top: auto;
    font-size: 0.75rem;
    line-height: 1;
    color: #3b82f6;
}

.schemes-carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
}

.schemes-carousel__dots .owl-dot {
    display: flex;
    width: 48px;
    height: 4px;
    padding: 0;
    background-color: #e2e8f0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.schemes-carousel__dots .owl-dot:last-child {
    margin-right: 0;
}

.schemes-carousel__dots .owl-dot.active {
    background-color: var(--main-color);
}

.schemes-carousel__link-wrapper {
    padding-top: 16px;
}

.schemes-carousel__link {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color: var(--main-color);
}
/*----- Конец рабочих схем -----*/

/*----- Выплата за нового клиента -----*/
.engage__inner {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 48px 78px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--normal-radius);
}

.engage__mobile-img {
    display: none;
}

.engage__header {
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
}

.engage__desc {
    margin: 0 auto 32px auto;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 100%;
}

.engage__row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.engage__input {
    max-width: 400px;
    margin-bottom: 0;
}

.engage__result {
    display: none;
    padding-top: 24px;
    color: red;
}

.engage__captcha-row {
    max-width: 400px;
}

.engage-form__captcha-wrapper {
    margin-bottom: 10px;
}

.engage-form__success {
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
}
/*----- Конец выплаты за нового клиента -----*/

/*----- Верхний баннер в партнерской программе -----*/
.invite-friend {
    padding: 0;
    margin-bottom: var(--section-bottom-margin);
}

.invite-friend__inner {
    display: flex;
    flex-direction: column;
    min-height: 530px;
    padding: 96px 86px;
    border-radius: var(--normal-radius);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.invite-friend__header {
    padding: 0;
    margin-bottom: 66px;
    font-weight: 700;
    font-size: 3rem;
    line-height: 3.5rem;
    color: var(--text-color);
}

.invite-friend__desc {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
}

.invite-friend__btn {
    margin-top: auto;
    align-self: flex-start;
}
/*----- Конец верхнего баннера в партнерской программе -----*/

/*----- Документы клиентам -----*/
.klientam__documents-header {
    padding: 0;
}
/*----- Конец документов клиентам -----*/