.nav-toggle-label span {
    background-color: black;
}

/* ========================= HERO ========================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
}

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

.hero-content {
    box-sizing: border-box;
    position: absolute;
    bottom: 10vh;
    left: 5vw;
    width: 50vw;
    z-index: 2;
    color: #1D3557;
}

.hero-title {
    margin-bottom: 1rem;
    font-weight: 400;
}

@media screen and (max-width: 100vh) {
    .hero-content {
        text-align: center;
        width: 90vw;
        background-color: rgba(168, 218, 220, 0.3);
        padding: 1rem;
        border-radius: 1rem;
    }
}

/* ====================== COMPARISON ====================== */
.split-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #1D3557;
    /* box-shadow: 0 0 8rem rgba(69, 123, 157, 0.4) inset; */
}

.country-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 4rem;
    padding: 4rem;
    align-items: center;
    /* justify-content: center; */
    /* border: solid; */
    min-width: 30rem;
    background-color: #A8DADC;
    border-radius: min(5vh, 5vw);
    box-shadow: 0 0 4rem rgba(69, 123, 157, 0.2);
}

.country-label {
    margin-bottom: 2rem;
}

.country-contents li {
    margin: 0.8rem  0 0 1.8rem;
}

.country-card button {
    margin-top: 0.8rem;
    height: 3rem;
    border-radius: 1.5rem;
    border: none;
    background-color: #E63946;
    color: #F1FAEE;
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 0.5rem 2rem;
    box-shadow: 0 0 2rem rgba(151, 37, 46, 0.2);
}
.country-card button:hover {
    background-color: #e26771;
}

.comparison {
    background-color: #FE7F2D;
    color: #1D3557;
    padding: 4rem;
}

.comparison h2 {
    margin-bottom: 2rem;
}

.comparison li {
    margin: 0.8rem  0 0 1.8rem;
}

@media screen and (max-width: 100vh) {
    .country-card {
        margin: 3rem;
    }

    .comparison {
        padding: 3rem;
    }

    .comparison h2 {
        text-align: center;
    }
}

@media screen and (max-width: 75vh) {
    .country-card {
        margin: 3rem;
        padding: 3rem;
        min-width: auto;
    }
}