#main{
    width: 100%;
    margin: 10vh 0;
    padding: 0 10vw;
    display: flex;
    gap: 5%;
}

#main .container{
    width: 73%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#main .container .page-description{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#main h2{
    font-family: 'Lexend', sans-serif;
    font-size: 25px;
    color: var(--primary-color);
    text-transform: uppercase;
    width: 100%;
}

#main .container p, #main ul li, #main .container h3{
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    text-align: justify;
    width: 100%;
}

#main ul{
    width: 100%;
}

#main .container h3{
    font-size: 20px;
    width: 100%;
}

#main ul li{
    list-style: inside;
}

#main .container img{
    margin: 30px 0 10px 0;
    max-width: 100%;
}

#main .slider h3{
    text-align: center;
}

#main .slider img{
    height: 200px;
}

#main .splide__pagination li{
    width: initial !important;
}

#main .splide__slide{
    display: flex !important;
}

#main aside{
    width: 27%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 10vh;
}

#main aside .contacts{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#main aside h3{
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

#main aside li{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

#main aside li svg{
    width: 16px;
    height: 16px;
}

#main aside .products{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#main aside .products ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#main aside .products ul li{
    font-size: 14px;
    text-align: left;
}

#main aside .products ul li a{
    color: #000;
    transition: 0.3s ease-out;
}

#main aside .products ul li:hover a{
    color: var(--primary-color);
    transform: scale(1.1);
}

@media screen and (max-width:1000px) {
    
    #main{
        flex-direction: column;
    }

    #main .container, #main aside{
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    
    #main h2{
        font-size: 20px;
    }

    #main .container p, #main li{
        font-size: 14px;
    }
}

/* CONTACT */

#contact{
    width: 100%;
}

#contact h2:first-child{
    display: none;
}

#contact img{
    display: none;
}

#contact form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contact form h2{
    margin: 20px 0;
}

#contact form input, #contact form textarea{
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #000;
    color: #000;
    width: 100%;
}

#contact form textarea{
    border: 1px solid #000;
    margin-top: 30px;
}

#contact form input::placeholder, #contact form textarea::placeholder{
    color: #000;
}

#contact form input:focus, #contact form textarea:focus{
    outline: none;
}

#contact form textarea{
    resize: none;
}

#contact form button{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    padding: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s ease-out;
}

#contact form button:hover{
    background-color: #fff;
    color: var(--primary-color);
}

#contact span{
    font-family: 'Sora', sans-serif;
    width: 100%;
    font-size: 12px;
    color: #f00;
}

@media screen and (max-width:768px) {
    
    #contact form input, #contact form textarea{
        font-size: 14px;
    }

    #contact form button{
        font-size: 14px;
    }
}

/* SLIDER */

.slider{
    width: 100%;
    margin: 10vh 0;
}

.slider .card{
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 1px 1px 10px 5px #f1f1f1;
    margin: 20px;
    flex: 1;
}

.slider .card:hover{
    transform: scale(1.05);
}

.slider .card img{
    width: 100%;
    object-fit: cover;
    margin: 0 !important;
}

.slider .card .container{
    padding: 0 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px !important;
    width: 100% !important;
}

.slider .card h3{
    font-family: 'Sora', sans-serif;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

.slider .card p{
    font-family: 'Sora', sans-serif;
    color: #000;
    font-size: 14px;
    text-align: justify;
}

.splide{
    margin: 5vh 2vw 0 2vw;
}

.splide__arrow{
    background-color: #fff;
    transform: scale(1.1);
}

.splide__arrow--next{
    right: -2vw;
}

.splide__arrow--prev{
    left: -2vw;
}

.splide__pagination{
    bottom: inherit;
}

.splide__pagination__page{
    background-color: var(--primary-color);
    opacity: 1;
}

.splide__pagination__page.is-active{
    transform: scale(1);
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.splide__pagination__page.is-active::after{
    content: "";
    padding: 6px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* TAGS */

.tags{
    display: flex;
}

.tags strong{
    font-size: 20px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px;
}

.rights p{
    font-size: 10px !important;
    color: #5c5c5c !important;
}

.rights a{
    color: #ad1831;
    font-weight: 600;
}

@media screen and (max-width:1000px) {
    
    .rights p{
        margin-bottom: 10vh;
    }

    .tags strong{
        font-size: 18px;
    }

    .rights p{
        font-size: 8px !important;
    }
}

#main .container .page-description .image-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.form-field{
    width: 100%;
}