@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
}

body {
    background: #000000;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    line-height: 1em;
    letter-spacing: -0.5px
}

p {
    padding: 0;
    margin: 0;
    line-height: 1.2em;
    letter-spacing: -0.3px;
}

section {
    position: relative;
    padding: 80px 0;
}

a,
.slick-slide {
    text-decoration: none !important;
}



a {
    transition: all 0.3s;
}



:root {
    --main-color: #16C278;
    --bg-color: #111111;
}



.default-content {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

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

.up-btn {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    z-index: 2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #000;
    transition: 0.3s;
}

.up-btn img {
    width: 60%;
    height: 60%;
    animation: up 1s infinite;
}

.up-btn:hover {
    background: var(--main-color);
}

body.modal-open {
    overflow: hidden;
}

.h-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10;
    padding-top: 14vh;
    display: none;
}
.h-modal.active{
    .advice{
        opacity: 0;
    }
    .h-modal-accept{
        display: block;
    }

}
.h-modal-accept{
    position: absolute;
    left: 20px;
    right: 20px;
    top: 40px;
    z-index: 1;
    max-width: 50%;
    display: none;
}

.h-modal-content {
    width: 900px;
    padding: 40px 20px;
    box-shadow: 0px 2px 2px 0px #00000040;
    border-radius: 10px;
    margin: auto;
    position: relative;
    max-width: calc(100% - 30px);
    color: #fff;
    overflow: hidden;
    background: var(--main-color);
}

.h-modal-content:after {
    content: "";
    display: block;
    background: #0E824F;
    height: 500px;
    width: 500px;
    position: absolute;
    right: -10%;
    top: calc(50% - 250px);
    border-radius: 50%;
    animation: moreMidth 4s infinite;

}

@keyframes moreMidth {
    0% {
        transform: scale(1.0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.0);
    }
}

.h-modal-content-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 3;


}

.h-modal-content-close:hover {
    transform: scale(1.1);
}

.h-modal-content-close img {
    width: 80%;
    height: 80%;
}

.h-modal-title {
    line-height: 1;
    text-shadow: 1px 1px 2px #000;
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 39px;
}

.h-modal-text {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 1px 1px 2px #000;
}

.advice {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.advice-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2%;

}

.advice-row-item {
    width: 49%;
}

.advice-input input {
    outline: none !important;
    background: #fff;
    color: #222;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    border: none;
    width: 100%;
    height: 50px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.advice-input input:hover {
    border-color: var(--main-color);
}

.advice-input input:focus {
    border-color: var(--main-color);
}

.advice-form-sub {
    text-align: center;
}

.advice-form-sub input {
    border: 1px solid #fff;
    color: var(--main-color);
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid transparent;
    transition: 0.3s;
    width: 100%;
}

.advice-form-sub input:hover {
    background: var(--main-color);
    color: #fff;
    border-color: #fff;
}

.h-modal-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 40%;
}

.h-modal-img img {
    width: 100%;
}

/*loader*/

.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: #0A0A0A;
}

.preloader-body {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader {
    width: 150px;
    height: 150px;
    border: 1px #fff solid;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
}

.loader.custom-loader {
    border: medium none;
    left: 0;
    margin: 0 auto;
    right: 0;
}

.loader .loading {
    font-size: 8px;
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 14px;
    left: 0;
    top: 50%;
    margin-top: 14px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.loader .line {
    width: 10px;
    height: 2px;
    background: #fff;
    position: absolute;
}

.loader .line:nth-child(1) {
    left: 16px;
    top: 50%;
    margin-top: -1px;
}

.loader .line:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 33px;
    top: 33px;
}

.loader .line:nth-child(3) {
    top: 16px;
    left: 50%;
    width: 2px;
    height: 10px;
}

.loader .line:nth-child(4) {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 33px;
    top: 33px;
}

.loader .line:nth-child(5) {
    right: 16px;
    top: 50%;
    margin-top: -1px;
}

.loader .line:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 33px;
    bottom: 33px;
    background: #16C278;
}

.loader-circle-one {
    width: 138px;
    height: 138px;
    left: 5px;
    top: 5px;
    border: 1px #fff solid;
    border-radius: 50%;
    position: absolute;
    border-right-color: transparent;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader-circle-two {
    width: 126px;
    height: 126px;
    left: 5px;
    top: 5px;
    border: 1px transparent solid;
    border-radius: 50%;
    position: absolute;
    border-right-color: #16C278;
    -webkit-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite;
}

.loader .lines {
    position: absolute;
    width: 3px;
    height: 2px;
    background: #fff;
}

.loader .lines:nth-child(7) {
    -webkit-transform: rotate(22.5deg);
    -ms-transform: rotate(22.5deg);
    transform: rotate(22.5deg);
    left: 21px;
    top: 50px;
}

.loader .lines:nth-child(8) {
    -webkit-transform: rotate(67.5deg);
    -ms-transform: rotate(67.5deg);
    transform: rotate(67.5deg);
    left: 50px;
    top: 21px;
}

.loader .lines:nth-child(9) {
    -webkit-transform: rotate(112.5deg);
    -ms-transform: rotate(112.5deg);
    transform: rotate(112.5deg);
    right: 50px;
    top: 21px;
}

.loader .lines:nth-child(10) {
    -webkit-transform: rotate(157.5deg);
    -ms-transform: rotate(157.5deg);
    transform: rotate(157.5deg);
    right: 21px;
    top: 50px;
}

.loader .lines:nth-child(11) {
    -webkit-transform: rotate(22.5deg);
    -ms-transform: rotate(22.5deg);
    transform: rotate(22.5deg);
    right: 20px;
    bottom: 49px;
    background: #16C278;
}

.loader .needle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px #fff solid;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -8px 0 0 -8px;
    z-index: 1;
    -webkit-animation: pegIt 3s infinite ease-in-out;
    animation: pegIt 3s infinite ease-in-out;
}

.loader .needle:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 50px 3.5px 0;
    border-color: transparent #16C278 transparent transparent;
    position: absolute;
    right: 50%;
    top: 50%;
    margin: -3.5px 0 0 0;
    border-radius: 0 50% 50% 0;
}

@keyframes pegIt {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    16% {
        -webkit-transform: rotate(75deg);
        transform: rotate(75deg);
    }

    25% {
        -webkit-transform: rotate(55deg);
        transform: rotate(55deg);
    }

    30% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    36% {
        -webkit-transform: rotate(170deg);
        transform: rotate(170deg);
    }

    42% {
        -webkit-transform: rotate(150deg);
        transform: rotate(150deg);
    }

    50% {
        -webkit-transform: rotate(227deg);
        transform: rotate(227deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes pegIt {
    0% {
        -webkit-transform: rotate(0deg);
    }

    16% {
        -webkit-transform: rotate(75deg);
    }

    25% {
        -webkit-transform: rotate(55deg);
    }

    30% {
        -webkit-transform: rotate(90deg);
    }

    36% {
        -webkit-transform: rotate(170deg);
    }

    42% {
        -webkit-transform: rotate(150deg);
    }

    50% {
        -webkit-transform: rotate(227deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

/*Loader end*/

.header {
    margin: 0 5px 10px 5px;
    padding: 20px 0;
    background: var(--bg-color);
    border-radius: 10px;
    position: sticky;
    left: 0;
    top: 0px;
    z-index: 10;
    border: 1px solid #000;
}

.header-row {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
}

.logo img {
    max-width: 180px;
}

.logo:hover {
    animation: shake 0.5s;
}

.header-btn {
    margin-left: 30px;
    display: flex;
}

.h-btn {
    display: inline-block;
    padding: 18px 25px;
    background: var(--main-color);
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #000;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    line-height: 1;
}

.h-btn strong {
    font-weight: 700;
}

.h-btn span {
    position: relative;
    z-index: 1;
}

.h-btn:before,
.h-btn::after {
    content: "";
    display: block;
    position: absolute;
    width: 54%;
    height: 100%;
    background: #000;
    top: 0;
    transition: all 0.3s cubic-bezier(.6, .04, .98, .34);

}

.h-btn:before {
    left: 0;
    transform: translateX(-105%);
    border-radius: 4px 0 0 4px;
}

.h-btn:after {
    right: 0;
    transform: translateX(105%);
    border-radius: 0 4px 4px 0;
}

.h-btn:hover:before {
    transform: translateX(-6%);
}

.h-btn:hover:after {
    transform: translateX(6%);
}

.header-phone {
    margin-left: auto;
}

.phone-block {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.phone-block-icon {
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-block-icon img {
    width: 30px;
    height: 30px;
}

.phone-block-title {
    margin-left: 15px;
}

.phone-block:hover {
    color: var(--main-color);

    .phone-block-icon {
        transform: rotate(20deg);
    }
}

.header-menu {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-color);
    padding: 20px 10px;
    border-radius: 10px;
    border: 1px solid #000;
}

.header-menu-item {
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    color: #fff;
}

.header-menu-item.active {
    opacity: 1 !important;
    background: #000;

    .header-menu-item-icon {
        transform: translateY(0) !important;
    }
    color: var(--main-color);

}

.header-menu-item+.header-menu-item {
    margin-top: 30px;
}

.header-menu-item-icon {
    transition: 0.3s;
    font-size: 30px;

}

.header-menu-item-icon img {
    width: 40px;
    height: 40px;
}

.header-menu-item-title {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 0.9;

    white-space: nowrap;
}

.header-menu-item:hover {
    opacity: 0.5;

    .header-menu-item-icon {
        transform: translateY(-4px);
    }
}

.title {
    font-family: "Manrope", sans-serif;
    font-size: 59px;
    font-weight: 900;


}

.home-head {
    padding: 0;
    overflow: hidden;

    .slick-slide {
        margin: 0 5px;
    }

    .slick-list {
        margin-left: -5px;
        margin-right: -5px;
    }
}

.green {
    color: var(--main-color);
}

.home-head-slider-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 680px;
    padding-left: 70px;
    display: flex !important;
    align-items: center;
    transition: 0.3s;
    animation: bgcolor 3s infinite;

}
@keyframes bgcolor{
    0%{
        background: rgba(17, 17, 17, 1);

    }
    50%{
        background: #1E1E1E;
    }
    100%{
        background: rgba(17, 17, 17, 1);
    }
}

.home-head-slider-item:after{
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 0 40px 0;
}

.home-head-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    transition: 0.3s;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 7% 50%, 0% 0%);
}

.home-head-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.home-head-block {
    position: relative;
    z-index: 1;
    max-width: calc( 55% - 70px );
}


.home-head-block-title {
    
    text-shadow: 1px 1px 2px #000;
    margin-bottom: 20px;
}

.home-head-block-slogan {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.home-head-block-btn {
    margin-top: 20px;
}

.slick-dotted.slick-slider {
    padding-bottom: 40px;
    margin-bottom: 0;
}

.slick-dots {
    bottom: 0px;
}

.slick-dots li {
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.3s;
}

.slick-dots li:hover {
    opacity: 0.5;
}

.slick-dots li button {
    opacity: 0;
}

.slick-dots li.slick-active {
    background: var(--main-color);
    opacity: 1 !important;
}

.catalog {
    .slick-slide {
        margin: 0 10px;
    }

    .slick-list {
        margin-left: -10px;
        margin-right: -10px;
    }

    .slick-track {
        display: flex;
    }

    .slick-track .slick-slide {
        display: flex;
        height: auto;
        align-items: center;
    }
}

.title-block {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.catalog-slider-container {
    position: relative;
}

.catalog-slider-container:hover {
    .catalog-slider-direction {
        opacity: 1;
    }
}

.catalog-slider-direction {
    z-index: 1;
    position: absolute;
    width: calc(100% + 40px);
    height: 0;
    left: -20px;
    top: calc(50% - 25px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: 0.3s;
}

.catalog-slider-direction-item {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;

}

.catalog-slider-direction-item:hover {
    filter: brightness(30%);
}

.catalog-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--bg-color);
    border-radius: 10px;
    padding: 40px;
    min-height: 100%;
}

.catalog-inner:hover {
    .catalog-inner-content-row {
        border-color: var(--main-color);
    }

    .catalog-inner-img {
        border-color: var(--main-color);
    }

}

.catalog-inner-img {
    width: 48%;
    transition: 0.3s;
    border-radius: 10px;
    border: 4px solid #fff;
    overflow: hidden;
    transition: 0.3s;
}

.catalog-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; center;
}

.catalog-inner-content {
    width: 48%;
}

.catalog-inner-title {
    font-weight: 900;
    margin-bottom: 20px;
}

.catalog-inner-list {
    display: flex;
    flex-wrap: wrap;
}

.catalog-inner-list-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    padding: 6px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.catalog-inner-list-item:hover {
    border-color: var(--main-color);
}

.catalog-inner-list-item-title {
    opacity: 0.8;
}

.catalog-inner-list-item-slogan {
    font-weight: 700;
}

.catalog-inner-content-row {
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #fff;
    transition: 0.3s;
}

.catalog-inner-content-row-price-title {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.catalog-inner-content-row-price-title-item {
    margin-left: 20px;
    font-size: 30px;
    color: var(--main-color);
}

.about {
    position: relative;
    background: var(--bg-color);

    .title-block {
        margin-bottom: 40px;
    }

    .gradient-glow {
        right: 10%;
        top: 5%;
    }


}

.about-block {
    padding: 80px;
}

.about-block-img {
    filter: brightness(30%);
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.about-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;


}

.about-block-inner {
    position: relative;
    z-index: 1;
    border: 4px solid #FFFFFF;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    padding: 80px;
    overflow: hidden;
    transition: 0.3s;
}

.about-block-inner:hover {
    border-color: var(--main-color);
    backdrop-filter: blur(10px);
}

.about-block-title {
    line-height: 1.8;
}

.about-block-inner-btn {
    margin-top: 20px;
}

.about-block-inner-object {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 10px;
    background: var(--main-color);
    color: #fff;

    border-radius: 0 0 0 10px;
}

.advantages {
    background: #fff;
    color: #222;
    overflow: hidden;

    .title {
        margin-top: 10px;
        line-height: 0.8;
    }

    .slick-slide {
        margin: 0 5px;
    }

    .slick-list {
        margin-left: -5px;
        margin-right: -5px;
    }

    .gradient-glow {
        left: 0%;
        top: 20%;
    }

    .slick-track {
        display: flex;
    }

    .slick-track .slick-slide {
        display: flex;
        height: auto;
        align-items: center;
    }

}

.slogan {
    font-size: 32px;
    font-weight: 500;
    color: var(--main-color);
}

.advantages-img img {
    width: 100%;
}

.advantages-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.advantages-inner {
    background-color: #F7F7F7;
    border-radius: 10px;
    padding: 30px 20px 100px 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.advantages-inner:hover {
    .advantages-inner-img {
        transform: translateX(-10px);
    }
}

.advantages-inner:hover:after {
    width: 50px;
    height: 50px;
}

.advantages-inner:after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0 40px 0 0;
    transition: 0.3s;

}

.advantages-inner-title {
    font-family: 'Manrope', sans-serif;
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 10px;
}

.advantages-inner-text {
    opacity: 0.8;
    font-size: 17px;
}

.advantages-slider-container {
    width: 75%;
    position: relative;
}

.advantages-slider {
    padding-right: 66px;
}

.advantages-inner-img {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--main-color);
    font-size: 40px;
}



.gradient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 1;
    background: linear-gradient(180deg, rgba(22, 194, 120, 0.5) 100%);
    width: 400px;
    height: 400px;

}


.default-content {
    position: relative;
    z-index: 1;
}

.advantages-slider-right {
    position: absolute;
    right: 0px;
    top: 40%;
    background: var(--main-color);
    z-index: 1;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages-slider-right:hover {
    transform: scale(1.05);
}

.stage {}


.title-block-slogan {
    font-size: 30px;
    font-weight: 700;
    color: var(--main-color);
}

.title-block-text {
    font-weight: 500;
    font-size: 20px;
}

.stage-row {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.stage-row-item {
    background: var(--main-color);
    color: #fff;
    padding: 0 20px 40px 20px;
    border-radius: 10px;
    width: 22%;
    text-align: center;
    position: relative;
    transition: 0.3s;
    cursor: default;
}

.stage-row-item+.stage-row-item:after {
    content: url('../img/squiggly-line-50.png');
    display: block;
    position: absolute;
    left: -50px;
    top: 40%;
    z-index: -1;

}

.stage-row-item:hover {
    background: var(--bg-color);

    .stage-row-item-number {
        background: var(--bg-color);
        transform: translateY(10px);
    }
}

.stage-row-item-number {
    border-radius: 50%;
    border: 1px solid #fff;
    font-size: 60px;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
    background: var(--main-color);
    font-family: 'Manrope', sans-serif;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px auto;
    transition: 0.3s;

}

.stage-row-item-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
}

.stage-row-item-text {
    font-size: 15px;
}

.reviews {
    background: var(--bg-color);

    .slick-track {
        display: flex;
    }

    .slick-track .slick-slide {
        display: flex;
        height: auto;
        align-items: center;
        flex-wrap: wrap;
    }

    .slick-slide {
        margin: 0 5px;
    }

    .slick-list {
        margin-left: -5px;
        margin-right: -5px;
    }

}


.reviews-block-item {
    background: #fff;
    color: var(--bg-color);
    padding: 40px 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    transition: 0.3s;

}

.reviews-block-item:hover {
    border-color: var(--main-color);
}

.reviews-block-item:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -5px;
    top: -5px;
    background: var(--main-color);
    border-radius: 0 0 40px 0;
}

.reviews-block-item-text {
    font-size: 17px;

}

.reviews-block-item-title {
    font-weight: 600;
    font-size: 20px;
    margin-left: auto;
    margin-top: 20px;
    font-family: 'Manrope', sans-serif;
}



.reviews-gallery {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.reviews-gallery-item {
    width: 25%;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px;
    position: relative;
    display: block;
}

.reviews-gallery-item-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.reviews-gallery-item:hover {
    .reviews-gallery-item-object {
        display: flex;

    }
}

.reviews-gallery-item-object {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    transition: 0.3s;
    animation: show 0.3s;
}

.reviews-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 500;
}

.reviews-link:hover {
    color: var(--main-color);

    .reviews-link-icon {
        transform: translateX(5px);
    }
}

.reviews-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: 0.3s;
}

.reviews-link-icon img {
    width: 20px;
    height: 20px;
}


.faq-inner+.faq-inner {
    margin-top: 10px;
}

.faq-inner-header {
    border-radius: 10px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-color);
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

.faq-inner-header:hover {
    border-color: var(--main-color);
}

.faq-inner-header.active {
    background: var(--main-color);
    border-radius: 10px 10px 0 0;

    .faq-inner-header-icon {
        border-color: #fff;
        transform: rotate(180deg);
    }
}

.faq-inner-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--main-color);
    width: 50px;
    min-width: 50px;
    height: 50px;
    border: 1px solid transparent;
    transition: 0.3s;
    margin-left: 30px;
}

.faq-inner-header-icon img {
    width: 70%;
    height: 70%;
}

.faq-inner-header-title {
    font-weight: 700;
    font-size: 20px;
}

.faq-inner-content {
    padding: 20px;
    border-top: 1px solid #fff;
    border-radius: 0 0 10px 10px;
    background: var(--main-color);
    font-size: 18px;
    display: none;
}


.footer {
    background: var(--bg-color);
    padding: 80px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.footer-soc {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.footer-soc-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    color: #fff;
}

.footer-soc-item+.footer-soc-item {
    margin-left: 5px;
}



.footer-soc-item:hover {
    color: var(--main-color);
}

.footer-dev {
    color: #fff;
    display: block;
}

.footer-dev-logo {
    font-size: 18px;
    opacity: 0.5;
}

.footer-dev:hover {
    transform: scale(1.05);
}

.footer-title {
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 20px;
    font-size: 24px;

}

.footer-text {
    color: #FFFFFFB2;
}

.footer-text+.footer-text {
    margin-top: 15px;
}

.footer-link {
    display: flex;
    align-items: center;
    color: #FFFFFFB2;
}

.footer-link-icon img {
    width: 20px;
    height: 20px;
}

.footer-link-title {
    margin-left: 10px;

}

.footer-link:hover {
    color: var(--main-color);
}

.footer-link+.footer-link {
    margin-top: 10px;
}

.footer-row+.footer-row {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #fff;
}



@media screen and (max-width: 1400px) {
    .container {
        max-width: 1050px;
    }

    .catalog-inner-img {
        height: 200px;
    }

    .catalog-inner {
        padding: 40px 20px;
    }

    .header-menu {
        padding: 15px 5px;
    }

    .header-menu-item-icon img {
        width: 30px;
        height: 30px;
    }

    .header-menu-item {
        padding: 8px;
    }

    .stage-row-item {
        width: 23%;
    }

    .stage-row-item {
        padding: 0 10px 10px 10px;
    }
    .home-head .title{
        font-size: 45px;
    }
}

@media screen and (max-width: 1200px) {
    .home-head-slider-item {
        padding-left: 40px;
    }
    .home-head-slider-item:after{
        left: auto;
        right: 0;
        border-radius: 0 0 0 40px;
    }

    .title {
        font-size: 45px;
    }



    .header-menu {
        display: flex;
        justify-content: space-between;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: 4px;
    }

    .header-menu-item+.header-menu-item {
        margin-left: 10px;
        margin-top: 0;

    }
    .home-head-img{
        width: 100%;
        filter: brightness(60%);
        clip-path: polygon(0% 0%, 46% 0, 100% 51%, 100% 100%, 0% 100%);

        right: auto;
        left: 0;
    }
    .home-head-block{
        max-width: 100%;
    }
    .home-head-slider-item{
        align-items: flex-end;
        padding-bottom: 40px;
    }



    .footer {
        padding-bottom: 140px;
    }
}

@media screen and (max-width: 992px) {
    .up-btn{
        opacity: 0;
    }
    .catalog-slider-direction {
        opacity: 1;
        left: auto;
        right: 0;
        top: -50px;
        justify-content: flex-end;
        width: 100%;
    }

    .catalog-slider-direction-item+.catalog-slider-direction-item {
        margin-left: 20px;
    }

    .about-block-inner {
        padding: 60px;
    }

    .advantages-row {
        flex-wrap: wrap;
    }

    .advantages-slider-container {
        width: 100%;
        margin-top: 40px;
    }

    .stage-row-item {
        width: 48%;

    }

    .stage-row-item:nth-child(n+3) {
        margin-top: 60px;
    }

    .stage-row-item:nth-child(3):after {
        transform: rotate(90deg);
        top: -70px;
        left: 20px;
    }

    .stage {
        .title-block {
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .title-block-item {
            width: 100%;
            margin-bottom: 20px;
        }

    }

    .reviews-gallery-item {
        width: 30%;
    }






    .phone-block-title {
        display: none;
    }

    .advantages-img {
        margin-top: 10px;
    }
    .home-head-img{
        width: 100%;
    }
    .catalog-inner-img {
        height: auto;
    }


}

@media screen and (max-width: 768px) {
    .h-modal-accept{
        max-width: 100%;
    }
    .home-head-img{
        clip-path: polygon(0% 0%, 46% 0, 100% 19%, 100% 100%, 0% 100%);
    }
    .home-head .title{
        font-size: 30px;
    }



    .about-block {
        padding: 30px;
    }

    .title {
        font-size: 40px;
    }

    .h-btn {
        font-size: 11px;
    }

    .home-head-slider-item {
        min-height: 500px;
        padding-left: 20px;
    }

    .stage-row {
        display: block;
        margin-top: 00px;
    }

    .about-block-inner {
        padding: 60px 20px;
    }

    .stage-row-item-number {
        position: absolute;
        left: -10px;
        top: -10px;
        width: 50px;
        height: 50px;
        font-size: 40px;
        margin: 0;
    }

    .stage-row-item {
        padding: 50px 20px 20px 20px;
        margin: 20px auto 0 auto !important;
        width: 80%;
    }

    .stage-row-item+.stage-row-item:after {
        transform: rotate(90deg);
        top: -70px;
        left: 38%;
    }

    .stage-row-item-title {
        font-size: 26px;
    }

    .stage-row-item-text {
        font-size: 18px;
    }

    .reviews-gallery-item {
        width: 48%;
    }

    .reviews-gallery-item:nth-child(n+5) {
        display: none;
    }

    .footer-row {
        display: block;
    }

    .footer {
        text-align: center;
    }

    .footer-row-item+.footer-row-item {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #fff;
    }

    .footer-row+.footer-row {
        margin-top: 20px;
    }

    .footer-soc {
        justify-content: center;
    }

    .footer-link {
        display: inline-flex;
    }

    .footer-contact .footer-link {
        margin: 10px;
    }

    .advice {
        max-width: 100%;
    }

    .h-modal-img {
        top: auto;
        bottom: 0;
        transform: none;
    }

    .h-modal-content {
        padding-bottom: 200px;
    }

    .h-modal-content:after {
        right: -40%;
    }

    .h-modal-img {
        width: 220px;
    }

    .h-modal-content:after {
        top: auto;
        bottom: -10%;
    }
}

@media screen and (max-width: 574px) {
    .catalog-inner {
        display: block;
    }

    .catalog-inner-img {
        width: 100%;
    }

    .catalog-inner-content {
        margin-top: 20px;
        width: 100%;
    }

    .catalog-slider-direction {
        display: none;
    }

    .title {
        font-size: 33px;
    }

    .reviews-gallery-item {
        margin: 1%;
    }

    .h-btn strong {
        display: none;
    }

    .logo img {
        max-width: 150px;
    }

    .advice-row {
        display: block;
    }

    .advice-row-item+.advice-row-item {
        margin-top: 2%;
    }

    .advice-form-sub {
        text-align: start;
    }

    .advice-row-item {
        width: 100%;
    }

    .header-phone {
        display: none;
    }

    .header-btn {
        margin-left: auto;
    }

    .home-head-block-title br {
        display: none;
    }

    .advice-form-sub input {
        width: 100%;
    }

    .h-modal-title {
        font-size: 30PX;
    }

}
@media screen and (max-width: 574px){
    .about-block{
        padding: 0;
    }
    section{
        padding: 40px 0;
    }
    .advantages-inner{
        padding: 30px 20px 70px 20px;
    }
    .advantages-inner-img{
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .catalog-inner-img{
        width: 70%;
        height: 200px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 400px){
    .header-menu-item-icon{
        font-size: 20px;
    }
    .header-menu{
        bottom: 0;
        width: 100%;
        transform: none;
        left: 0;
    }
    .header-menu-item-title{
        margin-top: 0;
    }
    .header-menu-item{
        padding: 4px;
    }
    .header-menu-item+.header-menu-item{
        margin-left: 5px;
    }
}

/*credit*/

.head {
    padding: 0;
}
.head-block{
    background: #111;
    background: -webkit-linear-gradient(120deg, #111111,#3d4052);
    background: linear-gradient(120deg, #111111,#3d4052);
    padding: 140px 0 140px 70px;
    border-radius: 40px;
    position: relative;
    transition: 0.3s;
}
.head-block:hover{

}

.head-inner {
    max-width: 40%;

}

.head-inner-text {
    margin: 10px 0;
    line-height: 1.4;
    opacity: 0.7;
}

.head-img{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    transition: 0.3s;
}
.head-img img{
    width: 100%;
}
.credit-list-block{
    margin-top: 0.7%;
    padding-bottom: 80px;
}
.credit-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.credit-list-item{
    width: 19%;
    text-align: center;
    border-radius: 10px;
    background: var(--main-color);
    padding: 20px;
    transition: 0.3s;
}
.credit-list-item:hover{
    background: var(--bg-color);
}
.credit-list-item-icon{
    font-size: 40px;
}

.credit-list-item-title{
    text-shadow: 1px 1px 1px #000;
    margin-top: 10px;
    font-weight: 500;
}

.credit-advantages{
    background: var(--bg-color);
}
.credit-advantages-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.credit-advantages-inner{
    padding: 50px 20px;
    border-radius: 10px;
    width: 32%;
    position: relative;
    background: #1E1E1E;
    margin-top: 20px;
    transition: 0.3s;
}
.credit-advantages-inner:hover{
    transform: translateY(-5px);
}
.credit-advantages-inner-icon{
    position: absolute;
    left: 0%;
    top: -0px;
    border-radius: 4px;
    background: var(--main-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.credit-advantages-inner-title{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.credit-advantages-inner-text{
    line-height: 1.4;
    opacity: 0.8;
    font-size: 15px;
}

.credit-feedback{
    background: #1E1E1E;
    .default-content{
        position: static;
    }
}
.credit-feedback-img{
    position: absolute;
    height: 100%;
    width: 50%;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
}

.credit-feedback-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.credit-feedback-inner{
    max-width: 40%;
    margin-left: auto;
}
.credit-feedback-inner-text{
    font-size: 20px;
    opacity: 0.8;
    margin: 20px 0;
    max-width: 310px;
}

.credit-circs{
    background: #fff;
    color: #222;
}

.credit-circs-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.credit-circs-row-item{
    width: 31%;
    margin: 1%;
    box-shadow: 0px 5.5px 75px 0px rgba(0, 0, 0, 0.2);
    padding: 60px 20px 40px 20px;
    border-radius: 10px;
    position: relative;
    transition: 0.3s;
}

.credit-circs-row-item-icon{
    background: var(--main-color);
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--main-color);
    transition: 0.3s;
}

.credit-circs-row-item:hover{
    transform: translateY(-5px);
    .credit-circs-row-item-icon{
        color: var(--main-color);
        background: #fff;
    }
}

@media screen and (max-width: 992px){
    .head-block{
        padding: 80px 20px;
    }
    .credit-list{
        justify-content: center;
    }
    .credit-list-item{
        width: 31%;
        margin: 1%;
    }
}
@media screen and (max-width: 768px){
    .credit-advantages{
        .title-block{
            display: block;
        }
    }
    .credit-advantages-inner{
        width: 48% ;
    }
    .credit-feedback-img{
        width: 100%;
    }
    .credit-feedback-inner{
        z-index: 1;
        position: relative;
        margin-left: 0;
        max-width: 100%;
        backdrop-filter: blur(4px);
        padding: 20px;
        border-radius: 10px;
        border: 4px solid #fff;
        background: rgba( 0,0,0,0.5 );

    }
    .credit-circs-row-item{
        width: 48%;
    }
    .head-img{
        width: 30%;
        transform: none;
        top: auto;
        bottom: 0;
    }
    .head-inner{
        max-width: 100%;
    }

}

@media screen and (max-width: 574px){
    .credit-list-item{
        width: 48%;
    }
    .credit-advantages-inner{
        width: 100%;
    }
    .credit-circs{
        .title-block{
            display: block;
        }
    }
    .credit-circs-row-item{
        width: 100%;
    }
    .head-block{
        padding: 40px 20px 80px 20px;
    }
    .faq-inner-header-title{
        font-size: 15px;
    }
    .head-block{
        border-radius: 10px;
    }
}


/*delivery-page*/

.delivery-page {
    .head .slogan{
        margin: 20px 0;
    }
    .stage{
        background: var(--bg-color);
    }
}

.delivery-cost-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.delivery-cost-img{
    width: 58%;
}
.delivery-cost-inner{
    width: 38%;
}
.delivery-cost-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.delivery-cost-inner-slogan{
    background: var(--main-color);
    border-radius: 4px;
    transform: rotate(-2deg);
    padding: 4px;
    margin: 20px 0;
    text-align: center;
    text-shadow: 1px 1px 2px #000;
}
.delivery-cost-inner-text{
    font-size: 15px;
    line-height: 1.4;
    opacity: 0.8;
}
.delivery-cost-inner-text+.delivery-cost-inner-text{
    margin-top: 10px;
}

@media screen and (max-width: 992px){
    .delivery-cost-row-item{
        width: 100% !important;
    }
    .delivery-cost-inner{
        order: -1;
        margin-bottom: 30px;
    }
    .delivery-cost-inner-slogan{
        max-width: 400px;
    }
    .delivery-cost-img img{
        border-radius: 10px;
    }
}

.reviews-page .reviews{
    background: transparent;
}
.contacts{
    padding: 40px 0;
    .footer-soc{
        margin: 0;
        justify-content: flex-start;
    } 
}


.contacts-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contacts-inner{
    width: 40%;
}
.contacts-inner-item{
    position: relative;
}
.contacts-inner-item+.contacts-inner-item{
    padding-top: 10px;
    margin-top: 10px;
}
.contacts-inner-item+.contacts-inner-item:after{
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 0px;
}
.contacts-inner-item-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.contacts-inner-item-link{
    color: #fff;
}
.contacts-inner-item-link:hover{
    color: var(--main-color);
}
.contacts-map {
    width: 60%;
}
.contacts-map iframe{
    width: 100%;
    border-radius: 10px;
}

@media screen and (max-width: 768px){
    .contacts-row-item{
        width: 100% !important;
    }
    .contacts-row-item+.contacts-row-item{
        margin-top: 20px;
    }
}


.doc-page a{
    color: #fff;
}
.privacy-policy__title{
    margin-bottom: 30px;
}
.privacy-policy__subtitle{
    margin-bottom: 20px;
}
.privacy-policy__list-contact{
    padding-left: 0;
}
.privacy-policy__list-contact li{
    display: block;
    padding-left: 0;
}
.privacy-policy__block{
    margin-top: 20px;

}
.privacy-policy__block-title{
    margin-bottom: 10px;
}
.privacy-policy__list-item-link:hover{
    color: var(--main-color);
}
.privacy-policy__section{
    margin-top: 20px;

}
.privacy-policy__section-title{
    margin-bottom: 10px;
}