.about-page-banner {
    height: 66.756vw;
    position: relative;
}
.about-page-banner .banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}
.about-page-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.about-page-banner .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}
.about-page-banner .banner-content h1 {
    color: #fff;
    font-size: 5.111vw;
    line-height: 175%;
    font-weight: 450;
}
.about-page-banner .banner-content p {
    color: #33D8E5;
    font-size: 2.4vw;
    line-height: 250%;
    font-weight: 450;
}
@media only screen and (min-width: 768px) {
    .about-page-banner .banner-image .mobile-image {
        display: none;
    }
}
@media only screen and (max-width: 1199px) {
    .about-page-banner .banner-content p {
        font-size: 26px;
        line-height: 125%;
    }
    .about-page-banner .banner-content h1 {
        font-size: 40px;
        line-height: 200%;
    }
    .about-page-banner .banner-content {
        align-items: flex-end;
        padding-bottom: 56px;
    }
}
@media only screen and (max-width: 767px) {
    .about-page-banner .banner-image .desktop-image {
        display: none;
    }
    .about-page-banner {
        height: 148.832vw;
    }
}