/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    line-height: 1;
    font-family: 'Roboto', sans-serif;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* CSS Reset End*/

.mr-a {
    margin: 0 auto;
}
.mt-90 {
    margin-top: 5.6rem;
}
.mb-90 {
    margin-bottom: 5.6rem;
}
.maw-960 {
    max-width: 960px;
}
.w-100 {
    width: 100%;
}
.beige-bg-color {
    background-color: #fde7dc;
}
.light-beige-bg-color {
    background-color: #ffeee6;
}
.blue-color {
    color: rgb(0, 183, 255);
}
.orange-color {
    color: rgb(235, 125, 23);
}
.pa-t-b {
    padding: 2.5rem 0;
}
p {
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    text-wrap: balance;
}

.parallax-section {
    height: 100vh;
    width: 100%;
    background-image: url('/images/top_bg_img.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;   
}
.header-content-wrapper {
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(top, rgba(222, 87, 33, 0.2), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.header-content-wrapper h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6.25rem;
    letter-spacing: 2.5px;
}
.header-content-wrapper h1 {
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    max-width: 75%;
    line-height: 5.25rem;
}
main {
    width: 100%;
}
.youtube-video-section iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.img-section {
    width: 100%;
}
.orange-title {
    text-align: center;
    font-size: 2rem;
    color: rgb(212, 119, 119);
    margin-bottom: 1.5rem;
}
.green-title {
    text-align: center;
    font-size: 2rem;
    color: rgb(0, 168, 14);
    margin-bottom: 1.5rem;
}
.purple-title {
    text-align: center;
    font-size: 2rem;
    color: rgb(167, 24, 186);
    margin-bottom: 1.5rem;
}
.quote-section {
    position: relative;
    display: flex;
    padding: 4.3rem 3.6rem 2.5rem;
    box-sizing: border-box;
    background-color: #ffeee6;
}
.quote {
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 7rem;
    color: #e3d3cb;
}
.quote-author {
    font-size: 0.8rem;
}
.title-section h2 {
    color: #f96235;
    font-size: 2.7rem;
    text-align: center;
    line-height: 3.5rem;
}

footer {
    padding: 5.6rem 0;
    background-color: #111111;
}
footer p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6rem;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .header-content-wrapper {
        padding: 20% 2%;
        box-sizing: border-box;
    }
    .header-content-wrapper h2 {
        margin-bottom: 3.25rem;
    }
    .header-content-wrapper h1 {
        max-width: 100%;
        line-height: 3.25rem;
        font-size: 2rem;
    }
    section {
        padding: 0 3%;
        box-sizing: border-box;
    }
    .orange-title {
        font-size: 1.7rem;
    }
    .quote-section {
        padding: 4.3rem 1.2rem 2.5rem;
    }
    .quote {
        top: 3%;
    }
    .title-section h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    footer {
        padding: 3.6rem 3%;
    }
}