.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-hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    margin: auto;
}

.section__content {
    width: 100%;
    max-width: 1270px;
    margin: auto;
    padding: 40px 20px;
}

h1.operate-hero__title {
    text-align: center;
    color: #fff;
    margin-bottom: 22px;
}

.operate-hero__description {
    text-align: center;
    font-size: 20px;
    max-width: 781px;
    margin: auto;
    color: #fff;
}

.operate-hero__image-wrap {
    width: 100%;
    display: flex;
    position: relative;
}

.operate-hero__image {
    width: 100%;
    height: auto;
}

.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);
    }
}