﻿@import url(style.css);

.content h1 {
    color: #000000;
    margin: 10px;
    font-size: 30px;
    text-align: left;
}

.content h2, .content h2 a {
    color: #000000;
    font-size: 20px;
    padding: 10px 0;
    text-decoration: none;
    text-align: left;
}

    .content h3, .content h3 a {
        color: #000000;
        text-align: left;
    }

.content h4 {
    color: #000000;
}

.aboutContainer {
    display: flex;
    width: 100%;
    padding: 25px;
}

.aboutInfo {
    padding: 25px;
    margin: 25px;
    text-align: center;
    position: relative;
    width: 50%;
    height: auto;
    align-items: center;
    background-color: #EFEFEF;
    box-shadow: -1px 1px 5px 3px rgba(0,0,0,0.2);
    border-radius: 5px;
}

.aboutForm {
    padding:0px;
    margin: 25px;
    width: 50vw;
    text-align: center;
    align-items: center;
    border-radius: 5px;
    background-color: transparent;
    height: auto;
    position: relative;
}
video{
    height: auto;
    width: 50vw;
}

.button2 {
    background-color: #000000;
    border: solid;
    border-width: 0px;
    border-color: #FFFFFF;
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    font-family: glocksans-regular;
    color: #FFFFFF;
    display: inline-block;
    font-size: 1.5rem;
    margin: 1rem;
    cursor: pointer;
    z-index: 0;
}

    .button2:hover {
        background-color: #643336;
        color: #ffffff;
        transition: background-color 200ms ease;
    }

.hero {
    /*Sizing*/
    position: relative;
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    font-family: glocksans-light, glocksans-bold, glockicons, glocksans-regular, sans-serif;
    text-align: center;
    margin: 0.625rem;
}

.hero-title {
    font-size: 5rem !important;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 3rem;
    letter-spacing: 0.25px;
    padding-top: 25px;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.5rem !important;
    font-weight: 200;
    letter-spacing: 0.40px;
    margin-top: 1rem;
    max-width: 40rem;
    font-size: 1.5rem;
    color: #ffffff !important;
    text-transform: none !important;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire hero section */
    filter: brightness(50%);
}

@media screen and (max-width: 500px) {
    .aboutContainer {
        flex-direction: column;
    }

    .aboutForm {
        width: 90%;
    }

    .aboutInfo {
        width: 90%;
    }
    video{
        width: 80vw;
    }
}
