<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html{
    font-family: 'Italiana','Arsenal','Cinzel','Comfortaa','Montserrat','Raleway', sans-serif;
}
main{
    width: 100vw;
    position: relative;
    --gold: #ffd978;
    --lightBrown1: rgb(189, 149, 122);
    --lightBrown2: rgb(175, 165, 142);
    --lightBrown3: rgb(215, 173, 136);
    --lightBrown4: rgb(213, 189, 157);
}
svg{
    overflow: inherit;
}
nav{
    background: #a7a7a7;
}
.main_title{
    width: 100%;
    text-align: center;
}
.main_title &gt; div{
    width: 60%;
    max-width: 800px;
    padding: 10px 20px;
    margin: 0 auto;
}

.products_container{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 2% 5%;
}
.products_elem{
    padding: 10px 10px;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.products_img{
    max-width: 400px;
    margin: 50px auto;
}
.products_img &gt; video{
    width: 100%;
}
.products_description{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 60%;
}
.products_title{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size:calc(18px + 12 * ((100vw - 800px)/(1440 - 800)));
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    padding: 10px;
}

.products_calc{
    padding: 0 0 80px 0;
}



@media screen and (min-width: 1280px) {
    .products_title{
        font-size: 26px;
    }
}
@media screen and (max-width: 800px) {

    .main_title &gt; div{
        width: 80%;
    }
    .products_elem{
        flex-direction: column;
    }
    .products_elem &gt; div{
        width: 100%;
    }
    .products_elem:nth-child(even) &gt; .products_img{
        order: 1;
    }
    .products_elem:nth-child(even) &gt; .products_description{
        order: 0;
    }
    .products_img{
        margin: 0 auto;
    }
    .products_description{
        max-width: none;
    }
    .products_title{
        font-size:calc(18px + 8 * ((100vw - 320px)/(800 - 320)));
    }

    #button_to_procedure{
        width: 80%;
    }
}
@media screen and (max-width: 600px){

    .paginator_container{
        position: absolute;
        bottom: -10%;
        width: 100%;
    }
}</pre></body></html>