section.section-one {
    column-gap: 70px;
    padding-bottom: 20px;
}

.section-one .left-side {
    row-gap: 15px;
}

.section-one .right-side {
    column-gap: 50px;
}

.section-one .right-side .flex.flex-col {
    row-gap: 50px;
}

.section-one .image-wrapper {
    border-radius: 20px;
    position: relative;
    height: fit-content;
}

.section-one .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #BEABA4;
    transform: translate(20px, 20px);
    z-index: 0;
    margin: auto;
}

.section-one .image-wrapper img,
.section-one .image-wrapper svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-two {
    row-gap: 20px;
}

.section-three {
    row-gap: 30px;
}

.section-three .careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    padding: 40px;
}

.section-three .career {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.section-three .apply-button {
    padding-top: 30px;
}

.section-three .apply-button a {
    border-radius: 40px;
    background: #EED7D3;
    border: 1px solid #EED7D3;
    padding: 10px 20px;
    font-family: 'Poppins-Regular';
    font-size: 16px;
    color: #F0684F;
    transition: all 300ms ease;
}

.section-three .apply-button a:hover {
    border: 1px solid #F0684F;
    background-color: #F0684F;
    color: #EED7D3;
}

.section-four .inner-wrapper {
    background-color: #DAD5CBCC;
    border-radius: 20px;
    padding: 40px;
}

.section-four .stats {
    background-color: #F6F6F6B2;
    column-gap: 40px;
    border-radius: 20px;
}

.section-four .stat {
    padding: 20px;
    row-gap: 10px;
}

.section-four .stat h5 {
    color: #000;
    font-family: 'Poppins-Regular';
    font-size: 60px;
}

@media screen and (max-width: 989px) {
    .section-one {
        flex-direction: column-reverse;
    }

    .section-one > div {
        flex: auto;
        width: 100%;
    }

    .section-one .right-side {
        padding-right: calc(var(--padding) * 2);
    }

    .section-two svg,
    .section-three > svg {
        width: 100%;
    }

    .section-three .careers-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .section-four .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }

    .section-four .stat h5 {
        font-size: 30px;
    }
}