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

body {
    overflow: hidden;
    pointer-events: none;
}

p,
a,
.h4 {
    color: white;
    margin-bottom: 2.5rem;
}

p {
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 300;
    line-height: 43px;
    letter-spacing: 1px;
}

a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    pointer-events: auto;
}

a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    opacity: .5;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 3px;
    background-color: currentColor;
    transition: width .3s ease;
}

a:hover::after {
    width: 100%;
}

.h4 {
    font-family: "roc-grotesk-wide", sans-serif;
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.main-section {
    position: relative;
}

.main-section .brand-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.main-section .brand-container .logo {
    width: 280px;
    margin-bottom: 4rem;
}

.main-section .brand-container .info p:first-child {
    width: 80%;
}

.slider-container {
    height: 100vh;
}

.slider-container .row {
    height: 100vh;
    align-items: center;
}

.slider-container .row .col {
    text-align: center;
}

.slider-container img {
    display: none;
    transform: scale(.9);
}

.slider-container img.active {
    display: inline-block;
}

/* Responsive */
/* Fino a 320px */
@media (max-width: 320px) {
    p {
        font-size: 15px;
        line-height: normal;
        margin-bottom: .5rem;
    }

    a::before,
    a::after {
        height: 2px;
    }

    .h4, a {
        margin-bottom: .5rem;
    }

    .h4 {
        font-size: 18px;
    }

    .main-section .brand-container .logo {
        width: 150px;
        margin-bottom: 1rem;
    }
}

/* Da 320px a SM */
@media (min-width: 321px) and (max-width: 576px) {
    p {
        font-size: 18px;
        line-height: normal;
        margin-bottom: 1rem;
    }

    a::before,
    a::after {
        height: 2px;
    }

    .h4, a {
        margin-bottom: 1rem;
    }

    .h4 {
        font-size: 24px;
    }

    .main-section .brand-container .logo {
        width: 150px;
        margin-bottom: 1.5rem;
    }
}

/* From SM to LG */
@media (min-width: 576px) and (max-width: 992px) {
    p {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 2rem;
    }

    .main-section .brand-container .logo {
        margin-bottom: 2.5rem;
    }
}

/* LG */
@media (max-width: 992px) {

    .main-section {
        display: flex;
        flex-direction: column;
        justify-content: center;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .main-section .brand-container {
        position: unset;
        transform: unset;
    }

    .main-section .brand-container .info p:first-child {
        width: 100%;
    }

    .slider-container,
    .slider-container .row {
        height: 100%;
    }

    .slider-container img {
        width: 100%;
        transform: scale(1);
    }
}