@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.main-wrapper {
    font-family: "Open Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 0;
}

.main-wrapper h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}

.main-wrapper h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.main-wrapper p {
    margin-bottom: 0;
}

.spacing {
    padding: 120px 0;
}

.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.main-wrapper section{
    position: relative;
    z-index: 1;
}

.section-1 {
    background-image: url(../assets/bg-hero.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 10% 0 15%;
    mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
}

.section-1 .row {
    display: flex;
    align-items: center;
}

.section-1 p {
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 0 3px rgb(0, 0, 0);
    -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
    padding-top: 40px;
}

.section-2 h2 {
    margin-bottom: 48px;
}

.feature-item {
    background-image: url(../assets/bg-feature.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    border-radius: 16px;
    position: relative;
}

.feature-item h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pd-block {
    border-radius: 30px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 255, 255, 0.75);
}

.pd-block h2 {
    padding: 30px 0;
}

.pd-block p {
    padding: 40px;
}

.pd-block .row {
    display: flex;
    align-items: center;
}

.section-8 {
    background-image: url(../assets/msi-center-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 10% 0;
}

.section-8 h2 {
    font-weight: 500;
    color: #fff;
    margin-top: 24px;
}

.section-8 .subtext {
    color: #ccc;
    margin-bottom: 24px;
}

iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .main-wrapper h2 {
        font-size: 24px;
    }

    .spacing {
        padding: 60px 0;
    }
    
    .offset-2 {
        margin-left: 0;
    }

    .section-1 img {
        max-width: 80%;
    }

    .title-hero {
        margin-top: 32px;
    }

    .section-1 p {
        padding-top: 12px;
    }

    .feature-item {
        margin-bottom: 20px;
    }

    .section-2 .mt-4 {
        margin-top: 0!important;
    }

    .pd-block p {
        padding: 20px;
    }

    .section-8 p {
        margin-bottom: 32px;
    }
}