/* Hero Section */
.hero {
    height: 100vh;
    background-color: #112e51;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url(../../img/hero/hero-.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    border-top: 5px solid var(--color-grey-dark);
    border-bottom: 10px solid var(--color-accent-yellow);
    position: relative;
}

.hero-text-box {
    text-align: center;
    align-self: center;
}

.hero-text-box p {
    font-size: 2.1vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px #303336;
    margin-top: 0.3rem;
}

.hero-text-box .header-icon {
    display: inline-block;
    height: 1.6vw;
    width: auto;
    vertical-align: inherit;
}

/* Call Us Header */
.call-us {
    position: absolute;
    bottom: -10px;
    right: 0;
    padding: 0.9vw 1.2vw 0.9vw 1.9vw;
}

.call-us,
.call-us button {
    font-size: 1.15vw;
    font-weight: 600;
    background-color: var(--color-accent-yellow);
    color: var(--color-dark);
    z-index: 4;
    cursor: pointer;
    text-decoration: none;
}

.phone-number:hover {
    color: var(--color-link-hover-2);
}

.top-left-radius {
    border-top-left-radius: 6rem;
}

.width-100 {
    width: 100%;
}

.call-us-icon {
    display: none;
}

.call-options {
    width: 10vw;
    position: absolute;
    top: -8.5vw;
    background-color: #ffffff;
    right: 0;
    padding: 1vw;
    font-size: 1vw;
    flex-direction: column;
    gap: 1vw;
    border-top-left-radius: 1vw;
}

.call-option {
    color: black;
    text-decoration: none;
    align-items: center;
}

.call-option img {
    width: 1.5vw;
    height: auto;
}

/* Scroll Down Arrow */
#scroll-down-arrow {
    position: absolute;
    bottom: 7rem;
    width: 6rem;
    height: 6rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    border: 0.5rem solid #fff;
    border-radius: 100%;
    animation: bounce 2s infinite running;
}

.scroll-down-arrow {
    position: absolute;
    left: -9999px;
}

#scroll-down-arrow:hover {
    animation-play-state: paused;
}

#scroll-down-arrow::before {
    position: absolute;
    content: '';
    width: 2rem;
    height: 2rem;
    left: 0;
    right: 0;
    top: 1rem;
    margin: 0 auto;
    border-left: 0.5rem solid #fff;
    border-bottom: 0.5rem solid #fff;
    transform: rotate(-45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}