.intro-about {
    height: 700px;
    width: 100%;
    background-color: #888888;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.intro-about img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}
.intro-about-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding:80px 0;
    background-color: #00000033;
}
.intro-about-inner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
}
.intro-about h1 {
    font-family: 'Unbounded';
    font-weight: 300;
    font-size: 56px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 18px;
    color:#fff;
}
.intro-about .subtitle {
    font-family: 'Unbounded';
    font-weight: 300;
    font-size: 25px;
    line-height: 110%;
    margin: 0;
    color:#fff;
    text-align: center;
}

@media(max-width:992px) {
    .intro-about h1 {
        font-size: 32px;
        line-height: 120%;
    }
    .intro-about .subtitle {
        font-size: 18px;
    }
}
@media(max-width:576px) {
    .intro-about {
        height: 500px;
    }
    .intro-about-inner {
        padding: 80px 0 48px;
    }
}
.about-content-1 {
    margin-bottom: 48px;
}
.about-content-1 .text,
.about-content-2 .text {
    max-width: 1144px;
    margin: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 48px;
}
.about-content h2,
.about-content h3 {
    font-family: 'Unbounded';
    font-weight: 300;
    font-size: 24px;
    line-height: 135%;
    text-align: center;
    margin: 0;
    margin-bottom: 12px;
}
.about-content-1 .text > *,
.about-content-2 .text > * {
    margin-bottom: 12px;
}
.about-content-1-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    transition: .3s;
}
.about-content-1-img:hover {
    transform: scale(1.04);
}
.about-content-1-img img {
    width: 100%;
    height: auto;
    display: block;
}
.about-content-2-imgs {
    display: flex;
    gap:16px;
}
.about-content-2-imgs .about-content-2-img {
    width: calc(100% / 2 - 8px);
    height: 500px;
    overflow: hidden;
    transition: .3s;
}
.about-content-2-imgs .about-content-2-img:only-child {
    width: 100%;
    height: auto;
}
.about-content-2-imgs .about-content-2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
.about-content-2-imgs .about-content-2-img:hover {
    transform: scale(1.04);
}
.about-content-2-imgs .about-content-2-img:only-child img {
    height: auto;
}
@media(max-width:768px) {
    .about-content-2-imgs .about-content-2-img {
        height: 250px;
    }
    .about-content h2, .about-content h3 {
        font-size: 20px;
    }
}
