.section--full {
    min-height: 100vh;
    min-height: 100dvh;
}

.section__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

img.section__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.operate-main__content {
    padding: 68px 20px;
}

.operate-main__content {
    max-width: 1232px;
    margin: auto;
}

.operate-main__container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media screen and (min-width: 992px) {
    .operate-main__container.reverse {
        flex-direction: row-reverse;
    }
}

.operate-main__box {
    width: 100%;
}

.operate-main__box--image {
    max-width: 525px;
}

img.operate-main__box-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
}

.operate-main__box--text {
    max-width: 530px;
}

.operate-main__box-description {
    font-size: 16px;
    margin-top: 10px;
}

.operate-main__box-description ul {
    font-size: 24px;
    color: #153B5F;
    margin-left: 21px;
}

.operate-main__box-description > *:first-child {
    margin-top: 0px;
}

.operate-main__box-description > *:last-child {
    margin-bottom: 0px;
}

.operate-hero__location {
    width: .5rem;
    height: .5rem;
    cursor: pointer;
    position: absolute;
    border-radius: 15px;
    padding: 0px;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    text-decoration: none;
    background-color: #000;
    text-indent: -999999px;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 rgba(0, 172, 193, 0.4);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@media screen and (max-width: 768px) {
    .operate-main__content {
        padding: 40px 20px;
    }

    .operate-main__container {
        flex-direction: column-reverse;
    }

    .operate-main__box-description > * {
        margin-bottom: 14px;
    }

    .operate-main__box-description ul {
        font-size: 18px;
    }
}
