@font-face {
    font-family: 'Tenor Sans';
    src: url('../fonts/Tenor_Sans/TenorSans-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu/Ubuntu-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu/Ubuntu-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu/Ubuntu-Medium.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu/Ubuntu-Bold.ttf');
    font-weight: 600;
    font-style: normal;
}

:root {
    --theme-color: #b5959e;
    --accent-color: #b12c51;
    --title-color: #11242e;
    --body-color: #878D97;
    --smoke-color: #9da3ad;
    --gray-color: #eff1f5;
    --dark-gray-color: #313030;
    --secondary-color: #EEF2FB;
    --black-color: #000000;
    --white-color: #ffffff;
    --yellow-color: #fec624;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #E0E0E0;
    --title-font: "Tenor Sans", sans-serif;
    --body-font: "Ubuntu", sans-serif;
    --icon-font: "Font Awesome 5 Pro";
    --main-container: 1220px;
    --container-gutters: 30px;
    --section-space: 120px;
    --section-title-space: 80px;
    --ripple-ani-duration: 5s;

    --h1-size: 48px;
    --h2-size: 40px;
    --h3-size: 36px;
    --h4-size: 30px;
    --h5-size: 24px;
    --h6-size: 20px;
    --price-size: 25px;
    --mini-span: 14px;
    --small-span: 16px;
    --normal-span: 18px;
    --medium-span: 20px;
    --title-size: 45px;
    --title-size-small: 30px;

    --space-box: 20px;
    --margin-mini: 5px;
    --margin-big: 50px;
}

/* Large devices */
@media (max-width: 1199px) {
    :root {
        --section-space: 120px;
        --section-title-space: 80px;
        --ripple-ani-duration: 5s;

        --h1-size: 40px;
        --h2-size: 36px;
        --h3-size: 30px;
        --h4-size: 24px;
        --h5-size: 20px;
        --h6-size: 16px;
        --price-size: 25px;
        --mini-span: 14px;
        --small-span: 16px;
        --normal-span: 18px;
        --medium-span: 20px;
        --title-size: 45px;
        --title-size-small: 30px;

        --space-box: 20px;
        --margin-mini: 5px;
        --margin-big: 50px;
    }
}

/* Small devices */
@media (max-width: 767px) {
    :root {
        --section-space: 50px;
        --section-title-space: 80px;
        --ripple-ani-duration: 5s;

        --h1-size: 30px;
        --h2-size: 26px;
        --h3-size: 24px;
        --h4-size: 22px;
        --h5-size: 18px;
        --h6-size: 12px;
        --price-size: 20px;
        --mini-span: 14px;
        --small-span: 16px;
        --normal-span: 18px;
        --medium-span: 20px;
        --title-size: 25px;
        --title-size-small: 20px;

        --space-box: 15px;
        --margin-mini: 5px;
        --margin-big: 30px;
    }
}


/* Typography */
html,
body {
    scroll-behavior: auto !important;
     -webkit-text-size-adjust: none;

}

body {
    font-family: var(--body-font);
    font-size: var(--small-span);
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
    /* Small devices */
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 24px;
            letter-spacing: normal;
    }
}

iframe {
    border: none;
    width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
}

input:focus {
    outline: none;
    box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
    max-width: 100%;
    height: auto;
}

cite {
    font-style: normal;
    color: var(--theme-color)
}

accent {
    font-style: normal;
    color: var(--accent-color)
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid var(--border-color);
}

th {
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--title-color);
}

td,
th {
    border: 1px solid var(--border-color);
    padding: 9px 12px;
}

a {
    color: var(--theme-color);
    text-decoration: none;
    outline: 0;
    transition: all ease 0.4s;
}

a:hover {
    color: var(--title-color);
}

a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    outline: 0;
}

button {
    transition: all ease 0.4s;
}

img {
    border: none;
    max-width: 100%;
}

ins {
    text-decoration: none;
}

pre {
    background: #f5f5f5;
    color: #666;
    font-size: var(--mini-span);
    margin: var(--space-box) 0;
    overflow: auto;
    padding: var(--space-box);
    white-space: pre-wrap;
    word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
    display: none;
}

.height-100 {
    height: 100%;
}

p {
    margin: 0 0 var(--space-box) 0;
    color: var(--body-color);
    line-height: 1.63;
    /* Small devices */
}

@media (max-width: 767px) {
    p {
        line-height: 1.73;
    }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-family: var(--title-font);
    color: var(--title-color);
    text-transform: none;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 var(--space-box) 0;
}

.h1,
h1 {
    font-size: var(--h1-size);
}

.h2,
h2 {
    font-size: var(--h2-size);
}

.h3,
h3 {
    font-size: var(--h3-size);
}

.h4,
h4 {
    font-size: var(--h4-size);
}

.h5,
h5 {
    font-size: var(--h5-size);
}

.h6,
h6 {
    font-size: var(--h6-size);
}

.d-flex-center {
    display: flex;
    align-items: center;
}
.dark {
    color:var(--smoke-color) !important;
}

/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
    padding-right: 5px;
    padding-left: 5px;
}

.px-10 {
    padding-right: 10px;
    padding-left: 10px;
}

.px-15 {
    padding-right: 15px;
    padding-left: 15px;
}

.px-20 {
    padding-right: 20px;
    padding-left: 20px;
}

.px-25 {
    padding-right: 25px;
    padding-left: 25px;
}

.px-30 {
    padding-right: 30px;
    padding-left: 30px;
}

/*-- Padding Top And Bottom --*/
.py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

/*-- Padding Top --*/
.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

/*-- Padding Bottom --*/
.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

/*-- Padding Left --*/
.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

/*-- Padding Right --*/
.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

/*-- margin Left And Right --*/
.mx-5 {
    margin-right: 5px;
    margin-left: 5px;
}

.mx-10 {
    margin-right: 10px;
    margin-left: 10px;
}

.mx-15 {
    margin-right: 15px;
    margin-left: 15px;
}

.mx-20 {
    margin-right: 20px;
    margin-left: 20px;
}

.mx-25 {
    margin-right: 25px;
    margin-left: 25px;
}

.mx-30 {
    margin-right: 30px;
    margin-left: 30px;
}

/*-- margin Top And Bottom --*/
.my-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

/*-- margin Top --*/
.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

/*-- margin Bottom --*/
.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

/*-- margin Left --*/
.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

/*-- margin Right --*/
.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mt-n1 {
    margin-top: -0.25rem;
}

.mt-n2 {
    margin-top: -0.5rem;
}

.mt-n3 {
    margin-top: -1rem;
}

.mt-n4 {
    margin-top: -1.5rem;
}

.mt-n5 {
    margin-top: -3rem;
}

.mb-n1 {
    margin-bottom: -0.25rem;
}

.mb-n2 {
    margin-bottom: -0.5rem;
}

.mb-n3 {
    margin-bottom: -1rem;
}

.mb-n4 {
    margin-bottom: -1.5rem;
}

.mb-n5 {
    margin-bottom: -3rem;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

section {
    overflow: hidden;
}

.space,
.space-top {
    padding-top: var(--section-space);
}

.space,
.space-bottom {
    padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
    padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
    padding-bottom: calc(var(--section-space) - 30px);
}

.space-box {
    margin: var(--space-box)
}
.space-box-bottom {
    margin-bottom: var(--space-box);
}
.space-box-top {
    margin-top: var(--space-box);
}
/* Medium devices */
@media (max-width: 991px) {

    .space,
    .space-top {
        padding-top: var(--section-space);
    }

    .space,
    .space-bottom {
        padding-bottom: var(--section-space);
    }

    .space-extra,
    .space-extra-top {
        padding-top: calc(var(--section-space) - 30px);
    }

    .space-extra,
    .space-extra-bottom {
        padding-bottom: calc(var(--section-space) - 30px);
    }

    .space-top-md-none {
        padding-top: 0;
    }
}

/* ANIMATED */

/*------------------- 3.10. Animation -------------------*/
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.wow-animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadein {
    --animation-name: fadein-custom;
}

.slideinup {
    --animation-name: slideinup;
}

.slideindown {
    --animation-name: slideindown;
}

.slideinleft {
    --animation-name: slideinleft;
}

.slideinright {
    --animation-name: slideinright;
}

.animated,
.hero-layout-diamond .hero-text,
.hero-layout-diamond .hero-title,
.hero-layout-diamond .hero-accent,
.hero-layout-diamond .banner-advantages,
.hero-layout-diamond .zayavka,
.hero-btns,
.advantages {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-name: var(--animation-name);
    animation-name: var(--animation-name);
}

.ripple-animation,
.play-btn:after,
.play-btn:before {
    -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}

@-webkit-keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    30% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    30% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }

    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-70px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-70px);
    }

    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }

    100% {
        transform: translateX(0);
    }
}

@-webkit-keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

    100% {
        transform: translateX(0);
    }
}

@-webkit-keyframes fadein-custom {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein-custom {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* 1. HEADER */
.diamond-header {
    position: relative;
    z-index: 41;
}

.header-diamond .header-top {
    background-color: var(--white-color);
    opacity: 1;
}

.header-diamond .menu-top {
    border-top: 1px solid #E7EBF3;
    border-bottom: 1px solid #E7EBF3;
}

.header-diamond .header-text {
    color: var(--body-color);
}

.header-diamond .vs-menu-toggle {
    margin: 10px 0;
}

/* Логотип */
.header-logo .logo {
    width: 250px;
}

/* Города выпадающее */

.header-dropdown > .dropdown-toggle {
    color: var(--title-color);
}

.header-dropdown > .dropdown-toggle i {
    margin: 0 10px 0 0;
    color: var(--theme-color);
}

.header-dropdown > .dropdown-toggle:after {
    content: "\f107";
    font-family: var(--icon-font);
    border: none;
    vertical-align: middle;
    position: relative;
    top: 1px;
    margin-left: 5px;
}

.header-dropdown > .dropdown-toggle:hover {
    color: var(--theme-color);
}

.header-dropdown ul.dropdown-menu {
    padding: 10px 15px;
    border: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    margin: 0;
    margin-left: -15px !important;
    margin-top: 15px !important;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 165px;
    position: relative;
    z-index: 1;
    border: none;
}

.header-dropdown ul.dropdown-menu span {
    color: var(--smoke-color);
}

.header-dropdown ul.dropdown-menu li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.header-dropdown ul.dropdown-menu li i {
    color: var(--theme-color)
}

.header-dropdown ul.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.header-dropdown ul.dropdown-menu a {
    display: block;
    margin: 0 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 2px 10px;
    color: var(--title-color);
    font-weight: 400;
    font-size: 16px;
}

.header-dropdown ul.dropdown-menu a:hover {
    color: var(--theme-color);
}

.header-dropdown ul.dropdown-menu a:first-child {
    margin-top: 0;
    padding-top: 0;
}

.header-dropdown ul.dropdown-menu a:last-of-type,
.header-dropdown ul.dropdown-menu a:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.header-dropdown ul.dropdown-menu:before {
    content: "";
    position: absolute;
    left: 47px;
    top: -7px;
    width: 14px;
    height: 14px;
    background-color: var(--white-color);
    z-index: -1;
    transform: rotate(45deg);
    border-top: 1px solid #ededed;
    border-left: 1px solid #ededed;
}

.header-dropdown.style-white > .dropdown-toggle {
    color: var(--white-color);
}

.header-dropdown.style-white > .dropdown-toggle:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.7);
}


/* Контакты в шапке */

.header-info {
    display: flex;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 20px;
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid #E7EBF3;
}

.header-info:nth-child(2) {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
}

.header-info_icon {
    color: var(--theme-color);
    font-size: 24px;
    margin-right: 20px;
}

.header-info_label {
    font-size: 14px;
    color: var(--body-color);
    display: block;
    margin-bottom: 2px;
}

.header-info_link {
    color: var(--title-color);
    font-size: 20px;
    font-family: var(--title-font);
    font-weight: 600;
    margin: 0;
}

.header-info_link.soc a {
    margin: 0px 6px;
    font-size: 30px;
    color: var(--theme-color);

}
.header-info_link.soc a:hover {
    color: var(--accent-color);

}
.header-info_link a {
    color: inherit;

}

.header-info_link a:hover {
    color: var(--theme-color);
}

/*  Sticky menu */

.will-sticky .sticky-active {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    transition: all ease 0.8s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}

.will-sticky .sticky-active.active {
    top: 0;
}

/* Меню */

.main-menu > ul > li > a {
    padding: 18.5px 0;
}

.main-menu a {
    display: block;
    position: relative;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 16px;
    color: var(--title-color);
}

.main-menu a:hover {
    color: var(--theme-color);
}

.main-menu > ul > li {
    margin: 0 18px;
}

.main-menu > ul > li > a .new-label {
    position: absolute;
    top: -12px;
    right: -27px;
    font-size: 10px;
    border-radius: 3px;
}
.new-label {
    font-size: 12px;
    background-color: var(--accent-color);
    color: var(--white-color);
    line-height: 1;
    padding: 2px 5px;
    border-radius: 4px;
    position: relative;
    top: -1px;
}

.main-menu > ul > li > a .has-new-lable {
    position: relative;
}

.main-menu ul {
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu ul li.menu-item-has-children > a:after {
    content: "\f078";
    position: relative;
    font-family: var(--icon-font);
    margin-left: 5px;
    font-size: 0.8rem;
}

.main-menu ul li:last-child {
    margin-right: 0;
}

.main-menu ul li:first-child {
    margin-left: 0;
}

.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 9;
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    visibility: hidden;
    min-width: 190px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 7px;
    left: -14px;
    margin-top: 50px;
    opacity: 0;
    z-index: -1;
    border-bottom: 3px solid var(--theme-color);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
    transform-origin: top center;
    transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}
.main-menu ul.mega-menu ul {
    margin-bottom: calc(1.5 * var(--space-box));
}

.main-menu ul.mega-menu a {
    font-size: var(--mini-span);
    line-height: 1;
}
.main-menu ul.sub-menu a {
        font-size: var(--small-span);
    line-height: 30px;
}

.main-menu ul.sub-menu .razdel-mega,
.main-menu ul.mega-menu .razdel-mega{
    font-size: var(--small-span);
    line-height: 1;
    display: flex;
    gap: 5px;
}
.main-menu ul.sub-menu .razdel-mega:hover,
.main-menu ul.mega-menu .razdel-mega:hover{
 color: var(--theme-color);
}
.main-menu ul.sub-menu .razdel-mega i,
.main-menu ul.mega-menu .razdel-mega i{
  color: var(--accent-color);
}
.main-menu ul.sub-menu {
    padding: 18px 20px;
    left: -27px;
}

.main-menu ul.sub-menu:before {
    content: "";
    position: absolute;
    left: 34.5px;
    top: 30px;
    width: 1px;
    background-color: #ededed;
    height: calc(100% - 60px);
}

.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 3px 9px;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
    content: "\f105";
    float: right;
    top: 3px;
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 21px;
}

.main-menu ul.sub-menu li a:before {
    content: "\f111";
    position: absolute;
    top: 2.5em;
    left: 0;
    font-family: var(--icon-font);
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 0.2em;
    line-height: 11.5px;
    color: var(--theme-color);
    font-weight: 700;
    background-color: var(--white-color);
    box-shadow: inset 0px 2px 4px 0px rgba(173, 136, 88, 0.4);
}

.main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
    left: 100%;
    right: auto;
}

.main-menu .mega-menu-wrap {
    position: static;
}

.main-menu ul.mega-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    text-align: left;
    width: 100%;
    max-width: var(--main-container);
    padding: 20px 15px 0px 15px;
    left: 50%;
    transform: translateX(-50%);
}

.main-menu ul.mega-menu .main-menu ul.mega-menu > li > ul > li > a {
    position: relative;
}

.main-menu ul.mega-menu li {
    display: block;
    width: 100%;
    padding: 0 15px;
}

.main-menu ul.mega-menu li li {
    padding: 2px 0;
}

.main-menu ul.mega-menu li a {
    display: inline-block;
}

.main-menu ul.mega-menu > li > a {
    display: block;
    padding: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--title-color);
    border-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after,
.main-menu ul.mega-menu > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 1px;
    background-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after {
    width: calc(100% - 20px);
    left: 20px;
}
.main-menu ul.mega-menu > li > ul > li > a:before {
    content: "\f105";
    font-family: var(--icon-font);
    font-weight: 400;
    margin: 0 10px 0 0;
}


.main-menu ul.mega-menu > li > a:hover {
    padding-left: 0;
}


@media (max-width: 767px) {
    .header-info_link a {
        font-size: var(--normal-span);
    }

    .header-info {
        padding: var(--space-box);
        margin-left: var(--space-box);
    }

    .header-info_icon {
        color: var(--theme-color);
        font-size: 24px;
        margin-right: 15px;
    }

    .header-info .media-body {
        text-align: right;
    }

    .header-info_link.soc a {
        margin: 0px 6px;
        font-size: 25px;
    }
}

/* ПОСТОЯННЫЕ */

/* Buttons */
.sec-btns {
    padding: var(--space-box) 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-box);
}

.sec-btns.center {
    text-align: center;
    display: flex;
    justify-content: center;
}

.dm-btn {
    position: relative;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 19px 30.5px;
    border-radius: 5px;
    z-index: 1;
    overflow: hidden;
}

.dm-btn.form {
    padding: 17px 29px;
    height: 50px;
    background: var(--accent-color);
}

.dm-btn.header {
    padding: 14px 25px;
    font-size: 14px;
    z-index: 0;
    background-color: var(--accent-color);


}

.dm-btn::after,
.dm-btn::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--title-color);
    transition: all ease 0.5s;
    z-index: -1;
    border-radius: inherit;
}

.dm-btn:before {
    transform: rotateX(90deg);
}

.dm-btn:after {
    transform: rotateY(90deg);
}

.dm-btn > i {
    margin-left: 8px;
}

.dm-btn.style2 {
    background-color: var(--white-color);
    color: var(--theme-color);
}

.dm-btn.style4,
.dm-btn.style3 {
    background-color: var(--gray-color);
    color: var(--theme-color);
}

.dm-btn.style3 {
    padding: 14px 23.5px;
}

.dm-btn.style5 {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.dm-btn.style6 {
    background-color: var(--title-color);
    color: var(--white-color);
}

.dm-btn.style6:after,
.dm-btn.style6::before {
    background-color: var(--theme-color);
}

.dm-btn.style7 {
    border-radius: 9999px;
    text-transform: capitalize;
}

.dm-btn.style8 {
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    background-color: transparent;
    border-radius: 9999px;
    padding: 17px 28px;
    text-transform: capitalize;
}

.dm-btn.style8:after,
.dm-btn.style8:before {
    display: none;
}

.dm-btn.style8:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.dm-btn.style9 {
    background-color: var(--white-color);
    color: var(--theme-color);
    border-radius: 9999px;
    text-transform: capitalize;
}

.dm-btn.style10 {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background-color: transparent;
    border-radius: 9999px;
    padding: 17px 28px;
    text-transform: capitalize;
}

.dm-btn.style10:hover {
    border-color: transparent;
}

.dm-btn:hover {
    color: var(--white-color);
}

.dm-btn:hover:before {
    transform: rotateX(0);
}

.dm-btn:hover:after {
    transform: rotateY(0);
}

.icon-btn,
.hero-layout4 .slick-arrow {
    display: inline-block;
    width: var(--btn-size, 67px);
    height: var(--btn-size, 67px);
    line-height: var(--btn-size, 67px);
    font-size: var(--btn-font-size, 20px);
    background-color: var(--theme-color);
    color: var(--white-color);
    border: none;
    text-align: center;
    border-radius: 50%;
    padding: 0;
}

.icon-btn.style2,
.hero-layout4 .style2.slick-arrow {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background-color: transparent;
}

.icon-btn.style2:hover,
.hero-layout4 .style2.slick-arrow:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.icon-btn.style4,
.hero-layout4 .style4.slick-arrow,
.icon-btn.style3,
.hero-layout4 .style3.slick-arrow {
    --btn-size: 55px;
    background-color: #F2F6FF;
    color: var(--theme-color);
    border-radius: 5px;
}

.icon-btn.style4,
.hero-layout4 .style4.slick-arrow {
    background-color: var(--white-color);
}

.icon-btn.style5,
.hero-layout4 .style5.slick-arrow {
    background-color: var(--white-color);
    color: var(--title-color);
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.08);
}

.icon-btn.style5:hover,
.hero-layout4 .style5.slick-arrow:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
    box-shadow: none;
}

.icon-btn.style6,
.hero-layout4 .style6.slick-arrow {
    background-color: var(--theme-color);
    color: var(--white-color);
    --btn-size: 55px;
    --btn-font-size: 17px;
}

.icon-btn:hover,
.hero-layout4 .slick-arrow:hover {
    background-color: var(--title-color);
    color: var(--white-color);
    border-color: transparent;
}

.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
    border: none;
    background-color: transparent;
    padding: 0;
}

.play-btn > i {
    display: inline-block;
    width: var(--icon-size, 124px);
    height: var(--icon-size, 124px);
    line-height: var(--icon-size, 124px);
    font-size: var(--icon-font-size, 1.5em);
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 50%;
    z-index: 1;
    transition: all ease 0.4s;
}

.play-btn:after,
.play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-color);
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.4s;
}

.play-btn:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.play-btn.style3 i,
.play-btn.style2 i {
    --icon-size: 60px;
    border-radius: 5px;
    --icon-font-size: 18px;
}

.play-btn.style2:after,
.play-btn.style2:before {
    border-radius: 5px;
}

.play-btn.style3 i {
    background-color: rgba(14, 89, 242, 0.7);
}

.play-btn.style3:after,
.play-btn.style3::before {
    display: none;
}

.play-btn.style4 {
    --icon-size: 120px;
    --icon-font-size: 30px;
}

.play-btn.style4:after,
.play-btn.style4:before,
.play-btn.style4 i {
    background-color: var(--white-color);
    color: var(--theme-color);
}

.play-btn.style5 i {
    border-radius: 0;
    --icon-size: 120px;
    --icon-font-size: 30px;
}

.play-btn.style5:after,
.play-btn.style5:before {
    border: 2px solid var(--theme-color);
    background-color: transparent;
    border-radius: 0;
}

.play-btn.style6 {
    --icon-size: 60px;
    --icon-font-size: 18px;
}

.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
    background-color: var(--title-color);
    color: var(--white-color);
}

.link-btn {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: -2px;
    text-transform: uppercase;
}

.link-btn i {
    margin-left: 7px;
    font-size: 0.9rem;
}

.link-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--theme-color);
    transition: all ease 0.4s;
}

.link-btn:hover {
    color: var(--theme-color);
}

.link-btn:hover::before {
    width: 100%;
}

/* SCROLL TOP */
.scroll-btn {
    position: fixed;
    bottom: 300px;
    right: 30px;
    z-index: 94;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    border-radius: 50%;

}

.scroll-btn i {
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    width: var(--btn-size, 50px);
    height: var(--btn-size, 50px);
    line-height: var(--btn-size, 50px);
    z-index: 2;
    border-radius: inherit;
    position: relative;
    transition: all ease 0.8s;
}

.scroll-btn:before {
    content: "";
    position: absolute;
    left: var(--extra-shape, -6px);
    top: var(--extra-shape, -6px);
    right: var(--extra-shape, -6px);
    bottom: var(--extra-shape, -6px);
    background-color: transparent;
    border-radius: inherit;
    z-index: 1;
    border: 2px dashed var(--theme-color);
    -webkit-animation: spin 13s infinite linear;
    animation: spin 13s infinite linear;
}

.scroll-btn:focus i,
.scroll-btn:hover i {
    background-color: var(--title-color);
    color: var(--white-color);
}

.scroll-btn.show {
    bottom: 120px;
    opacity: 1;
    visibility: visible;
}

.scrollToTop {
    position: fixed;
    right: 60px;
    bottom: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
    z-index: 96;
}

.scrollToTop.show {
    bottom: 60px;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .scroll-btn {
        --btn-size: 40px;
        --extra-shape: -4px;
        right: 15px;
        bottom: 50px;
    }

    .scroll-btn.show {
        bottom: 15px;
    }
}

.v-razdel {
    color: var(--accent-color);
    line-height: 1;
    font-size: var(--medium-span);
}

.v-razdel i {
    margin-left: 5px;
}

@media (max-width: 767px) {
    .v-razdel {
        font-size: var(--small-span);
    }
}

/* Список */


.list-style1 ul {
    margin: var(--space-box) 0;
    padding: 0px 0 0 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.list-style1 li {
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
    padding: 0 0 0 33px;
}

.list-style1 li > i:first-child {
    position: absolute;
    left: 0;
    color: var(--theme-color);
}

/* Универсальные заголовки */
.mini-h {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: var(--mini-span);
    font-weight: 600;
}

.small-h {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: var(--small-span);
    font-weight: 600;
}

.normal-h {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: var(--normal-span);
    font-weight: 600;
}

.medium-h {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: var(--medium-span);
    font-weight: 600;
}

.price-h {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: var(--price-size);
    font-weight: 600;
}

/* Связаться с нами (соц.сети и телефон) */

.contact-us-mini {
    display: flex;
    align-items: center;
}

.contact-call {
    display: flex;
    align-items: center;
    border-right: 2px solid var(--theme-color);
    padding: 0 40px 0 0;
    margin: 0 40px 0 0;
}

.contact-call__icon {
    background-color: var(--white-color);
    color: var(--theme-color);
    box-shadow: 0px 0px 7px rgba(125, 125, 125, 0.3);
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-right: 20px;
    font-size: var(--medium-span);
    border-radius: 50%;
}

.contact-call__label {
    font-size: var(--mini-span);
    color: var(--black-color);
    display: block;
    margin-bottom: 5px;
}

.contact-call__number {
    margin: 0;
    font-size: var(--medium-span);
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--theme-color);
    margin: 0px;
}

/* 2. BREADCRUMBS SECTION */

/* Секция с промо */
.banner-promo {

    position: relative;
}

.banner-promo h1 {
    line-height: 1.3
}

.banner-promo .under-title {
    padding: 10px 20px;
    border: 2px dotted var(--theme-color);
    width: max-content;
    font-family: var(--title-font);
    color: var(--accent-color);
    font-weight: 600;
    font-size: var(--h5-size);
    border-radius: 5px;
    background: #ffffff91;
    margin-bottom: var(--space-box);
    ;
}

.banner-promo .price-boxes {
    display: flex;
    width: max-content;
    gap: var(--space-box);
}

.banner-promo .price {
    display: flex;
    gap: var(--space-box);
    width: max-content;
    border: 2px dotted var(--theme-color);
    padding: 10px 15px;
    border-radius: 5px;
    background: #ffffff91;
}

.banner-promo .price p {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: var(--normal-span);
    font-weight: 600;
    margin-bottom: 0px;
}

.banner-promo .price .old {
    font-family: var(--title-font);
    color: var(--smoke-color);
    font-weight: 400;
    margin-bottom: 0px;
    font-size: var(--small-span);
    display: block;
    text-decoration: line-through;
}

.banner-promo .price .new {
    font-family: var(--title-font);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0px;
    font-size: var(--price-size);
    display: block;
}

.banner-promo .price img {
    max-width: auto;
    height: 70px;
}

.banner-promo .rasschet-box {
    display: flex;
    gap: var(--space-box);
    margin-top: var(--space-box);
}

.banner-promo .rasschet-box span {
    color: var(--title-color);
    font-weight: 400;
    font-size: var(--normal-span);
}

@media (max-width: 767px) {
    .banner-promo .under-title {
    padding: 10px 10px;
  width: auto;
  font-size: var(--small-span);
    }
    .banner-promo .price {

  width: auto;
    }
    .banner-promo {
        /** padding-bottom: calc(var(--section-space) * 2);**/
        padding-bottom: var(--section-space);
    }

    .banner-promo .price-boxes {
        flex-direction: column;
    }

    .banner-promo .rasschet-box {
        flex-direction: column;
        gap: var(--space-box);
        margin-bottom: var(--space-box);
    }

}

/* Форма в баннере */

.form-gray {
    background-color: var(--gray-color);
    padding: 20px 25px;
    border-radius: 10px;
    position: relative;
    height: 100%;
}

.form-gray .privacy {
    color: var(--smoke-color);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0px;
}

.form-gray .privacy a {
    color: var(--title-color);
}

.form-gray .privacy a:hover {
    color: var(--accent-color);
}

.form-gray .form {
    width: 100%;
}

.form-gray .form input i {
    right: calc(var(--bs-gutter-x) / 2 + 10px);
}

.form-gray p {
    font-size: 20px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: var(--space-box);
    line-height: 1.4;
}

.form-gray {
    height: auto;
}

.form-gray accent {
    font-size: var(--price-size);
}

.form-gray .form-group {
    margin-bottom: var(--space-box);
    position: relative;
}

/* Всплывающие окна */

.white-popup {
    position: relative;
    background: #FFF;
    padding: 25px;
    max-width: 400px;
    border-radius: 10px;
    margin: 0 auto;
}

.white-popup img {
    max-width: 100%;
    border-radius: 5px;
    border: 1px solid var(--gray-color);
}

.white-popup .popup-title {
    color: var(--title-color);
    font-weight: 600;
    font-family: var(--title-font);
    font-size: var(--title-size-small);
    margin-bottom: var(--space-box);
    display: block;
}

.white-popup .under-title {
    color: var(--title-color);
    font-weight: 500;
    font-size: var(--medium-span);
    margin-bottom: var(--space-box);
    display: block;
}

.white-popup span {
    color: var(--title-color);
    font-weight: 500;
    font-size: var(--normal-span);
    margin-bottom: var(--space-box);
    display: block;
}

.white-popup ul,
.white-popup ol {
    color: var(--smoke-color);
    font-weight: 400;
    font-size: var(--small-span);
    margin-bottom: var(--space-box);
    display: block;
    padding-left: var(--space-box);
}

.white-popup ul li,
.white-popup ol li {
    line-height: 1.5;
    margin: 10px 0px;
}

/* Зум */

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}



/* Всплывающие подсказки */
.toggletip-container {
    position: relative;
    display: inline-block;
}

.toggletip-bubble {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 110%;
    line-height: 1.7;
    width: 400px;
    padding: 10px 20px;
    margin-top: 10px;
    background: var(--gray-color);
    color: var(--title-color);
    font-size: var(--mini-span);
    border-radius: 5px;
    box-shadow: 0px 0px 5px #0000006e;
}

/* Хлебные крошки */

.breadcumb-menu {
    max-width: 100%;
    margin: -0.35em 0 -0.35em 0;
    padding: 0;
    list-style-type: none;
}

.breadcumb-menu li {
    display: inline-block;
    list-style: none;
    position: relative;
}

.breadcumb-menu li:after {
    content: "/";
    position: relative;
    margin: 0 5px 0 10px;
}

.breadcumb-menu li:last-child:after {
    display: none;
}

.breadcumb-menu li,
.breadcumb-menu span {
    white-space: normal;
    color: inherit;
    word-break: break-word;
    font-weight: 500;
    font-size: var(--small-span);
    font-family: var(--title-font);
    color: var(--title-color);
}

.breadcumb-menu a {
    color: var(--theme-color);
}

.breadcumb-menu a:hover {
    color: var(--accent-color);
}

.breadcumb-title {
    color: var(--white-color);
    margin: -0.3em 0 -0.35em 0;
    max-width: 60%;
    width: 100%;
}

.breadcumb-content {
    position: absolute;
    bottom: 0px;
    gap: 0 40px;
    background: #fff;
    border-radius: 5px 5px 0px 0px;
    padding: 10px 20px;
}

/* 3. HEADING */
.title-area {
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--margin-big);
}

.sec-subtitle {
    text-transform: uppercase;
    display: block;
    color: var(--theme-color);
    font-family: var(--title-font);
    font-size: var(--h6-size);
    font-weight: 600;
    margin: -0.25em 0 var(--space-box) 0;
}

.sec-subtitle img {
    width: 25px;
    margin-right: 10px;
}

.sec-subtitle > i {
    margin-right: 15px;
}

.sec-title-diamond {
    line-height: 1.35;
    margin: -0.25em 0 0px 0;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    font-size: var(--title-size);
}

.sec-line-wrap {
    display: flex;
    gap: var(--space-box);
    align-items: center;
    margin: 0 0 var(--space-box) 0;
}

.sec-line-wrap .sec-diamond-style2 {
    margin: -0.3em 0 -0.4em 0;
}

.sec-diamond-style2 {
    font-size: var(--normal-span);
    font-weight: 600;
    text-transform: uppercase;
    margin: -0.3em 0 22px 0;
}

@media (max-width: 767px) {
    .sec-title-diamond {
        margin-bottom: var(--space-box);
    }
}

/* Форма в заголовке */
.zayavka {
    text-align: right;
}

.zayavka .form, .zayavka form {
    display: flex;
    gap: var(--space-box);
    justify-content: flex-end;
}

.zayavka .form-group {
    margin-bottom: 0px;
}

.zayavka .dm-btn.form {
    gap: 0px;
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-box);

}

.zayavka .privacy {
    font-size: var(--mini-span);
    margin-bottom: 0px;

}

.text-heading {
    font-size: var(--price-size);
    font-family: var(--title-font);
    color: var(--title-color);
}

.zayavka.left {
    text-align: left;
}

.zayavka.left .form {
    display: flex;
    gap: var(--space-box);
    justify-content: flex-start;
}

.zayavka.left .privacy {
    font-size: var(--mini-span);
    margin-bottom: 0px;
    color: var(--white-color);

}

@media (max-width: 767px) {
    .zayavka .form, .zayavka form {
        flex-direction: column;
    }

    .zayavka p {
        text-align: left;
    }

    .zayavka .privacy {
        text-align: center;
    }

    .zayavka .dm-btn.form {
        flex-direction: row;
        width: 100%
    }
}

/* 4. OUR TEAM*/
.our-doctors {}

/* Карусель команда */

.photo-team-carousel img {
    border-radius: 15px;
}

.our-doctors .doctor-photo {
    height: 450px
}

.left-team {
    position: relative;
    overflow: visible;
    z-index: 1;
    text-align: left;
}

.left-team .certificates-carousel {
    position: absolute;
    right: 20px;
    transform: translateY(-50%);
    top: 50%;
    width: 180px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.left-team .certificates-carousel .cert {
    margin: 0 0 15px 0;
}

.left-team .podrobnee {
    position: absolute;
    right: -90px;
    bottom: -50px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.left-team .certificates-carousel img {
    height: 110px;
    position: relative;
    border: 1px solid var(--theme-color);
    z-index: 2;
    border-radius: 5px;
}

.team .slick-list.draggable {
    overflow: hidden;
}

.team .slick-list {
    overflow: hidden;
}

/* Карусель сертификатов */
.cert {
    position: relative;
    margin: 0 0 30px 0;
}

.cert .cert-img {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.cert .cert-img img {
    transition: all ease 0.4s;
    transform: scale(1);
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
}

.cert .cert-shape {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border-radius: 10px;
    background-color: var(--theme-color);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
}

.cert .icon-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background-color: var(--white-color);
    color: var(--theme-color);
    opacity: 0;
    visibility: hidden;
}

.cert .icon-btn:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}

.cert .project-title {
    color: var(--white-color);
    margin: 0;
}

.cert .project-label {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--white-color);
    display: block;
    margin: 0 0 5px 0;
}

.cert .project-label,
.cert .project-title {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
    transition: all ease 0.4s;
}

.cert .project-content {
    position: absolute;
    left: 70px;
    bottom: 60px;
    z-index: 3;
}

.cert:hover .cert-shape {
    opacity: 0.6;
    visibility: visible;
}



.cert:hover .icon-btn,
.hero-layout4 .cert:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
}

.cert:hover .project-title,
.cert:hover .project-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.cert:hover .icon-btn,
.cert:hover .project-label {
    transition-delay: 0.2s;
}

.left-team .certificates .cert .cert-shape {
    border-radius: 5px;
}

/* Карусель с текстом */
.team-arrow {
    position: absolute;
    right: -126px;
    top: 50%;
    transform: translateY(-50%);
}

.team-arrow .icon-btn {
    display: block;
    margin: 0 0 20px 0;
}

.team-arrow .icon-btn:last-child {
    margin-bottom: 0;
}

.team-text-slide .testi-text {
    font-size: var(--normal-span);
    margin: var(--space-box) 0px;
}

.our-doctors .about-doctor .opyt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-box);
}

.our-doctors .about-doctor .opyt p {
    display: table;
    border: 2px solid var(--theme-color);
    padding: 2px 10px;
    border-radius: 5px;
    font-family: var(--title-font);
    font-size: var(--medium-span);
    font-weight: 600;
    color: var(--theme-color);
    background: #fff;
    margin-bottom: 0px;
}

.our-doctors .about-doctor .sec-title-diamond {
    font-size: var(--title-size-small);
}

/* Thubnails */

.team-thumb {
    display: flex;
    border-radius: 10px;
    position: relative;
    padding: 15px 15px;
    margin: 0 0 var(--space-box) 0;
    transition: all ease 0.4s;
    box-shadow: none;
    background-color: transparent;
    cursor: pointer;
}

.team-thumb:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 20px;
    background-color: var(--theme-color);
    border-radius: 9999px;
    margin: -10px 0 0 0;
    transition: all ease 0.4s;
    opacity: 0;
    visibility: hidden;
}

.team-thumb .team-name {
    margin: 0;
    font-size: var(--small-span);
    line-height: 1.4;
    height: 50px;
}

.team-thumb .team-degi {
    color: var(--theme-color);
    font-size: var(--mini-span);
    line-height: 1.4;
    height: 35px;
    display: flex;
}

.team-thumb .team-img {
    margin: 0 var(--space-box) 0 0;
    height: 85px;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    width: 60px;
}

.team-thumb .team-img img {
    object-fit: cover
}

.slick-current .team-thumb,
.team-thumb:hover {
    background-color: var(--white-color);
    box-shadow: 0px 10px 10px #EEEFF1;
}

.slick-current .team-thumb::before {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 767px) {
    .our-doctors .about-doctor .opyt p {

        font-size: var(--small-span);
    }

    .team-text-slide .testi-text {
        font-size: var(--small-span);
    }

    .our-doctors .doctor-photo {
        margin-bottom: var(--margin-big);
    }

    .our-doctors .doctor-photo {
        height: 390px;
    }

    .left-team .certificates-carousel img {
        height: 100px;
    }

    .left-team .certificates-carousel .cert {
        margin: 0 0 10px 0;
    }

    .left-team .certificates-carousel {
        width: 160px;
    }

    .left-team .certificates-carousel {
        position: absolute;
        right: 0px;
    }

    .team-thumb-carousel .slick-list {
        padding: 0 20% 0 0;
    }


}

/* 5. POSTAVSHIKI */

.postavshiki {}

/* Таблица поставщиков */

.postavshiki-table__head {
    background-color: var(--theme-color);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 29px 60px;
}

.postavshiki-table__item:first-child {
    border-radius: 5px 5px 0px 0px;
}

.postavshiki-table__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #eaeaf0;
    background-color: #f8f8f9;
    padding: 25px 30px 25px 30px;
}

.postavshiki-table__item:last-child {
    border-radius: 0px 0px 5px 5px;

}

.postavshiki-table__col {
    width: 100%;
}

.postavshiki-table__col:nth-child(1) {
    max-width: 30%;
}

.postavshiki-table__col:nth-child(2) {
    max-width: 40%;
    padding-right: 30px;
}

.postavshiki-table__col:nth-child(3) {
    max-width: 20%;
}

.postavshiki-table__col:nth-child(4) {
    max-width: 10%;
}


.postavshiki-table__media {
    display: flex;
    align-items: center;
}

.postavshiki-table__img {
    width: 135px;
    margin-right: 25px;
    overflow: hidden;
}

.postavshiki-table__img img {
    width: 100%;
}

.postavshiki-table__title {
    font-size: var(--medium-span);
    font-weight: 500;
    margin: 0 0 3px 0;
    color: var(--title-color);
}

.postavshiki-table__title a {
    color: inherit;
}

.postavshiki-table__title a:hover {
    color: var(--theme-color);
}

.postavshiki-table__country {
    font-size: var(--mini-span);
    margin: 0;
}

.postavshiki-table__garant {
    font-size: var(--mini-span);
    margin: 0;

}

.postavshiki-table__garant span {
    font-weight: 500;
    color: var(--accent-color);
}

.postavshiki-table__sale {
    display: flex;
    align-items: center;
}

.postavshiki-table__sale .postavshiki-table__name {
    font-family: var(--title-font);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0px;
    font-size: var(--price-size);
}

.postavshiki-table__sale .postavshiki-table__old {
    color: var(--smoke-color);
    font-weight: 500;
    display: flex;
    font-size: var(--normal-span);
}

.postavshiki-table__sale .postavshiki-table__old u {
    text-decoration: line-through;
}

.postavshiki-table__sale .postavshiki-table__old i {
    margin-right: 5px;
    color: var(--theme-color);
    text-decoration: none;
    display: flex;
    align-items: center;

}

.postavshiki-table__degi {
    font-size: var(--mini-span);
    margin: 0;
    line-height: 22px;
    display: block;
}


@media (max-width: 767px) {

    .postavshiki-table__img img {
        width: 60%;
    }

    .postavshiki-table__degi {
        text-align: center;
        display: flex;
    }

    .postavshiki-table__col {
        padding: 0px !important;
    }

    .postavshiki-table__sale {
        margin-top: var(--space-box);
    }

    .postavshiki-table__head {
        display: none;
    }

    .postavshiki-table__item {
        padding: var(--space-box) 15px var(--space-box) 15px;
        border: none;
        margin-bottom: var(--space-box);
    }



    .postavshiki-table__media {
        text-align: center;
        display: block;
        border-bottom: 1px solid #eaeaf0;
        margin-bottom: var(--space-box);
        padding-bottom: var(--space-box);
    }

    .postavshiki-table__img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin-bottom: var(--space-box);
        margin-right: 0;
    }

    .postavshiki-table__sale {
        display: flex;
        text-align: left;
    }


    .postavshiki-table__col:nth-child(1) {
        max-width: 100%;
    }

    .postavshiki-table__col:nth-child(2) {
        max-width: 100%;
    }

    .postavshiki-table__col:nth-child(3) {
        max-width: 50%;
    }

    .postavshiki-table__col:nth-child(4) {
        max-width: 50%;
        text-align: right;
        padding: 0;
    }

    .postavshiki-table__col .dm-btn.style8 {
        margin-top: var(--space-box);
    }
}

/* 6. SUMMARY SERVICE */

.summary-service {
    position: relative;
    padding-top: calc(var(--section-space) * 2);
}

.summary-service-shape {
    position: absolute;
    right: 0;
    left: 230px;
    top: var(--section-space);
    bottom: 0;
    z-index: -1;
    border-radius: 10px 0px 0px 10px;
}

/* Блок суммы входящих */


.cal-service-title {
    line-height: 1;
    display: inline-block;
    position: absolute;
    left: 35px;
    top: -5px;
    color: var(--white-color);
    font-family: var(--title-font);
    background-color: var(--theme-color);
    padding: 8px 18px;
    font-size: var(--normal-span);
    border-radius: 2px;
    box-shadow: 0 0 0 5px white;
}

.calc-service-popup {
    line-height: 1;
    display: inline-block;
    position: absolute;
    right: 35px;
    top: 5px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--accent-color);
    padding: 8px 0px;
    font-size: var(--mini-span);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.calc-serive-inner {
    position: relative;
    background-color: var(--white-color);
    padding: 45px 30px 10px 30px;
    border-radius: 10px;
}

.calc-serive-inner .summary {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: var(--space-box);
}

.calc-serive-inner .summary .item {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    color: var(--title-color);
}

/* TOOLTIPS */
.tooltip-inner {
    max-width: 200px;
    padding: .5rem 1rem;
    color: var(--title-color);
    text-align: center;
    background-color: var(--gray-color);
    border-radius: .25rem;
    box-shadow: 0px 0px 5px #00000040;
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,
.bs-tooltip-bottom .tooltip-arrow:before {
    bottom: -1px;
    border-width: 0 .4rem .4rem;
    border-bottom-color: var(--gray-color);
}

 .toggletip {
    position: absolute;
    right: -15px;
    top: 0px;
    color: var(--smoke-color);
    font-size: var(--normal-span);
    transition: all ease 0.8s;
    cursor: pointer;
    z-index: 1;
}

.tooltip.show {
    opacity: 0.95;
}

 .toggletip {
    border-radius: 50px;
    line-height: 0.3;
    border: 0px;
    background: var(--smoke-color);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: var(--mini-span);
    width: 20px;
    height: 20px;
}

.toggletip:hover,
.toggletip:focus {
    background: var(--accent-color);

}

.calc-serive-inner .summary .item:hover:before {
    color: var(--accent-color);
}

.calc-serive-inner .summary .item:after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-weight: 900;
        right: -36px;
    top: 40px;
    color: var(--theme-color);
    font-size: var(--normal-span);
}

.calc-serive-inner .summary.three .item:after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-weight: 900;
    top: 40px;
        right: -76px;
    color: var(--theme-color);
    font-size: var(--normal-span);
}
.calc-serive-inner .summary .item:last-child:after {
    display: none;
}

.calc-serive-inner .summary .item img {
    max-width: 80px;
}

.calc-serive-inner .summary .item .name {
    font-family: var(--title-font);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    font-size: var(--mini-span);
    margin-top: 10px;
}

.calc-serive-inner .total {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-top: var(--space-box);
}

.calc-serive-inner .total .title {
    font-family: var(--title-font);
    font-weight: 600;
}

.calc-serive-inner .total .price {
    display: flex;
    gap: var(--space-box);
    text-align: right;
}

.calc-serive-inner .total .price i {
    color: var(--theme-color);
    margin-right: 5px;
}

.calc-serive-inner .total .price span {
    color: var(--smoke-color);
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
}

.calc-serive-inner .total .price span u {
    text-decoration: line-through;
}

.calc-serive-inner .total .price p {
    margin-bottom: 0px;
    font-family: var(--title-font);
    color: var(--accent-color);
    font-weight: 600;
    font-size: var(--price-size);

}

.deliter p {
    font-size: var(--price-size);
    margin-bottom: 0px;
    font-family: var(--title-font);
    color: #fff;
    text-align: center;
    margin: var(--space-box) 0px calc(var(--space-box)*1.5);
    font-weight: 600;
    padding: var(--space-box) 0px;
    border-top: 1px solid var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
}

/* Текстовая часть */

.summary-text {
    display: flex;
    align-items: center;
}

.summary-text .sec-title-diamond {
    margin-bottom: var(--space-box);
}

.over-total {
    margin-bottom: var(--space-box);
}

.over-total .price {
    display: flex;
    gap: var(--space-box);
    text-align: right;
}

.over-total .price i {
    color: var(--theme-color);
    margin-right: 5px;
}

.over-total .price span {
    color: var(--smoke-color);
    font-weight: 500;
    line-height: 1;
    display: flex;
    font-size: var(--price-size);
    align-items: center;
}

.over-total .price span u {
    text-decoration: line-through;
}

.over-total .price p {
    margin-bottom: 0px;
    font-family: var(--title-font);
    color: var(--theme-color);
    font-weight: 600;
    font-size: var(--title-size);

}


@media (max-width: 767px) {
    .calc-serive-inner {
        position: relative;
        background-color: var(--white-color);
        padding: 45px 20px 10px 20px;
        margin: var(--section-space) 0;
    }

 .toggletip {
          right: 10px;
    letter-spacing: 0;
    padding: 0;
    }

    .calc-serive-inner .summary {
        display: grid;
        gap: var(--space-box);
        margin-top: 50px;
        grid-template-columns: 1fr 1fr;
    }

    .calc-serive-inner .summary .item:after, .calc-serive-inner .summary.three .item:after {
        right: -20px;
    }
    

    .calc-serive-inner .summary .item:nth-child(2n):after {
        display: none;
    }

    .calc-serive-inner .total {
        flex-wrap: wrap;
        margin-top: var(--space-box);
    }

    .calc-serive-inner .total .price {
        justify-content: space-between;
        width: 100%;
    }

    .summary-service-shape {
        left: -20px;
    }

    .cal-service-title {
        transform: translateX(-50%);
        left: 50%;
        width: max-content;
    }

    .calc-service-popup {
        transform: translateX(-50%);
        left: 50%;
        width: max-content;
        top: 35px;
    }

    .toggletip-bubble {
        width: 100%;

        position: static;
        padding: 10px 10px;
        font-size: var(--mini-span);
        line-height: 1.5;
    }

    .list-style1 ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* 7. QUIZ */
.quiz {}

.quiz .title {
    line-height: 1.3;
    font-size: var(--title-size-small);
    margin-bottom: var(--space-box);
}

.quiz .process {
    display: flex;
    gap: var(--space-box);
    align-items: center;
    margin-bottom: var(--space-box);
}

.quiz .progress-box__progress {
    width: 600px;
    position: relative;
}

.quiz .process .total-quest {
    padding-bottom: 0;
    margin: 0;
}

.quiz .doctor .image-text {
    background: var(--gray-color);
    padding: 10px 10px 10px 10px;
    border-radius: 5px;
    margin-top: var(--space-box);
    gap: var(--space-box);
    text-align: left;
    display: flex;
}

.quiz .doctor .gift .image-text img {
    width: 50px;
}

.quiz .doctor .gift .image-text span {
    color: var(--title-color);
    line-height: 1.4;
    font-size: var(--small-span);
}

.quiz-box .form {
    margin-top: var(--space-box) 0px;
}

.quiz-box {
    height: 100%;
    background-color: var(--white-color);
    padding: 30px 20px;
    box-shadow: 0px 0px 10px rgba(125, 125, 125, 0.2);
    border-radius: 5px;
    position: relative;
}

.quiz .question {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: var(--medium-span);
    font-weight: 600;
}

.quiz-box.doctor {
    text-align: center;
    padding: 20px 15px;
}

.quiz-box.doctor .gift {
    position: relative;
}

.quiz-box.doctor .gift span {
    color: var(--accent-color);
}

.quiz-box:before {
    content: "";
    position: absolute;
    left: 40px;
    bottom: 0;
    height: 3px;
    width: calc(100% - 80px);
    background-color: var(--theme-color);
}

.quiz-box .feature-icon {
    margin: 0 auto 15px auto;
    text-align: center;
}

.quiz-box .feature-icon img {
    width: 160px;
    border-radius: 50%;
    background: var(--theme-color);
}

.quiz-box .feature-title {
    margin: 0;
    font-size: var(--normal-span);
}

.quiz-box.doctor .desc {
    color: var(--title-color);
}

.quiz-box .feature-text {
    margin: 5px 0 var(--space-box) 0;
    line-height: 1.3;
    font-family: var(--title-font);
    font-size: var(--small-span);
    color: var(--smoke-color) !important;
}

.quiz-box .quote {
    position: relative;
}

.quiz-box .quote i {
    color: var(--theme-color);
    font-size: 50px;
    position: absolute;
    right: 0px;
    opacity: 0.2;
}

.quiz .sec-btns.center {
    justify-content: flex-start;
}

@media (max-width: 767px) {
        .quiz .rev{
        flex-direction: column-reverse;
    }
    .quiz .sec-btns.center {
        justify-content: center;
    }

    .quiz-box.doctor {
        margin-bottom: var(--space-box)
    }

    .quiz .progress-box__progress {
        width: 220px;
        position: relative;
    }

    .quiz .doctor .image-text {
        align-items: center;
    }

    .quiz .doctor .gift .image-text span {
        font-size: var(--normal-span);
    }
}

/* FORM */
.radio-form {
    justify-content: center;
    margin: var(--space-box) 0;
    display: grid;
    grid-template-columns: repeat(5, 2fr);
}

.radio-form .radio-control {
    width: 180px;
    transition: all ease 250ms;
}

.radio-form .radio-control input {
    display: none;
}

.radio-form .radio-control .radio-input {
    background: #ffffff;
    text-align: center;
    padding: var(--space-box) 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 10px 0px 10px;
    position: relative;
    transition: all ease 250ms;
    border: 2px solid #b5959e5c;
    display: block;
}

.radio-form .radio-control:hover .radio-input {
    border: 2px solid var(--theme-color);
}

.radio-form .radio-control .radio-input i {
    display: block;
    font-size: 70px;
    color: #BFE2FF;
    font-weight: bold;
}

.radio-form .radio-control .radio-input img {
    width: 110px;
}

.radio-form .radio-control span {
    font-size: var(--small-span);
    text-align: center;
    display: block;
    margin-top: 5px;
    color: #5c5f63;
}

.radio-form .radio-control input:checked + .radio-input span {
    color: #444444;
    opacity: 1;
    transition: opacity ease 250ms;
}

.radio-form .radio-control input:checked + .radio-input:after {
    top: 0;
    right: 20px;
    transform: translateY(-50%);
    animation-name: animation;
    animation-duration: 250ms;
    background-color: #FFF;
    font-size: 25px;
    display: block;
    position: absolute;
    border: 5px solid #FFF;
    padding-left: 2px;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
}

.radio-form .radio-control input:checked + .radio-input {
    border: 2px solid var(--theme-color);
}

.radio-form .radio-control input:checked + .radio-input:after,
.radio-form .radio-control input:checked + .radio-input i {
    color: var(--theme-color);
}

@keyframes animation {
    0% {
        transform: translateY(-50%) scale(0);
    }

    75% {
        transform: translateY(-50%) scale(1.3);
    }

    100% {
        transform: translateY(-50%) scale(1);
    }
}

@media screen and (max-width: 768px) {

    .radio-form .radio-control {
        width: 100%;
    }

    .radio-form {
        display: grid;
        gap: 5px;
        grid-template-columns: repeat(2, 2fr);
    }


    .radio-form .radio-control .radio-input {
        margin: 0 10px 0px 10px;

    }
}

/* Pulsing */
.online-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8ED383;
    animation: pulsing 2s infinite;
    transition: all 0.2s;
    position: absolute;
    left: 5px;
    top: 10px;
}

@keyframes pulsing {
    from {
        box-shadow: 2px 2px 5px rgba(0, 0, 0, .16), 0 0 0 0 rgba(141, 141, 141, .5)
    }

    to {
        box-shadow: 2px 2px 5px rgba(0, 0, 0, .16), 0 0 0 14px transparent
    }
}

/* PROGRESS */
.progress-box__progress {
    box-shadow: 0px 10px 31px rgba(169, 177, 193, 0.17);
    border: 1px solid #D5E0F5;
    height: 16px;
    padding: 4px;
    border-radius: 5px;
    background-color: var(--white-color);
}

.progress-box__bar {
    height: 100%;
    background-color: var(--accent-color);
    border-radius: inherit;
    box-shadow: 0px 10px 31px rgba(169, 177, 193, 0.17);
    border-radius: 5px;
}

/* 8. AGREGATORS */
.agregator-img {
    padding: 15px 15px;
    margin-top: var(--space-box);
    background: #fff;
    box-shadow: 0px 0px 10px #0000001c;
    border-radius: 5px;
}

.agregator p {
    font-family: var(--title-font);
    font-size: var(--medium-span);
    font-weight: 600;
    color: var(--title-color);
    margin: 10px 0px 0px;
}

.agregator .testi-rating cite {
    font-size: var(--price-size);
    color: var(--title-color);
}

/* 9. WOR SECTION */
.works-section {}

/* Our Works */

.our-work {
    background-color: var(--white-color);
    padding: 15px 15px 30px;
    box-shadow: 0px 0px 5px rgba(125, 125, 125, 0.2);
    border-radius: 10px;
    position: relative;
    margin: 15px;
}

.our-work .slider {
    position: relative;
}

.our-work .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-work .sluchay {
    color: var(--accent-color) !important
}

.our-work .dm-btn {
    padding: 10px 20px;
    font-size: var(--mini-span);
}

.our-work:before {
    content: "";
    position: absolute;
    left: 40px;
    bottom: 0;
    height: 3px;
    width: calc(100% - 80px);
    background-color: var(--theme-color);
}

.our-work #before-after-slider {
    border-radius: 10px;
}

.our-work .title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: var(--medium-span);
    margin: 10px 0px;
    height: 50px;
}

.our-work .title:hover {
    color: var(--theme-color);
}

.our-work .uslugi span {
    color: var(--smoke-color);
    font-weight: 500;
    margin-right: 10px;
}

.our-work .uslugi a {
    margin-bottom: var(--space-box);
}

.our-work .uslugi a:after {
    content: ',';
}

.our-work .uslugi a:last-child:after {
    content: '';
}

.swiper-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
}

@media (max-width: 767px) {}

/* 10. STRAHI */
.strahi {}

.strah {
    display: flex;
    align-items: center;
    margin: 0 0 30px 0;
}

.strah .strah-img {
    width: 160px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.strah .strah-img img {
    border-radius: 5px;
}

.strah .strah-title a {
    color: var(--title-color);
    transition: all ease 0.4s;
}

.strah .strah-text {
    margin: 15px 0 0px 0;
}

.strah .strah-content {
    flex: 1;
    position: relative;
    border-radius: 5px;
    padding: 0px 0px 0px 130px;
    margin: 0 0 0 -105px;
    transition: all ease 0.4s;
    overflow: hidden;
}

.strah:hover .strah-text {
    color: var(--title-color);
}

.strah:hover .strah-content {
    border-color: transparent;
}

/* FAQ */

.accordion-faq .accordion-item {
    margin: 0 0 20px 0;
    padding: 0 35px 6.5px 35px;
    background-color: var(--gray-color);
    box-shadow: 7.5px 12.99px 30px 0px rgba(148, 171, 255, 0.05);
    border-radius: 5px;
}

.accordion-faq .accordion-button {
    background-color: transparent;
    border: none;
    padding: 24.5px 0 18px 0;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--title-color);
    text-align: left;
}

.accordion-faq .accordion-button:after {
    content: "\f35a";
    font-family: var(--icon-font);
    font-weight: 400;
    color: var(--title-color);
    border: none;
    width: auto;
    height: auto;
    background-image: none;
    transform: rotate(0);
}

.accordion-faq .accordion-button:focus {
    box-shadow: none;
}

.accordion-faq .accordion-button:not(.collapsed):after {
    transform: rotate(90deg);
}

.accordion-faq .accordion-button:hover {
    color: var(--theme-color);
}

.accordion-faq .accordion-body {
    padding: 0 0 20px 0;
}

.accordion-faq .accordion-body p {
    font-size: 14px;
}

.accordion-faq .accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-faq .accordion-collapse {
    border: none;
}

@media (max-width: 767px) {
    .strah {
        display: block;
        text-align: center;
    }

    .strah .strah-img {
        margin: 0 auto;
    }

    .strah .strah-content {
        padding: 99px 20px 20px 20px;
        margin: -69px 0 0 0;

    }

    .accordion-faq .accordion-item {
        padding: 0 15px 6.5px 15px;
    }
}

/* 11. CTA ADMIN */

.cta-admin {
    position: relative;
    background-image: url(../img/cta-admin.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom;
    overflow: visible;
    padding: var(--section-space) 0px;
}

.cta-admin .photo {
    width: 400px;
    position: absolute;
    bottom: 0px;
    right: 200px;
}

.cta-admin a:hover {
    color: #fff;
}

.cta-admin .my-name-is {
    color: #fff;
    font-size: var(--price-size);
    margin: var(--space-box) 0;
}

.cta-admin .phone {
    width: 300px;
}
.cta-admin .zayavka .form, .cta-admin .zayavka form {
  display: flex;
  gap: var(--space-box);
  max-width: 550px;
}
@media (max-width: 767px) {
    .cta-admin {
        overflow: hidden;
    }

    .cta-admin .photo {
        width: 200px;
        position: absolute;
        bottom: 0px;
        right: -80px;
        z-index: 0;
    }

    .cta-admin .form {
        justify-content: center;
        gap: 20px
    }

    .cta-admin {
        text-align: center;
    }

    .zayavka.left .form {
        display: flex;
        gap: var(--space-box);
        justify-content: center;
        margin: 0 auto;
    }

    .zayavka.left .privacy {
        font-size: var(--mini-span);
        margin-bottom: 0px;
        position: relative;
        z-index: 1;
        color: var(--white-color);
    }

    .zayavka.left .privacy a {
        color: var(--gray-color);
    }
}

/* 12. ABOUT US */

.about-sec .about-image {
    border-radius: 10px;
}

.about-sec .gallery-about {
    margin: var(--section-space) 0px 0px;
    position: relative;
}

.about-sec p {
    margin: var(--space-box) 0;
}

/* gallery */
.about-gallery {
    position: relative;
    margin: 0 0 30px 0;
}

.about-gallery .gallery-img {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    margin: 10px;
}

.about-gallery .gallery-img img {
    transition: all ease 0.4s;
    transform: scale(1);
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
}

.about-gallery .gallery-shape {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border-radius: 10px;
    background-color: var(--theme-color);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
}

.about-gallery .icon-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background-color: var(--white-color);
    color: var(--theme-color);
    opacity: 0;
    visibility: hidden;
}

.about-gallery .icon-btn:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}

.about-gallery .project-title {
    color: var(--white-color);
    margin: 0;
}

.about-gallery .project-label {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--white-color);
    display: block;
    margin: 0 0 5px 0;
}

.about-gallery .project-label,
.about-gallery .project-title {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
    transition: all ease 0.4s;
}

.about-gallery .project-content {
    position: absolute;
    left: 70px;
    bottom: 60px;
    z-index: 3;
}

.about-gallery:hover .gallery-shape {
    opacity: 0.8;
    visibility: visible;
}

.about-gallery:hover .gallery-img img {
    transform: scale(1.1);
}

.about-gallery:hover .icon-btn {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
}

.about-gallery:hover .project-title,
.about-gallery:hover .project-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.about-gallery:hover .icon-btn,
.about-gallery:hover .project-label {
    transition-delay: 0.2s;
}


@media (max-width: 767px) {

    .contact-us-mini {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-call {
        display: flex;
        align-items: center;
        border-right: 0px solid var(--theme-color);
        border-bottom: 2px solid var(--theme-color);
        padding: 0 0px var(--space-box) 0;
        margin: 0 0px var(--space-box) 0;
    }

    .about-gallery .gallery-img img {
        height: 250px;
    }

    .about-gallery {
        position: relative;
        margin: 0;
    }
}

/* 13. ADVANTAGES SEC */

.advantages-sec {}

/* Counters */
.counters {
    display: flex;
    gap: 60px;
}

.counter {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.counter .num {
    font-family: var(--title-font);
    color: var(--accent-color);
    font-weight: 100;
    font-size: 60px;
    line-height: 1;
}

.counter .num cite {
    font-size: 40px;
}

.counter .text {
    font-size: 17px;
    font-weight: 600;
    color: var(--title-color);
    font-family: var(--title-font);
}

/* Preimushestva */


.preimushestva {
    background-color: var(--gray-color);
    padding: 20px 15px;
    border-radius: 10px;
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: var(--space-box);
    align-items: center;
}

.preimushestva i {
    font-size: 50px;
    color: var(--accent-color);
}

.preimushestva p {
    font-size: var(--normal-span);
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    margin: 0px;
    line-height: 1.4;
}

.preimushestva span {
    font-size: var(--mini-span);
    line-height: 1.5 !important;
    display: flex;
    margin-top: 10px;
}

.preimushestva span {
    font-size: var(--mini-span);
    line-height: 1.5 !important;
    display: flex;
    margin-top: 10px;
}

.advantages-sec .form-gray {
    height: calc(100% - var(--space-box));
    margin-bottom: var(--space-box);

}

@media (max-width: 767px) {
    .counters {
        display: flex;
        gap: 20px;

    }
}

/* 14. OTZYVY SEC */

.testi-carousel {
    position: relative;
}

.testi-carousel .testi-diamond {
    margin: 10px 10px;
}

.testi-diamond {
    background-color: var(--white-color);
    padding: 25px 20px 25px 20px;
    box-shadow: 0px 0px 5px rgba(125, 125, 125, 0.2);
    border-radius: 10px;
    margin: 10px 0px;
    position: relative;
}

.testi-diamond:before {
    content: "";
    position: absolute;
    left: 40px;
    bottom: 0;
    height: 3px;
    width: calc(100% - 80px);
    background-color: var(--theme-color);
}

.testi-diamond .testi-author {
    display: flex;
    align-items: center;
    margin: 0 0 var(--space-box) 0;
}

.testi-diamond .entry-content p {
    margin: 0px 0px 5px 0px;
}

.testi-diamond .team-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: var(--space-box);
}

.testi-diamond .team-img img {
    width: 100%;
}

.testi-diamond .testi-name {
    font-size: var(--normal-span);
    color: var(--title-color);
    font-weight: 600;
    margin: 0;
}

.testi-diamond .testi-degi {
    color: var(--theme-color);
    font-size: var(--mini-span);
}

.testi-diamond .testi-rating {
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--title-color);
}

.testi-diamond .testi-rating i {
    color: #feb519;
    margin-left: 5px;
    font-size: var(--mini-span);
}

.testi-diamond .testi-rating i:first-child {
    margin-left: var(--space-box);
}

.testi-diamond .bottom {
    border-top: 1px solid #e3e9ff;
    padding-top: 10px;
    margin-top: var(--space-box);
    display: flex;
    justify-content: space-between;
}

.testi-diamond .right {
    display: flex;
    text-align: right;
    flex-direction: column;
}

.testi-diamond .right a {
    color: var(--accent-color);
    border-bottom: 1px solid transparent;
}

.testi-diamond .right a:hover {
    border-bottom: 1px solid var(--accent-color);
}


/* 15. FOOTER */

.widget-area {
    padding-top: 48px;
    padding-bottom: 10px;
}

.copyright-wrap {
    text-align: center;
    padding: var(--space-box) 0;
    border-top: 1px solid var(--dark-gray-color);
}

.copyright-wrap .about-company {
    font-family: var(--title-font);
    font-size: var(--small-span);
    margin-bottom: var(--space-box);
}

.copyright-text {
    margin: 0;
    font-size: var(--mini-span);
}

.footer-diamond {
    background-color: var(--title-color);
    overflow: hidden;
}

.footer-diamond .footer-top {
    border-bottom: 1px solid var(--dark-gray-color);
    padding: 35px 0;
}

.footer-diamond .footer-text {
    max-width: 390px;
    margin-bottom: 0px;
}

.footer-diamond .widget-area {
    padding: 50px 0 0px 0;
}


.footer-number {
    border-top: 1px solid var(--dark-gray-color);
    align-items: center;
    padding: 43px 0 0 0;
    margin: 34px 0 0 0;
    display: flex;
    position: relative;
}

.footer-number:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -40px;
    width: 9999px;
    height: 1px;
    border: inherit;
}

.footer-number .info {
    color: #8A99B4;
    margin: 0;
    line-height: 1;
    display: inline-block;
    font-size: var(--medium-span);
    font-family: var(--title-font);

}

.footer-number .info:hover {
    color: var(--theme-color);
}

.footer-number .title {
    margin: 0 0 7px 0;
}


.footer-social .social-title {
    font-family: var(--title-font);
    color: var(--white-color);
    font-size: 20px;
    display: inline-block;
    margin-right: 20px;
    font-weight: 700;
}

.footer-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: var(--medium-span);
    margin: 0 5px 0 0;
    color: var(--title-color);
    background-color: var(--theme-color);
    text-align: center;
    border-radius: 5px;
}

.footer-social a:last-child {
    margin-right: 0;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.footer-top-logo {
    width: 250px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget,
.footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
}


.footer-widget .widget_title {
    margin-bottom: var(--space-box);
    display: block;
    color: var(--white-color);
    font-size: var(--title-size-small);
    font-family: var(--title-font);
    font-weight: 600;
}

.footer-widget .footer-links > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-widget .footer-links a {
    margin-bottom: 21px;
}

.footer-diamond .form-gray {
    background: transparent;
}

.footer-diamond .form-gray .form-group > i {
    position: absolute;
    right: calc(var(--bs-gutter-x) / 2 + 0px);
}

footer .form-gray .privacy a {
    color: var(--white-color);
}

footer .form-gray .dm-btn:hover:before {
    transform: rotateX(0);
    margin-right: -1px;
    width: 101%;
}
footer .form-gray .dm-btn:hover {
    color: var(--title-color);

}
footer .dm-btn::after, footer .dm-btn::before {

  background: var(--white-color);
}
.widget {
    padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
    position: relative;
    margin-bottom: 40px;
    border: 6px;
}

.widget select,
.widget input {
    height: 55px;
    border: none;
    background-color: transparent;
    padding-left: 20px;
    font-weight: 400;
    border: 1px solid var(--dark-gray-color);
}

footer .notification {
    font-size: var(--normal-span);
    margin-top: var(--margin-big);
    display: block;
    font-family: var(--title-font);
    color: var(--white-color);
}

.footer-info {
    display: flex;
    margin-bottom: var(--space-box);
}

.footer-info_icon {
    width: 60px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    border: 1px solid var(--dark-gray-color);
    color: var(--white-color);
    background: #00000026;
    box-shadow: 0px 0px 5px #00000061;
    font-size: 30px;
    margin: 0 25px 0 0;
    display: inline-block;
    border-radius: 5px;
}

.footer-info_label {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--title-font);
    text-transform: uppercase;
    display: block;
    margin: 0 0 5px 0;
}

.footer-info_link {
    color: #8A99B4;
    margin: 0 0 -0.15em 0;
}

.footer-info_link a {
    color: inherit;
}

.footer-info_link a:hover {
    color: var(--theme-color);
}

.footer-schedule table {
    border: none;
    margin: -0.3em 0 0 0;
}

.footer-schedule th,
.footer-schedule td {
    padding: 10px 0 0px 0;
    color: #8A99B4;
    border: none;
    font-weight: 400;
}

.footer-schedule span {
    font-family: var(--title-font);
    font-size: var(--normal-span);
    color: #8A99B4;
}

@media (min-width: 1399px) {
    .footer-diamond .footer-widget {
        padding: 0;
        margin: 0;
        height: 100%;
    }

    .footer-diamond .widget-area {
        padding: 0;
    }

    .footer-diamond .widget-area .row > div {
        padding-top: 50px;
        padding-bottom: 35px;
    }

    .footer-diamond .widget-area .row > div:nth-child(2) {
        text-align: center;
        border-left: 1px solid var(--dark-gray-color);
        border-right: 1px solid var(--dark-gray-color);
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-diamond .widget-area .row > div:nth-child(3) {
        padding-left: 40px;
    }
}

/* Medium devices */
@media (max-width: 991px) {

    .footer-diamond .footer-text {
        max-width: 100%;
    }

    .footer-diamond .footer-top-logo {
        text-align: center;
    }

}

/* Small devices */
@media (max-width: 767px) {
    .footer-top .footer-top-logo {
        margin: 0 auto;
    }

    .footer-diamond .widget-area {
        padding: var(--space-box) 0 10px 0;
    }

    .widget {
        padding: var(--space-box);
    }

    footer .notification {
        font-size: var(--small-span);
    }

    .footer-diamond .footer-widget {
        margin-bottom: var(--space-box);
    }

    .footer-diamond .footer-social {
        text-align: center;
    }

    .footer-diamond .footer-widget.callback {
        text-align: center;

    }

    .footer-diamond .second {
        border-top: 1px solid var(--dark-gray-color);
        border-bottom: 1px solid var(--dark-gray-color);
        padding-top: var(--space-box);
        margin-bottom: var(--space-box);
    }

    .footer-diamond .footer-number {
        border-top: 0px;
        align-items: center;
        padding: 0px 0 0 0;
        margin: 0px 0 0 0;
    }

    .footer-diamond .footer-social .social-title {
        display: block;
        margin: 0 0 var(--space-box) 0;
    }

    .footer-diamond .copyright-text {
        margin: 0;
        font-size: 10px;
    }

    .footer-diamond .media-body {
        flex: 1;
        text-align: left;
    }

    .copyright-wrap .about-company {
        font-size: var(--mini-span);
    }
    footer .form-gray {
  padding: 20px 0px;
    }
}

/* 16. MOBILE HEADER */

.diamond-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

.diamond-menu-wrapper .mobile-logo {
    padding-bottom: var(--margin-big);
    padding-top: var(--margin-big);
    display: block;
    text-align: center;
}

.diamond-menu-wrapper .mobile-logo {
    max-width: 185px;
    margin: 0 var(--space-box);
}

.diamond-menu-wrapper .vs-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 18px;
    z-index: 1;
    border-radius: 50%;
}

.diamond-menu-wrapper .vs-menu-toggle:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}

.diamond-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 350px;
    background-color: #fff;
    border-right: 3px solid var(--theme-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 1s;
    z-index: 1;
}

.diamond-menu-wrapper.vs-body-visible {
    opacity: 1;
    visibility: visible;
}

.diamond-menu-wrapper.vs-body-visible .vs-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.diamond-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: var(--space-box);
    margin-top: var(--space-box);
    text-align: left;
}

.diamond-mobile-menu .new-label {
  margin-left: 0px;
  position: relative;
  top: 50%;
  display: flex;
  transform: translateY(-50%);
  width: max-content;
}

.diamond-mobile-menu ul {
    margin: 0;
    padding: 0 0;
}

.diamond-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}

.diamond-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
}

.diamond-mobile-menu ul li a {
    display: flex;
    position: relative;
    padding: 12px 0;
    line-height: 1;
    font-size: 15px;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--title-color);
}
.diamond-mobile-menu ul li a i{
color: var(--accent-color);
    margin-right: 5px;
}


.diamond-mobile-menu ul li a:before {
    content: "\f105";
    font-family: var(--icon-font);
    color: var(--accent-color);
    position: relative;
    left: 0;
    top: 0;
    margin-right: 10px;
    display: inline-block;
}

.diamond-mobile-menu ul li.vs-active > a {
    color: var(--theme-color);
}

.diamond-mobile-menu ul li.vs-active > a:before {
    transform: rotate(90deg);
}

.diamond-mobile-menu ul li ul li {
    padding-left: 10px;
}

.diamond-mobile-menu ul li ul li:last-child {
    border-bottom: none;
}

.diamond-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    color: var(--accent-color);
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
}

.diamond-mobile-menu ul .vs-item-has-children > a .vs-mean-expand:before {
    content: "\f067";
    font-family: var(--icon-font);
}

.diamond-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand:before {
    content: "\f068";
}

.diamond-mobile-menu > ul {
    padding: 0 var(--space-box);
}

.diamond-mobile-menu > ul > li:last-child {
    border-bottom: none;
}

.vs-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    border: none;
    display: inline-block;
    background-color: #F2F6FF;
    color: var(--theme-color);
    border-radius: 5px;
}

.vs-menu-toggle.style2 {
    background-color: var(--theme-color);
    border-radius: 50%;
    color: var(--white-color);
    width: 55px;
    height: 55px;
}

@media (max-width: 400px) {
    .diamond-menu-wrapper .vs-menu-area {
        width: 100%;
        max-width: 270px;
    }

    .diamond-mobile-menu > ul {
        padding: 0 20px;
    }
}

/* 17. VYGODA SEC */
.vygoda-sec {}

/* Counter */
.countdown {
    font-family: var(--title-font);
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 70px;
}

.countdown-sec .ostatok {
    text-align: right;
}

.countdown-number {
    color: var(--accent-color);
    width: 110px;
    border-radius: 3px;
    display: inline-block;
}

.countdown-time {
    padding: var(--space-box) 0px var(--space-box);
    border-radius: 3px;
    display: inline-block;
}

.countdown-text {
    display: block;
    color: var(--theme-color);
    font-size: var(--normal-span);
}

.vygoda-box {
    background-color: var(--white-color);
    border-radius: 5px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--smoke-color);
}

.vygoda-box .vygoda-body {
    margin: 0;
}

.vygoda-box .vygoda-body .sale {
    position: absolute;
    right: -200px;
    bottom: -50px;
    width: 350px;
    z-index: 1;
}

.vygoda-box .vygoda-body .liquid {
    position: absolute;
    right: -250px;
    bottom: -60px;
    width: 500px;
    z-index: 0;
    transform: rotate(110deg);
}

.vygoda-box .vygoda-body .title {
    font-size: var(--title-size-small);
    color: var(--title-color);
    font-weight: 400;
    z-index: 1;
    position: relative;
}

.vygoda-box .vygoda-text {
    font-family: var(--title-font);
    line-height: 30px;
    font-size: var(--small-span);
    font-style: italic;
      z-index: 1;
    position: relative;
}

.vygoda-box .price .main {
    font-size: 40px;
    color: var(--accent-color);
    font-weight: 600;
    margin-left: 10px;
      z-index: 1;
    position: relative;
}

.vygoda-box .price .mini {
    font-size: 25px;
    color: var(--theme-color);
    font-weight: 400;
    text-decoration: line-through;
      z-index: 1;
    position: relative;
}

.vygoda-box .vygoda-body .dm-btn {
    margin-top: calc(2 * var(--space-box));
}

@media (max-width: 767px) {
    .countdown-number {
    color: var(--accent-color);
        width: auto;
        margin-right: 10px;
    }
    .countdown {
        font-size: 55px;
    } 
    .countdown-text {
    font-size: var(--small-span);
}
    .vygoda-box .vygoda-body .liquid {
    right: -170px;
    bottom: -25px;
    }
}

/* 18. MAIN SLIDER */
.diamond-main-slider {}

.diamond-main-slider .zayavka {
    text-align: left;
    margin-top: var(--space-box);
}

.diamond-main-slider .zayavka .form {
    justify-content: flex-start;
}

.diamond-main-slider .zayavka .privacy {
    color: #fff;
}

.diamond-main-slider .zayavka .title {
    color: #fff;
    font-size: var(--price-size);
    margin-bottom: 10px;
}

.diamond-main-slider .image-slider {
    width: 500px;
    position: absolute;
    right: -85px;
    top: 214px;
    z-index: 2;
}



.hero-layout-diamond .slick-arrow {
    --pos-x: 150px;
    --icon-font-size: 24px;
    --icon-size: 67px;
    background-color: transparent;
    line-height: 65px;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    top: calc(50% - 37.5px);
}

.hero-layout-diamond .hero-inner {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    background-color: var(--title-color);
    padding-bottom: 75px;
    overflow: hidden;
}

.hero-layout-diamond .hero-inner .main-image {
    width: 500px;
    position: absolute;
    right: -85px;
    top: 214px;
}

.hero-layout-diamond .hero-content {
    position: relative;
    z-index: 4;
    padding: 120px 0 20px;
}

.hero-layout-diamond .hero-title {
    color: var(--white-color);
    text-transform: uppercase;
    margin: -0.2em 0 20px 0;
    font-size: 60px;
    line-height: 1.2;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.hero-layout-diamond .hero-text {
    color: var(--white-color);
    max-width: 690px;
    font-size: 25px;
    line-height: 28px;
    margin: 0 0 20px 0;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.hero-layout-diamond .hero-accent {
    color: var(--title-color);
    font-size: 25px;
    line-height: 28px;
    margin: 0 0 20px 0;
    display: table;
    background: #ffffff91;
    position: relative;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.hero-layout-diamond .hero-accent:before {
    content: '';
    filter: blur(10px);
    background: #ffff0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    position: absolute;
    left: 0px;
    top: 0px;
}

.hero-layout-diamond .hero-btns {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.hero-layout-diamond .hero-innertext {
    font-size: 18px;
    text-align: left;
    font-weight: 600;
    border: 2px solid var(--white-color);
    font-family: var(--title-font);
    color: var(--white-color);
    border-radius: 5px;
    padding: 9px 23.5px;
    vertical-align: middle;
    position: relative;
    top: -4px;
    margin-left: 15px;
    display: inline-block;
}

.hero-layout-diamond .hero-shape1 {
    position: absolute;
    top: -473px;
    left: 51px;
    z-index: 2;
    width: 300px;
    height: 1558px;
    background-color: rgba(181, 149, 158, 0.5);
    transform: rotate(43.46deg);
}

.hero-layout-diamond .hero-shape2 {
    position: absolute;
    transform: rotate(43.46deg);
    top: -485px;
    left: 406px;
    z-index: 2;
    width: 589px;
    height: 1819.7px;
    background: linear-gradient(172deg, rgba(17, 36, 46, 0.35) 30%, rgba(0, 0, 0, 0) 60%);
    background-position: 0% 0%;
    background-repeat: no-repeat;
}

.hero-layout-diamond .slick-current {
    --animation-name: slideinup;
}


.banner-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-box);
}


.banner-advantage {
    padding: 15px;
    position: relative;
    border-radius: 5px;
    display: flex;
    gap: var(--space-box);
    align-items: center;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    background: #ffffff;
}

.banner-advantage .toggletip {
       right: 5px;
    top: 5px;
 
}
.banner-advantage img {
    width: 60px;
}

.banner-advantage p {
    margin: 0px;
    color: var(--title-color);

}

/* Large devices */
@media (max-width: 1199px) {


    .hero-layout-diamond .hero-inner {
        min-height: 600px;
        padding-bottom: 0;
    }

    .hero-layout-diamond .hero-title {
        font-size: 46px;
    }

    .hero-layout-diamond .hero-innertext {
        font-size: 14px;
        padding: 7px 18px;
    }

    .hero-layout-diamond .hero-shape1 {
        top: -645px;
        left: 10px;
        width: 200px;
        height: 1490px;
    }

    .hero-layout-diamond .hero-shape2 {
        display: none;
    }

}

/* Medium devices */
@media (max-width: 991px) {
    .hero-layout-diamond {
        text-align: center;
    }

    .hero-layout-diamond .hero-inner {
        min-height: auto;
    }

    .hero-layout-diamond .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-layout-diamond .hero-innertext {
        font-size: 12px;
        padding: 5px 15px;
        top: 0;
    }

    .hero-layout-diamond .hero-btns {
        justify-content: center;
    }
}

/* Small devices */
@media (max-width: 767px) {
    .banner-advantage {
   flex-direction: column;
}
    .banner-advantage {
        padding: 10px;
    }
    .hero-layout-diamond .zayavka p {
        text-align: center;
    }
    .diamond-main-slider .zayavka .form {
    justify-content: center;
}
     .banner-advantage p{
     line-height: 1.2;
    }
    .ls-btn-group {
        justify-content: center;
        gap: 10px;
    }

    .ls-btn-group .dm-btn {
        padding: 11.5px 14px;
        font-size: 12px;
    }

    .hero-layout-diamond .hero-title {
        font-size: 30px;
    }

    .hero-layout-diamond .hero-innertext {
        border: none;
        padding: 0;
        display: inline;
        font-size: inherit;
        margin: 0;
        vertical-align: top;
        text-decoration: underline;
    }
}

/* 19. SERVICES LIST */
.services-list {
    
}


/* Service List */
.razdel {
    background: var(--gray-color);
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 5px #00000030;
    padding: 25px 20px 15px;
    border-radius: 10px;
    height: 100%;
    margin-bottom: var(--space-box);
}

.razdel .title {
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.razdel .title .main {
    font-size: var(--medium-span);
    display: flex;
    font-weight: 600;
    color: var(--title-color);
    font-family: var(--title-font);
    line-height: 1;
}

.razdel .title .main i {
    margin-right: 10px;
    color: var(--accent-color);
    margin-bottom: 0px;
}



.razdel .content {
    gap: var(--space-box);
    display: flex;
}

.razdel .content img {
    position: absolute;
    right: -70px;
    bottom: 15px;
    width: 150px;
}

.razdel .content .uslugi {
    margin-right: 30px;
    display: flex;
    gap: var(--space-box);
}

.razdel .content .uslugi .column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.razdel .content .uslugi .column ul li {
    line-height: 1.3;
    margin: 5px 0px;
}

.razdel .content .uslugi .column ul li a {
    color: var(--smoke-color) !important;
}

.razdel .content .uslugi .column ul li:hover a {
    color: var(--accent-color) !important;
}

/* 20. MINI PRICE */

.mini-price {
    position: relative;
    background-color: var(--gray-color);
    padding: 30px 35px 20px 35px;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 0 var(--space-box) 0;
}

.mini-price .price-shape {
    background-color: var(--theme-color);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: all ease 0.4s;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transform: scale(1.1);
}

.mini-price .price-package {
     text-transform: uppercase;
    text-align: center;
    display: block;
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: var(--h6-size);
    font-weight: 600;
    margin: -0.25em 0 var(--space-box) 0;
}

.mini-price .price-amount {
    color: var(--accent-color);
    text-align: center;
    font-size: var(--title-size);
    font-family: var(--title-font);
    font-weight: 600;
    margin: var(--space-box) 0 var(--space-box) 0;
}

.mini-price .price-duration {
    font-size: 16px;
    color: var(--white-color);
    font-weight: 700;
    font-size: var(--title-size-small);
}


.mini-price .price-features ul {
    margin: var(--space-box) 0 0 0;
    padding: 0;
    list-style-type: none;
}

.mini-price .price-features li {
    margin: 0 0 5px 0;
}

.mini-price .price-features i {
    color: var(--theme-color);
    margin: 0 10px 0 0;
}

.mini-price .dm-btn {
    width: 100%;
}


.mini-price .dm-btn,
.mini-price .price-features,
.mini-price .price-duration,
.mini-price .price-amount,
.mini-price .price-package {
    transition: all ease 0.4s;
    position: relative;
    z-index: 2;
}

.shape-1 {
    width: 1690px;
    height: 882px;
}
.mini-price .go-to-price {
    margin: 0 auto;
    width: 100%;
    display: flex;
text-decoration: underline;
    text-underline-offset: 4px;
    justify-content: center;
}
.mini-price .go-to-price:hover {
    color: var(--white-color);
}
.mini-price .dm-btn::after, .mini-price .dm-btn::before {
        background: var(--white-color);
}
.mini-price .dm-btn:hover {
      color: var(--title-color);  
}

/* 21. ALGORITM RABOTY */

.algoritm-sec {
    
}
.algoritm {
    display: grid;
        grid-template-columns: repeat(4, 1fr);
gap:var(--space-box);
}
.algoritm.three {
    display: grid;
        grid-template-columns: repeat(3, 1fr);
gap:var(--space-box);
}
.process-diamond {
    text-align: center;
    margin: 0 0 5px 0;
    position: relative;
}

.process-diamond .process-arrow {
    position: absolute;
    right: -53px;
    top: 0;
}

.process-diamond:nth-child(even) {
    margin-top: 30px;
}

.process-diamond:nth-child(even) .process-arrow {
    transform: rotateX(190deg);
}

.process-diamond:last-child .process-arrow {
    display: none;
}

.algoritm .process-diamond:nth-child(4) .process-arrow, .algoritm .process-diamond:nth-child(8) .process-arrow {
    display: none;
}
.algoritm.three .process-diamond:nth-child(3) .process-arrow, .algoritm.three .process-diamond:nth-child(6) .process-arrow, .algoritm.three .process-diamond:nth-child(9) .process-arrow {
    display: none;
}
.process-diamond .process-icon {
    position: relative;
    text-align: center;
    width: var(--icon-size, 130px);
    height: var(--icon-size, 130px);
    line-height: var(--icon-size, 130px);
    box-shadow: 0px 0px 77px 10px rgba(170, 170, 170, 0.13);
    background-color: var(--white-color);
    border-radius: 50%;
    margin: 0 auto var(--space-box) auto;
}

.process-diamond .process-icon img{
    border-radius: 50%;
}
.process-diamond .process-number {
    text-align: center;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 26px;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 50%;
    position: relative;
    border: 5px solid var(--white-color);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--title-font);
}

.process-diamond .process-title {
    margin: 0 0 10px 0;
    font-size: var(--medium-span);
           font-family: var(--title-font);
         color: var(--title-color);
    font-weight: 600;
    line-height: 1.2
}

/* 22. PRICE-LIST */

.price-list {}

/* Таблица поставщиков */

.price-list-table__head {
    background-color: var(--theme-color);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 29px 60px;
}

.price-list-table__item:first-child {
    border-radius: 5px 5px 0px 0px;
}

.price-list-table__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eaeaf0;
    background-color: var(--gray-color);
    padding: 8px 20px 8px 20px;
}

.price-list-table__item:nth-child(2n) {
      background-color: #fff;
}
.price-list-table__item:last-child {
    border-radius: 0px 0px 5px 5px;

}

.price-list-table__col {
    width: 100%;
}

.price-list-table__col:nth-child(1) {
    max-width: 85%;
    padding-right: 5%;
}

.price-list-table__col:nth-child(2) {
    max-width: 15%;
}




.price-list-table__media {
    display: flex;
    align-items: center;
}

.price-list-table__img {
    width: 135px;
    margin-right: 25px;
    overflow: hidden;
}

.price-list-table__img img {
    width: 100%;
}

.price-list-table__title {
    font-size: var(--medium-span);
    font-weight: 500;
    margin: 0 0 3px 0;
    color: var(--title-color);
}

.price-list-table__title a {
    color: inherit;
}

.price-list-table__title a:hover {
    color: var(--theme-color);
}

.price-list-table__country {
    font-size: var(--mini-span);
    margin: 0;
}

.price-list-table__garant {
    font-size: var(--mini-span);
    margin: 0;

}

.price-list-table__garant span {
    font-weight: 500;
    color: var(--accent-color);
}

.price-list-table__sale {
    display: flex;
    align-items: center;
}
.price-list-table .dm-btn.style8 {
    padding: 12px 25px;
}

.price-list-table__name {
    font-family: var(--title-font);
    color: var(--accent-color);
    font-weight: 600;
    text-align: right;
    margin-bottom: 0px;
    font-size: var(--normal-span);
}

.price-list-table__sale .price-list-table__old {
    color: var(--smoke-color);
    font-weight: 500;
    display: flex;
    font-size: var(--normal-span);
}

.price-list-table__sale .price-list-table__old u {
    text-decoration: line-through;
}

.price-list-table__sale .price-list-table__old i {
    margin-right: 5px;
    color: var(--theme-color);
    text-decoration: none;
    display: flex;
    align-items: center;

}

.price-list-table__degi {
    font-size: var(--mini-span);
    margin: 0;
    line-height: 22px;
    display: block;
    color: #787c83;
}

.price-list-table__degi:hover {
    color: var(--accent-color);
}


@media (max-width: 767px) {

    .price-list-table__img img {
        width: 60%;
    }

    .price-list-table__degi {
        text-align: center;
        display: flex;
    }

    .price-list-table__col {
        padding: 0px !important;
    }

    .price-list-table__sale {
        margin-top: var(--space-box);
    }

    .price-list-table__head {
        display: none;
    }

    .price-list-table__item {
        padding: var(--space-box) 15px var(--space-box) 15px;
        border: none;
        margin-bottom: var(--space-box);
    }



    .price-list-table__media {
        text-align: center;
        display: block;
        border-bottom: 1px solid #eaeaf0;
        margin-bottom: var(--space-box);
        padding-bottom: var(--space-box);
    }

    .price-list-table__img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin-bottom: var(--space-box);
        margin-right: 0;
    }

    .price-list-table__sale {
        display: flex;
        text-align: left;
    }


    .price-list-table__col:nth-child(1) {
        max-width: 100%;
    }

    .price-list-table__col:nth-child(2) {
        max-width: 100%;
    }

    .price-list-table__col:nth-child(3) {
        max-width: 50%;
    }

    .price-list-table__col:nth-child(4) {
        max-width: 50%;
        text-align: right;
        padding: 0;
    }

    .price-list-table__col .dm-btn.style8 {
        margin-top: var(--space-box);
    }
}

/* 23. RELATED SERVICES */
.related-services {
    border-radius: 5px;
    align-items: center;
    border: 1px solid #eaeaf0;
    background-color: var(--gray-color);
    padding: 25px 30px 25px 30px;
}
.related-services .title {
    display: flex;
    align-items: center;
    color: var(--title-color);
    font-size: var(--medium-span);
    font-family: var(--title-font);
    font-weight: 600;

}

.related-services .title i{
    display: flex;
    margin-right: 5px;
    color: var(--accent-color);
}
.related-services ul {
list-style: none;
    margin: var(--space-box) 0 0 0;
    padding: 0;

}
.related-services li {
      margin: 10px 0px;
  
}
.related-services li:last-child {
      margin: 10px 0px 0px 0px;
  
}
.related-services li a {
    background: var(--white-color);
    border-radius: 5px;
    font-family: var(--title-font);
    font-weight: 600;
    color: #787c83;
    width: 100%;
    display: block;
    padding: 5px 5px 5px 15px;
}
.related-services li a:hover {
    background: var(--theme-color);
    color: var(--white-color);
}
.related-services > ul > li > a:before {
    content: "\f105";
    font-family: var(--icon-font);
    font-weight: 400;
    margin: 0 10px 0 0;
}

/* 24. RAZNOVIDNOSTY */
.raznovidnost-sec {
}
.raznovidnost-slider {
}
.raznovidnost {
box-shadow: 0px 0px 10px rgba(125, 125, 125, 0.2);
    border-radius: 10px;
    padding: var(--space-box);
    border: 2px solid #eff2fb;
    text-align: center;
    margin: 0 10px;
    position: relative;
    background: var(--white-color);
}
.raznovidnost:before {
    content: "";
    position: absolute;
    left: 40px;
    bottom: 0;
    height: 3px;
    width: calc(100% - 80px);
    background-color: var(--theme-color);
}
.raznovidnost p{
    margin-bottom: var(--space-box);
}


.raznovidnost .raznovidnost-img {
    overflow: hidden;
    border-radius: 10px;
    margin: 0 0 var(--space-box) 0;
}

.raznovidnost .raznovidnost-img img {
    transform: scale(1);
    transition: all ease 0.4s;
    max-height: 170px;
    object-fit: cover;
    width: 100%;
}

.raznovidnost .raznovidnost-title a{
   display: block;
    align-items: center;
    color: var(--title-color);
    font-size: var(--medium-span);
    font-family: var(--title-font);
    font-weight: 600;
    margin-bottom: 10px;
}
.raznovidnost .raznovidnost-title a:hover{
    color: var(--accent-color);
}

.raznovidnost:hover .raznovidnost-img img {
    transform: scale(1.2);
}

@media (min-width: 1199px) {
    .raznovidnost-slider {
        max-width: 775px;
    }
}


/* CONTACT FORM 7 */
form {
    position: relative;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
  padding: 0.2em 0.5em !important;
  font-size: var(--mini-span);
    color: var(--title-color);
  line-height: 1.4;
  background: #fff;
  text-align: center;
  position: absolute;
    border-radius: 3px;
  border: 2px solid #00a0d2;
}
.zayavka .wpcf7 form .wpcf7-response-output {
bottom:-40px
}


/* 25. FIX CONTACTS */

#open-contacts {
        font-size: 40px;
    color: var(--title-color);
    opacity: 0.3;
    line-height: 1;
    position: fixed;
    right: 20px;
    transform: translateY(-50%);
    top: 50%;
    z-index: 999;
    cursor: pointer;
      transition: .3s all ease;
}
#open-contacts:hover,#close-contacts:hover  {
 opacity: 1;
}
#open-contacts.no-visible, #close-contacts.no-visible {
    right: -100%;
}
#close-contacts {
  font-size: 25px;
  color: var(--title-color);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: -40px;
  border-radius: 36.5px;
  z-index: 999;
    cursor: pointer;
    transition: .3s all ease;
}

.fixed_contacts {
    position: fixed;
    right: -100%;
    transform: translateY(-50%);
    top: 50%;
    background: var(--theme-color);
    box-shadow: 5px 5px 10px #00000021;
    border-radius: 36.5px; 
    z-index: 999;
      transition: .3s all ease;
}

.fixed_contacts.active {
    right: 20px;
     transition: .3s all ease;
}
.fixed_contacts .relative{
    position: relative; 
}


.fixed_contacts a{
	display: block;
	padding: 15px;
    line-height: 1;
	transition: 0.3s;
	border-bottom: 1px solid #d3acb7;
}
.fixed_contacts .first{
	padding-top: 20px;
	border-top-left-radius: 36.5px;
	border-top-right-radius: 36.5px;
    border-top: 0px;
}
.fixed_contacts a:last-child{
	padding-bottom: 20px;
	border-bottom-right-radius: 36.5px;
	border-bottom-left-radius: 36.5px;
	border-bottom: none;
}
.fixed_contacts a:hover{
	background: var(--white-color);
}
.fixed_contacts a i{
	transition: 0.3s;
    font-size: 20px;
    color: var(--white-color);
}
.fixed_contacts a:hover i{
	transition: 0.3s;
        color: var(--theme-color);
}

@media only screen and (max-width: 992px){
    #close-contacts {
    font-size: 25px;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: -35px;

    }
    #open-contacts {
    right: 5px;
    }
.fixed_contacts.active  {
    right: 10px;
    }
    .fixed_contacts a {
padding: 15px 10px;
    }
    .fixed_contacts a i {
    font-size: 17px;
    }
    .fixed_contacts .first {
    padding-top: 15px;
    }
    .fixed_contacts a:last-child{
	padding-bottom: 15px;
}
}
