@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

* {
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

p {
    line-height: 1.4;
}

a {
    text-decoration: none !important;
    transition: 0.3s;
}

input,
textarea,
button,
.slick-slide {
    outline: none !important;
    border: none;
}

body {
    color: #252525;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    background: #F1EFE5;
    scrollbar-gutter: stable;

}

body.modal-open {
    overflow: hidden;

}

section {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

ul,
li {
    margin: 0;
    padding: 0;
}

:root {
    --def-color: #7733F4;
    color-scheme: dark;
}


.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    background: #222;
}

.loader-block {
    display: flex;
    align-items: center;
}

.loader-block-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--def-color);
}

.loader-block-item+.loader-block-item {
    margin-left: 10px;
}

.loader-block-item:nth-child(1n) {
    animation: loaderBottom 1s infinite;
}

@keyframes loaderTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

.loader-block-item:nth-child(2n) {
    animation: loaderTop 1s infinite;
}

@keyframes loaderBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    0% {
        transform: translateY(0);
    }
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.up-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #fff;
    position: fixed !important;
    right: 20px;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.3s;
}

.up-btn:hover {
    background: #fff;
    border-color: var(--def-color);
}

.up-btn img {
    max-width: 70%;
    max-height: 70%;
    transition: 0.3s;
    animation: up 1s infinite;
}


@keyframes up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

@keyframes leftToRight {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(0);
    }
}

.color-option {
    position: fixed;
    left: 10px;
    top: 45%;
    z-index: 4;
}

.color-option-header {
    background: #222;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid var(--def-color);
}

.color-option-header img {
    width: 80%;
    height: 80%;
}

.color-option-header img:last-child {
    display: none;
}

.color-option-content {
    margin-bottom: 4px;
    border: 1px solid var(--def-color);
    animation: leftToRight 0.8s;
    background: #222;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    display: none;
    position: absolute;
    left: 0;
    bottom: 100%;
}

.color-option-content-title {
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
}

.color-option-content-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: wrap;
}

.color-option-content-row-item {
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin: 2px;
    border-radius: 4px;
    transition: 0.3s;
}

.color-option-content-row-item.active {
    transform: scale(0.9);
}

.color-option-content-row-item:hover {
    opacity: 0.5;
}

@media screen and (max-width: 1200px) {
    .color-option {
        top: auto;
        bottom: 20px;
    }
}

.container {
    max-width: 1180px;
}

.h-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    padding-top: 5vh;
    display: none;
}

.h-modal-content {
    width: 500px;
    padding: 40px 20px;
    box-shadow: 0px 2px 2px 0px #00000040;
    border-radius: 5px;
    margin: auto;
    position: relative;
    max-width: calc(100% - 30px);
    color: #fff;
    overflow: hidden;
    background: #222;
    border: 2px solid var(--def-color);
    text-align: center;

}

.h-modal-content-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--def-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1;

}

.h-modal-content-close:hover {
    transform: scale(1.1);
}

.h-modal-content-close img {
    width: 80%;
    height: 80%;
}

.h-modal .title {
    margin-bottom: 30px;
}

/*default style*/

.container {
    max-width: 1240px;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 5;
    padding-top: 24px;
    transition: 0.3s;

}

.header.active {
    background: var(--def-color);
    padding-top: 0px;

    .header-content {
        background: var(--def-color);
        padding: 10px 12px;

    }
}
.header.menu-open {
    background: var(--def-color);
    padding-top: 0px;
    border-bottom: 1px solid #fff;

    .header-content {
        background: var(--def-color);
        padding: 10px 12px;

    }
}

.header-content {
    padding: 20px 12px;
    background: #FFFFFF4D;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
}

.logo:hover {
    opacity: 0.5;
}

.logo-title {
    margin-left: 14px;
    font-size: 18px;
    text-transform: uppercase;
}

.menu {
    display: flex;
    align-items: center;
}

.menu-item {
    display: block;
}

.menu-item+.menu-item {
    margin-left: 30px;
}

.menu-link {
    font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.menu-link:hover {
    opacity: 0.5;
}

.header-bars {
    cursor: pointer;
    display: none;
}

.header-bars.active img {
    display: none;
}

.header-bars.active img:last-child {
    display: block;
}

.header-bars img:last-child {
    display: none;
}
.mob-menu{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    border-top: 1px solid #fff;
    background: var(--def-color);
    width: 300px;
    min-height: 100vh;
    padding: 40px 0;
}
.mob-menu .menu{
    display: block;
}
.mob-menu .menu-item+.menu-item{
    margin: 0 !important;
}
.mob-menu .menu-link{
    padding: 10px;
    display: block;
}

.head {
    position: relative;
    min-height: 100vh;

}

.head .row {
    align-items: flex-end;
}

.head-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.head-video-item {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.head-row {
    position: absolute;
    padding: 0 15px;
    max-width: 1220px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    bottom: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.head-title {
    max-width: 690px;
    color: #ffffff;
}

.title {
    font-family: "Permanent Marker", cursive;
}

.head-inner {
    background: #FFFFFF99;
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 16px;
    max-width: 320px;
}

.head-inner-img img {
    width: 100%;
    border-radius: 12px;
}

.head-inner-slogan {
    color: #626776;
    font-weight: 500;
    margin: 16px 0 24px 0;
}

.h-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--def-color);
    color: #fff;
    padding: 21px 42px;
    border-radius: 52px;
    font-weight: 500;
    font-size: 18px;
    border: 2px solid var(--def-color);
}

.h-btn-icon {
    margin-left: 9px;
}

.h-btn:hover {
    background: transparent;
    color: var(--def-color);
}

.head-inner-btn {
    width: 100%;
}


.about {}

.about-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2%;
}

.about-row-item {
    width: 48%;
}

.about-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    background: #ffffff;
    transition: 0.3s;
    overflow: hidden;
    border: 1px solid #F1EFE5;
}

.about-inner:hover {
    background: var(--def-color);
    color: #fff !important;
    border-color: var(--def-color);
}

.about-inner-icon {
    min-width: 204px;
    height: 192px;
    object-fit: cover;
}

.about-inner-icon img {
    width: 100%;
    height: 100%;

}

.about-inner-block {
    padding: 32px;
}

.about-inner-block-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.1;
}

.about-inner-block-slogan {
    margin-top: 16px;
    line-height: 1;
}

.about-row-head {
    width: 100%;
    padding: 32px;
    position: relative;
    background: var(--def-color);
    margin: 2% 0;
    min-height: 200px;
    border-radius: 16px;
    color: #ffffff;
    overflow: hidden;

    .title {
        z-index: 1;
        position: relative;
    }
}

.about-row-head:hover .about-row-head-img {
    transform: scale(1.1);
}

.about-row-head-img {
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s;

}

.base {
    background: #F3E19C;
    position: relative;
}

.base-object {
    position: absolute;
}

.base-object:first-child {
    left: 0;
    top: 0;
}

.base-object:last-child {
    left: 0;
    bottom: 0;
}

.base-content {
    position: relative;
    z-index: 1;
}

.base-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.base-inner {
    width: 49%;
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    border-bottom: 10px solid transparent;
    transition: 0.3s;
    margin-top: 2%;
}

.base-inner:hover {
    transform: scale(1.04);
    border-color: var(--def-color);
}

.base-inner-header {
    display: flex;
    align-items: center;

}

.base-inner-header-icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    position: relative;
}

.base-inner-header-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.base-inner-header-icon-status {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #12B76A;
    border: 1px solid #ffffff;
}

.base-inner-header-inner {
    margin-left: 24px;
    width: 100%;
}

.base-inner-header-inner-row {
    display: flex;
    justify-content: space-between;
}

.base-inner-header-inner-row-item {
    width: 48%;
}

.base-inner-header-inner-row-item:last-child {
    text-align: right;
}

.base-inner-header-title {
    font-weight: 600;
    line-height: 1;
    font-size: 22px;
}

.base-inner-header-slogan {
    margin-top: 10px;
    font-size: 12px;
}

.base-inner-header-st {
    color: #0A8554;
    background: #EBFBF5;
    border-radius: 8px;
    padding: 2px 8px;
    display: inline-block;
    font-size: 14px;
}

.base-inner-header-inner-option {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 14px;
}

.base-inner-header-inner-option-item {
    display: inline-block;
    background: #EFF0F5;
    padding: 4px 12px;
    border-radius: 16px;
}

.base-inner-header-inner-option-item+.base-inner-header-inner-option-item {
    margin-left: 8px;
}

.base-inner-content {
    margin-top: 30px;
}

.base-inner-content-title {
    font-weight: 700;
}

.base-inner-content-slogan {
    margin: 10px 0 20px 0;
}

.base-inner-content-inner {
    display: flex;
    align-items: center;
}

.base-inner-content-inner+.base-inner-content-inner {
    margin-top: 12px;
}

.base-inner-content-inner-title {
    color: #7C8092;
    margin-left: 8px;
}




.info {}

.info-row {
    display: flex;
    gap: 2%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
}

.info-inner {
    padding: 42px 32px 300px 32px;
    border-radius: 16px;
    position: relative;
    background: #fff;
    color: #626776;
    width: 48%;

}

.info-inner:hover {
    .info-inner-object {
        transform: translateX(20px);
    }
}

.info-inner-after {
    background: var(--def-color);
    color: #fff;
}

.info-inner-object {
    position: absolute;
    top: -21px;
    left: 32px;
    padding: 6px 9px;
    font-weight: 600;
    font-size: 24px;
    border-radius: 6px;
    background-color: #7C8092;
    color: #fff;
    transition: 0.3s;
}

.info-inner-after .info-inner-object {
    background: #F3E19C;
    color: #000;
}

.info-inner-title {
    margin: 12px 0 16px 0;
    font-weight: 700;
}

.info-inner-list {
    margin-bottom: 10px;
}

.info-inner-after .info-inner-list-item {
    background: #fff;
    color: #000;
}

.info-inner-list-item {
    background: #FDEB9F;
    border-radius: 24px;
    padding: 12px 16px;
    color: #000;
    display: inline-block;
    margin-bottom: 10px;
}

.info-inner-list-item:first-child {
    transform: rotate(-4deg);
}

.info-inner-list-item:nth-child(2) {
    margin-left: 90px;
}

.info-inner-slogan+.info-inner-slogan {
    margin-top: 10px;
}

.info-inner-img {
    height: 300px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;

}

.info-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.process {}

.process-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.process-inner {
    width: 24%;
    transition: 0.3s;
}

.process-inner:hover {
    background: var(--def-color);
    color: #fff;
}

.process-inner {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    position: relative;
}

.process-inner-number {
    background: var(--def-color);
    color: #fff;
    padding: 7px 16px;
    font-weight: 600;
    margin-bottom: auto;
    display: inline-block;
    border-radius: 24px;
    position: relative;
}

.process-inner-icon {
    position: absolute;
    right: 0px;
    top: 10px;
}

.process-inner-slogan {
    line-height: 1.4;
    margin-top: 40px;
}


.advantages {
    padding: 0;
}

.advantages .title {
    margin-bottom: 40px;
}

.advantages-content {
    padding: 48px 200px;
    background: #ffffff;
    border-radius: 24px;
}

.advantages-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F1EFE5;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid transparent;
}

.advantages-inner:hover {
    background: #FDEB9F;
    border-color: var(--def-color);

    .advantages-inner-icon {
        background: #F1EFE5;
    }
}

.advantages-inner+.advantages-inner {
    margin-top: 24px;
}

.advantages-inner-icon {
    width: 30%;
    background: #FDEB9F;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 146px;
    transition: 0.3s;
}

.advantages-inner-icon img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.advantages-inner-block {
    width: 65%;
}

.advantages-inner-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.faq {
    padding-top: 0;

    .title {
        margin-bottom: 40px;
    }
}

.faq-item {
    background-color: #f8f6f1;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 10px solid #f8f6f1;
}

.faq-item.active {
    border-color: var(--def-color);
    .faq-toggle {
        transform: rotate(45deg);
    }
}


.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #333;

}

.faq-toggle {
    background-color: #7b34dd;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
    text-align: center;
    margin-left: 10px;
}

.faq-answer {
    margin-top: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    display: none;
    animation: show 0.5s;
}


.feedback {
    position: relative;
}

.feedback:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50%;
    width: 50%;
    background: #FDEB9F;
    z-index: -1;
    border-radius: 0px 20px 20px 0;
    border-right: 10px solid var(--def-color);
}

.feedback:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 50%;
    width: 50%;
    background: #FDEB9F;
    z-index: -1;
    border-radius: 20px 0px 0 20px;
    border-left: 10px solid var(--def-color);
}

.feedback-content {
    background: var(--def-color);
    border-radius: 20px;
    padding: 16px;
    position: relative;
}

.feedback-content-object {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
}

.feedback-content-object img {
    width: 90%;
    height: 100%;
    object-fit: contain;
}

.feedback-block {
    width: 45%;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    z-index: 1;

    .feedback-block-title {
        font-weight: 500;
        font-size: 20px;
        text-transform: uppercase;
    }

    .title {
        margin: 24px 0 10px 0;
    }

    .feedback-block-link {
        padding: 8px 16px 8px 36px;
        display: inline-block;
        border: 1px solid #1F7EED;
        border-radius: 16px;
        position: relative;
    }

    .feedback-block-link-img {
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .feedback-block-link:hover {
        border-color: var(--def-color);
        color: var(--def-color);
    }

    .feedback-block-form {
        margin-top: 30px;
    }

    .feedback-block-form-title {
        font-size: 18px;
        font-weight: 700;
        max-width: 410px;
    }

    .feedback-block-form-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
    }

    .feedback-block-form-text {
        color: #7C8092;
        font-size: 12px;
        margin-top: 8px;
    }
}

.feedback-block-form-input {
    width: 58%;
}

.feedback-block-form-input input {
    border: 1px solid #7C8092;
    background: #FFFFFF;
    padding: 0 16px;
    height: 60px;
    width: 100%;
    font-size: 18px;
    border-radius: 16px;
    color: #000;
}

.feedback-block-form-input input:hover {
    border-color: var(--def-color);
}

.feedback-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.feedback-img img {
    max-width: 100%;
}

.feedback-block-form-sub {
    width: 40%;
}

.feedback-block-form-sub input {
    background: var(--def-color);
    height: 60px;
    border-radius: 16px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    width: 100%;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: 0.3s;
}

.feedback-block-form-sub input:hover {
    border-color: var(--def-color);
    background: transparent;
    color: var(--def-color);
}

@media screen and (max-width: 1200px) {
    .about-row-item {
        width: 100%;
    }

    .about-inner {
        max-width: 800px;
        margin: 10px auto;
    }

    .base-inner-header {
        flex-wrap: wrap;
    }

    .base-inner-header-icon {
        margin: 0 auto 10px auto;
    }

    .process-row {
        flex-wrap: wrap;
    }

    .process-inner {
        width: 48%;
        margin: 1%;
    }

    .feedback-img {
        width: 50%;
    }

    .base-inner-header-inner {
        margin-left: 0;
    }
}

@media screen and (max-width: 992px) {
    .head {
        min-height: 750px;
    }

    .head-row {
        display: block;
        top: 130px;
    }

    .head-inner {
        margin: 80px 0 0 auto;
    }

    .base-inner {
        width: 100%;
    }

    .advantages-content {
        padding: 40px;
    }

    .feedback {
        padding: 40px 0;
    }

}

@media screen and (max-width: 768px) {
    .head-title-item {
        font-size: 28px;
    }

    .title {
        font-size: 24px;
    }

    .about-inner-block-title {
        font-size: 20px;
    }
    .info-row{
        flex-wrap: wrap;
    }
    .info-inner{
        width: 100%;
    }
    .info-inner+.info-inner{
        margin-top: 20px;
    }
    .feedback-block{
        width: 100%;
    }
    .feedback-content{
        padding-bottom: 300px;
    }
    .feedback-img{
        width: 300px;
    }
    .about-inner{
        flex-wrap: wrap;
    }
    .header-bars{
        display: flex;
    }
    .header-menu{
        display: none;
    }
    .advantages-content{
        padding: 20px;
    }
    .about-inner-icon{
        display: none;
    }


}

@media screen and (max-width: 500px) {
    .base-inner-header-inner-row {
        display: block;
    }

    .base-inner-header-inner-row-item {
        width: 100%;
    }

    .base-inner-header-inner-option-item {
        margin: 5px;
    }

    .base-inner-header-inner-row-item:last-child {
        text-align: start;
        margin-top: 10px;
    }
    .process-inner{
        width: 100%;
    }
    section{
        padding: 60px 0;
    }

}

@media screen and (max-width: 400px){

}