
:root {
    --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: var(--default-font);
    --decorative-font: "Allison", cursive;
}

:root {
    --background-color: #FFFEFD;
    --default-color: #4E4E5F;
    --heading-color: #1E1646;
    --accent-color: #3E160C;
    --surface-color: #F5F0E8;
    --contrast-color: #fffefd;
}


:root {
    --nav-color: #1E1646;
    --nav-hover-color: #8E6111;
    --nav-mobile-background-color: #fffefd;
    --nav-dropdown-background-color: #fffefd;
    --nav-dropdown-color: #898989;
    --nav-dropdown-hover-color: #8E6111;
}

.light-background {
    --background-color: #f3f1f0;
    --surface-color: #F5F0E8;
}

.dark-background {
    --background-color: #fffefd;
    --default-color: #fffefd;
    --heading-color: #fffefd;
    --surface-color: #9e9e9e;
    --contrast-color: #fffefd;
}

:root {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    padding: 0 1rem;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--nav-color);
    font-family: var(--heading-font);
    font-weight: 500;
}

h1 {
    font-size: 3.125rem;
}

h2 {
    font-size: 1.875rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.563rem;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #fffefd;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #fffefd;
    background: #30496c;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgb(0, 0, 0, 0);
    --default-color: #fffefd;
    --heading-color: #fffefd;
    /*--default-color: #233750;*/
    /*--heading-color: #233750;*/
    color: var(--default-color);
    /*background-color: var(--background-color);*/
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 70px;
    margin-right: 8px;
}


.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    background-color: #fffefd;
    z-index: 555;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 1rem;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 32px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        transition: 0.3s;
        margin-bottom: 30px;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
        width: 550px;
        right: 0;
        left: auto;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.footer h3 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
}

.footer p {
    font-size: 15px;
    font-style: italic;
    padding: 0;

}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    text-align: center;
    transition: 0.3s;
}

.footer .social-links a:hover {
    text-decoration: none;
}

.footer .copyright {
    font-size: 0.8rem;
}

.footer .credits {
    font-size: 13px;
    padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fffefd;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }

    .header .logo img {
        max-height: 40px;
        margin-right: 8px;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--heading-color);
    /* background-color: var(--background-color); */
    padding: 60px 0;
    scroll-margin-top: 80px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 56px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    margin-top: 4.375rem;
    padding-bottom: 3.75rem;
    position: relative;
}

.section-title h2 {
    margin-bottom: 2.5rem;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 5rem 0 5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: var(--background-color);
    overflow: hidden;
}

.pattern {
    position: absolute;
    inset: 0;
    background-image: url("../img/heroBg.png");
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: soft-light;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.blur {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 100%;
    filter: blur(150px);
    opacity: 0.7;
    z-index: 0;
}

.blur-1 {
    top: 112px;
    right: 57px;
    border-radius: 100%;
    background: linear-gradient(180deg, #f22fb0 0%, rgba(245, 138, 37, 0) 100%, #7061a3 100%);
}

.blur-2 {
    bottom: 112px;
    left: 57px;
    border-radius: 100%;
    /*filter: blur(100px);*/
    background: linear-gradient(36deg, #ff7bca 0%, rgba(255, 197, 111, 0.46) 100%);
}


/* сам эффект */
.cursor-blur {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
    /*z-index: 10;*/

    filter: blur(250px);
    -webkit-filter: blur(55px);

    background: radial-gradient(
            circle,
            #EE9CA7,
            #FFDDE1,
            transparent 100%
    );

    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
    opacity: 0;
}

.hero .container {
    position: relative;
    z-index: 3;
}


.hero p span {
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
    margin-top: 1.563rem;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .mobile-nav-active .navmenu {
        width: 100%;
        left: 0;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    background-color: var(--surface-color);
}

.justify-content-between {
    align-items: center;
}

.content h3 {
    margin: 3.25rem 0 1.25rem;
}

.about-container {
    margin-top: 7.5rem;
    margin-bottom: 8.75rem;
}

.about .profile-img {
    border: 1px solid var(--nav-dropdown-hover-color);
    border-radius: 1.25rem 0;
    width: 18.625rem;
    height: 24.688rem;
    margin: 0 auto 20px;
    /*border: 20px solid var(--accent-color);*/
    padding: 0;
    /*border-radius: 3.125rem 0px;*/
}

.about .profile-img img {
    position: relative;
    z-index: 1;
    border-radius: 1.25rem 0px;
    width: 18.625rem;
    height: 24.688rem;
    margin-top: 20px;
    margin-left: -20px;
    margin-bottom: 20px;
}

.about .content h3 {
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 130%;
}

.about .content .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

.about .content ul i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    line-height: 1.2;
    font-size: 1.25rem;
}

.about .content p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .about-container {
        margin-top: 3.5rem;
        margin-bottom: 6.25rem;
    }

    #about .about-container {
        text-align: center;
    }

    .profile-img {
        margin-bottom: 4.75rem;
    }

    #about h2 {
        margin-bottom: 1.875rem;
    }

    #about h3 {
        margin-bottom: 1.25rem;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    position: relative;
    height: 100%;
    /*margin-bottom: 30px;*/
}

.services .service-item .icon {
    margin-right: 20px;
}

.services .service-item .icon i {
    color: var(--accent-color);
    font-size: 40px;
    line-height: 0;
    transition: 0.3s;
}

.services .service-item:hover .icon i {
    color: var(--accent-color);
}

.services .service-item .title {
    color: var(--nav-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.services .service-item .description {
    font-size: 15px;
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    margin-bottom: 10px;
}

.services .service-item .readmore {
    display: flex;
    align-items: center;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: 0.3s;
    font-weight: 700;
    font-size: 14px;
}

.services .service-item .readmore i {
    margin-left: 8px;
}

/*.services .service-item:hover .title,*/
.services .service-item:hover .readmore,
.services .service-item:hover .icon i {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }

}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 3.75rem auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--nav-hover-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

.portfolio-buttons {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.btn-portfolio {
    display: block;
    margin: 65px 0 150px;
}

.btn-portfolio:hover {
    font-size: 1.25rem;
}

@media screen and (max-width: 575px) {
    .portfolio .portfolio-filters {
        display: flex;
        justify-content: space-around;
        margin-bottom: 1.875rem;
    }
    .portfolio .portfolio-filters li {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 1rem;
    }

}

.portfolio .portfolio-content {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--default-color);
}

.portfolio .portfolio-content img {
    transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 14px;
    padding: 5px 10px;
    font-weight: 400;
    color: var(--accent-color);
    display: inline-block;
    background-color: #C2986E;
}

.portfolio .portfolio-content .portfolio-info p {
    position: absolute;
    bottom: 10px;
    text-align: center;
    display: inline-block;
    left: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
    position: absolute;
    left: calc(50% - 40px);
    font-size: 26px;
    top: calc(50% - 14px);
    color: #fff;
    transition: 0.3s;
    line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
    left: 50%;
    font-size: 34px;
    line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    padding: 40px 40px;
    height: 100%;
    border-radius: 15px;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 0;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 18px;
    font-weight: 500;
}

.pricing .description {
    font-size: 14px;
}

.pricing .cta-btn {
    border: 1px solid var(--default-color);
    color: var(--default-color);
    display: block;
    text-align: center;
    padding: 10px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    margin-top: 20px;
    margin-bottom: 6px;
}

.pricing .cta-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing ul li:last-child {
    padding-bottom: 0;
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .featured {
    position: relative;
}

.pricing .featured .popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 4px 15px 6px 15px;
    margin: 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.pricing .featured .cta-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }

    .how-block2 {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
    padding: 80px 20px;
}

.contact-container {
    padding: 1.25rem 0;
    margin: 5rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Две равные колонки */
    gap: 3.75rem;
    align-items: start;
}

/* Левая часть */
.contact-title {
    font-family: var(--heading-font);
    margin-bottom: 2.5rem;
}

.contact-subtitle {
    font-family: var(--default-font);
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.contact-description {
    font-family: var(--default-font);
    line-height: 160%;
    margin-bottom: 1.25rem;
    color: var(--default-color);
}

.contact-socials {
    display: flex;
    gap: 1.875rem;
    margin-top: 4.688rem;
}

.social-link {
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid var(--nav-hover-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nav-hover-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover, svg:hover path {
    fill: var(--contrast-color);
    background-color: var(--accent-color);
    transition: 0.3s;

}

/*-------CONTACT-----*/
/* Правая часть (Форма) */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.input-form {
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 5px;
    padding: 0.625rem 0.938rem;
    width: 100%;
    height: 3.5rem;
}

.input-form::placeholder, textarea.form-control::placeholder {
    font-family: var(--default-font);
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(137, 137, 137, 0.5);
}

.form-control:focus, #contact input-form:focus,
.contact-form-wrapper:focus{
    border-color: var(--nav-hover-color) !important;
    box-shadow: none !important;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 0.938rem;
    font-family: var(--default-font);
    font-size: 1rem;
    color: var(--default-color);
    user-select: none;
    margin-bottom: 3.75rem;
}

/* Контейнер для выравнивания */
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    font-family: var(--default-font);
    font-size: 15px;
    color: #4c5267; /* Цвет текста из макета */
    user-select: none;
}

/* Скрываем стандартный чекбокс */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Стили самого квадратика */
.checkbox-box {
    border-radius: 4px;
    width: 24px;
    height: 24px;
    border: 1px solid #D8D0CE; /* Светлый бордюр */
    position: relative;
    transition: all 0.2s ease;
}

/* Удаляем старую галочку на основе границ */
.checkbox-box::after {
    display: none !important;
}

/* Стили для контейнера иконки */
.checkbox-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* 1. Скрываем стандартный браузерный чекбокс */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* 3. Галочка по умолчанию СКРЫТА */
.checkmark-svg {
    opacity: 0;
    transform: scale(0); /* Добавим небольшой эффект появления */
    transition: all 0.2s ease;
}

/* 4. Появление галочки ПРИ КЛИКЕ (когда input выбран) */
.custom-checkbox input:checked + .checkbox-box .checkmark-svg {
    opacity: 1;
    transform: scale(1);
}

/* 5. Эффект наведения на рамку */
.custom-checkbox:hover .checkbox-box {
    border-color: var(--heading-color);
}

/* Стилизация текста рядом */
.checkbox-text {
    line-height: 1.2;
}

/* Адаптив */
@media (max-width: 850px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .btn-submit {
        align-self: center;
        width: 100%;
    }
}


/*.contact .info-wrap {*/
/*    background-color: var(--surface-color);*/
/*    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);*/
/*    padding: 30px;*/
/*    margin-bottom: 30px;*/
/*}*/

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
    margin-right: 15px;
}

.contact .info-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    border-radius: 5px;
    padding: 10px 15px;
    width: 590px;
    height: 56px;
    font-size: 14px;
    box-shadow: none;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 10px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.services {
    background-color: var(--surface-color);
}

.services__container {
    margin-top: 1.25rem;
    margin-bottom: 8.75rem;
}


.services__subtitle {
    font-family: var(--default-font);
    font-size: 18px;
    color: #333;
    margin-bottom: 60px;
    max-width: 600px;
}

/* Сетка услуг */
.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 колонки */
    column-gap: 80px;
    row-gap: 60px;
}

/* Элемент услуги */
.service-item {
    border-left: 2px dotted var(--nav-hover-color); /* Золотистая пунктирная линия слева */
    padding-left: 0.95rem;
}

.service-item__title {
    font-family: var(--heading-font);
    margin: 0 0 0.95rem 0;
}

.service-item__tagline {
    font-family: var(--default-font);
    font-weight: 500;
    margin-bottom: 0.313rem;
    font-size: 1.125rem;
    line-height: 160%;
}

.service-item__description {
    font-family: var(--default-font);
    margin-bottom: 0;
    line-height: 160%;
    color: var(--default-color);
}

/* Адаптив для планшетов и мобилок */
@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr; /* В одну колонку на мобильных */
        row-gap: 40px;
    }

    .services__title {
        font-size: 28px;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}


/*.service-details .service-box {*/
/*    background-color: var(--surface-color);*/
/*    padding: 20px;*/
/*    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.service-details .service-box + .service-box {*/
/*    margin-top: 30px;*/
/*}*/

/*.service-details .service-box h4 {*/
/*    font-size: 20px;*/
/*    font-weight: 700;*/
/*    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);*/
/*    padding-bottom: 15px;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.service-details .services-list {*/
/*    background-color: var(--surface-color);*/
/*}*/

/*.service-details .services-list a {*/
/*    color: color-mix(in srgb, var(--default-color), transparent 20%);*/
/*    background-color: color-mix(in srgb, var(--default-color), transparent 96%);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding: 12px 15px;*/
/*    margin-top: 15px;*/
/*    transition: 0.3s;*/
/*}*/

/*.service-details .services-list a:first-child {*/
/*    margin-top: 0;*/
/*}*/

/*.service-details .services-list a i {*/
/*    font-size: 16px;*/
/*    margin-right: 8px;*/
/*    color: var(--accent-color);*/
/*}*/

/*.service-details .services-list a.active {*/
/*    color: var(--contrast-color);*/
/*    background-color: var(--accent-color);*/
/*}*/

/*.service-details .services-list a.active i {*/
/*    color: var(--contrast-color);*/
/*}*/

/*.service-details .services-list a:hover {*/
/*    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);*/
/*    color: var(--accent-color);*/
/*}*/

/*.service-details .download-catalog a {*/
/*    color: var(--default-color);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding: 10px 0;*/
/*    transition: 0.3s;*/
/*    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
/*}*/

/*.service-details .download-catalog a:first-child {*/
/*    border-top: 0;*/
/*    padding-top: 0;*/
/*}*/

/*.service-details .download-catalog a:last-child {*/
/*    padding-bottom: 0;*/
/*}*/

/*.service-details .download-catalog a i {*/
/*    font-size: 24px;*/
/*    margin-right: 8px;*/
/*    color: var(--accent-color);*/
/*}*/

/*.service-details .download-catalog a:hover {*/
/*    color: var(--accent-color);*/
/*}*/

/*.service-details .help-box {*/
/*    background-color: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*    margin-top: 30px;*/
/*    padding: 30px 15px;*/
/*}*/

/*.service-details .help-box .help-icon {*/
/*    font-size: 48px;*/
/*}*/

/*.service-details .help-box h4,*/
/*.service-details .help-box a {*/
/*    color: var(--contrast-color);*/
/*}*/

/*.service-details .services-img {*/
/*    margin-bottom: 20px;*/
/*}*/

/*.service-details h3 {*/
/*    font-size: 26px;*/
/*    font-weight: 700;*/
/*}*/

/*.service-details p {*/
/*    font-size: 15px;*/
/*}*/

/*.service-details ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    font-size: 15px;*/
/*}*/

/*.service-details ul li {*/
/*    padding: 5px 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.service-details ul i {*/
/*    font-size: 20px;*/
/*    margin-right: 8px;*/
/*    color: var(--accent-color);*/

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* Add your styles here */

/* .starter-section {
} */

.main-title {
    font-weight: 500;
    font-size: 50px;
    text-align: center;
    color: var(--nav-color);

    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
}

.title-container {
    margin: 220px auto 60px;
    text-align: center;
    max-width: 70%;
}

.main-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    color: var(--nav-color);
    max-width: 760px;
    margin: 30px auto 0;
}

.buttons {
    margin: 0 auto 10rem;
    display: flex;
    justify-content: center;

}

.primary-button {
    border-radius: 20px;
    border-color: transparent;
    padding: 15px 20px;
    background-color: var(--accent-color);
    width: 282px;
    /*height: 62px;*/
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--background-color);
    text-decoration: none;
    text-align: center;
    margin-right: 24px;
}

.primary-button:hover {
    background-color: #C2986E;
}

.secondary-button {
    border: 2px solid rgba(62, 22, 12, 0.2);
    border-radius: 20px;
    padding: 15px 20px;
    width: 282px;
    /*height: 62px;*/
    background: rgba(255, 252, 248, 0.1);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--nav-color);
    text-align: center;
    text-decoration: none;
}

.secondary-button:hover {
    background: rgba(255, 252, 248, 0.1);
    border: 3px solid var(--nav-hover-color);
    color: var(--nav-hover-color);

}

.floating {
    position: absolute;
    /*display: inline-block;*/
    backdrop-filter: blur(10px);
    font-size: 16px;
    letter-spacing: 1px;
    border: 1px solid rgba(249, 249, 249, 0.5);
    border-radius: 20px;
    padding: 10px 20px;
    width: 140px;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 10px 20px -11px rgba(62, 22, 12, 0.1), 0 10px 20px -11px rgba(62, 22, 12, 0.1), 0 10px 20px -11px rgba(62, 22, 12, 0.1);
    background: rgba(245, 240, 232, 0.1);
    /*background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));*/
    /*backdrop-filter: blur(25px);*/
    color: var(--accent-color);
    -webkit-backdrop-filter: blur(25px);
}

@keyframes floatY {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

.tag-1 {
    animation: floatY 6s ease-in-out infinite;
    top: 169px;
    left: 550px;

}

.tag-2 {
    animation: floatY 7s ease-in-out infinite;
    top: 219px;
    right: 140px;
}

.tag-3 {
    animation: floatY 8s ease-in-out infinite;
    top: 170px;
    left: 120px;
}

.hero-action {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    margin: 1rem 1rem 0 0;
    width: 30%;

}

.scroll-indicator {
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    margin: 2rem 4rem 1rem 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-0.63rem);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator svg {
    fill: var(--contrast-color);
}

.scroll-indicator path:hover {
    fill: url(#paint0_linear_33_10);
    transform: scale(1);
    transition: all 0.2s ease-in-out;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(0deg, #1A2B4C, #cfb288);
    color: white;
    text-decoration: none;
    border-radius: 1.56rem 0rem;
    backdrop-filter: blur(0.63rem);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
}

.section-description {
    text-align: center;
    margin: 5rem auto 0;
    width: 80%;
    font-size: 1.1rem;
}

.tecnologias-title {
    text-align: center;
    margin: 3rem 0;
}

.tecnologias-container {
    margin: 0 auto;
}

.tecnologias-container:first-child {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.tecnologias-container p {
    padding: 0;
}

.tecnologias p {
    text-align: center;
    padding: 0;
}

.contact-text {
    margin: 0 0 3rem 0;
}

.footer-container {
    margin: 1.88rem 0;
}

.footer-legal a {
    font-size: 0.7rem;
    margin-left: 1rem;
    cursor: pointer;
}

.footer-legal a:hover {
    color: var(--default-color);
}

.legal {
    margin-top: 2rem;
}

.legal h1 {
    font-size: 1.25rem;
}

.legal h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

article {
    padding: 1rem 2rem;
}

@media screen and (max-width: 1024px) {
    .blur {
        width: 250px;
        height: 250px;
    }

    .blur-1 {
        top: 100px;
        right: 0;
    }

    .blur-2 {
        bottom: 100px;
        left: 0;
    }

    .tag-1 {
        left: 450px;
    }
}

@media screen and (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .hero-action {
        width: 40%;
    }

    blur {
        width: 150px;
        height: 150px;
    }

    .section-description {
        font-size: 1rem;
    }

    .about .content h3 {
        margin-top: 2rem;
        text-align: center;
    }

    .tag-1 {
        display: none;
    }
}


@media (max-width: 575px) {
    .hero-cta {
        font-size: 0.8rem;
        padding: 0.8rem 2rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .hero .social-links a {
        font-size: 1.12rem;
    }

    .hero-action {
        width: 50%;
    }

    .tag-2, .tag-3 {
        display: none;
    }

    .about .profile-img {
        margin-bottom: 2.5rem;
    }

    .footer-legal {
        margin-top: 2rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin-left: 0;
    }

    .section-description {
        font-size: 0.9rem;
        margin-bottom: 3rem;
        margin-top: 3rem;
    }

    .section-description p:nth-child(2) {
        margin-bottom: 0;
    }

    .tecnologias-container {
        width: 6.25rem;
    }

    .footer-container {
        flex-direction: column;
        justify-content: space-around;
    }

}

/* ── SECTION COMO TRABAJO── */
.title-how {
    text-align: center;
    margin: 5.625rem 0 1.4rem;
}

.align-items-start {
    margin-bottom: 7.5rem;
}

.align-items-start p {
    color: var(--default-color);
}

.subTitle-how {
    margin-bottom: 1rem;
}

.step-number {
    font-family: var(--decorative-font);
    color: var(--nav-hover-color);
    font-size: 5rem;
}

.how-block2 {
    margin-top: 11.875rem;
}

.block-end {
    margin-bottom: 1.875rem;
}

.work-blockMob {
    display: none;
}

@media (max-width: 768px) {
    .how-block2 {
        margin-top: 0;
    }

    .buttons {
        margin-bottom: 8.125rem;
    }
}

@media (max-width: 575px) {
    .work-blockDesk {
        display: none;
    }

    .work-blockMob {
        display: block;
    }
}


/* SECCION BENEFICIOS*/
.benefits {
    padding: 3.75rem 1.25rem;
    position: relative;
}

.benefits__title {
    font-family: var(--heading-font);
    color: var(--heading-color);
    margin: 6.25rem 0 3.75rem;
}

/* Сетка */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки */
    gap: 1.25rem;
    margin-bottom: 11.25rem;
}

/* Специфичное расположение карточек как на макете */
.benefit-card--wide {
    grid-column: span 2; /* Вторая карточка занимает 2 колонки */
}

/* Стили карточек */
.benefit-card {
    padding: 1.25rem 1.25rem 2.5rem;
    border-radius: 20px;
    min-height: 20.625rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(62, 22, 12, 0.15);
    background: rgba(194, 152, 110, 0.1);

}

.benefit-description {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Текст прижат к низу */
}

.benefit-card__title {
    font-family: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: 0.625rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.benefit-card__text {
    line-height: 160%;
    font-size: 1rem;
    color: var(--default-color);
}

/* Адаптив для мобильных устройств */
@media (max-width: 992px) {
    .buttons {
        margin-bottom: 3.125rem;
    }

    .benefits__grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-card--wide {
        grid-column: span 1;
    }

    .how-block2 {
        margin-top: 0;
    }

    .benefits__grid {
        margin-bottom: 5rem;
    }

    .section-title {
        margin-top: 0.625rem;
    }

    .btn-portfolio {
        margin: 3.438rem 0 3.75rem;
    }

    .services__container {
        margin-bottom: 1.25rem;
    }

    .contact-container {
        padding: 0;
        margin: 1.25rem auto;
    }
}

@media screen and (max-width: 768px) {
    .benefits__title {
        margin: 3.125rem 0 3.75rem;
    }

    .about-container {
        margin-top: 3.125rem;
        margin-bottom: 3.125rem;
    }

    .hero p {
        font-size: 1.125rem;
    }
}

@media (max-width: 600px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .contact-socials {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .hero {
        padding: 0;
    }
    .title-container {
        margin: 5rem auto 9.375rem;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-button {
        width: 100%;
        margin: 0 0 1rem;
        height: 4.188rem;
        line-height: 180%;
    }

    .secondary-button {
        width: 100%;
        height: 4.188rem;
    }

    .title-how {
        margin: 1.125rem auto 2.5rem;
    }

    .title-decorate {
        display: flex;
        align-items: center;
    }

    .step-number {
        display: inline;
        font-size: 3.75rem;
    }

    .subTitle-how {
        font-size: 1.125rem;
        font-weight: bold;
    }

    .align-items-start {
        margin-bottom: 2.5rem;
    }

    .benefits {
        padding: 0;
    }

    .benefit-card {
        min-height: 18.063rem;
    }

    .benefits__title,
    .section-title h2,
    .title-how {
        margin-top: 0;
        text-align: center;
    }

    #about h2 {
        font-size: 1.653rem;
    }

    .benefits__grid {
        margin-bottom: 2.5rem;
    }

    .benefits .blur-1,
    .benefits .blur-2 {
        display: none;
    }

    .section-title h2 {
        text-align: center;
        margin-bottom: 1.125rem;
    }

    .section-title p {
        text-align: center;
    }
}




