/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    overflow-x: hidden;
    height: 100vh;
    display: inline-grid !important;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img,picture,svg,iframe,video,button,h1,h2 {
    user-select: none !important;
}

body *::selection {
    background-color: var(--blue);
    color: white;
}

footer span strong {
    font-weight: 700;
}

.giveaway-dates {
    position: absolute;
    left: 50px;
}

.gifts-container .giveaway-dates {
    position: static;
    display: none;
    color: var(--blue);
}

.gifts-container .giveaway-dates strong {
    font-weight: bold;
}


:root {
    --blue: #0065ae;
}

/* BURGER MENU */

.burger-menu {
    position: fixed;
    z-index: 6;
    top: 40px;
    right: 40px !important;
    height: 65px;
    width: 65px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    transition: all 0.25s ease-in-out;
}

.burger-menu:hover {
    background: #2d88c9;
}

.line {
    background-color: white;
    width: 37px;
    height: 10px;
    display: flex;
    align-items: center;
    margin: 0px 0;
    justify-content: center;
    align-self: center;
    border-radius: 5px;
    transform-origin: 0 50%;
    transition: all 0.25s ease-in-out;
}

.line-1 {
    margin-bottom: 3px;
}

.line-2 {
    margin-top: 3px;
}

.burger-menu:hover {
    cursor: pointer;
}

.burger-menu.open {
    background-color: white;
}

.burger-menu.open .line {
    background-color: var(--blue);
}

.burger-menu.open .line-1 {
    transform: translate(5px,-5px) rotate(45deg)
}

.burger-menu.open .line-2 {
    transform: translate(5px,5px) rotate(-45deg)
}

/* MENU */


.menu {
    z-index: 5;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 101, 174, 0.95);
    opacity: 1;
    transition: all 0.15s ease-out;
    position: fixed;
    padding: 0.5% !important;
    overflow: auto;
    border-radius: 0;
}

.menu.hidden {
    top: 40px;
    right: 40px;
    height: 65px;
    width: 65px;
    opacity: 0;
    border-radius: 500px;
    border-top-right-radius: 500px;
}



.terms .gifts-container .cart-logo {
    position: absolute;
    top: 30px;
    left: 50px;
    object-fit: cover;
    max-width: 150px;
}

.terms-text {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 10%;
    color: #36576f;
    margin-bottom: 100px;
}

.container-desktop{
    overflow-x: hidden;
}

.container-desktop.gifts-container{
    overflow-x: visible;
}

.container-desktop {
    display: flex;
    justify-content: space-between;
    padding: 6vw 0 4.5vw 0;
    height: auto important;
}

.bg-landing {
    width: 100vw;
    background: url('./img/background.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.col {
    display: inline-flex;
    flex: 1;
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6,a,p,span,b,input,label,button,li {
    font-family: 'Roboto', sans-serif !important;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: bold;
    color: var(--blue);
}

h2 {
    font-size: 150px;
    font-weight: 900;
}

.col-left h2 {
    letter-spacing: -15px;
    transform: translateX(-15px);
}

h3 {
    font-size: 34px;
    line-height: 1.2;
}

h5 {
    font-size: 30px;
}

h6 {
    font-size: 26px;
}

h3 br {
    display: none;
}


.gifts-container .cart-logo.hidden {
    opacity: 0;
    transition: all 0.15s ease-in-out;
}

.gifts-container .cart-logo {
    opacity: 1;
    transition: all 0.15s ease-in-out;
}

.menu-logo {
    top: 20px;
    left: 50px;
    position: absolute;
}

.landing-description .menu-logo {
    position: static;
    margin-bottom: 60px;
}

.desktop-menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu li {
    text-align: center;
} 

.menu li a {
    text-decoration: none;
}

.menu li a h4 {
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 42px;
    margin: 20px 0;
    text-align: center;
    transition: all 0.25s ease-in-out;
}

.menu li a h4:hover {
    color: red;
}


.winners-title {
    font-weight: 600;
    font-size: 30px;
}

.col-right .play-button {
    display: none;
}

.container-desktop .col-right {
    flex-shrink: 2;
    display: flex;
    justify-content: end;
}

.gifts-container .col-right {
    flex-shrink: 1;
}

.container-desktop .col-mid {
    flex-shrink: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.col-mid .play-button {
    margin: 40px 0 80px 0;
}

.container-desktop .col-left {
    flex-shrink: 0;
    padding-left: 80px;
}

.container-desktop.gifts-container .col-left {
    padding: 0 !important;
}

.container-desktop .col-right img {
    max-width: none;
    object-fit: cover;
}

.container-desktop .col-mid img {
    max-width: 50vw;
    margin-top: -5vh;
    object-fit: contain;
}

.container-desktop.gifts-container {
    padding: 8vw 0 0.5vw 0;
}

.landing-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: absolute;
}

.gift-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    /* position: absolute; */
}

.gift-description .cart-logo {
    position: absolute;
    width: 240px;
    top: 5%;
    opacity: 1;
    transition: all 0.15s ease-in-out;
}

.menu-logo {
    width: 240px;
}

.cart-logo {
    margin-bottom: 60px;
}

.gifts-sticker {
    z-index: 4;
    position: absolute;
    left: 35%;
    transition: transform 0.25s ease-in-out;
}
.gifts-sticker img {
    width: 242px;
    height: 273px;
    transition: transform 0.25s ease-in-out;
}

.gifts-sticker:hover, .gifts-sticker img:hover {
    cursor: pointer;
}

.gifts-sticker:hover img {
    transform: scale(1.05);
}

.landing-description h6 {
    margin: 25px 0 50px 0;
    line-height: 1.2;
    text-align: center;
}

.gift-description h5 {
    margin: 25px 0 50px 0;
    line-height: 1.2;
    text-align: center;
}

.gift-description h2 {
    text-align: center;
}

.play-button {
    background-color: #ed1c24;
    color: white;
    font-size: 60px;
    font-weight: bold;
    text-decoration: none;
    padding: 20px 80px;
    border-radius: 25px;
    transition: background 0.25s ease-in-out;
    /* max-width: 180px; */
    text-align: center;
    border: none;
}

.play-button:hover {
    cursor: pointer;
    background: #cd0404;
}

footer {
    width: 100vw;
    background: var(--blue);
    padding: 25px 0;
    position: static;
}

footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


footer a, footer span {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.25s ease-in-out;
}

footer a:hover {
    color: white;
}

.gifts-container h5 {
    padding: 0 3vw;
}

.col-left .gift-description:nth-of-type(2) {
    display: none;
}


/* CONTACT FORM STYLES */

.form-page .container-desktop {
    height: 100vh;
    padding: 0 !important;
}

.form-page .gift-description {
    width: 100%;
}

#gameForm, #gameForm form h5 {
    margin-bottom: 20px;
}

#gameForm, #gameForm form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#gameForm {
    width: 100%;
    height: 100vh;   
}

#gameForm form {
    padding: 50px 30px;
    background: #a1d7ffcf;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 8px 0 #6bafff;
    border-radius: 20px;
}

#gameForm form input:not(input[type="checkbox"]) {
    font-size: 20px;
    width: 70%;
    box-sizing: border-box;
    margin: 5px 34%;
    padding: 5px 15px;
    outline: none;
    border: 2px solid var(--blue);
    border-radius: 50px;
    transition: all 0.25s ease-in-out;
}

#gameForm form input:focus {
    background-color: var(--blue);
    color: white !important;
}

#gameForm form label {
    margin-top: 10px;
    color: var(--blue);
    font-weight: bold;
    text-align: left;
}

input#terms-check {
    margin: 0 5px 0 0 !important;
}

.check-label {
    font-size: 14px !important;
    font-weight: 400 !important;
    display: flex;
    align-items: center;
    margin: 20px 0 40px 0;
}

#gameForm form button {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Roboto' !important;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    background: red;
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.25s ease-in-out;
}

#gameForm form button:hover {
    background: white;
    color: red;
    cursor: pointer;
}

@media (min-width: 1700px) {
    .menu li a h4 {
        font-size: 72px;
        margin: 50px 0;
    }
}

@media (max-width: 1820px) and (min-width: 1025px) {
    .container-desktop .col-mid img {
        max-width: 40vw;
    }

    .gift-description .cart-logo {
        width: 150px;
    }

    
    .gifts-container .menu-logo {
        width: 150px;
    }
}

@media (max-width: 1600px) and (min-width: 1025px) {
    .gifts-container .cart-logo {
        max-width: 250px;
        margin-top: 0;
    }
    
    .menu-logo {
        width: 150px;
    }

    .container-desktop.gifts-container {
        padding: 15vh 0px 0vh 0;
    }

    .gifts-sticker img {
        width: 160px;
        height: auto;
        object-fit: contain;
    }

    .play-button {
        font-size: 30px;
    }

    .col-left .play-button {
        font-size: 30px !important;
    }
    

    h3 {
        font-size: 32px;
    }

    h6 {
        font-size: 22px;
    }

    footer a, footer span:not(footer .giveaway-dates) {
        font-size: 14px !important;
    }
}

@media (max-width: 1400px) {

    .container-desktop.gifts-container {
        padding: 30vw 0px 5vw 0;
    }
    
    .gifts-sticker {
        left: 40%;
    }

    .gift-description .cart-logo {
        width: 200px;
    }

    .menu-logo {
        width: 200px;
    }

    footer a, footer span {
        font-size: 16px !important;
    }

    .giveaway-dates {
        left: auto;
        bottom: 15px;
        margin: 0 auto;
    }
}

@media (max-width: 1600px) and (min-width: 1400px) {
    h2 {
        font-size: 100px;
    }

    .winners-title {
        font-size: 24px;
    }
    
    h5 {
        font-size: 24px;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .gifts-sticker {
        left: 50%;
    }

    h2 {
        font-size: 70px;
    }
    
    .col-left h2 {
        letter-spacing: -10px;
        transform: translateX(-10px);
    }

    .winners-title {
        font-size: 32px;
    }
    
    h5 {
        font-size: 24px;
    }

    .play-button {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {

    .container-desktop .col-mid img {
        max-width: 90vw;
        margin: 40px 0 30px;
    }
    
    .col-left .gift-description:nth-of-type(2) {
        display: initial;
    }

    .col-right .gift-description {
        display: none;
    }
    
    .gift-description .cart-logo {
        width: 150px;
    }

    .gifts-container .giveaway-dates {
        display: initial;
    }

    footer .giveaway-dates {
        display: none;
    }

    .gift-description img {
        left: 10%;
    }

    .container-desktop{
        overflow-x: visible;
        padding: 2vw 0 0 0;
    }

    .container {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .gifts-container {
        padding-top: 250px !important;
    }
    
    .cart-logo {
        max-width: 250px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .menu-logo {
        width: 160px;
    }

    .gifts-sticker {
        left: 10%;
        top: 50%;
    }

    .gifts-sticker img{
        width: 150px;
        height: auto;
        object-fit: contain;
    }

    .col {
        justify-content: center;
        padding: 0 !important;
        margin: 40px 0 0 0;
    }

    .landing-description {
        position: static;
    }

    .container-desktop .col-right img {
        max-width: 100vw;
        margin: 3vh 0 8vh 0;
    }

    .col-right .play-button {
        font-size: 50px;
        margin-bottom: 70px !important;
        max-width: none !important;
    }

    footer > p .footer-separator {
        display: none !important;
    }

    footer > p {
        flex-direction: column;
        align-items: center;
    }

    footer p a, footer p span {
        margin: 20px 0 0 0;
    }

    h3 {
        font-size: 32px;
    }

    h6 {
        font-size: 24px !important;
    }


    .col-right {
        flex-direction: column;
    }

    .col-right .play-button {
        display: inline-flex;
        max-width: 200px;
        text-align: center;
        align-self: center;
        margin-bottom: 100px;
    }

    .container-desktop .col-mid img {
        margin-top: 20px !important;
    }
    
    .play-button {
        font-size: 60px;
        padding: 20px 80px;   
        margin: 40px 0 20px 0 !important;
    }

    .gifts-container .giveaway-dates {
        font-size: 22px;
    }

    footer p a, footer p span {
        font-size: 18px !important;
    }

    .col-left .play-button {
        display: none;
    }

}

@media (max-width: 767px) {
    .gifts-container .col-left {
        flex-direction: column;
    }

    .play-button {
        font-size: 36px;
    }
    
    h2 {
        font-size: 120px;
    }
}

@media (max-width: 580px) {

    .menu li a h4 {
        font-size: 32px;
    }

    footer a, footer span {
        font-size: 14px;
        margin: 14px 0 0 0 !important;
    }
   
    .cart-logo {
        max-width: 200px;
    }

    h3 {
        font-size: 24px;
    }

    h6 {
        font-size: 18px !important;
    }

    .gifts-sticker {
        left: 10%;
        top: 60%;
    }
    
    .gifts-sticker img {
        width: 120px;
        height: auto;
        object-fit: contain;
    }

    .landing-description h6 {
        margin-bottom: 0;
    }

    .col-right .play-button {
        font-size: 36px;
    }
}

@media (max-width: 460px) {

    #gameForm form {
        padding: 20px 0 !important;
    }

    .menu-logo {
        width: 140px;
    }
    h6 {
        font-size: 22px;
    }

    h5 {
        font-size: 22px;
    }
}

@media (max-width: 376px) {
    h3 br {
        display: block;
    }

    .menu-logo {
        width: 100px;
    }

    .play-button {
        padding: 20px 65px;
    }
}

@media (max-width: 340px) {
    .play-button {
        font-size: 27px !important;
    }
}
.dnone{
    display: none !important;
}