@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: 'Aleo', serif;
}

html, body {
    scroll-behavior: smooth;
}

.header {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
}

.header-container {
    max-width: 1217px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1217px) {
    .header-container {
        padding: 0 16px;
    }
}

@media (max-width: 800px) {
    .header-container {
        padding: 0 16px;
    }
}

.header-logo {
    width: auto;
}

.header-logo img {
    
}

@media (max-width: 800px) {
    .header-logo img {
        width: 164px;
        height: 27.89px;
    }
}

.header-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

@media (max-width: 800px) {
    .header-menu {
        display: none;
    }
}

 .header-menu-list {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 40px;
}

@media (max-width: 800px) {
    .header-menu-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        align-items: center;
    }
}

 .header-menu-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

 .header-menu-list li a:hover {
    color: #BED2D9;
}

 .header-menu-button-primary {
    border: 1px solid #BED2D980;
    padding: 16px 24px;
    border-radius: 4px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.header-menu .header-menu-button-primary:hover {
    background-color: #BED2D9;
    color: #000;
}


@media (max-width: 800px) {
    .header-menu .header-menu-button-desktop {
        display: none;
    }
}

.menu-hamburger {
    display: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
}


.menu-hamburger.active {
    z-index: 5;
}

.menu-hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #fff;
    display: block;
    transition:  0.3s ease;
}

.menu-hamburger-line:nth-child(2) {
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.menu-hamburger-line:nth-child(3) {
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.menu-hamburger.active .menu-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateX(10px);
}

.menu-hamburger.active .menu-hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.active .menu-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateX(8px);
}

@media (max-width: 800px) {
    .menu-hamburger {
        display: block;
    }
}

.menu-mobile-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    z-index: 1;
    display:flex;
    gap: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px;
    padding-top: 64px;
    left: -100%;
    transition: 0.3s ease;
    z-index: 4;
}

.active-container {
    left: 0;
}

.menu-mobile-container  .app-links-container {
    margin:0;
    align-self: center;
    margin-top:24px;
    z-index: 2;
}

.menu-mobile-illustration-bg-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 254px;
    height: 123px;
}

.hero-section {
    position: relative;
    background-color: #000;
    color: #fff;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 90px;
    overflow: hidden;
    background-size: cover;
    padding-bottom: 164px;
}

@media (max-width: 850px) {
    .hero-section {
        height: auto;
        padding-top: 64px;
        padding-bottom: 0;
    }
}

.hero-image-background-left {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 164px;
    max-height: 164px;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.hero-image-background-right {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 650px;
    max-height: 433px;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

@media (max-width: 1366px) {
    .hero-image-background-right {
        max-width: 500px;
        max-height: 333px;
    }
}

@media (max-width: 1217px) {
    .hero-image-background-right {
        max-width: 300px;   
        max-height: 200px;
    }
}

@media (max-width: 1030px) {
    .hero-image-background-left {
       display: none;
    }
}

@media (max-width: 850px) {
    .hero-image-background-right {
        display: none;
    }
}


.hero-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 1217px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

@media (max-width: 1217px) {
    .hero-container {
        padding: 0 16px;
    }
}

@media (max-width: 1030px) {
    .hero-container {
       flex-direction: column;
       align-items: flex-start;
       justify-content: flex-start;
    }
}

@media (max-width: 850px) {
    .hero-container {
        align-items: center;    
        justify-content: center;
    }
}



.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 850px) {
    .hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }
}

.hero-title {
    font-size: 18px;
    font-weight: 700;
    color: #F2D6B9;
    text-transform: uppercase;
}

.hero-keyword {
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
}

@media (max-width: 850px) {
    .hero-title {
        font-size: 14px;
        line-height: 100%;
    }
}

.hero-subtitle {
    font-size: 64px;
    line-height: 100%;
    font-weight: 700;
    color: #fff;
    max-width: 461px;
    margin-top: 32px;
}

@media (max-width: 850px) {
    .hero-subtitle {
        font-size: 40px;
        line-height: 100%;
        max-width: 300px;
    }
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin-top: 24px;
}

@media (max-width: 850px) {
    .hero-description {
        max-width: 300px;
    }
}

.hero-button {
    background-color: #E5AC73;
    color: #000;
    padding: 20px 50px;
    border-radius: 4px;
    font-family: 'Aleo', cursive;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    margin-top: 40px;
    border: none;
    text-decoration: none;
    text-align: center;
}


.hero-button:hover {
    background-color: #BED2D9;
    color: #000;
}

.app-links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    z-index:10;
}



@media (max-width: 1030px) {
    .app-links-container {
        align-self: flex-start;
        align-items: flex-start;
        margin-top: 24px;
    }
}


@media (max-width: 850px) {
    .app-links-container {
        align-self: center;
        margin-top: 24px;
        justify-self: center;
        align-items: center;
        justify-content: center;
    }
}
.app-links-container .app-links-title {
    font-size: 16px;
    font-weight: 400;
    color: #BED2D9;
}

.app-links-container .links-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 32px;
}

@media (max-width: 850px) {
    .app-links-container .links-container {
        margin-top: 16px;
    }
}

.app-links-container .app-link {
    width: 66px;
    height: 66px;
    border: 1px solid #BED2D94D;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.app-links-container .app-link img {
    width: 28px;
    height: 28px;
}

.app-links-container .app-link:hover {
    border-color: #BED2D9;
    background-color: #BED2D9;
}

.hero-image {
    position: absolute;
    right: 335px;
    bottom: 0;
}

.hero-image-mobile {
    display: none;
    align-self: flex-end;
    justify-self: flex-end;
}

@media (max-width: 1366px) {
    .hero-image {
        right: 100px;
    }
}

@media (max-width: 1217px) {
    .hero-image {
        right: 0;
        width: 500px;
    }
}

.hero-image-desktop {
    max-width: 500px;
    margin-bottom: -10px;
}

@media (max-width: 850px) {
    .hero-image {
        position: relative;
        align-self: flex-end;
        justify-self: flex-end;
        width: auto;
        margin-right: -20px;
    }

    .hero-image .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
    }
}

.about-section {
    width: 100%;
    color: #fff;
    padding: 100px 0;
}

@media (max-width: 850px) {
    .about-section {
        padding: 64px 0;
    }
}

.about-container {
    max-width: 1217px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1217px) {
    .about-container {
        padding: 0 16px;
    }
}

.about-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 850px) {
    .about-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.about-header .header-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

@media (max-width: 850px) {
    .about-header .header-text-container {
        align-items: center;
        text-align: center;
    }
}

.about-header .header-text-container .header-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #E5AC73;
}

.about-header .header-text-container .header-description {
    font-size: 42px;
    font-weight: 700;
    max-width: 480px;
    line-height: 100%;
    color: #000;
    width: 100%;
    margin-top: 24px;

}

@media (max-width: 850px) {
    .about-header .header-text-container .header-description {
        font-size: 32px;
        line-height: 100%;
        max-width: 300px;
    }
}

.about-header .header-text-container .header-description mark {
    background-color: transparent;
    color: #E5AC73;
}


.about-header .header-text-container .header-description-legend {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 100%;
    margin-top: 24px;
    max-width: 480px;
    font-family: 'Inter', sans-serif;

}

@media (max-width: 850px) {
    .about-header .header-text-container .header-description-legend {
        max-width: 300px;
        font-size: 16px;
    }
}

.about-header .header-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 850px) {
    .about-header .header-image-container {
        max-width: 100%;
        margin-top: 32px;
    }
}

.about-header .header-image-container img {
    max-width: 590px;
    width: 590px;
    max-height: 550px;
    object-fit: cover;
    margin-bottom: -85px;
}

@media (max-width:600px){
    .about-header .header-image-container img {
        width: 100%;
    }
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 850px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.about-content .about-content-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    gap: 8px;
}

@media (max-width: 850px) {
    .about-content .about-content-list {
        flex-direction: column;
        width: 100%;
        margin-top: -32px;
    }
}

.about-content .about-content-list .about-content-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 32px;
    border-radius: 4px;
    border: 1px solid #BED2D94D;
    max-height: 340px;
    height: 340px;
}

@media (max-width: 850px) {
    .about-content .about-content-list .about-content-item {
        max-height: auto;
        height: auto;
    }
}

.about-content .about-content-list .about-content-item:nth-child(1) {
    background-color: #F2D6B9;
}

.about-content .about-content-list .about-content-item:nth-child(2) {
    background-color: #BED2D9;
}

.about-content .about-content-list .about-content-item:nth-child(3) {   
    background-color: #000;

    .about-content-item-title {
        color: #fff;
    }

    .about-content-item-description {
        color: #fff;
    }
}




.about-content .about-content-list .about-content-item .about-content-item-icon {
}

.about-content .about-content-list .about-content-item .about-content-item-icon img {
    width: 32px;
    height: 32px;
}

.about-content .about-content-list .about-content-item .about-content-item-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-top: 32px;
    max-width: 250px;
    line-height: 110%;
}

@media (max-width: 850px) {
    .about-content .about-content-list .about-content-item .about-content-item-title {
        font-size: 28px;
    }
}

.about-content .about-content-list .about-content-item .about-content-item-description {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-top: 56px;
}

@media (max-width: 850px) {
    .about-content .about-content-list .about-content-item .about-content-item-description {
        margin-top: 24px;
    }
}

.solutions-features {
    width: 100%;
    background: #E5AC73;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-top: 100px;
    position: relative;
}

.solutions-features-content-square-llustration-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 106px;
    height: 106px;
    background: #fff;
}

@media (max-width: 650px) {
    .solutions-features-content-square-llustration-left {
        display: none;
    }
}

.solutions-features-content-square-llustration-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 106px;
    height: 106px;
    background: #fff;
}

@media (max-width: 850px) {
    .solutions-features {
        padding-top: 64px;
    }

    .solutions-features-content-square-llustration-left, .solutions-features-content-square-llustration-right {
        width: 72px;
        height: 62px;
    }

}

.solutions-features-container {
    max-width: 1217px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1217px) {
    .solutions-features-container {
        padding: 0 16px;
    }
}

.solutions-features-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.solutions-features-description {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    max-width: 580px;   
    line-height: 100%;
    text-align: center;
    margin-top: 22px;
}

@media (max-width: 850px) {
    .solutions-features-description {
        font-size: 32px;
        max-width: 300px;
        line-height: 120%;
    }
}

.solutions-features-description mark {
    background-color: transparent;
    color: #fff;
}

.solutions-features-description-legend {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    max-width: 900px;
    text-align: center;
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 850px) {
    .solutions-features-description-legend {
        font-size: 16px;
        line-height: 120%;
        max-width: 300px;
    }
}

.solutions-features-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 48px;
}

@media (max-width: 850px) {
    .solutions-features-content {
        margin-top: 24px;
    }
}

@media (max-width: 1060px) {
    .solutions-features-content {
        flex-direction: column;
    }
}

.solutions-features-content-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    width: 100%;
    height: 100%;
    list-style: none;
}

@media (max-width: 850px) {
    .solutions-features-content-list {
        padding: 0;
        margin-top: 0;
        gap: 24px;
    }
}

.solutions-features-content-list .solutions-features-content-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

@media (max-width: 850px) {
    .solutions-features-content-list .solutions-features-content-item {
        margin-bottom: 24px;
        width: 100%;
    }
}

.solutions-features-content-image {
    margin-bottom: -5px;
}

.solution-bg-illustration {
    position: absolute;
    top: 0;
    left: 0;
    margin: 100px;
}

@media (max-width: 1000px) {
    .solution-bg-illustration {
        display: none;
    }
}

.solutions-features-content-image-mobile {
    display: none;
}

.solutions-features-content-image-mobile img {
    max-width: 261px;
    width: 261px; 
}

.solutions-features-content-image img{
    max-width: 361px;
    width: 361px; 
}


@media (max-width: 1060px) {
     .solutions-features-content-image-desktop {
        display: none;
    }

    .solutions-features-content-image-mobile {
        display: block;
    }
}

.solutions-features-content-list .solutions-features-content-item:nth-child(1) {
    border-bottom: 1px solid #BED2D94D;
    padding-bottom: 56px;
    margin-bottom: 56px;
}




.solutions-features-content-list .solutions-features-content-item .content-item-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    
}

@media (max-width: 850px) {
    .solutions-features-content-list .solutions-features-content-item:nth-child(1) {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

    .solutions-features-content-list .solutions-features-content-item {
        margin-bottom: 24px;
    }
}

.solutions-features-content-list .solutions-features-content-item .content-item-text-container .content-item-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 100%;
}

@media (max-width: 850px) {
    .solutions-features-content-list .solutions-features-content-item .content-item-text-container .content-item-title {
        font-size: 22px;
    }
}

.solutions-features-content-list .solutions-features-content-item .content-item-text-container .content-item-description {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 100%;
    margin-top: 16px;
}

.solutions-features-content-item-last {

}

@media (max-width: 850px) {
    .solutions-features-content-item-last {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .solutions-features-content-item-last .content-item-text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .solutions-features-content-item-last .content-item-text-container .content-item-title {
        text-align: center;
        width: 100%;
    }

    .solutions-features-content-item-last .content-item-text-container .content-item-description {
        text-align: center;
        width: 100%;
    }
    
}

.content-item-button {
    background-color: #000;
    color: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;    
    margin-top: 20px;
    text-decoration: none;
    text-align: center;
}

.content-item-button:hover {
    background-color: #BED2D9;
    color: #000;
}

.banner-account {
    width: 100%;
    padding-top: 184px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 115px;
}

@media (max-width: 1010px) {
    .banner-account {
        padding-top: 73px;
        gap: 31px;
    }
}

.banner-account-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1217px;
    margin: 0 auto;
    gap: 8px;
    position: relative;
}

.banner-account-content-container {
    max-width: 300px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    padding: 25px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 40px;
}

@media (max-width: 700px) {
    .banner-account-content-container {
        margin-left: 25px;
        margin-bottom: 16px;
        max-width:100%;
        padding: 11px;
        align-items: center;
        width: fit-content;
    }
}

.banner-account-content-container .banner-account-icon {
    max-width: 24px;
    max-height: 24px;
    width: 100%;
    height: 100%;
}

.banner-account-content-container .banner-account-title {
    max-width: 200px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 120%;
}

@media (max-width: 700px) {
    .banner-account-content-container .banner-account-title {
        font-size: 14px;
        line-height: 100%;
    }
}

@media (max-width: 1217px) {
    .banner-account-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 1010px) {
    .banner-account-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-account-container-reverse {
        flex-direction: column-reverse;
    }
}

.banner-account-container-reverse .banner-account-content {
    background-color: #BED2D9;
}

.banner-account-container-reverse .banner-account-button-primary:hover {
    background-color: #F2D6B9;
    color: #000;
}

.banner-account-content-image {
    max-width: 604px;
max-height: 517px;
position: relative;

}

.banner-account-image {
    max-width: 604px;
    max-height: 517px;
    width: 604px;
    height: 517px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;  
}

@media (max-width: 700px) {
    .banner-account-image {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 300px) {
    .banner-account-image {
        max-width:300px;
        width: 100%;
        height: 290px;
    }
}



.banner-account-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 58px 78px;
    max-height: 517px;
    height: 517px;
    background-color: #F2D6B9;
    color: #fff;
    border-radius: 4px;
}

@media (max-width: 700px) {
    .banner-account-content {
        align-items: center;
        justify-content: center;
        padding: 32px;
        max-height: auto;
        height: auto;
    }
}

.banner-account-content .banner-account-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 100%;
    max-width: 418px;
    margin-top: 48px;
}

@media (max-width: 700px) {
    .banner-account-content .banner-account-title {
        font-size: 24px;
        text-align: center;
        line-height: 120%;
    }
}

.banner-account-content .banner-account-description {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 100%;
    margin-top:16px;
    max-width: 447px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 700px) {
    .banner-account-content .banner-account-description {
        text-align: center;
        line-height: 120%;
    }
}

.banner-account-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 44px;
    text-decoration: none;
    text-align: center;
}

@media (max-width: 700px) {
    .banner-account-button {
        margin-top: 24px;
        align-items: center;
        justify-content: center;
    }
}

.banner-account-button-primary {
    background-color: #000;
    color: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    width: 100%;
    cursor: pointer;
    max-width: 237px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.banner-account-button-primary:hover {
    background-color: #BED2D9;
    color: #000;
}

.banner-newsletter {
    width: 100%;
    padding-top: 184px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 18px;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    margin-top: 169px;
    min-height: 212px;
    background: url('../../assets/images/newsletter-background-veloz-pay.png') no-repeat center center;
}

@media (max-width: 700px) {
    .banner-newsletter {
        padding:0;
        background: #000;
        padding-top: 51px;
        margin-top: 61px;
        
    }
}


.banner-newsletter-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    max-width: 1217px;
}

@media (max-width: 1217px) {
    .banner-newsletter-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 700px) {
    .banner-newsletter-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        align-items: center;
    }
}


.banner-newsletter-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    color: #fff;
    max-width: 347px;
}

@media (max-width: 700px) {
    .banner-newsletter-title {
        text-align: center;
        font-size: 24px;
        line-height: 120%;
        max-width: 240px;
    }
}

.banner-newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    width: 100%;
}

@media (max-width: 700px) {
    .banner-newsletter-form {
        margin-top: 52px;
        padding-bottom: 61px;
    }
}
.banner-newsletter-form-label {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 100%;
}

.banner-newsletter-form-input {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 480px;
    width: 100%;
    background-color: #000;
    border: 1px solid #BED2D94D;
    border-radius: 4px;
    height: 52px;
    margin-top:12px
}

.banner-newsletter-form-input .banner-newsletter-form-icon-input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 52px;
}

.banner-newsletter-form-label label {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 100%;
    margin-right: 16px;
}

.banner-newsletter-form-input-email {
    width: 100%;
    max-width: 480px;
    width: 100%;
    height: 52px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 100%;
    padding-left: 16px;
    outline: none;
    font-family: 'Inter', sans-serif;
    border: none;
}

.banner-newsletter-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    background-color: #000;
    border: none;
    align-self: center;
    cursor: pointer;
}


.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #E5AC73;
    padding-top: 74px;

}

.column-logo {
    width: auto;
    margin-bottom: 25px;
    align-self: flex-start;
}



.footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1217px;
}

@media (max-width: 1217px) {
    .footer-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}


.first-column-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap:44px;
}

.last-column-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap:16px;
    padding-bottom: 33px;
    border-bottom: 1px solid #FFFFFF4D;
    margin-bottom: 17px;
}

.column-title-first-column {
    margin-bottom: 25px;
}

@media (max-width: 970px) {
    .first-column-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }
}

.column-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 16px;
}

@media (max-width: 970px) {
    .column-container {
        align-items: center;
        justify-content: center;
        max-width: 300px;
    }
}
.column-container .column-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 140%;
}

@media (max-width: 970px) {
    .column-container .column-title {
        text-align: center;
    }
}

.column-container .column-link-phone {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.column-container .column-link-phone:hover {
    color: #DCE4E8;
}


.column-container .column-description {
    font-size: 12px;
    font-weight: 300;
    color: #000;
    line-height: 140%;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 970px) {
    .column-container .column-description {
        text-align: center;
    }
}

.column-container .column-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 140%;
    margin-top: 25px;
}

@media (max-width: 970px) {
    .column-container .column-subtitle {
        text-align: center;
    }
}

.column-container .column-social-media {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

@media (max-width: 970px) {
    .column-container .column-social-media {
        justify-content: center;
        align-items: center;
    }
}

.column-container .column-link-network {
    width: 66px;
    height: 66px;
    transition: 0.3s ease;
    background-color: #fff;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-container .column-link-network:hover {
    background-color: #DCE4E8;
}

.column-container .column-link-network img {
    width: 28px;
    height: 28px;
}

.column-container .column-link {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 140%;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

@media (max-width: 970px) {
    .column-container .column-link {
        text-align: center;
    }
}

.column-container .column-link:hover {
    color: #DCE4E8;
}

.column-container .column-link-button {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    width: 100%;
    line-height: 140%;
    text-decoration: none;
    background-color: #fff;
    padding: 16px 24px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.column-container .column-link-button:hover {
    background-color: #DCE4E8;
    color: #000;
}


.column-container .footer-menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    gap: 5px;
    border-bottom: 1px solid #FFFFFF4D;
    padding-bottom: 16px;
}

@media (max-width: 970px) {
    .column-container .footer-menu-list {
        align-items: center;
        justify-content: center;
    }
}

.column-description .bottom-border {
    border-bottom: 1px solid #FFFFFF4D;
    padding-bottom: 16px;
}

.footer-menu-list .menu-item {
    font-size: 12px;
    font-weight: 300;
    color: #000;
    line-height: 160%;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 970px) {
    .footer-menu-list .menu-item {
        text-align: center;
    }
}

.footer-menu-list .menu-item a {
    text-decoration: none;
    color: #000;
}

.footer-menu-list .menu-item:hover {
    color: #DCE4E8;
}

.store-menu-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;    
    list-style: none;
    gap: 16px;
    border-bottom: 1px solid #FFFFFF4D;
    padding-bottom: 39px;
}

@media (max-width: 970px) {
    .store-menu-list {
        justify-content: center;
    }
}

.store-menu-list .menu-item {
    width: 66px;
    height: 66px;
    border: 1px solid #BED2D94D;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    background-color: #000;
}

.store-menu-list .menu-item img {
    width: 28px;
    height: 28px;
}

.store-menu-list .menu-item:hover {
    background-color: #DCE4E8;
}

.second-column-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #CBCBCB;
    padding-top: 43px;
    margin-top:69px;
    padding-bottom: 55px;
}

@media (max-width: 970px) {
    .second-column-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }
}

.second-column-container .second-column-description {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 140%;
    font-family: 'Inter', sans-serif;
}

.second-column-container .second-column-link {
    font-size: 12px;
    font-weight: 300;
    color: #000;
    line-height: 140%;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

@media (max-width: 970px) {
    .second-column-container .second-column-link {
        text-align: center;
    }
}

.privacy-policy-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px 100px;
    max-width: 1217px;
    margin: 0 auto;
}

@media (max-width: 970px) {
    .privacy-policy-section {
        padding: 50px 16px;
    }
}

.privacy-policy-container {
    margin-bottom: 30px;
}

.privacy-policy-content  .privacy-policy-content-title {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 140%;
    font-family: 'Inter', sans-serif;
}

 .wpcf7-response-output {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 140%;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    margin-top: 16px;
    border:none;
}

.wpcf7-form p {
    display: none;
}


.moodal-contatct-overlay  .wpcf7-response-output {
    color: #000;
}

 .wpcf7-form-control .wpcf7-submit, .wpcf7-form-control-wrap, .wpcf7-submit {
    position: absolute;
    visibility: hidden;
}

.moodal-contatct-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.moodal-contatct-container {
    max-width: 445px;
    width: 100%;
    min-height: 591px;
    background-color: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 48px;
    position: relative;
}


@media (max-width: 600px) {
    .moodal-contatct-container {
        padding: 24px;
        min-height: 100%;
        overflow-y:auto;
        max-width: 100%;
        width: 100%;
    }
}



.moodal-contatct-close {
    width: 31px;
    height: 31px;
    outline: none;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    margin: 24px;
    cursor: pointer;
}

.moodal-contatct-close img {
    width: 31px;
    height: 31px;
}

.moodal-contatct-container .modal-container-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.moodal-contatct-container .modal-container-content .moodal-contatct-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    line-height: 140%;
    font-family: 'Aleo', sans-serif;
}

.moodal-contatct-container .modal-container-content .moodal-contatct-description {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 140%;
    font-family: 'Inter', sans-serif;
    margin-top: 8px;
}

.moodal-contatct-container .modal-container-content .moodal-contatct-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 24px;
    gap: 10px;
}

.moodal-contatct-container .modal-container-content .moodal-contatct-form .moodal-contatct-form-input {
    width: 100%;
    height: 52px;
    border-radius: 4px;
    border: 1px solid #BED2D966;
    font-size: 16px;
    font-weight: 400;
    color: #434343;
    line-height: 140%;
    font-family: 'Inter', sans-serif;
    background-color: #E8E8E880;
    outline: none;
    padding: 16px 24px;
}

.moodal-contatct-container .modal-container-content .moodal-contatct-form .moodal-contatct-form-input:focus {
    border: 1px solid #BED2D966;
}

.moodal-contatct-container .moodal-contatct-button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 4px;
    background-color: #E5AC73;
    color: #000;
    margin-top: 24px;
    cursor: pointer;
    transition: 0.3s ease, color 0.3s ease;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Aleo', sans-serif;
}

.moodal-contatct-container .moodal-contatct-button:hover {
    background-color: #BED2D9;
    color: #000;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 24px;
    gap: 8px;
}

.contact-info-container .contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 16px;
    width: 100%;
    border-bottom: 1px solid #BED2D94D;
    background-color: #FFF4E9;
    gap: 8px;
    border-radius: 4px;
           font-size: 16px;
        font-weight: 400;
        color: #000;
    line-height: 140%;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.contact-info-container .contact-item img {
    width: 24px;
    height: 24px;
}

.contact-info-container .contact-item p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 140%;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}



