@font-face {
    font-family: 'laysExtraBold';
    src: url(/public/fonts/Lays_ExtraBold_Extended.woff2) format(woff2);
}

@font-face {
    font-family: 'laysRegular';
    src: url(/public/fonts/Lays_Regular.woff2) format(woff2);
}

@font-face {
    font-family: 'summerLovingRegular';
    src: url(/public/fonts/SummerLoving-Regular.woff2) format(woff2);
}

@font-face {
    font-family: 'openSansRegular';
    src: url(/public/fonts/OpenSans-Regular.woff2) format(woff2);
}

.extraBold {
    font-family: 'laysExtraBold', sans-serif;
    font-weight: 800;
}

.regFont {
    font-family: 'laysRegular', sans-serif;
    font-weight: 400;
}

.summerReg {
    font-family: 'summerLovingRegular', sans-serif;
    font-weight: 400;
}

:root {
    --textRed: #a60009;
    --redBG: #c4000b;
    --white: #fff;
    --yellowText: #ffd01e;
}

body {
    font-family: 'laysRegular', sans-serif;
    background: var(--white);
    color: var(--textRed);
}



.headerImgContainer {
    position: relative;
    display: block;
    width: 100%;
}

.headerImgContainer>i {
    display: block;
    background: url(/public/img/MobileHero.jpg) center no-repeat;
    background-size: cover;
    width: 100%;
    /* height: 100%; */
    padding-bottom: 100%;
}


/* form btn */
.buttonContainer {
    text-align: center;
}

.buttonContainer a,
.buttonContainer button {
    font-family: 'laysExtraBold', sans-serif;
    background: var(--redBG) !important;
    border: 2px solid !important;
    /* margin: 0 auto; */
    border-radius: 6px;
    color: #fff;
}

.formContainer .error {
    color: #000;
}

.formContainer .checkboxContainer>a {

    border: 2px solid var(--textRed)
}

/* footer */

footer {
    background: var(--redBG);
    color: var(--white);
    font-family: 'openSansRegular', sans-serif, Arial, Helvetica;
}

footer ul {

    display: flex;
    flex-direction: column;
}

footer ul li {
    margin: 0 5px;
}

footer ul li a {

    font-weight: 400;
    font-size: 14px;
}

.social {
    display: flex;
    max-width: 180px;
    margin: 0 auto;
}

.facebook,
.x,
.youtube {
    width: 100%;
    height: 100%;

}

.facebook {
    margin-right: -10%;
}

.facebook a i,
.x a i,
.youtube a i {
    width: 100%;
    padding-bottom: 80%;
    background-size: contain;
    display: block;
}

.facebook a i {
    background: url(/public/img/facebook.svg) center no-repeat;
    width: 61%;
}

.x a i {
    background: url(/public/img/x.svg) center no-repeat;
}

.youtube a i {
    background: url(/public/img/youtube.svg) center no-repeat;
}

.copyright {
    font-size: 12px;
    text-align: center;
    opacity: 0.75;
}

@media only screen and (min-width: 768px) {
    .headerImgContainer>i {
        background: url(/public/img/DesktopHero.jpg) center no-repeat;
        padding-bottom: 29.8%;
        background-size: contain;
    }

    footer ul {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        justify-content: flex-start;
        margin: 10px;
        margin-top: 0;
        margin-left: 0;
    }

    footer ul li {
        margin: 0px;
    }

    .facebook a i,
    .x a i,
    .youtube a i {
        width: 47%;
        padding-bottom: 31%;
    }

    .copyright {
        text-align: left;
    }

    .social {
        width: 100%;
        margin: 0px;
    }

    .facebook a i {
        width: 16%;
    }

    .deskTopFlex {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    footer .container {
        padding: 0 32px;
    }
}