:root {
    --secondary-color: #f9c802;
}
/* MISC */
html {
    font-size: 10px;
}
body {
    background-color: #21251d;
    font-family: "Noto Sans", sans-serif;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 400;
}
img {
    max-width: 100%;
}
/*  */
.container {
    max-width: 90rem;
}
.button {
    text-decoration: none;
    padding: 2rem 2rem;
    text-align: center;
    display: inline-block;
    background-color: #570405;
    color: #FFF;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    
    background: linear-gradient(135deg, #7A0000, #9B0000);
    color: #F5F1E8;
    border-radius: 1rem;
    border: 2px solid #C6A54C;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(198, 165, 76, 0.4);
}
.button:hover {
    background-color: #000;

    transform: translateY(-4px);
  box-shadow: 
    0 14px 30px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(198, 165, 76, 0.6);
}
/* FOOTER */
footer {
    background-color: #570405;
    color: #FFF;
    text-align: center;
    padding: .3rem;
    font-size: 1.5rem;
    height: 5vh;
    /* font-weight: 700; */
    line-height: 4vh;
}
/* HOME SECTION */
.home-section {
    display: flex;
    height: 95vh;
    align-items: center;
    padding: 5rem 0;
}
.home-section .row {
    --bs-gutter-x: 9rem;
}
.home-section .slick-list {
    /* border: 1rem solid var(--secondary-color); */
    border-radius: 1rem;
}
.home-section .slick-list img {
    border-radius: 1rem;
}
.home-section .slick-prev, .home-section .slick-next {
    width: 4rem;
    height: 4rem;
}
.home-section .slick-prev {
    left: -5rem;
}
.home-section .slick-next {
    right: -5rem;
}
.home-section .slick-prev::before, .home-section .slick-next::before {
    font-size: 3.5rem;
}
.home-section .button {
    width: 100%;
    border: .2rem solid var(--secondary-color);
    /* color: #EEE; */
}
.home-section .info-wrap {
    color: #FFF;
}
.home-section .info-wrap h2 {
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin: 0 0 3rem;
    line-height: 1.5;
    border-bottom: .3rem solid var(--secondary-color);
}
.home-section .info-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.home-section .info-wrap ul li {
    padding: 1rem 0;
}
@media only screen and (max-width: 992px) {
    .home-section {
        height: auto;
        padding: 0 1.5rem;
    }
    .home-section .slick-prev, .home-section .slick-next {
        width: 2.5rem;
        height: 2.5rem;
        z-index: 10000;
    }
    .home-section .slick-prev::before, .home-section .slick-next::before {
        font-size: 3rem;
    }
    .home-section .slick-prev {
        left: 2rem;
    }
    .home-section .slick-next {
        right: 2rem;
    }
    .home-section .info-wrap {
        padding: 3rem 0;
        text-align: center;
    }
    .home-section .info-wrap a {
        max-width: 30rem;
    }
    footer {
        height: auto;
    }
}
@media only screen and (max-width: 600px) { 
    .home-section .slick-prev, .home-section .slick-next { 
        display: none !important;
    }
}