.find-us {
    position: relative;
    width: 90%;
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
    padding: 1%;
    margin-bottom: 10%;
}

.find-us section {
    border-radius: 25px;
    width:100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 5%;
}

.find-us .title {
    position: relative;
    height: 60px;
    display: flex;
}

.find-us .title h2{
    width: 100%;
    white-space: nowrap;
    text-align: center;
}

.find-us .title img{
    position: absolute;
    transform: translate(-100%, 0%);
    top: 0;
    left: 100%;
    height: 60px;
    cursor: pointer;
}

/* 3. Desktop Only Configs */
@media (min-width: 721px) { 
}
/* 3. Mobile / Small Screens (600px and below) */
@media (max-width: 720px) { 
    .find-us .title h2{
        width: 100%;
        height: fit-content;
        white-space: nowrap;
        font-size: 5vw;
        text-align: left;
        vertical-align: middle;

        position: absolute;
        top: 50%;
        left: 5%;
        margin: 0;
        transform: translate(0%, -50%);
    }
}