/* fonts =========================  */

/* roboto-regular - cyrillic_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/roboto-v47-cyrillic_latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700 - cyrillic_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/roboto-v47-cyrillic_latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-regular - cyrillic_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/ubuntu-v20-cyrillic_latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ubuntu-700 - cyrillic_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/ubuntu-v20-cyrillic_latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* fonts end ========================= */

/* global styles start ========================= */
:root {
    --color-1: #ffa500;
    --colorTopHeader: #061d31;
    --TopHeaderTextColor: #fff;
    --TopHeaderIconColor: #fff;
    --servicesBgColor: #e8ecf6;
    --AboutBgColor: #fff;
    --Answers-to-questions: #fff;
    --footer: #061d31;
}

html {
    box-sizing: border-box;
}

*::after,
*::before,
* {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

header a,
footer a {
    text-decoration: none;
}

header ul,
footer ul {
    list-style: none;
}

.main ul li {
    margin-left: 17px;
}

a[class] {
    text-decoration: none;
}

body {
    font-family: 'Roboto',
        sans-serif;
    font-style: normal;
    color: #1B1818;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

input,
button,
textarea,
select {
    border: none;
    font: inherit;
    background-color: transparent;
}

button {
    text-align: left;
}

input:focus-visible {
    outline: transparent solid 1px;
}

img[class] {
    display: block;
}

img,
iframe,
video {
    max-width: 100%;
    height: auto;
}

a {
    display: inline-block;
}

/* class  */
.p-y {
    padding-top: 90px;
    padding-bottom: 90px;
}

.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.m-y {
    margin-top: 90px;
    margin-bottom: 90px;
}

.m-b {
    margin-bottom: 90px;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.left-content p:nth-child(1) {
    margin: 0;
}

/* class */

a {
    color: currentColor;
}

br {
    display: block;
    margin-bottom: 16px;
}

p {
    margin-top: 8px;
    margin-bottom: 16px;
}

h1,
h2,
h3,
h4,
h5 {
    margin-bottom: 15px;
}

address {
    font-style: normal;
}

/* background position start */

.align-right {
    background-position: center right;
}

.align-left {
    background-position: center left;
}

.align-center {
    background-position: center;
}

/* background position end */
/* global styles end =========================  */


/* header top start  ======================= */

/* animation phone icon  */
@keyframes icon {
    0% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(-8deg);
    }
}

.header-phone:hover i {
    animation: icon 0.5s linear 0.3s infinite;
}

/* animation phone icon end */

.header-top {
    position: relative;
    z-index: 16;
    min-height: 50px;
    background: var(--colorTopHeader);
    padding: 15px 0;
}

.header-top-row,
.header-top-row a {
    color: var(--TopHeaderTextColor);
    transition: .4s;
}

.header-top-row a:hover {
    text-decoration: underline;
}

.header-info-item {
    display: flex;
    column-gap: 12px;
    align-items: center;
    line-height: 1.1;
}

.header-info-item i {
    margin-top: 1px;
    color: var(--TopHeaderIconColor);
}

.header-top-row {
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    column-gap: 30px;
}

.header-bottom a {
    transition: .3s;
}

.header-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo  */
.header-logo {
    max-width: 220px;
    display: flex;
    height: 60px;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    max-height: 58px;
}

/* header top end  ======================= */

/* header bottom start  ======================= */
.header-bottom {
    position: relative;
    z-index: 123;
    background-color: #fff;
    box-shadow: 0 0 10px 0px rgba(64, 64, 64, 0.15);
}

/* header social icons ================================= */

.header-social-link-anchor {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em;
    flex-shrink: 0;
}

.header-social-link {
    border-radius: 50%;
    transition: transform .2s ease;
}

.header-social-link-telegram {
    background-color: #2aabee;
}

.header-social-link-telegram img {
    position: relative;
    top: 1px;
    right: 1px;
}

.header-social-link-whatsapp {
    background-color: #25d366;
}

.header-social-link-whatsapp img {
    position: relative;
    left: 0.5px;
}

.header-social-link-vk {
    background-color: #4680c2;
}

.header-social-link-vk img {
    position: relative;
    right: 1px;
}

.header-social-link-vk img {
    margin-top: 3px;
}

/* header social icons end ============================== */

/* header social icon hover animation ======================= */

@keyframes tg {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 136, 204, 0.5);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

@keyframes wh {
    0% {
        box-shadow: 0 0 0 0px rgba(76, 175, 80, 0.5);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

@keyframes vk {
    0% {
        box-shadow: 0 0 0 0px rgba(70, 128, 194, 0.5);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

.header-social-link-telegram:hover {
    animation: tg 1.4s infinite;
}

.header-social-link-whatsapp:hover {
    animation: wh 1.4s infinite;
}

.header-social-link-vk:hover {
    animation: vk 1.4s infinite;
}

/* header social icon hover animation end ====================== */

/* animation  */
.header-social-link-telegram {
    animation: tg 1.9s 0.5s 1;
}

.header-social-link-whatsapp {
    animation: wh 1.9s 1.5s 1;
}

.header-social-link-vk {
    animation: vk 1.9s 2s 1;
}

/* animation end */

/* menu  */

.menu-top .menu-list {
    display: flex;
}

.menu-top .menu-item a {
    color: #1c1919;
    padding: 25px 20px;
    font-size: 18px;
    transition: 0.35s ease;
}

.menu-top .menu-item a:hover {
    color: var(--color-1);
}

/* menu end */

/* hidden menu-icon  */
@media (min-width: 993px) {

    .menu-icon {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        border: 0;
        padding: 0;
        white-space: nowrap;
        clip-path: inset(100%);
        clip: rect(0 0 0 0);
        overflow: hidden;
    }

}

/* dropdown menu start */

.menu-top .menu-item .sub-menu li>a:hover {
    background-color: transparent;
    color: var(--color-1);
}

.menu-top .sub-menu li>a {
    position: relative;
    margin-left: 15px;
    padding: 0;
    font-size: 16px;
    border-right: none;
}

@media (min-width: 1200px) {
    .menu-top {
        width: 67.2%;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-bottom-row .header-social-links {
        display: none;
    }

    .menu-top {
        width: 75.2%;
    }
}

/* page_content  */
@media (min-width: 992px) {
    .left-content {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .right-content {
        flex: 0 0 25%;
        max-width: 25%;
    }

}

.before_content {
    margin-bottom: 25px;
}

.after_content {
    font-size: 17px;
    margin-top: 28px;
}

/* page_content end  */


@media (min-width: 992px) {

    /* hamburger hidden  */
    .hamburger {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        border: 0;
        padding: 0;
        white-space: nowrap;
        clip-path: inset(100%);
        clip: rect(0 0 0 0);
        overflow: hidden;
    }

    /* hamburger end  */

    .menu-top>ul>li {
        position: relative;
    }

    .menu-top .sub-menu .menu-item {
        margin-left: 0;
        display: block;
        border-bottom: 1px solid #e6e6e6;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .menu-top .sub-menu .menu-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .menu-top .sub-menu {
        -webkit-box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.4);
        box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.4);
        line-height: 1.3;
        list-style: none;
        position: absolute;
        top: 100%;
        left: -20px;
        display: block;
        background-color: #fff;
        padding: 14px 14px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        z-index: 4;
        min-width: 222px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s ease;
        border-bottom: 4px solid var(--color-1);
        border-top: 4px solid var(--color-1);
    }

    .menu-top ul li:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .menu-item-has-children>a::after {
        content: '\F229';
        font-family: bootstrap-icons;
        display: inline-block;
        margin-left: 5px;
        vertical-align: middle;
        transition: 0.25s ease;
        font-size: 13px;
    }

    .menu-item-has-children>a:hover::after {
        content: '\F229';
        font-family: bootstrap-icons;
        color: var(--color-1);
        transform: rotate(-180deg);
        margin-top: -2px;
    }

    .menu-top .menu-list {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

/* dropdown menu end  */

/* top menu start */
@media (min-width: 992px) and (max-width: 1200px) {
    .menu-top .menu-item a {
        padding: 25px 17px;
    }

    .menu-top .menu-list li:nth-child(1) a {
        padding-left: 0;
    }

    .menu-top .menu-list li:last-of-type a {
        padding-right: 0;
    }
}

/* top menu end */

/* header bottom end  ======================= */


/* slide start ========================================================================= */

/* new */

.slide {
    height: 555px;
    position: relative;
    line-height: 1.5;
}

.slide-container {
    display: flex;
    height: 100%;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 56%;
}

.slide-image {
    width: 44%;
    margin-top: 49px;
}

.slide {
    display: flex;
    position: relative;
}

.slide .container {
    display: flex;
    justify-content: space-between;
}

/* slide animate end */

.slide-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.45;
}

.text-content {
    padding-right: 5%;
    height: 100%;
    max-width: 655px;
}


.slide-desc {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 650px;
}

.button a {
    background-color: var(--color-1);
    display: inline-block;
    padding: 18px 32px 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 33px;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}

.button a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.25s ease;
}

.button a:hover::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
}

/* btn animation  start */
.button a::before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
    left: -20%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.4)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    -webkit-animation: flareAnimation 2s infinite linear;
    animation: flareAnimation 2s infinite linear;
}

@-webkit-keyframes flareAnimation {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}

@keyframes flareAnimation {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}


/* btn animation end */

/* slide  */
.slider {
    background-image: linear-gradient(90deg, var(--colorSlider1) 33%, var(--colorSlider2) 60%);
}

.slide {
    text-align: left;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-height: 460px;
}

.slide {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

/* slide height 600 */
/* slide end ========================================================================= */


/* services */
.section-heading {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
}


.services {
    background-color: var(--servicesBgColor);
}

.services .row {
    column-gap: 2%;
    row-gap: 27px;
}

.section-heading i {
    color: var(--color-1);
    display: inline-block;
    margin-right: 10px;
}

.item {
    position: relative;
    border-radius: 15px;
    width: 32%;
    background-color: #fff;
    transition: 0.6s;
    overflow: hidden;
}

.item-content-img {
    height: 210px;
    width: 100%;
    object-fit: cover;
}

.item-content {
    padding-left: 30px;
    margin-bottom: 26px;
    padding-right: 30px;
}

.item-text-box {
    padding-right: 23px;
    margin-bottom: 15px;
    margin-top: 0;
    line-height: 1.5;
    font-size: 18px;
    min-height: 54px;
}

.item-wrap {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.item:hover .item-image {
    transition: 0.6s;
    transform: rotateY(-360deg);
}

.item-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background-color: var(--color-1);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 100%;
    padding-top: 20px;
    padding-right: 20px;
}

.item-image {
    max-width: 50px;
    height: 40px;
}

.price {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: var(--color-1);
    display: block;
    margin-bottom: 10px;
}

.item-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.315789473684211;
    margin-bottom: 10px;
}

.read_more {
    color: var(--color-1);
    font-family: 'Ubuntu', sans-serif;
    display: inline-block;
    transition: .3s;
    text-transform: uppercase;
}

.item-content {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.read_more_wrap i {
    transition: .3s;
    font-size: 17px;
    color: var(--color-1);
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -1px;
}

.read_more:hover i {
    margin-left: 15px;
}

.read_more_wrap {
    display: flex;
    align-items: center;
    gap: 5%;
}

.read_more_wrap .btn {
    font-size: 16px;
    padding: 13px 29px 12px;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.button-wrapper .btn {
    display: flex;
    column-gap: 10px;
}

/* services end */

/* .number-section  */

.number-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.number-section .container {
    z-index: 3;
    position: relative;
}

.number-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to left top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.number-section::before {
    z-index: 2;
}

.number-section .icon {
    width: 86px;
    height: 86px;
    border: 3px solid var(--color-1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
}

.number-section-row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.3%;
    row-gap: 15px;
}

.counting-wrapper {
    display: flex;
    align-items: flex-start;
    width: 24%;
    gap: 15px;
    min-height: 86px;
}

.counting-wrapper .icon img {
    max-height: 51px;
}

.number-section .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    min-height: 86px;
}

.number-section .content p {
    font-size: 17px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0;
    margin-top: 0;
    font-family: 'Ubuntu', sans-serif;
}

.number-section .count-description {
    font-size: 44px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    line-height: 0.7;
    color: var(--color-1);
}

/* .number-section end  */

/* accordion */

#accordion dt:first-child {
    margin-top: 0;
}

#accordion dt {
    border-color: #dee0e1;
    border-radius: 5px;
    background: #F6F8FA;
    position: relative;
    z-index: 19;
}

dl {
    margin-top: 0;
    margin-bottom: 20px;
}

#accordion dt {
    border-color: #dee0e1;
    border-radius: 5px;
    background: #F6F8FA;
}

#accordion dt {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    color: #031633;
    padding: 17px 18px 17px 65px;
    margin-bottom: 0;
    margin-top: 14px;
    cursor: pointer;
    border: 1px solid #dee0e1;
}

#accordion dt::before {
    content: "\F282";
    font-family: bootstrap-icons;
    position: absolute;
    top: 50%;
    transform: translateY(-30%);
    left: 16px;
    width: 30px;
    height: 30px;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    margin-top: -5px;
    border-color: #dee0e1;
    background: var(--color-1);
    border-radius: 50%;
    transition: 0.25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

#accordion dt.active::before {
    content: "\F286";
    line-height: 14.5px;
}

#accordion dd {
    padding: 25px;
    border: 1px solid #dee0e1;
    border-top: 0;
    font-size: 15px;
    line-height: 26px;
    color: #828282;
    margin-bottom: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
    top: -5px;
    z-index: 17;
    background-color: #fff;
}

#faq .row {
    gap: 30px;
    align-items: flex-start;
}

#faq {
    background-color: var(--Answers-to-questions);
}

dd.accordion-content {
    display: none;
}

.faq-content,
.right-section {
    width: calc(50% - 15px);
}

.right-section {
    max-height: 370px;
    border-radius: 5px;
    overflow: hidden;
}

.right-section img {
    min-height: 370px;
}

/* accordion end */
.services-button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.services-button a {
    border: 2px solid var(--color-1);
    color: var(--color-1);
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    height: 50px;
    text-decoration: none;
    border-radius: 50px;
    line-height: 1.4;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    transition: .3s;
}

.services-button a:hover {
    background-color: var(--color-1);
    color: #fff;
}

/* btn animation  start */
.btn {
    cursor: pointer;
    background-color: var(--color-1);
    display: inline-block;
    padding: 20px 36px 19px;
    color: #fff;
    text-decoration: none;
    border-radius: 33px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
    left: -20%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.4)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: btnAnimation 2s infinite linear;
}

@keyframes btnAnimation {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}

/* btn animation end */

/* btn hover  */
.btn::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.25s ease;
}

.btn:hover::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
}

/* btn hover end  */

/* questions  */
.questions {
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 8;
}

.questions::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    background: linear-gradient(to left top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.questions .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.questions-title span {
    color: var(--color-1);
}

.questions-title {
    margin-bottom: 15px;
}

.questions-text {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 21px;
}

.questions #button {
    cursor: pointer;
    background-color: var(--color-1);
    display: inline-block;
    padding: 20px 36px 19px;
    color: #fff;
    text-decoration: none;
    border-radius: 33px;
    text-transform: uppercase;
}

.questions .number {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: -37px;
}

.questions .number i {
    color: var(--color-1);
    display: inline-block;
    margin-right: 10px;
    font-size: 27px;
    vertical-align: middle;
    animation: icon 0.5s linear 0.3s infinite;
}

.questions .number a {
    font-weight: 700;
    font-size: 30px;
    font-family: 'Ubuntu', sans-serif;
    text-decoration: none;
}

/* questions end  */

/* About START  */
.About {
    background-color: var(--AboutBgColor);
}

.About .row {
    gap: 30px;
}

.content-wrapper {
    line-height: 1.4;
    font-size: 17px;
}

.content-wrapper p {
    margin-bottom: 20px;
    margin-top: 0;
}

.content-wrapper,
.Ouradvantages-wrapper {
    width: calc(50% - 15px);
}

.Ouradvantages-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 28px;
}

.OurAdvantages-item {
    max-width: 100%;
    width: 100%;
    display: flex;
}

.O-item-title {
    margin-bottom: 10px;
    color: #222;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    line-height: 25px;
}

.O-item-desc {
    color: #3E3E3E;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
}

.o-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--color-1);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}

.o-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.O-img {
    width: 45px;
    height: auto;
}

.OurAdvantages-item:hover .O-img {
    transform: rotateY(-360deg);
    transition: 0.6s;
}

/* About END  */

/* footer  start */
.footer-content .row {
    display: flex;
    justify-content: space-between;
}

.footer-item-1 {
    flex: 0 0 25%;
    max-width: 25%
}

.footer-item-2 {
    flex: 0 0 33.3%;
    max-width: 33.3%;
}

.footer-item-2 ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 12px;
}

.footer-item-2 .menu-item a {
    transition: .3s;
    border: 1px solid #203548;
    color: #d5d5d5;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}

.footer-item-3 {
    flex: 0 0 50%;
    max-width: 50%;
}

.footer-item-4 {
    flex: 0 0 25%;
    max-width: 25%;
}

.f-tell::before {
    content: "\f5b4";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: bootstrap-icons;
    color: var(--color-1);
}

.f-email::before {
    content: "\f32c";
    position: absolute;
    left: 0;
    top: 0;
    font-family: bootstrap-icons;
    color: var(--color-1);
}

.f-adr::before {
    content: "\f3e7";
    position: absolute;
    left: 0;
    top: -1px;
    font-family: bootstrap-icons;
    color: var(--color-1);
}

.f-time::before {
    content: "\F293";
    position: absolute;
    left: 0;
    top: -1px;
    font-family: bootstrap-icons;
    color: var(--color-1);
}

.f-contacts-item {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #d5d5d5;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 26px;
}

.footer-item a:focus,
.footer-item a:focus-visible {
    color: #fff;
}

div.f-time {
    margin-bottom: 0;
}

a.f-contacts-item:hover {
    text-decoration: underline;
}

footer .menu-item {
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    color: #d5d5d5;
    position: relative;
    transition: .2s;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

#footer .menu-item:hover a {
    color: var(--color-1);
}

.footer-content-title {
    text-transform: uppercase;
    font-size: 21px;
    line-height: 27px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 24px;
}

.footer-logo {
    margin-top: -5px;
    margin-bottom: 17px;
}

.footer-text {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-style: italic;
    color: #d5d5d5;
    margin-bottom: 14px;
    width: 85%;
}

.footer-social {
    display: flex;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border: 1px solid #203548;
    margin-right: 10px;
    border-radius: 6px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.4s ease;
    border-bottom: 4px solid var(--color-1);
    width: 0;
}

.footer-social a:hover::after {
    border-bottom: 4px solid var(--color-1);
    width: 100%;
}

#footer {
    background-color: var(--footerBgColor);
}

.footer-content {
    padding: 50px 0 0;
}

.f-menu2 .f-menu-item {
    display: inline-block;
    background: none;
    padding-left: 0;
    margin-bottom: 5px;
}

.f-menu2 .f-menu-item:hover {
    margin-left: 0;
}

.footer-content .container {
    border-bottom: 1px solid #203548;
    padding-bottom: 50px;
}

.footer-title {
    font-size: 16px;
    line-height: 36px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 29px;
}

.footer-btn {
    font-size: 14px;
    line-height: 36px;
    font-weight: 400;
    color: #ffffff;
    position: relative;
    padding: 5px 20px 4px 40px;
    background-color: var(--color-1);
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 4px;
}

.footer-btn:hover {
    background-color: var(--color-1);
}

.footer-list {
    list-style: none;
    color: #fff;
}

.footer-list li {
    list-style: none;
    margin-top: 20px;
    position: relative;
    padding-left: 33px;
}

.text-right {
    text-align: right;
}

.footer-copy {
    background-color: var(--footerBgColor);
    color: #ffffff;
    padding: 18px 0 18px;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: #ffffff;
}

.footer-copy .row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-copy a {
    text-decoration: underline;
    opacity: 0.74;
}

.footer-copy span {
    opacity: 0.74;
}

.footer-copy a:hover {
    color: var(--color-1);
    opacity: 1;
}

#footer {
    background-color: var(--footer);
    color: #d5d5d5;
}

#footer li a {
    color: #d5d5d5;
}

/* footer end  */

/* price */
.elements-list-item {
    width: 100%;
    background: url(../img/icons/d.svg) 0 calc(100% - 6px) repeat-x;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
}

.section-subtitle {
    font-size: 25px;
    font-weight: 400;
}

.p .title-wrap {
    justify-content: space-between;
    border-bottom: 3px solid var(--color-1);
    margin-bottom: 15px;
}

.p .title-wrap div {
    font-size: 25px;
}

.page_inner {
    background-color: var(--page_inner);
}

/* price end */

/* menu fixed  start */

@keyframes menu_animation {
    from {
        margin-top: -12px;
    }

    to {
        margin-top: 0;
    }

}

.header-bottom-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: #fff;
    animation: menu_animation .9s ease 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-bottom .menu-item a {
    transition: padding-top .1s, padding-bottom .1s, color .3s;
}

.header-bottom-fixed .menu-item a {
    padding-top: 21px;
    padding-bottom: 21px;
}

.header-bottom-fixed .menu-top .sub-menu {
    top: 100%;
}

/* menu fixed end */

/* case-section start */
.case-section {
    width: 100%;
    overflow: hidden;
}

.case-section .image-bg {
    position: relative;
    z-index: 40;
}

.case-section {
    background-color: #fff;
}

.case-section .image-in {
    position: absolute;
    top: 21px;
    left: 20px;
    right: 20px;
    overflow: hidden;
    height: 256px;
}

.case-section .image-in img {
    z-index: 39;
    position: relative;
}

.case-section .case-section-inner {
    text-align: left;
    color: #000;
    border-radius: 20px;
    font-size: 20px;
    position: relative;
}

.case-section-inner .owl-nav {
    position: absolute;
    right: 0;
    top: -71px;
}

.case-section-inner .owl-nav [class*=owl-] {
    border: 2px solid var(--color-1);
    color: var(--color-1);
    background-color: transparent;
    font-size: 18px;
    line-height: 0.8;
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    border-radius: 5px;
}

.case-section-inner .owl-nav [class*=owl-]:hover {
    background-color: var(--color-1);
    color: #fff;
}


.section-one-case {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-two-case {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.case-section .img-wrapper {
    width: 500px;
}

.case-section .case-section-content {
    width: calc(100% - 600px);
}

.case-section .img-before {
    position: relative;
}

/* new  */
.introtext {
    font-size: 17px;
}

.case-section .block {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.list>li {
    padding-left: 25px;
    position: relative;
    list-style: none;
    font-size: 17px;
    margin-bottom: 10px;
}

.case-section .case-section-title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.introtext-title {
    font-size: 17px;
    font-weight: 700;
}


.list>li:before {
    content: "\F633";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    font-family: bootstrap-icons;
    color: var(--color-1);
    font-size: 17px;
}

.btn:hover {
    color: #fff;
}

.case-section .btn {
    font-size: 16px;
    margin-top: 18px;
}

.case-section {
    padding-bottom: 60px;
    background-repeat: repeat;
    background-position: center;
}

/* case-section end */

/* modal  ======================================= */

.overlay1,
.overlay2,
.overlay3,
.overlay4,
.overlay5 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, .56);
    z-index: 9999;
}

.modal-1,
.modal-2,
.modal-3,
.modal-4,
.modal-5 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 30px 30px 2px 30px;
    width: 365px;
    box-sizing: border-box;
}

.modal-close-icon {
    position: absolute;
    top: 0;
    right: -34px;
    font-size: 40px;
    line-height: 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.35s ease;
    opacity: 0.8;
}

.modal-close-icon:hover {
    opacity: 1;
}

.modal__subtitle,
.modal-title {
    color: #393939;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.modal__descr {
    color: #393939;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

#callback input.button_submit,
#order input.button_submit {
    position: relative;
    width: 100%;
    font-size: 18px;
    text-transform: inherit;
    font-weight: 500;
    color: #fff;
    padding: 15px 0 15px 0;
    height: auto;
    background-color: var(--color-1);
    text-align: center;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    outline: 0;
    border: 0;
    margin-bottom: 5px;
}

#callback input.button_submit:active,
#order input.button_submit:active {
    box-shadow: none;
}

/* hover .button_submit start */

.button_submit:hover {
    opacity: 0.9;
}

/* hover .button_submit end */

.wpcf7-not-valid-tip {
    transform: translateY(-12px);
}

.feed-form input,
.adress-delivery {
    background-color: #fff;
    height: 50px;
    margin-bottom: 15px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    display: block;
    border: 1px solid #cccccc;
    color: #393939;
    font-family: 'Roboto', sans-serif;
}

/* checkbox */
.checkbox {
    margin-bottom: 10px;
    display: block;
    box-sizing: content-box;
    position: relative;
}

.callback-checkbox {
    margin: 0px 0px 0px 0px;
    display: inline-block;
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin-right: 7px;
    position: static;
}

a.checkbox-text {
    text-decoration: underline;
}

.checkbox-text {
    font-size: 13px;
    font-weight: 400;
    color: #949494;
    display: block;
}

/* textarea */
.adress-delivery {
    min-height: 82px;
    resize: none;
    padding: 15px 20px;
    height: auto;
}

.overlay,
.overlay2,
#callback,
#order {
    display: none;
}

.feed-form label input {
    height: 100%;
}

/* modal  end ================================= */

/* custom Checkbox start ================================ */
#order #btn-submit:disabled,
#callback #btn-submit-2:disabled {
    background-color: #bbb;
    cursor: not-allowed;
}

.feed-form .callback-checkbox {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.feed-form .label {
    position: relative;
    display: block;
    cursor: pointer;
    margin-bottom: 10px;
}

.feed-form .callback-checkbox+.label:before {
    content: "";
    background: #efefef;
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 2px;
    left: 0;
    border-radius: 3px;
}

.feed-form .callback-checkbox:checked+.label:before {
    content: "\F633";
    font-family: bootstrap-icons;
    font-size: 19px;
    line-height: 1;
    color: #333;
}

.label .checkbox-text {
    margin-left: 30px;
    line-height: 1.3;
}

.label .checkbox-text a {
    color: #949494;
}

.label .checkbox-text a:hover {
    color: var(--color-1);
}

/* custom Checkbox  end ============================== */

/* Мультикнопка */
.multibutton.show-multibutton {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

div.multibutton {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease;
    transform: scale(0.7);
}

#multibutton {
    width: 57px;
    height: 57px;
    padding: 17px;
    background-size: 57%;
}

.call-1 {
    background-image: url(../img/call-1.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.icon-close {
    background-image: url(../img/icon-close.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.multibutton * {
    box-sizing: content-box;
}

.multibutton {
    font-family: Arial, sans-serif;
}

.whatsapp {
    background: #30d64f;
}

.viber {
    background: #7b519d;
}

.call {
    background: #ff2241;
}

.yellow {
    background: #ffce09;
}

.multibutton {
    z-index: 997;
    position: fixed;
    right: 30px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 70px;
    height: 70px;
    transition: 0.2s ease;
}

.MultiButton-open {
    width: auto;
    height: auto;
}

.MultiButton-open .multibutton__list {
    position: relative;
    top: auto;
    bottom: 10px;
    visibility: visible;
}

.MultiButton-open .multibutton__item {
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease;
    transform: scaleX(1) scaleY(1) translateY(0);
}

.multibutton__list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 13px;
    top: 80px;
    visibility: hidden;
    transition: 0.3s ease;
    list-style: none;
    padding: 0;
    margin: 0;
}

.multibutton__title {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 30px;
}

.multibutton__item {
    display: flex;
    align-items: center;
    margin: 4px 0;
    transform: scaleX(0.4) scaleY(0.4) translateY(150px);
    opacity: 0;
    visibility: hidden;
}

.multibutton__button {
    width: 70px;
    height: 70px;
    background-color: var(--colorMultibutton);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: animation_button 3s linear infinite;
    transition: all 200ms ease-out;
}

@keyframes animation_button {
    0% {
        box-shadow: 0 0 0 0 var(--colorMultibutton), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    40% {
        box-shadow: 0 0 0 13.62667px rgba(255, 255, 255, 0), 0 0 0 1px rgba(255, 255, 255, 0.7);
    }

    80% {
        box-shadow: 0 0 0 27.25333px rgba(255, 255, 255, 0), 0 0 0 13.62667px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 34.06667px rgba(255, 255, 255, 0), 0 0 0 27.25333px rgba(255, 255, 255, 0);
    }
}

.multibutton__button img {
    width: 57%;
    height: 57%;
    padding: 17px;
}

.multibutton__item .icon-1 {
    background: #00A6FB;
}

.multibutton__item .icon-2 {
    background: #ff2241;
}

.multibutton__item .icon-3 {
    background: #7b519d;
}

.multibutton__item .icon-4 {
    background: #30d64f;
}

.multibutton__icon {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.multibutton__icon img {
    width: 58%;
    height: 58%;
}

.multibutton__icon,
.multibutton__title {
    cursor: pointer;
}


.telegram-btn img {
    width: 75%;
    height: 75%;
}

.multibutton a:focus,
.multibutton a:hover {
    color: #fff;
    text-decoration: underline;
    outline: none;
}

/* Мультикнопка конец */

/* =====contacts page===== */

.page_content h1 {
    display: block;
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 26px;
    line-height: 1;
    text-transform: uppercase;
}

.page_content h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 26px;
}

.page_content a {
    text-decoration: none;
    color: inherit;
}

.page_content .catalog-item-button {
    color: #fff;
}

.page_contacts-row {
    display: flex;
    flex-wrap: wrap;
}

.top {
    width: 100%;
    max-width: 100%;
}

.right,
.left {
    width: 50%;
    max-width: 50%;
}

.map iframe {
    min-height: 300px;
}

.map {
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 60px;
}

.page_contacts .article-preview {
    margin-bottom: 10px;
}

.article-preview a {
    display: inline;
}

.article-preview .read-more {
    display: flex;
}

.page_contacts h1 {
    margin-bottom: 30px;
}

.page_contacts h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.contacts-block-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contacts-phone {
    line-height: 1.4;
}

.contacts-block-text {
    margin-bottom: 30px;
    padding-left: 22px;
    position: relative;
}

.contacts-adr {
    line-height: 1.4;
}

.contacts-adr::before {
    content: "\F3E7";
    position: absolute;
    left: 0px;
    top: -2px;
    color: var(--color-1);
    font-family: bootstrap-icons;
    font-size: 18px;
}

.contacts-phone::before {
    content: "\F5B4";
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--color-1);
    font-family: bootstrap-icons;
    font-size: 18px;
}

.contacts-time::before {
    content: "\F291";
    position: absolute;
    left: 0;
    top: -2px;
    font-family: bootstrap-icons;
    color: var(--color-1);
    font-size: 18px;
}

.contacts-email::before {
    content: "\F32C";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--color-1);
    font-family: bootstrap-icons;
    font-size: 18px;
}

.contacts-email {
    padding-left: 27px;
}

.contacts-time {
    padding-left: 23px;
}

.contacts-phone a:hover,
.contacts-email a:hover {
    text-decoration: underline;
}


/* form  start */
.page_contacts .form-control {
    display: block;
    width: 100%;
    height: 45px;
    padding: 0 10px 0 15px;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #ccc;
    transition: all .3s;
}

.page_contacts textarea.form-control {
    height: auto;
    max-width: 100%;
    min-height: 110px;
    resize: none;
    padding-top: 10px;
    margin-bottom: 17px;
}

.page_contacts .form-control:focus {
    border: 1px solid var(--color-1);
}

.feedback-btn {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 35px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.25s ease;
    background-color: var(--color-1);
}

.feedback-btn:hover {
    opacity: 0.9;
}

.page_contacts .agreement {
    margin-bottom: 15px;
    color: #747474;
}

.page_contacts .agreement label {
    padding-left: 7px;
    display: inline-block;
    position: relative;
}

.page_contacts .form-group a {
    text-decoration: underline;
}

.page_contacts .wpcf7-spinner {
    display: block;
    position: relative;
    left: 43px;
    top: -43px;
}

.agreement .wpcf7-list-item {
    margin: 0;
}

.wpcf7-spinner {
    margin: 0 137px;
}

.wpcf7-list-item,
.wpcf7 form .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
    margin: -25px 0 0;
    border-radius: 5px;
}

.wpcf7 form .wpcf7-response-output {
    margin-bottom: 15px;
}

.wpcf7-form p {
    margin: 0;
}

/* form end  */

.m-bottom {
    margin-bottom: 0.5rem;
}

/* =======================contacts page end==================================== */



/* ============ top-content ============== */
/* breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-align: center;
}

.breadcrumbs>span {
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-left: 10px;
}

.breadcrumbs>span svg {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.breadcrumbs a {
    transition: .3s;
}

.breadcrumbs a:hover {
    color: var(--color-1);
}

/* breadcrumbs end  */

.top-content {
    min-height: 180px;
    color: #fff;
    background-image: url(../img/image/slajder1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px;
}

.top-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 34;
    background: linear-gradient(to left top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.top-content .container {
    z-index: 35;
    position: relative;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.top-content h1 {
    margin: 0;
}

/* ============= top-content end ==============  */

/* ================ .page_content start ================== */
#Ouradvantages .Ouradvantages-wrapper {
    width: 100%;
    column-gap: 28px;
    row-gap: 40px;
}

#Ouradvantages .OurAdvantages-item {
    width: calc(50% - 14px);
}

.left-content img {
    margin: 5px 0;
}

.page_content-row {
    display: flex;
    flex-wrap: wrap;
}

.left-content {
    width: 100%;
    padding-right: 15px;
    font-size: 17px;
    line-height: 1.4;
}

.right-content {
    padding-left: 15px;
}

.Banner {
    border-radius: 3px;
    margin-top: 30px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border: 4px solid var(--color-1);
}

.Banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 26;
    background: linear-gradient(to left top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.Banner-content {
    padding: 60px 40px 60px;
    line-height: 1.4;
    position: relative;
    z-index: 27;
}

.Banner-text {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.Banner-text span {
    color: var(--color-1);
}

.Banner .btn {
    font-size: 14px;
    font-weight: 700;
    padding: 0 20px;
    min-height: 50px;
    border-radius: 6px;
}

/* ============= .page_content end =================== */

/* right menu  start */
.right-content .menu-item {
    margin-left: 0;
}


.widget-categories li:last-child a {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.widget-categories li,
.widget-categories .widget-title {
    position: relative;
    display: block;
    margin-bottom: 3px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.widget-categories li a,
.widget-categories .widget-title {
    transition: all 500ms ease;
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    background: #f3f3f3;
    padding: 11px 15px 14px 30px;
}

.widget-categories .widget-title {
    font-weight: 700;
}

.widget-categories .widget-title,
.widget-categories li a:hover,
.widget-categories li a.current {
    color: #fff;
    padding-left: 60px;
    background-color: var(--color-1);
}

.widget-categories .widget-title:before {
    position: absolute;
    content: "\F27E";
    font-family: bootstrap-icons;
    width: 21px;
    height: 15px;
    left: 30px;
    top: 12px;
    opacity: 1;
}

.widget-categories li a:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 14px;
    height: 1px;
    left: 30px;
    top: 28px;
    opacity: 0;
    transition: all 500ms ease;
}

.widget-categories li a:hover:before {
    opacity: 1;
}

/* right menu  end */


/* error-404 start */
.error-404 {
    min-height: 500px;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    font-size: 19px;
    line-height: 1.5;
}

.error-404 .page-content {
    margin-top: 20px;
}

.error-404 .btn {
    color: #fff;
    padding: 15px 25px;
    margin-top: 10px;
    font-size: 18px;
}

.error-404 .btn-bgcolor {
    border-radius: 5px;
    background-color: var(--color-1);
    transition: 0.5s;
}

.error-404 .btn-bgcolor:hover {
    opacity: 0.8;
}

/* error-404 end */


/* responsive  */
/* 1600 */
@media (max-width: 1600px) {

    .slider .swiper-button-next {
        right: 20px;
    }

    .slider .swiper-button-prev {
        left: 20px;
    }
}



/* 1366 */
@media (max-width: 1366px) {

    .slider .swiper-button-next,
    .slider .swiper-button-prev {
        display: none;
    }
}

/* min 1200  */
@media (min-width: 1200px) {

    .swiper-pagination {
        display: none;
    }

}

/* max 1200 */
@media (max-width: 1200px) {

    .item-content-img {
        height: 222px;
    }

    .slide .container {
        z-index: 15;
    }

    .text-content {
        max-width: 576px;
        padding-right: 0;
        width: auto;
    }

    .slide-image {
        width: auto;
        min-width: 431px;
    }

    .slide-image {
        border-radius: 0;
    }

    .slide {
        max-height: 415px;
    }

    .slide-title,
    .section-heading {
        font-size: 30px;
    }

    .slide-image {
        margin-top: 0;
    }

}

/* 768-1170 */
@media (min-width: 768px) and (max-width: 1170px) {
    .item-text-box {
        min-height: 0;
    }

    .services .row {
        justify-content: center;
    }
}

/* 1170 */
@media (max-width: 1170px) {

    /* number-section start  */
    .counting-wrapper {
        width: 47.4%;
    }

    .counting-wrapper br {
        display: none;
    }

    .number-section-row {
        row-gap: 30px;
    }

    .p-y {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .number-section .content {
        justify-content: center;
    }

    /* number-section end  */
    .item {
        position: relative;
        border-radius: 11px;
        display: flex;
        gap: 18px;
        width: calc(50% - 18px);
    }

    .item-title {
        max-width: 100%;
    }

    .content-wrapper,
    .Ouradvantages-wrapper {
        width: 100%;
    }
}

/* 1024 */

@media (max-width: 1024px) {

    .case-section .case-section-content {
        width: 100%;
    }

    .case-section .block {
        gap: 25px;
        flex-direction: column;
    }

    /* footer  */
    .footer-content-title {
        margin-bottom: 19px;
    }

    .footer-content .row {
        row-gap: 30px;
    }

    .footer-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* 992 */

@media (max-width: 992px) {
    .right-content {
        padding-left: 0;
        width: 100%;
    }

    .menu_right {
        display: none;
    }

    .Banner-content {
        padding: 30px;
    }


    /* mob menu start ======================================= */

    .header-bottom-row {
        min-height: 77px;
        height: 100%;
        flex-wrap: wrap;
        gap: 12px;
        flex-direction: row;
        justify-content: space-between;
        padding-right: 38px;
    }

    .button-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        height: 38px;
        width: 38px;
        background-color: #e6e6e6;
        border-bottom-left-radius: 10px;
    }

    .hamburger {
        display: block;
        width: 20px;
        height: auto;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: #333;
        margin-bottom: 4px;
        transition: 0.5s all;
    }

    .hamburger span:last-of-type {
        margin-bottom: 0;
    }

    .hamburger-active .burger-line-1 {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .hamburger-active .burger-line-2 {
        display: none;
    }

    .hamburger-active .burger-line-3 {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .hamburger-active span {
        margin-bottom: -2px;
    }

    .menu-top .menu-list {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: auto;
        padding: 5px 0 0;
        background-color: #313131;
        transition: 0.5s all;
        z-index: 56;
        font-family: 'Roboto', sans-serif;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        display: none;
    }

    .menu-top {
        max-width: 100%;
    }

    .menu-top .sub-menu .menu-item {
        border-bottom: 1px solid rgb(60, 60, 60);
    }

    .menu-top .sub-menu .menu-item:last-child {
        border: none;
    }

    .menu-top .menu-list-active {
        display: block;
    }

    .menu-top .menu-item {
        text-align: left;
        line-height: 2.5;
    }

    .menu-top .menu-item a {
        color: #fff;
        font-size: 17px;
        font-weight: 700;
        font-family: 'Ubuntu', sans-serif;
        padding: 10px 15px;
    }

    .menu-top .menu-item a:hover {
        background-color: transparent;
    }

    .menu-top .menu-item a,
    .menu-top .menu-item:first-child a {
        border: 0;
    }

    /* mob menu end ==================================== */

    /* Mobile dropdown menu start */
    .sub-menu li>a::before {
        content: "\F280";
        font-family: bootstrap-icons;
        font-size: 11px;
        display: block;
        position: absolute;
        top: 14px;
        left: 2px;
    }

    .menu-top .menu-item ul a {
        color: #fff;
        font-size: 15px;
        font-weight: 400;
        padding: 10px 10px 10px 18px;
    }

    .menu-top .menu-item ul a:hover {
        color: var(--color-1);
    }

    .menu-top>ul>li a {
        transition: .2s ease-in-out;
        display: inline-block;
        line-height: 1.5;
    }

    .menu-top .menu-item a:hover,
    .menu-top .menu-item:first-child a:hover {
        color: var(--color-1);
    }

    .menu-item ul {
        display: none;
    }

    .menu-item-has-children {
        position: relative;
    }

    .menu-icon {
        position: absolute;
        top: 12px;
        right: 15px;
        display: block;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        width: 26px;
        height: 26px;
        transition: .2s ease-in-out;
        border-radius: 3px;
        background-color: rgb(19, 21, 30);
        border-radius: 3px;
        color: #fff;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-icon::after {
        content: "";
        display: block;
        background-image: url(../img/icons/plus.svg);
        background-repeat: no-repeat;
        background-position: center;
        height: 11px;
        width: 11px;
    }

    .icon-style::after {
        content: "";
        display: block;
        background-image: url(../img/icons/minus.svg);
        background-repeat: no-repeat;
        background-position: center;
    }

    .menu-link {
        min-width: 200px;
        display: inline-block;
    }

    .sub-menu {
        list-style: none;
        background-color: rgb(41, 41, 41);
    }

    .menu-top>ul>li {
        border-bottom: 1px solid rgb(41, 41, 41);
    }

    .menu-top>ul>li:last-child {
        border: none;
    }

    #wrapper .b-bottom {
        border: none;
    }
}

/* 992 end */

/* 960 start */
@media (max-width: 960px) {
    .error-404 .btn {
        font-size: 15px;
    }

    #Ouradvantages .OurAdvantages-item {
        width: 100%;
    }

    .slide-image {
        min-width: 380px;
        margin-top: 101px;
    }

    .faq-content,
    .right-section {
        width: 100%;
    }

    .right-section img {
        min-height: auto;
    }

    .right-section {
        display: flex;
        align-items: center;
    }

    #faq .row {
        gap: 15px;
    }

    #accordion dd {
        padding: 15px;
    }
}

/* 800 start */
@media (max-width: 800px) {

    .slide-title,
    .section-heading {
        font-size: 28px;
    }

    .slide-desc {
        font-size: 18px;
    }

    .header-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-phone {
        flex-shrink: 0;
    }

}

/* 800 end */

/*  768 start ======================= */
@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 14px;
        align-items: flex-start;
    }

    .breadcrumbs>span {
        margin-right: 5px;
        margin-left: 5px;
        text-align: left;
    }

    .top-content {
        padding-left: 0;
        padding-right: 0;
    }

    .top-content .container {
        padding: 0 9px;
    }

    /* =====contacts page===== */
    .left,
    .right {
        width: 100%;
        max-width: 100%;
    }

    .map,
    .left {
        margin-bottom: 45px;
    }

    .contacts-time {
        margin-bottom: 0;
    }

    /* =====contacts page end===== */

    .item {
        width: 100%;
    }

    .item-text-box {
        margin-bottom: 20px;
        min-height: 0;
    }

    .questions {
        text-align: center;
    }

    .questions .number i {
        font-size: 22px;
    }

    .questions .number a {
        font-size: 25px;
    }

    .questions #button {
        padding: 19px 30px 17px;
    }

    .questions-text {
        font-size: 18px;
    }

    .number-section .icon {
        width: 79px;
        height: 79px;
    }

    .number-section .content {
        gap: 11px;
    }

    .number-section .count-description {
        font-size: 37px;
    }

    .number-section .content {
        justify-content: flex-start;
        padding-top: 2px;
    }

    .number-section-row {
        column-gap: 5%;
        row-gap: 25px;
    }

}

/* 768 end ================================== */

/* 768  */
@media (max-width: 768px) {
    .slide .container {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .slider {
        background-image: linear-gradient(180deg, var(--colorSliderMobile1) 33%, var(--colorSliderMobile2) 60%);
    }

    .button.slide-button {
        text-align: center;
    }

    .slide-image {
        max-width: 300px;
        width: 100%;
        min-width: auto;
        margin-top: 0;
        position: static;
    }

    .slide {
        padding: 30px 0;
        max-height: 100%;
        height: 100%;
    }

    .text-content {
        width: 100%;
        height: auto;
    }

    .slide-title {
        line-height: 1.2;
        text-transform: none;
    }
}

/* 750 */
@media (max-width: 750px) {
    .footer-copy .row {
        column-gap: 25px;
        row-gap: 8px;
    }
}

/* 650 */
@media (max-width: 650px) {

    .slide-title {
        margin-bottom: 8px;
        font-size: 27px;
        line-height: 1.3;
    }

    .section-heading {
        font-size: 27px;
    }

    .text-content {
        width: 100%;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
    }

    .slide-desc p {
        margin-bottom: 0;
    }

    .slide-desc {
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.3;
    }

    .page_content h2 {
        font-size: 22px;
        margin-bottom: 22px;
    }
}

/* 600 */
@media (max-width: 600px) {
    .case-section .img-wrapper {
        width: 100%;
    }

    .item {
        width: 100%;
    }

    /* number-section start  */
    .counting-wrapper {
        width: 100%;
    }

    .p-y {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .number-section .icon {
        width: 76px;
        height: 76px;
    }

    /* number-section end  */
    .elements-list-item {
        font-size: 14px;
        align-items: center;
        justify-content: space-between;
        gap: 5%;
    }

    .elements-list-left,
    .elements-list-right {
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 14px;
        font-weight: 700;
        font-family: 'Ubuntu', sans-serif;
    }

    .elements-list-right {
        width: auto;
    }

    .elements-list-left {
        width: 60%;
    }

    /* Мультикнопка */
    .multibutton__button {
        width: 55px;
        height: 55px;
    }

    .multibutton__list {
        right: 5px;
    }

    .multibutton__icon {
        width: 40px;
        height: 40px;
    }

    .multibutton {
        width: 55px;
        height: 55px;
    }

    .MultiButton-open {
        width: auto;
        height: auto;
    }

    .multibutton__button img {
        padding: 14px;
    }

    /* Мультикнопка конец */
}

/* 600  */
@media(max-width: 600px) {

    /* modal start */
    .modal-close-icon {
        top: -28px;
        right: -1px;
    }

    /* modal end */
}

/* 576  */
@media(max-width: 576px) {

    /* page_contacts form  */
    .page_contacts .agreement {
        position: relative;
    }

    .page_contacts .agreement input {
        position: absolute;
        top: 4px;
        left: 0;
    }

    .page_contacts .agreement label {
        padding-left: 23px;
    }

    .page_contacts .form-control {
        font-size: 15px;
    }

    .page_contacts .agreement label {
        font-size: 14px;
    }

    .page_contacts .agreement .wpcf7-form-control-wrap {
        position: inherit;
    }

    /* page_contacts end  */

    .multibutton {
        bottom: 99px;
    }
}

/* 480  */
@media (max-width: 480px) {
    .section-heading i {
        display: none;
    }

    .case-section .image-in {
        height: 200px;
    }
}

/* 458  */
@media (max-width: 458px) {
    .top-content {
        min-height: 150px;
    }

    .slide .container,
    .slide-image {
        height: 50%;
    }

    .slide-title {
        font-size: 23px;
        line-height: 1.2;
    }

    .section-heading {
        font-size: 25px;
    }

    .slide {
        padding-top: 20px;
        padding-bottom: 25px;
    }

    .slide-image {
        position: static;
        padding: 15px 15px 0 15px;
    }

    .slide {
        height: auto;
        max-height: 100%;
        align-items: flex-end;
        flex-direction: column-reverse;
    }

    .button a {
        padding: 16px 32px 14px;
    }

    .slide-desc {
        line-height: 1.4;
    }

    .text-content {
        justify-content: center;
        align-items: center;
    }

    .slide::before {
        background-color: transparent;
    }

    .button-wrap {
        top: 0;
        width: 45px;
        height: 45px;
    }

    .hamburger {
        width: 25px;
    }

    /* social icons  */
    .header-social-links {
        display: none;
    }

    .block-active {
        display: flex;
    }

    .header-social-link-anchor {
        width: 35px;
        height: 35px;
    }

    .header-social-link-whatsapp img {
        left: 0;
    }

    /* social icons  end */

    .header-bottom-row {
        align-items: center;
        justify-content: center;
        padding-right: 0;
        gap: 0;
    }

    .header-bottom-row {
        padding-top: 5px;
        padding-bottom: 5px;
        flex-direction: column;
    }

    .header-bottom-fixed .header-social-links {
        display: none;
    }

    .header-bottom-fixed .block-active {
        display: flex;
        padding-bottom: 3px;
    }

    .header-bottom-fixed .header-bottom-row {
        padding: 0;
    }

    .header-bottom-row {
        min-height: 59px;
    }

    .header-top-row .address,
    .header-info-item.email {
        display: none;
    }

    .header-right {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

}

/* 420  */
@media (max-width: 420px) {
    .read_more_wrap {
        row-gap: 15px;
        flex-direction: column;
    }

    .read_more_wrap .btn,
    .read_more_wrap .read_more {
        width: 100%;
        text-align: center;
    }

    .read_more_wrap .btn {
        padding: 16px 29px 12px;
    }

    .item-content {
        padding-left: 22px;
        padding-right: 22px;
    }

    .item-title {
        font-size: 21px;
    }

    .O-item-title {
        font-size: 19px;
    }
}

/* 395 */
@media (max-width: 395px) {

    /* modal start  */
    .modal {
        padding: 30px 25px 2px 25px;
        max-width: 354px;
    }

    /* modal end  */

    .error-404 .btn {
        font-size: 14px;
        padding: 15px;
    }

    .px-15 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* 390  */
@media (max-width: 390px) {
    .item-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .item-title {
        font-size: 20px;
    }
}


/* 385  */
@media (max-width: 385px) {
    .modal {
        max-width: 330px;
    }
}

/* 382  */
@media (max-width: 382px) {
    .item-content {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* 373  */
@media (max-width: 373px) {
    .item-title {
        font-size: 18px;
    }

    .item-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .case-section .image-in {
        height: 185px;
    }
}

/* 365  */
@media (max-width: 365px) {

    .slide-title,
    .section-heading {
        font-size: 23px;
    }

    .OurAdvantages-item {
        row-gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .o-img-wrap {
        margin-right: 0;
    }
}

/* 360  */
@media (max-width: 360px) {

    .button-wrap {
        width: 35px;
        height: 35px;
    }

    .hamburger {
        width: 20px;
    }
}

/* 360 */
@media (max-width: 360px) {

    .modal {
        width: 300px;
    }
}

/* 350  */
@media (max-width: 350px) {
    .case-section .image-in {
        height: 160px;
    }
}

/* 330  */
@media (max-width: 330px) {
    .item-title {
        font-size: 17px;
    }

    .item-text-box {
        font-size: 16px;
    }
}

@media (max-width: 330px) {

    .modal {
        width: 290px;
    }
}