/* VARIABLES */
:root {
    --primary-color: #254423;
    --light-gray-color: #515457;
    --dark-gray-color: #43464c;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    padding-bottom: 90px;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 20px;
    font-size: 18px;
}

.btn {
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 21px;
    font-weight: 700;
    padding: 14px 50px;
    display: block;
    border-radius: 10px;
}
.btn--primary {
    background: red;
    border-bottom: 5px solid #9e0a0a;
}

/* GLOBAL */
.container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    padding: 10px 0;
}
.navbar__logo {
    max-width: 300px;
}
.navbar__clock,
.navbar__phone {
    display: none;
}
/* NAVIGATION */
.navigation {
    padding: 20px 0;
    background-color: var(--primary-color);
}
.navigation__list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}
.navigation__item {
    list-style: none;
    font-size: 24px;
}
.navigation__item a {
    color: #FFFFFF;
}
/* HERO */
.hero {
    padding: 40px 0;
    background-color: var(--light-gray-color);
}
.hero__wrapper {
    display: grid;
    gap: 20px;
}
.hero iframe {
    width: 100%;
}
.hero__title {
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 30px;
}
.hero__item {
    list-style: none;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 20px;
}
.hero__item::before {
    content: "";
    display: inline-flex;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 536 512' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M239.3 17.8L174 150.2L27.9 171.5C1.69999 175.3 -8.80001 207.6 10.2 226.1L115.9 329.1L90.9 474.6C86.4 500.9 114.1 520.6 137.3 508.3L268 439.6L398.7 508.3C421.9 520.5 449.6 500.9 445.1 474.6L420.1 329.1L525.8 226.1C544.8 207.6 534.3 175.3 508.1 171.5L362 150.2L296.7 17.8C285 -5.80002 251.1 -6.10002 239.3 17.8Z' fill='%23FDC500'/%3E%3C/svg%3E%0A") no-repeat;
    height: 30px;
    width: 30px;
    background-size: 30px;
    vertical-align: middle;
    margin-right: 10px;
}
/* BANNER */
.banner {
    padding: 30px 0;
    background-color: var(--primary-color);
    color: #fed301;
    text-align: center;
}
.banner--sticky {
    padding: 20px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    background-color: #cf2e2e;
    width: 100%;
}
.banner--sticky p {
    display: none;
}
.banner--sticky a {
    content: "test";
}
.banner__title {
    margin-bottom: 20px;
    font-size: 30px;
}
.banner--sticky a::after {
    content: "Touch to call";
}
/* POST */
.post {
    padding: 60px 0;
}
.post__title,
.post__subtitle {
    margin-bottom: 20px;
}
.post__title {
    font-size: 30px;
}
.post__subtitle {
    font-size: 24px;
}
.post a {
    color: #056B00;
}
.post__img {
    float: left;
    margin-right: 20px;
}
.post__img--right {
    float: right;
    margin-left: 20px;
}
/* FOOTER */
.footer {
    padding: 40px 0;
    background-color: var(--light-gray-color);
}
.footer__list {
    list-style: none;
    margin-bottom: 20px;
}
.footer__list li {
    margin-bottom: 20px;
}
.footer__list li a {
    margin-bottom: 20px;
    color: #FFFFFF;
}
.footer__subtitle {
    font-size: 30px;
    color: #fed301;
    margin-bottom: 20px;
}
/* COPYRIGHT */
.copyright {
    padding: 10px 0;
    background-color: var(--dark-gray-color); 
    text-align: center;
    color: #FFFFFF;
}
.copyright p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}

@media screen and (min-width: 968px) {
    .btn--secondary {
        background-color: #ff4d00;
    }
    /* NAVBAR */
    .navbar__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .navbar__clock,
    .navbar__phone {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .navbar__clock,
    .navbar__phone a {
        color: #6EC1E4;
        font-size: 24px;
        font-weight: 500;
    }
    /* NAVIGATION */
    /* HERO */
    .hero__wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }
    /* BANNER */
    .banner__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .banner__title {
        margin-bottom: 0;
    }
    .banner--sticky {
        background-color: var(--primary-color);
    }
    .banner--sticky p {
        display: block;
        margin-bottom: 0;
        color: #FFFFFF;
    }
    .banner--sticky a::after {
        content: "Call (844)-953-2834 NOW";
    }
    /* POST */
    .post__wrapper {
        display: grid;
        grid-template-columns: 1fr 0.5fr;
    }
    /* FOOTER */
    .footer__wrapper {
        display: flex;
        justify-content: space-between;
    }
    /* COPYRIGHT */
}