@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap);
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}
[hidden] {
    display: none;
}
body {
    line-height: 1;
}
menu,
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
body,
html {
    height: 100%;
}
body {
    min-width: 375px;
    font-family: var(--main-font-family, system-ui), sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--dark);
    background-color: var(--bg-beige);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizespeed;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
    body {
        font-size: 17px;
    }
}
.container-fluid {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-right: var(--fields);
    padding-left: var(--fields);
}
.container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-right: var(--fields);
    padding-left: var(--fields);
    max-width: var(--container);
    margin: 0 auto;
}
h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
}
.content-page {
    padding-top: 40px;
    padding-bottom: 40px;
}

.content-page > *:not(:last-child) {
    margin-bottom: 15px;
}

a {
    color: var(--primary);
    text-decoration: none;
}
@media screen and (min-width: 768px) {
    .content-page h1 {
        font-size: 42px;
        font-weight: 600;
    }
    
    .content-page > h2:not(:last-child) {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 32px;
    }
    h2 {
        font-size: 46px;
    }
}
h2 > span {
    color: var(--primary);
}
h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    h3 {
        font-size: 26px;
    }
}
img {
    max-width: 100%;
    height: auto;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@keyframes rotate {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
::-moz-selection {
    color: transparent;
}
::selection {
    color: transparent;
}
sup {
    font-size: smaller;
    vertical-align: super;
}
sub {
    font-size: smaller;
    vertical-align: sub;
}
b,
strong {
    font-weight: 600;
}

input {
	border: none;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid var(--dark);
    font-size: 16px;
    padding: 8px;
	transition:.4s ease;
}

input.err {
	border-color:red;
}

input:hover , input:focus {
	outline:none;
}

input:hover , input:focus {
	border-color:var(--primary);
}

form .fields {
	margin-bottom: 30px;
}

form .field:not(:last-child) {
	margin-bottom: 15px;
}

form .agreement {
	font-size:12px;
	display: block;
    line-height: 1.3;
    margin-top: 10px;
}

.btn-default {
	padding: 10px 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    background: var(--button-gradient);
    border: none;
	cursor:pointer;
    border-radius: var(--radius-rounded);
}
.btn-default span {
	position: relative;
    display: block;
    padding-right: 20px;	
}
.btn-default span::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    background: #4fe447;
    border-radius: var(--radius-50);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.modal-sun form .field {
	
}

.modal-sun form .btn-default {
	padding: 15px 24px;
	display:block;
	margin:0 auto;
}

.modal-sun form .agreement {
	text-align: center;
}

.overflow-hidden {
    overflow: hidden;
}
.header-fixed {
	box-shadow: 0 3px 10px #d1a45a4a;
    position: fixed;
    width: 100%;
    background-color: #f6f3eb;
    z-index: 999;
	transform: translateY(calc(-100% - 10px));
	opacity:0;
	transition:.4s ease;
}
.header-fixed.fix {
	transform: translateY(0);
	opacity:1;
}
.header-fixed .header__container {
	padding-top: 10px;
    padding-bottom: 10px;
}
.header-fixed__inner .header__logo svg , .header-fixed__inner .header__logo img {
	width: 100px;
    height: auto;
}
.header-fixed__inner {
	display: flex;
	width: 100%;
}
.header-fixed__wrapper_nav {
	flex:1;
	align-items: center;
    display: flex;
}
.header-fixed__wrapper_nav .wrapper-nav {
	width:100%;
}

.header-fixed__wrapper_nav .header__nav {
	width: 100%;
}

.header-fixed__wrapper_nav a {
	font-size:16px;
}
.header-fixed .header__burger {
	margin-left:30px;
	display:flex;
}
.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    z-index: 3;
    gap: var(--gap);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.header__container::before {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    height: calc(100dvh - 88px);
    visibility: hidden;
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
@media screen and (min-width: 1258px) {
    .header__container::before {
        display: none;
    }
	
	.header-fixed .header__burger {
		display:none;
	}
	
	.header-fixed__wrapper_nav {
		padding: 0 25px;
		justify-content: center;
	}
}
.header__container:has(.header__right--active)::before {
    visibility: visible;
    opacity: 1;
}
@media screen and (min-width: 1258px) {
    .header__container:has(.header__right--active)::before {
        display: none;
    }
}
.header__logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: end;
    align-self: flex-end;
    text-decoration: none;
}
.header__logo img {
    display: block;
}
.header__right {
    display: none;
}
@media screen and (min-width: 1258px) {
    .header__right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        gap: 24px;
    }
    .header__right.header__right--active {
        position: relative;
        top: auto;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        gap: 24px;
        height: auto;
        padding: 0;
        background-color: transparent;
        border: none;
    }
}
@media (max-width:420px){
	.header__logo {
		flex-shrink:unset;
	}
}
.header__right--active {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 2;
    width: auto;
    height: calc(100vh - 88px);
    padding: 16px 32px 32px;
    overflow: auto;
    background-color: var(--bg-beige);
    border-top: 1px solid #dfdfdf;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}
.header__extra {
    position: relative;
    z-index: 10;
    gap: 16px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}
@media screen and (min-width: 1258px) {
    .header__extra {
        gap: 8px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }
}
@media (max-width:1257px){
	.header__extra .header__socs {
		display:none;
	}
}
.header__socs {
	display:flex;
	gap: 8px;
}

.header__socs .item_soc {
	width:32px;
	height:32px;
}
.item_soc {
	background-repeat: no-repeat;
    background-size: contain;
}

.item_soc.wa {
	background-image: url(/images/socs/wa.svg);
}

.item_soc.tlg {
	background-image: url(/images/socs/tlg.svg);
}
.header__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	padding-right: 16px;
}
.header__phone-icon {
    display: none;
}
@media screen and (min-width: 1258px) {
    .header__phone-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        color: var(--color-icon);
        background-color: var(--bg);
        border-radius: var(--radius-50percent);
    }
}
.header__phone-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 2px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 13px;
    color: rgba(0, 30, 54, 0.8);
}
.header__phone-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}
.header__order {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    background: var(--button-gradient);
    border: none;
    border-radius: var(--radius-rounded);
}
.header__order-text {
    position: relative;
    display: block;
}
@media screen and (min-width: 1258px) {
    .header__order-text {
        padding-right: 28px;
    }
}
@media screen and (min-width: 1258px) {
    .header__order-text::after {
        position: absolute;
        top: 50%;
        right: 0;
        display: block;
        width: 8px;
        height: 8px;
        content: "";
        background: #4fe447;
        border-radius: var(--radius-50);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
.header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}
@media screen and (min-width: 1258px) {
    .header__nav-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        gap: 24px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}
.header__nav-item {
    position: relative;
    padding: 16px 16px 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.header__nav-item::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    background: url(../images/css/icon-arrow-right.svg) center/contain no-repeat;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media screen and (min-width: 1258px) {
    .header__nav-item {
        padding: 0;
        border: 0;
    }
    .header__nav-item::after {
        display: none;
    }
}
.header__nav-link {
    font-size: 17px;
    color: var(--dark);
    text-decoration: none;
}
.header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__buttons .header__socs .item_soc {
	width: 40px;
    height: 40px;
}
@media screen and (min-width: 1258px) {
    .header__buttons {
        display: none;
    }
}
.header__buttons-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-icon);
    background-color: var(--bg);
    border: none;
    border-radius: var(--radius-50percent);
}
.header__mobile-phone {
    text-decoration: none;
}
.header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 4px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.header__burger > span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentcolor;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.header__burger.header__burger--active {
    position: relative;
    z-index: 10;
}
.header__burger.header__burger--active span {
    opacity: 0;
}
.header__burger.header__burger--active span:first-child {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(4px, 4px);
    -ms-transform: rotate(45deg) translate(4px, 4px);
    transform: rotate(45deg) translate(4px, 4px);
}
.header__burger.header__burger--active span:last-child {
    opacity: 1;
    -webkit-transform: rotate(-45deg) translate(4px, -4px);
    -ms-transform: rotate(-45deg) translate(4px, -4px);
    transform: rotate(-45deg) translate(4px, -4px);
}
.hero {
    overflow: hidden;
}
.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}
@media screen and (min-width: 1258px) {
    .hero__container {
        grid-template-columns: 47% auto;
        gap: 50px;
        padding-bottom: 130px;
    }
}
.hero__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    text-align: center;
}
@media screen and (min-width: 1258px) {
    .hero__left {
        padding: 60px 0;
        text-align: left;
    }
}
.hero__title {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    font-size: 17px;
    text-transform: uppercase;
}
@media screen and (min-width: 1258px) {
    .hero__title {
        margin: 0;
        font-size: 24px;
    }
}
.hero__title::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 10px;
    content: "";
    background-color: var(--bg);
    border-radius: var(--radius-10);
}
@media screen and (min-width: 1258px) {
    .hero__title::after {
        bottom: 2px;
    }
}
.hero__heading {
    margin-top: 12px;
}
@media screen and (min-width: 1258px) {
    .hero__heading {
        margin-top: 32px;
		position:relative;
    }
}
.hero__header {
    font-size: 26px;
    font-weight: 600;
    line-height: 29px;
}
@media screen and (min-width: 1258px) {
    .hero__header {
        font-size: 54px;
        line-height: 54px;
    }
}
.hero__header-icons {
    position: absolute;
    bottom: 2px;
    display: none;
    height: auto;
    margin-left: 0;
    left: 208px;
}
@media screen and (min-width: 1258px) {
    .hero__header-icons {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}
.hero__header-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: -14px;
    overflow: hidden;
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary);
    border: 2px var(--white) solid;
    border-radius: var(--radius-50percent);
}
.hero__header-icon > img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.hero__header-icon--last {
    margin: 0;
}
.hero__text {
    margin-top: 16px;
    color: rgba(0, 30, 54, 0.8);
}
@media screen and (min-width: 1258px) {
    .hero__text {
        margin-top: 24px;
    }
}
.hero__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px;
}
@media screen and (min-width: 1258px) {
    .hero__footer {
        grid-template-columns: 47% 47%;
        margin-top: 35px;
    }
}
.hero__footer-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    position: relative;
    padding: 16px;
    overflow: hidden;
    font-size: 12px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.0509803922);
    border-radius: var(--radius-10);
}
@media screen and (min-width: 1258px) {
    .hero__footer-item {
        padding: 16px 50px 16px 24px;
        font-size: 15px;
    }
    .hero__footer-item > span {
        display: block;
        font-weight: 600;
    }
}
.hero__footer-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    color: var(--color-icon);
    background-color: var(--bg);
    border-radius: var(--radius-50);
}
@media screen and (min-width: 1258px) {
    .hero__footer-icon {
        position: absolute;
        right: -16px;
        bottom: -16px;
        z-index: -1;
        width: 67px;
        height: 67px;
        margin: 0;
    }
}
.hero__footer-icon > svg {
    width: 16px;
    height: 16px;
}
@media screen and (min-width: 1258px) {
    .hero__footer-icon > svg {
        position: relative;
        top: -6px;
        left: -6px;
        width: 24px;
        height: 24px;
    }
}
.hero__right {
    position: relative;
    padding: 30px 0;
}
@media screen and (min-width: 1258px) {
    .hero__right {
        padding: 0;
    }
}
.hero__right::after {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    height: 100%;
    aspect-ratio: 1/1;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(#dae5ee), to(#bbd4e8));
    background: linear-gradient(180deg, #dae5ee 0, #bbd4e8 100%);
    border-radius: var(--radius-50percent);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media screen and (min-width: 1258px) {
    .hero__right::after {
        left: 15%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.hero__right-label {
    position: absolute;
    top: -2%;
    left: 7%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 84px;
    padding: 20px 6px;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
@media screen and (min-width: 1258px) {
    .hero__right-label {
        top: 8%;
        left: 9%;
        gap: 8px;
        width: 108px;
        height: 125px;
        font-size: 12px;
    }
}
.hero__right-shield {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: auto;
}
.hero__right-image {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (min-width: 1258px) {
    .hero__right-image {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .hero__right-image > img {
        width: initial;
        max-width: initial;
    }
}
.full-update__container {
    padding-top: 50px;
    padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
    .full-update__container {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.full-update__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media screen and (min-width: 992px) {
    .full-update__content {
        grid-template-columns: 40% auto;
        gap: min(60px, 4vw);
    }
}
.full-update__left {
    position: relative;
    text-align: center;
}
.full-update__image {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}
@media screen and (min-width: 992px) {
    .full-update__image {
        display: block;
        width: 100%;
        height: 100%;
    }
}
.full-update__image img {
    display: block;
    width: 100%;
}
@media screen and (min-width: 992px) {
    .full-update__image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.full-update__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .full-update__right {
        gap: 24px;
    }
}
.full-update__text {
    color: rgba(0, 30, 54, 0.8);
}
.full-update__right-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 16px;
    margin-top: 8px;
}
@media screen and (min-width: 768px) {
    .full-update__right-footer {
        margin-top: 16px;
    }
}
@media screen and (min-width: 1258px) {
    .full-update__right-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }
}
.full-update__order-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 14px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: var(--button-gradient);
    border: none;
    border-radius: var(--radius-rounded);
}
.full-update__order-button span {
    position: relative;
    display: block;
    padding-right: 20px;
}
.full-update__order-button span::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    background: #4fe447;
    border-radius: var(--radius-50);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.full-update__call-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.full-update__call-icon {
    display: block;
    width: 56px;
    height: 56px;
    overflow: hidden;
    border-radius: var(--radius-50percent);
}
.full-update__call-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    font-size: 14px;
    color: rgba(0, 30, 54, 0.8);
}
.full-update__call-text a {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}
.full-update__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 24px;
}
@media screen and (min-width: 768px) {
    .full-update__footer {
        margin-top: 48px;
    }
}
@media screen and (min-width: 992px) {
    .full-update__footer {
        grid-template-columns: 2.4fr 1fr 1fr 1fr 1fr;
    }
}
.full-update__footer-item {
    grid-column: span 1;
    gap: 4px;
    padding: 12px 16px;
    font-size: 12px;
    background: #dae5ee;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}
@media screen and (min-width: 768px) {
    .full-update__footer-item {
        gap: 2px;
        padding: 20px 24px;
    }
}
@media screen and (min-width: 992px) {
    .full-update__footer-item {
        grid-column: span 1;
        font-size: 15px;
    }
}
.full-update__footer-item > span {
    position: relative;
    display: block;
    padding-left: 16px;
    font-weight: 600;
}
.full-update__footer-item > span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--primary);
    border-radius: var(--radius-50percent);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.full-update__footer-item:first-child {
    grid-column: span 2;
}
@media screen and (min-width: 992px) {
    .full-update__footer-item:first-child {
        grid-column: span 1;
    }
}
.full-update__footer-item:first-child > span {
    padding: 0;
}
.part-update__container {
    padding-top: 50px;
    padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
    .part-update__container {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.part-update__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media screen and (min-width: 992px) {
    .part-update__content {
        grid-template-columns: 40% auto;
        gap: min(60px, 4vw);
    }
}
.part-update__left {
    position: relative;
    text-align: center;
}
.part-update__image {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}
@media screen and (min-width: 992px) {
    .part-update__image {
        display: block;
        width: 100%;
        height: 100%;
    }
}
.part-update__image img {
    display: block;
    width: 100%;
}
@media screen and (min-width: 992px) {
    .part-update__image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.part-update__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .part-update__right {
        gap: 24px;
    }
}
.part-update__text {
    color: rgba(0, 30, 54, 0.8);
}
.part-update__right-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 16px;
    margin-top: 8px;
}
@media screen and (min-width: 768px) {
    .part-update__right-footer {
        margin-top: 16px;
    }
}
@media screen and (min-width: 1258px) {
    .part-update__right-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }
}
.part-update__order-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 14px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: var(--button-gradient);
    border: none;
    border-radius: var(--radius-rounded);
}
.part-update__order-button span {
    position: relative;
    display: block;
    padding-right: 20px;
}
.part-update__order-button span::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    background: #4fe447;
    border-radius: var(--radius-50);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.part-update__call-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.part-update__call-icon {
    display: block;
    width: 56px;
    height: 56px;
    overflow: hidden;
    border-radius: var(--radius-50percent);
}
.part-update__call-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    font-size: 14px;
    color: rgba(0, 30, 54, 0.8);
}
.part-update__call-text a {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}
.part-update__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 24px;
}
@media screen and (min-width: 768px) {
    .part-update__footer {
        margin-top: 48px;
    }
}
@media screen and (min-width: 992px) {
    .part-update__footer {
        grid-template-columns: 1fr 0.71fr 0.57fr 0.59fr;
    }
}
.part-update__footer-item {
    grid-column: span 1;
    gap: 4px;
    padding: 12px 16px;
    font-size: 12px;
    background: #dae5ee;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}
@media screen and (min-width: 768px) {
    .part-update__footer-item {
        gap: 2px;
        padding: 20px 24px;
    }
}
@media screen and (min-width: 992px) {
    .part-update__footer-item {
        grid-column: span 1;
        font-size: 15px;
    }
}
.part-update__footer-item > span {
    position: relative;
    display: block;
    padding-left: 16px;
    font-weight: 600;
}
.part-update__footer-item > span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--primary);
    border-radius: var(--radius-50percent);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.part-update__footer-item:first-child {
    grid-column: span 2;
}
@media screen and (min-width: 992px) {
    .part-update__footer-item:first-child {
        grid-column: span 1;
    }
}
.part-update__footer-item:first-child > span {
    padding: 0;
}
.sofa-repair__container {
    position: relative;
    display: grid;
    grid-auto-columns: 1fr;
    gap: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}
@media screen and (min-width: 992px) {
    .sofa-repair__container {
        grid-template-columns: 60% auto;
        gap: 5%;
        padding-top: 100px;
        padding-bottom: 80px;
    }
}
.sofa-repair__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 24px;
}
.sofa-repair__left h2 {
    text-align: center;
}
@media screen and (min-width: 992px) {
    .sofa-repair__left h2 {
        text-align: left;
    }
}
.sofa-repair__right {
    display: none;
}
@media screen and (min-width: 992px) {
    .sofa-repair__right {
        display: block;
    }
}
.sofa-repair__image {
    position: absolute;
    bottom: 0;
}
.sofa-repair__image > img {
    display: block;
}
.sofa-cover__container {
    display: grid;
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 40px;
    background: #dae5ee;
    border-radius: 30px;
}
@media screen and (min-width: 768px) {
    .sofa-cover__container {
        position: relative;
        grid-template-columns: 40% auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: calc(var(--container) + 60px);
        max-width: calc(var(--container) + 60px);
        padding-top: 84px;
        padding-bottom: 84px;
    }
}
.sofa-cover__picture {
    display: block;
    text-align: center;
    border-radius: var(--radius-50percent);
}
.sofa-cover__picture > img {
    width: 180px;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--radius-50percent);
}
@media screen and (min-width: 768px) {
    .sofa-cover__picture > img {
        width: 70%;
    }
}
.sofa-cover__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .sofa-cover__content {
        gap: 24px;
    }
}
.sofa-cover__content > h2 {
    text-align: center;
}
@media screen and (min-width: 768px) {
    .sofa-cover__content > h2 {
        text-align: left;
    }
}
.sofa-cover__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .sofa-cover__text {
        gap: 24px;
        padding-right: 140px;
    }
}
.sofa-cover__buttons {
    margin-top: 8px;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .sofa-cover__buttons {
        text-align: left;
    }
}
.sofa-cover__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 14px 50px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: var(--button-gradient);
    border: none;
    border-radius: var(--radius-rounded);
}
@media screen and (min-width: 768px) {
    .sofa-cover__button {
        padding: 20px 32px;
    }
}
.sofa-cover__button > span {
    position: relative;
    display: block;
    padding-right: 20px;
}
.sofa-cover__button > span::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    background: #4fe447;
    border-radius: var(--radius-50);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.sofa-materials {
    padding: 60px 0;
}
@media screen and (min-width: 992px) {
    .sofa-materials {
        padding: 120px 0 100px;
    }
}
.sofa-materials__container > h2 {
    margin: 0 auto;
    text-align: center;
}
@media screen and (min-width: 992px) {
    .sofa-materials__container > h2 {
        max-width: 60%;
    }
}
.sofa-materials__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 32px 0 48px;
    text-align: center;
}
@media screen and (min-width: 992px) {
    .sofa-materials__content {
        gap: 64px;
        margin: 40px 0 64px;
    }
}
.sofa-materials__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.sofa-materials__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 10px;
    margin-right: -5%;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .sofa-materials__row {
        margin-right: -60px;
    }
}
.sofa-materials__picture {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
    font-size: 10px;
    text-align: left;
    background-color: var(--bg);
    border: 5px var(--white) solid;
    border-radius: var(--radius-50percent);
}
@media screen and (min-width: 768px) {
    .sofa-materials__picture {
        width: 190px;
        height: 190px;
        font-size: 15px;
    }
}
.sofa-materials__picture > img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.sofa-materials__picture--last {
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
    text-align: center;
}
.sofa-materials__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 14px 50px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: var(--button-gradient);
    border: none;
    border-radius: var(--radius-rounded);
}
@media screen and (min-width: 768px) {
    .sofa-materials__button {
        padding: 20px 32px;
    }
}
.sofa-materials__button > span {
    position: relative;
    display: block;
    padding-right: 20px;
}
.sofa-materials__button > span::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    background: #4fe447;
    border-radius: var(--radius-50);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.advantages {
    padding: 60px 0 30px;
}
@media screen and (min-width: 768px) {
    .advantages {
        padding: 100px 0 70px;
    }
}
.advantages h2 {
    text-align: center;
}
.advantages__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    margin-top: 32px;
}
@media screen and (min-width: 768px) {
    .advantages__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-top: 48px;
    }
}
.advantages__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    padding: 0 15px;
}
@media screen and (min-width: 768px) {
    .advantages__item {
        gap: 16px;
        padding: 0 40px 48px;
    }
    .advantages__item::after,
    .advantages__item::before {
        position: absolute;
        content: "";
        background-color: rgba(0, 0, 0, 0.1019607843);
    }
    .advantages__item::after {
        bottom: 0;
        left: 15%;
        width: 70%;
        height: 1px;
    }
    .advantages__item::before {
        top: 15%;
        right: 0;
        width: 1px;
        height: 70%;
    }
    .advantages__item:nth-child(n + 4) {
        padding-top: 48px;
        padding-bottom: 0;
    }
    .advantages__item:nth-child(n + 4)::after {
        display: none;
    }
    .advantages__item:nth-child(3n + 3)::before {
        display: none;
    }
}
.advantages__item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--color-icon);
    background-color: #fad6ac;
    border-radius: var(--radius-50);
}
.advantages__item-text {
    font-size: 12px;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .advantages__item-text {
        font-size: 20px;
    }
}
.advantages__item-text > span {
    font-weight: 600;
}
.result {
    padding: 30px 0 35px;
}
@media screen and (min-width: 768px) {
    .result {
        padding: 70px 0 100px;
    }
}
.result__container {
    position: relative;
}
.result h2 {
    margin: 0 auto;
    text-align: center;
}
@media screen and (min-width: 992px) {
    .result h2 {
        max-width: 70%;
    }
}
.result__slider {
    margin-top: 32px;
}
@media screen and (min-width: 768px) {
    .result__slider {
        margin-top: 48px;
    }
}
.result__slider-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 8px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (min-width: 768px) {
    .result__slider-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        gap: 32px;
    }
}
.result__picture {
    position: relative;
    display: block;
    width: 100%;
}
.result__picture img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
	height: 400px;
    object-fit: cover;
}
.result__picture::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 108px;
    height: 37px;
    color: var(--white);
    content: "До";
    background: var(--dark);
    border-radius: 10px 10px 0 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.result__picture + .result__picture::after {
    content: "После";
}
.result__slider-pagination {
    display: none;
}
@media screen and (min-width: 768px) {
    .result__slider-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        gap: 16px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        margin-top: 40px;
    }
    .result__slider-pagination-bullet {
        display: block;
        width: 11px;
        height: 11px;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.2);
        border-radius: var(--radius-50);
    }
    .result__slider-pagination-bullet--active {
        background: var(--color-icon);
    }
}
.result__slider-button {
    display: none;
}
@media screen and (min-width: 768px) {
    .result__slider-button {
        position: absolute;
        top: 63%;
        z-index: 2;
        display: block;
        width: 54px;
        height: 54px;
        cursor: pointer;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .result__slider-button-next {
        right: 0;
    }
    .result__slider-button-prev {
        left: 0;
    }
}
@media screen and (min-width: 992px) {
    .result__slider-button {
        top: 60%;
    }
    .result__slider-button-next {
        right: -27px;
    }
    .result__slider-button-prev {
        left: -27px;
    }
}
.which-sofa {
    padding-top: 48px;
    padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
    .which-sofa {
        padding-top: 100px;
    }
}
.which-sofa h2 {
    text-align: center;
}
.which-sofa__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 0;
    margin-top: 24px;
}
@media screen and (min-width: 768px) {
    .which-sofa__content {
        margin-top: 48px;
        border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
    }
}
.which-sofa__item {
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}
@media screen and (min-width: 768px) {
    .which-sofa__item {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        gap: 32px;
        padding: 24px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }
}
.which-sofa__item-title {
    font-size: 17px;
    font-weight: 600;
}
@media screen and (min-width: 768px) {
    .which-sofa__item-title {
        width: 30%;
        min-width: 30%;
        padding-right: 10%;
        font-size: 20px;
    }
}
.which-sofa__item-text {
    color: rgba(0, 30, 54, 0.8);
}
.sofa-fast {
    padding-top: 60px;
    padding-bottom: 10px;
    margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
    .sofa-fast {
        padding-top: 120px;
        margin-bottom: 120px;
    }
}
.sofa-fast h2 {
    text-align: center;
}
@media screen and (min-width: 768px) {
    .sofa-fast h2 {
        max-width: 80%;
        margin: 0 auto;
    }
}
.sofa-fast__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 32px;
}
@media screen and (min-width: 992px) {
    .sofa-fast__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        gap: 16px;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 48px;
    }
}
.sofa-fast__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 16px;
    padding: 16px;
    overflow: hidden;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.0509803922);
    border-radius: 20px;
}
@media screen and (min-width: 992px) {
    .sofa-fast__item {
        width: 32%;
        min-width: 32%;
        padding: 32px;
        font-size: 20px;
    }
    .sofa-fast__item:nth-child(n + 4) {
        width: 38%;
        min-width: 38%;
        padding-bottom: 170px;
    }
}
.sofa-fast__item--yellow {
    background: #fad6ac;
}
.sofa-fast__item--yellow .sofa-fast__item-footer {
    display: none;
}
@media screen and (min-width: 992px) {
    .sofa-fast__item--yellow .sofa-fast__item-footer {
        display: block;
        font-size: 15px;
    }
}
.sofa-fast__item:last-child {
    grid-column: span 2;
    padding-top: 30px;
    padding-right: 150px;
}
@media screen and (min-width: 992px) {
    .sofa-fast__item:last-child {
        padding: 32px;
    }
}
.sofa-fast__item--img-bg {
    padding-bottom: 120px;
    color: var(--white);
}
@media screen and (min-width: 992px) {
    .sofa-fast__item--img-bg {
        padding-bottom: 0;
    }
}
.sofa-fast__item--img-bg::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0) 100%);
}
.sofa-fast__item-icon {
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 13px;
    color: var(--dark);
    background-color: var(--bg-beige);
    border-radius: var(--radius-50percent);
}
@media screen and (min-width: 992px) {
    .sofa-fast__item-icon {
        position: absolute;
        top: 32px;
        right: 32px;
    }
}
.sofa-fast__item-text {
    position: relative;
    z-index: 2;
}
@media screen and (min-width: 992px) {
    .sofa-fast__item-text {
        padding-right: 120px;
    }
}
.sofa-fast__item-footer {
    margin-top: auto;
}
.sofa-fast__item-button {
    display: none;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: var(--button-gradient);
    border: none;
    border-radius: var(--radius-rounded);
}
@media screen and (min-width: 992px) {
    .sofa-fast__item-button {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 15px 32px;
    }
    .sofa-fast__item-button > span {
        position: relative;
        display: block;
        padding-right: 20px;
    }
    .sofa-fast__item-button > span::after {
        position: absolute;
        top: 50%;
        right: 0;
        display: block;
        width: 8px;
        height: 8px;
        content: "";
        background: #4fe447;
        border-radius: var(--radius-50);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
.sofa-fast__item-img {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 120px;
    height: auto;
}
@media screen and (min-width: 992px) {
    .sofa-fast__item-img {
        width: 220px;
    }
}
.sofa-fast__item-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.sofa-fast__img-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}
.sofa-fast__img-bg img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.why-repair {
    padding-bottom: 60px;
    margin-top: 60px;
}
@media screen and (min-width: 992px) {
    .why-repair {
        padding-bottom: 80px;
        margin-top: 120px;
    }
}
.why-repair h2 {
    text-align: center;
}
@media screen and (min-width: 992px) {
    .why-repair h2 {
        max-width: 80%;
        margin: 0 auto;
    }
}
.why-repair__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 16px;
    margin-top: 32px;
}
@media screen and (min-width: 992px) {
    .why-repair__content {
        display: grid;
        grid-template-columns: 20% auto 20%;
        gap: 55px 30px;
        margin-top: 40px;
    }
}
.why-repair__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    gap: 16px;
}
@media screen and (min-width: 992px) {
    .why-repair__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        text-align: center;
    }
    .why-repair__item:nth-child(5) {
        grid-column: 3/4;
    }
}
.why-repair__item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    overflow: hidden;
    font-size: 36px;
    line-height: 1;
    color: var(--white);
    background: #fad6ac;
    border-radius: var(--radius-50percent);
}
@media screen and (min-width: 992px) {
    .why-repair__item-icon {
        -ms-flex-item-align: center;
        align-self: center;
        width: 58px;
        height: 58px;
        font-size: 50px;
    }
}
.why-repair__item-icon > span {
    position: relative;
    top: 10px;
}
@media screen and (min-width: 992px) {
    .why-repair__item-icon > span {
        top: 17px;
    }
}
.why-repair__item-text {
    font-size: 14px;
}
@media screen and (min-width: 992px) {
    .why-repair__item-text {
        font-size: 20px;
    }
}
@media screen and (min-width: 992px) {
    .why-repair__img {
        position: relative;
        top: -50px;
        grid-row: 2/3;
        grid-column: 2/3;
        width: 100%;
    }
}
.why-repair__img img {
    width: 100%;
}
.faq {
    margin: 60px 0;
}
@media screen and (min-width: 992px) {
    .faq {
        margin: 110px 0;
    }
}
.faq__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 32px;
}
@media screen and (min-width: 992px) {
    .faq__content {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 70px;
    }
}
.faq__content-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 24px;
    font-size: 17px;
}
@media screen and (min-width: 992px) {
    .faq__content-left {
        gap: 32px;
        font-size: 26px;
    }
}
.faq__content-left h2 {
    text-align: center;
}
@media screen and (min-width: 992px) {
    .faq__content-left h2 {
        text-align: left;
    }
}
.faq__content-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}
.faq__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 0;
    min-height: 80px;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.faq__item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.faq__item--opened {
    gap: 8px;
}
.faq__item--opened .faq__item-icon-plus {
    visibility: hidden;
    opacity: 0;
}
.faq__item--opened .faq__item-icon-minus {
    visibility: visible;
    opacity: 1;
}
.faq__item--opened .faq__item-answer {
    height: auto;
    padding-right: 60px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.faq__item-question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 40px;
    padding-right: 60px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
@media screen and (min-width: 992px) {
    .faq__item-question {
        font-size: 20px;
    }
}
.faq__item-icon {
    position: absolute;
    top: 20px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.0509803922);
    border-radius: var(--radius-50percent);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.faq__item-icon-plus {
    visibility: visible;
    opacity: 1;
}
.faq__item-icon-minus {
    visibility: hidden;
    opacity: 0;
}
.faq__item-answer {
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
.faq__content-bottom {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 22px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 32px;
}
.faq__content-socs {
	display:flex;
	gap: 8px;
    flex-direction: column;
}
.faq__content-socs .item_soc {
	width:32px;
	height:32px;
	
}
@media screen and (min-width: 992px) {
    .faq__content-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media screen and (max-width: 991px) {
	.faq__content-socs {
		flex-direction: row;
		justify-content: center;
		margin: 0 auto;
	}
}
.faq__content-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    max-width: 280px;
    padding: 15px 32px;
    margin: 0 auto;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: var(--button-gradient);
    border: none;
    border-radius: var(--radius-rounded);
}
.faq__content-button > span {
    position: relative;
    display: block;
    padding-right: 20px;
}
.faq__content-button > span::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    background: #4fe447;
    border-radius: var(--radius-50);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.faq__call-block {
    margin: 0 auto;
}
.delivery-sofa {
    padding-top: 50px;
}
@media screen and (min-width: 768px) {
    .delivery-sofa {
        padding-top: 100px;
    }
}
.delivery-sofa__container {
    position: relative;
}
.delivery-sofa h2 {
    text-align: center;
}
@media screen and (min-width: 992px) {
    .delivery-sofa h2 {
        max-width: 80%;
        margin: 0 auto;
    }
}
.delivery-sofa__content {
    margin-top: 24px;
    font-size: 17px;
    text-align: center;
}
@media screen and (min-width: 992px) {
    .delivery-sofa__content {
        max-width: 90%;
        margin: 32px auto 0;
        font-size: 26px;
    }
}
.delivery-sofa__content > div {
    margin: 8px 0 24px;
    font-size: 14px;
}
@media screen and (min-width: 992px) {
    .delivery-sofa__content > div {
        margin: 16px 0 32px;
        font-size: 17px;
    }
}
.delivery-sofa__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    max-width: 280px;
    padding: 15px 32px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: var(--button-gradient);
    border: none;
    border-radius: var(--radius-rounded);
}
@media screen and (min-width: 992px) {
    .delivery-sofa__button {
        font-size: 17px;
    }
}
.delivery-sofa__button > span {
    position: relative;
    display: block;
    padding-right: 20px;
}
.delivery-sofa__button > span::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    background: #4fe447;
    border-radius: var(--radius-50);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.delivery-sofa__picture {
    display: block;
    text-align: center;
}
.delivery-sofa__picture img {
    display: block;
    margin: 0 auto;
}
.delivery-sofa__left-circles {
    display: none;
}
@media screen and (min-width: 992px) {
    .delivery-sofa__left-circles {
        position: absolute;
        top: 253px;
        left: 0;
        display: block;
        width: 129px;
        height: 156px;
    }
}
.delivery-sofa__circle {
    position: absolute;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-50percent);
}
.delivery-sofa__circle--one {
    top: 0;
    left: 0;
    width: 27px;
    height: 27px;
    background: #c8d9e8;
}
.delivery-sofa__circle--two {
    right: 0;
    bottom: 0;
    width: 46px;
    height: 46px;
    background: #fad6ac;
}
.delivery-sofa__circle--three {
    top: 0;
    left: 48px;
    width: 40px;
    height: 40px;
    background: #fad6ac;
}
.delivery-sofa__circle--four {
    top: 151px;
    right: 0;
    width: 23px;
    height: 23px;
    background: #fad6ac;
}
.delivery-sofa__circle--five {
    bottom: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background: #c8d9e8;
}
.delivery-sofa__right-circles {
    display: none;
}
@media screen and (min-width: 992px) {
    .delivery-sofa__right-circles {
        position: absolute;
        top: 285px;
        right: 0;
        display: block;
        width: 145px;
        height: 259px;
    }
}
.footer {
    padding: 50px 0 32px;
    background: rgba(0, 0, 0, 0.0509803922);
}
@media screen and (min-width: 992px) {
    .footer {
        padding: 24px 0;
    }
}
.footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
}
@media screen and (min-width: 992px) {
    .footer__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        gap: 16px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        font-size: 15px;
    }
}
.footer__logo {
    text-decoration: none;
}
.footer__logo img {
    display: block;
}
.footer__developer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer__developer a {
	display:flex;
}
@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
        format("woff");
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color: #007aff;
}
:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}
.swiper-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.swiper-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}
.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    display: block;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}
.swiper-backface-hidden .swiper-slide {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.swiper-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    -ms-scroll-snap-type: none;
    scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
.swiper-pagination-bullet:only-child {
    display: none !important;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 0.2s top, 0.2s -webkit-transform;
    transition: 0.2s top, 0.2s -webkit-transform;
    transition: 0.2s transform, 0.2s top;
    transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 0.2s left, 0.2s -webkit-transform;
    transition: 0.2s left, 0.2s -webkit-transform;
    transition: 0.2s transform, 0.2s left;
    transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 0.2s right, 0.2s -webkit-transform;
    transition: 0.2s right, 0.2s -webkit-transform;
    transition: 0.2s transform, 0.2s right;
    transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}
.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
    position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
}
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
}
.swiper-pagination-lock {
    display: none;
}
:root {
    --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
    display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}
.swiper-button-lock {
    display: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next";
}
:root {
    --container: 100%;
    --debug-container: "100%";
    --fields: 10px;
    --debug-fields: "10px";
    --gap: 16px;
    --debug-gap: "16px";
    --debug-breakpoint: "null";
    --radius-5: 5px;
    --radius-10: 10px;
    --radius-15: 15px;
    --radius-25: 25px;
    --radius-50: 50px;
    --radius-50percent: 50%;
    --radius-rounded: 99em;
    --transition-time-10: 0.1s;
    --transition-time-20: 0.2s;
    --transition-time-30: 0.3s;
    --transition-time-40: 0.4s;
    --transition-time-60: 0.6s;
    --transition-time-80: 0.8s;
    --transition-time-100: 1s;
    --transition-easing-linear: linear;
    --transition-easing-ease: ease;
    --transition-easing-easeinout: ease-in-out;
    --transition-easing-cubicin: cubic-bezier(0.5, 0, 0, 1);
    --transition-easing-cubicout: cubic-bezier(0.5, 0, 0.5, 1);
    --blur-0: blur(0px);
    --blur-20: blur(20px);
    --blur-50: blur(50px);
    --main-font-family: "Wix Madefor Display", sans-serif;
    --bg: #bbd4e8;
    --bg-beige: #f6f3eb;
    --primary: #3f89c6;
    --color-icon: #002e5499;
    --dark: #062a48;
    --white: #fff;
    --button-gradient: linear-gradient(90deg, #52a1e2 0%, #3f89c6 100%);
}
@media screen and (min-width: 576px) {
    :root {
        --container: 100%;
        --debug-container: "100%";
        --debug-breakpoint: "sm";
    }
}
@media screen and (min-width: 768px) {
    :root {
        --container: 100%;
        --debug-container: "100%";
        --debug-breakpoint: "md";
        --fields: 15px;
        --debug-fields: "15px";
    }
}
@media screen and (min-width: 992px) {
    :root {
        --container: 100%;
        --debug-container: "100%";
        --debug-breakpoint: "lg";
    }
}
@media screen and (min-width: 1258px) {
    :root {
        --container: 1258px;
        --debug-container: "1258px";
        --debug-breakpoint: "xl";
    }
}
.section--rounded-bg {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(102, 102, 102, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0, rgba(102, 102, 102, 0) 100%);
    border-radius: 50px 50px 0 0;
}
@media screen and (min-width: 1258px) {
    .section--rounded-bg {
        border-radius: 80px 80px 0 0;
    }
}
.section--circle-bg {
    background: url(../images/css/Ellipse33.svg) no-repeat top center;
}
.section--circle-bottom-bg {
    background: url(../images/css/Ellipse32.svg) no-repeat bottom center;
}
.section--line-bg {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(102, 102, 102, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0, rgba(102, 102, 102, 0) 100%);
}
.section--bottom-bg {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(38.06%, rgba(102, 102, 102, 0)), to(rgba(0, 0, 0, 0.05)));
    background: linear-gradient(180deg, rgba(102, 102, 102, 0) 38.06%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0 0 50px 50px;
}
@media screen and (min-width: 1258px) {
    .section--bottom-bg {
        border-radius: 0 0 80px 80px;
    }
}
.section__ul-header {
    font-size: 17px;
    font-weight: 600;
}
@media screen and (min-width: 768px) {
    .section__ul-header {
        font-size: 20px;
    }
}
.section__ul-text {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
}
@media screen and (min-width: 768px) {
    .section__ul-text {
        font-size: 17px;
    }
}
.section__ul {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 30, 54, 0.8);
}
@media screen and (min-width: 768px) {
    .section__ul {
        font-size: 17px;
    }
}
.section__ul li {
    padding-left: 22px;
    background: url(../images/css/icon-li.svg) no-repeat left center;
}
