﻿.wlcts__hero {
    margin: 0;
    padding: 6.4rem 1.6rem 4rem;
    color: #002e5d;
}
.wlcts__hero__container {
    display: grid;
    grid-template-areas:
        "logo"     
        "bigHeader"
        "options"
        "allDeals"
        "countdown"
        "terms";
    gap: 16px;
}

.wlcts__hero__container--without_logo {
    display: grid;
    grid-template-areas:
        "bigHeader"
        "options"
        "allDeals"
        "countdown"
        "terms";
    gap: 16px;
}

.wlcts__hero__logo {
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .wlcts__hero__logo img {
        width: 352px;
    }

.wlcts__hero__big-header {
    grid-area: bigHeader;
    display: flex;
    justify-content: center;
}

    .wlcts__hero__big-header h1 {
        font-size: 52px;
        font-weight: 900;
    }

.wlcts__hero__options {
    grid-area: options;
    display: flex;
    flex-direction: column;
}   
        .wlcts__hero__options ul li {           
            color: #002e5d;
        }

.wlcts__hero__all-deals {
    grid-area: allDeals;
}

    .wlcts__hero__all-deals > .cta {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.6rem 5rem;
        max-height: 40px;
        margin-bottom: 1.3rem;
        background-color: #002e5d;
        border: 1px solid #002e5d;
        border-radius: 1rem;
        color: white;
        font-size: 1.3rem;
        text-decoration: none;
        text-transform: uppercase;
        white-space: nowrap;
    }

        .wlcts__hero__all-deals > .cta:hover,
        .wlcts__hero__all-deals > .cta:active,
        .wlcts__hero__all-deals > .cta:focus {
            color: #fff;
            box-shadow: none;
        }

    .wlcts__hero__all-deals a i {
        padding-right: 8px;
    }

.wlcts__hero__countdown {
    grid-area: countdown;
    position: relative;
}

    .wlcts__hero__countdown .wlcts__countdown {
        position: relative;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 1.6rem;
        margin: 0;
        width: 100%;
        max-height: 40px;
        color: #002E5D;
        background-color: #ffffff;
        opacity: 0.7;
        font-size: 1.6rem;
        font-weight: 500;
        border-radius: 1rem;
    }

    .wlcts__hero__countdown span {
        font-weight: 700;
    }


    .wlcts__hero__countdown .wlcts__countdown > span:last-child {
        display: inline-block;
        min-width: 140px;
    }


.wlcts__hero__terms {
    grid-area: terms;
    display: flex;
    justify-content: center;
    padding: 1.6rem 0;
}

.wlcts__hero__terms a {
    color: #002e5d;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (min-width: 62.0625em) {
    .wlcts__hero__container {
        grid-template-areas:
            "logo      bigHeader  options  "
            ".         allDeals   countdown"
            ".         .          terms    ";
        grid-template-columns: 1.5fr 1fr 1.5fr;
        grid-template-rows: 1fr 40px 40px;
        gap: 24px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .wlcts__hero__container--without_logo {
        grid-template-areas:
            "bigHeader  options     ."
            ".          allDeals    countdown "
            ".          terms       .";
        grid-template-columns: 1.5fr 1fr 1.5fr;
        grid-template-rows: 1fr 40px 40px;
        gap: 24px;
        max-width: 1440px;
        margin: 0 auto;
    }


    .wlcts__hero__logo {
        width: 100%;
    }

        .wlcts__hero__logo img {
            text-align: center;
        }

    .wlcts__hero__big-header {
        justify-content: flex-start;
    }
        .wlcts__hero__big-header h1 {
            max-width: 350px;
        }

    .wlcts__hero__all-deals a {
        max-width: 280px;
        padding: 1rem 5rem;
        font-size: 1.6rem;
    }

    .wlcts__hero__countdown {
        max-width: 350px;
    }

        .wlcts__hero__countdown p {
            max-width: 345px;
        }

    .wlcts__hero__terms {
        display: block;
        padding: 0;
    }
        .wlcts__hero__terms a {
            display: flex;
            justify-content: flex-end;
            width: 345px;
        }

}
