@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

.main-wrapper {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    max-width: 1920px;
    margin: 0 auto;
}

.main-wrapper h1 {
    font-family: "Titillium Web", sans-serif;
    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 12px;
}

.main-wrapper h2 {
    font-family: "Titillium Web", sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: #24beba;
    margin-bottom: 20px;
}

.main-wrapper h3 {
    font-family: "Titillium Web", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 2px;
}

.main-wrapper p {
    margin-bottom: 0;
}

.spacing {
    padding: 80px 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hero {
    background-image: url(./assets/bg-hero.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
    height: 714px;

}

.hero p {
    font-size: 24px;
    text-transform: uppercase;
}

.hero .chair {
    padding-top: 168px;
}

.features-section {
    background-color: #a8a7a6;
    border-bottom: 4px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(20deg, #8b7227 0, #edde5d 70%, #d0af4b);
    padding: 24px 0;
}

.features {
    display: flex;
}

.features img {
    margin-right: 12px;
}

.features p {
    color: #000;
    font-size: 14px;
}

.feature-list {
    margin-top: 20px;
    margin-bottom: 0;
}

.feature-list li {
    margin-bottom: 8px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::marker {
    color: #24beba;
}

section .row {
    display: flex;
    align-items: center;
}

span {
    display: block;
    font-size: 14px;
    color: #a8a7a6;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .main-wrapper h2 {
        font-size: 24px;
    }

    .spacing {
        padding: 64px 0;
    }

    .offset-1 {
        margin-left: 0;
    }

    .order {
        order: -1 !important;
    }

    .hero .chair {
        padding-top: 46px;
    }

    .features-section {
        padding: 40px 0 8px;
    }

    .features {
        margin-bottom: 32px;
    }

    section .col-lg-5 img {
        margin-bottom: 32px;
    }
}