/* About Us */
.about-us .left-section {
    height: 100dvh;
}
.about-us .left-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.about-us .left-section p {
    max-width: 500px;
}
.about-us .left-section span{
    font-weight: bolder;
}
.about-us .contact-us {
    background-color: var(--bs-dark);
    border-radius:5px;
    font-family: "Rubik", sans-serif;
    padding: 10px;
    height: 100dvh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.about-us .contact-us .row{
    position: relative;
    top: 2rem;
}
.contact-us h3 {
    border-radius: 10px;
}

/* Small devices (landscape phones, 576px and up)*/
@media only screen and (max-width: 768px) {
    .about-us .contact-us{
        height: 600px;
    }
}
@media (min-width: 576px) {
    .about-us .contact-us{
        height: 430px;
    }
}
/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .about-us .contact-us {
        height: 100vh;
    }
}