
@font-face {
    font-family: "Lato Regular";
    src: url("../assets/fonts/Lato/Lato-Regular.ttf");
}
@font-face {
    font-family: "Lato Light";
    src: url("../assets/fonts/Lato/Lato-Light.ttf");
}
@font-face {
    font-family: "Noto Regular";
    src: url("../assets/fonts/Noto_Serif_Display/static/NotoSerifDisplay-Regular.ttf");
}
@font-face {
    font-family: "Noto Bold";
    src: url("../assets/fonts/Noto_Serif_Display/static/NotoSerifDisplay-Bold.ttf");
}

.about-us-hero-section, 
.about-us-hero-text-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-end;
}
.about-us-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 695px;
    max-height: 695px;
    background-image: url('../assets/photos/teamwork.webp');
    background-size: cover;
    overflow: hidden;
}
.about-us-hero-section::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 38, 38, 0.70);
    z-index: 1;
}
.about-us-hero-text-wrapper {
    margin-bottom: 90px;
    margin-left: 90px;
    z-index: 2;
}
.about-us-hero-title,
.about-us-hero-desc {
    color: var(--light-color);
    text-align: left;
}
@keyframes heroTextAnimation {
    0% {
        opacity: 0;
        transform: translateX(-150%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
@keyframes heroBtnAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.about-us-hero-title {
    font-family: "Noto Regular";
    font-size: 56px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-150%);
    animation: heroTextAnimation 1000ms forwards;
}
.about-us-hero-title span {
    font-family: "Noto Bold";
    font-size: 88px;
}
.about-us-hero-desc{
    width: 50%;
    font-family: "Lato Light";
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-top: 0px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-150%);
    animation: heroTextAnimation 1000ms 500ms forwards;
}
.about-us-hero-link {
    font-family: "Lato Regular";
    color: var(--dark-color);
    padding: 10px 20px;
    background-color: var(--light-color);
    border: 2px solid var(--light-color);
    border-radius: .5em;
    opacity: 0;
    animation: heroBtnAnimation 1000ms 700ms forwards;
    transition: all 300ms;
}
.about-us-hero-link:hover{
    cursor: pointer;
    color: var(--light-color);
    background-color: transparent;
}

@media screen and (max-width: 2560px) and (min-width: 1537px) {
    .about-us-hero-section { min-height: none; max-height: none; }
    .about-us-hero-text-wrapper { margin-bottom: 5.8vw; }
    .about-us-hero-title { font-size: 3.64vw; }
    .about-us-hero-title span { font-size: 5.72vw; }
    .about-us-hero-desc{ font-size: 1.4vw; margin-bottom: 1.9vw; }
    .about-us-hero-link { font-size: 1vw; padding: 0.65vw 1.3vw; }
}

@media screen and (max-width: 1024px) { 
    .about-us-hero-section { align-items: center; justify-content: center; min-height: 535px; }
    .about-us-hero-text-wrapper { align-items: center; justify-content: center; margin-bottom: 0px; margin-left: 0px; }
    .about-us-hero-title { width: 100%; font-size: 36px; text-align: center; }
    .about-us-hero-title span { width: 100%; font-size: 66px; }
    .about-us-hero-desc { width: 80%; font-size: 22px; margin-bottom: 20px; text-align: center; }
}

@media screen and (max-width: 426px) {
    .about-us-hero-title { font-size: 26px; }
    .about-us-hero-title span { font-size: 46px; }
    .about-us-hero-desc { width: 80%; font-size: 16px; margin-bottom: 10px; }
    .about-us-hero-link { width: 80px; margin-top: 10px; }
}