﻿.parallax-container {
    padding: 50px 0 50px 50px;
}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero,
.cta,
.footer {
    height: 100vh;
}


.cards-outer-wrapper {
    width: 100%;
}

.cards-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    overflow:hidden;
}
.cards-section.second {
   margin-top:340px;
}

.cards-container {
    display: flex;
    gap: 50px;
    padding-top: 100px;
    transition: transform 0.3s ease-out;
}

.cta {
    padding: 100px 20px;
    text-align: center;
    background-color: #222;
    color: #fff;
    z-index: 1231;
    position: relative;
}

    .cta h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .cta button {
        padding: 10px 20px;
        font-size: 18px;
        cursor: pointer;
        margin-top: 20px;
    }


.cards-wrapper {
    position: relative;
}

.productCard {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 450px;
    height: 369px;
    margin: 0;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    flex-shrink: 0;
}

    .productCard h3 {
        color: white;
        font-size: 35px;
        font-family: "MuseoSlab";
        font-weight: 600;
        min-height: 68px;
        margin: 0;
        margin-bottom: 20px;
        text-align: left;
        height:84px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .productCard p {
        text-align: left;
        font-size: 20px;
        color: #F2F3F3;
        font-weight: 400;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }

.productsButtonWrapper {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .productsButtonWrapper a:first-child {
        margin-right: 20px;
    }

#wrapper {
    position: relative;
}

.parallax-container {
    position: relative;
}

.parallax {
    margin-left: auto;
    position: absolute;
    inset: 100px 0 0 0;
    height: 100%;
    width: 75%;
}

.parallax-inner {
    position: sticky;
    top: 150px;
    padding-top: 0;
    width: auto;
    will-change: transform;
    transition: transform 0.1s linear;
}

    .parallax-inner img {
        margin-left: auto;
        height: 1100px;
    }

.page-container {
    padding-left: 200px;
    padding-right: 200px;
}


.cards-container.owl-carousel .owl-item {
    margin-left: 2px;
}

@media (max-width:992px) {
        .parallax-container {
        padding: 20px 0 20px 20px;
    }
    .parallax-inner img {
        height: 600px;
    }
    .cards-section.second {
        margin-top: 100px;
    }
 
    .productCard {
        padding: 25px;
        flex: 0 0 260px;
        width: 260px;
        height: 273px;
    }
        .productCard h3 {
            font-size: 24px;
            height:58px;
            margin-bottom: 10px;
            min-height: 50px;
        }

        .productCard p {
            font-size: 14px;
            -webkit-line-clamp: 5;
        }

    .productsButtonWrapper a:first-child {
        margin-right: 14px;
    }

    .cards-container {
        gap: 30px;
        padding-top: 30px;
    }

    .parallax-container .paddingRight50 {
        padding-right: 20px;
    }
}
@media (max-width:768px){
    .parallax-container {
        padding: 64px 0 20px 20px;
    }
    .parallax-inner img {
        height: 400px;
    }
}
@media (max-width:600px) {
    #floatingWrapper {
        max-width: 90%;
    }

    #floatingBox {
        transform: translateX(0);
        height: unset;
    }

       /* #floatingBox img {
            transform: scale(1.5) translateX(20%);
        }*/
}
@media (max-width:480px){
    .parallax-inner img {
        height: 300px;
    }
}

