:root {
    --background-darken: 0.6;
    --background-image-url: url('../res/pattern.jpeg');
}

a {
    cursor: pointer;
  }

/* .splash .alt-color {
    padding: 15px;
} */

.section-company {
    height: 125vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 1)),
    url('../res/aegis-office-min.png');
    background-size: cover;
    background-position:right;
    background-repeat: no-repeat;
    /* min-height: 100vh;
    min-width: 100vw; */
    position: relative;
    
}

.section-card {
    background: rgba(0, 0, 0, 0.7);
    height: 100vh;
    /* width: 100%; */
}

.section-company .company-title {
    font-size: 36px;
    color: var(--main-font-color);
    font-weight: bold;
    margin-bottom: 25px;
}

.section-company .company-content {
    font-size: 18px;
    color: var(--normal-font-color);
    margin-bottom: 25px;
}

.section-company .company-mission {
    font-size: 24px;
    color: var(--normal-font-color);
    margin-bottom: 25px;
    font-weight: bold;
}

.section-company .company-mission-content {
    font-size: 18px;
    color: var(--normal-font-color);
}

.section-contact-us {
    /* The image used */
    background: #000;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-contact-us {
    padding-top: 25px;
    padding-bottom: 25px;
}

.section-contact-us h2 {
    /** Override default style, remove additional margin */
    margin-top: 0px;
    margin-bottom: 0px;
}

.section-contact-us>div {
    /** Gaps between rows inside section-contact-us */
    margin-top: 25px;
    margin-bottom: 25px;
}

.section-contact-us .title {
    font-size: 36px;
    font-weight: bold;
}

.section-contact-us .subtitle {
    font-size: 24px;
    font-weight: bold;
}

.section-contact-us .overview-card {
    height: 100%;
    background: #353939;
    border-radius: 15px;
    color: white;
}

.section-contact-us .overview-card .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.section-contact-us .overview-card .content {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.section-contact-us .overview-card a {
    text-decoration: none;
    color: white;
}

.section-careers {
    /* The image used */
    background: #000;
    background-image: url('../res/work.jpeg');
    background: linear-gradient(rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.7)),
    url('../res/work.jpeg');
    /* Center and scale the image nicely */
    background-color: rgba(0, 0, 0, 0.3);
    background-size: cover;
    /* background-blend-mode: color; */
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    position: relative;
}

.section-careers .title {
    margin-bottom: 68px;
    font-weight: bold;
}

.careers-card {
    background: rgba(53, 57, 57, 0.7);
    border-radius: 15px;
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 60px;
    padding-right: 60px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
}

.careers-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--normal-font-color);
    margin-bottom: 25px;
}

.careers-content {
    font-size: 18px;
    color: var(--normal-font-color);
}

.section-careers-footer {
    background: rgba(53, 57, 57, 0.7);
    margin-top: 175px;
    padding-top: 95px;
}

.section-footer-content {
    color: var(--normal-font-color);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 55px;
}

.section-careers .section-footer-button {
    margin-bottom: 55px;
    color: var(--main-font-color);
    padding: 10px 40px;
    border: 2.5px solid var(--main-font-color);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    border-radius: 30px;
    max-width: 250px;
}

.section-careers .copyright-info {
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 1200px) {
    /** Mobile and tablet, equivalent to Bootstrap "xl" */
    .section-card.align-items-center {
        align-items: start !important;
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .overview-card-container>div {
        margin-bottom: 50px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .careers-card {
        margin-bottom: 50px;
    }

    .section-company {
        height: 100%;
        min-height: 100vh;
    }

    .section-card {
        min-height: 100vh;
        height: 100%;
    }

    .mobile-pt-l{
        padding-top: 30%;
    }

    .mobile-pt-m{
        padding-top: 10%;
    }

    .mobile-pb-m{
        padding-bottom: 10%;
    }

    .mobile-center{
        text-align: center;
    }

    .section-company {
        background-position: center;
    }
}