/* ---- SKIN START ---- */


/* ---- FONT ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --font-family: 'Poppins', sans-serif;

    --pretitle-text: #B3C0CC;
    --title-text: #FFFFFF;

    --cta-bg: linear-gradient(180deg, #FFC700 0%, #FFDF6C 100%);
    --cta-text: #110E22;
	
	--cta-bg-hover: linear-gradient(180deg, #FFC700 0%, #FFDF6C 100%);
    --cta-text-hover: #110E22;

    --coupon-bg: transparent;
    --coupon-text: #FFFFFF;

    --cta-secondary-bg: transparent;
    --cta-secondary-text: #FFFFFF;

    --features-text: #FFFFFF;

    --footer-background: #110e22;
    --footer-text: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 5px;
    font-family: var(--font-family);

}


.cta-button {
    font-family: var(--font-family);
    color: var(--cta-text);
    background: var(--cta-bg);
    border: 0;
    border-radius: 6px;
    box-shadow: 0 0 32px 0 #FFAE00CC;

}

.main .cta-button:hover {
    color: var(--cta-text-hover);
    background: var(--cta-bg-hover);
}

.cta-secondary{
    font-family: var(--font-family);
    color: var(--cta-secondary-text);
    background-color: var(--cta-secondary-bg);
    border: 1px solid #FFFFFF;
    border-radius: 6px;
	font-weight: 600 !important;
	font-size: 20px;
    padding: 8px 30px;
    text-transform: uppercase;
}

.cta-secondary:hover{
    background-color: trasnparent;
    color: var(--cta-secondary-text);
}

body {
    background: var(--footer-background);
}

/*
header {
    background: linear-gradient(#031939, transparent);
}
*/

footer {
    color: var(--footer-text);
    background: var(--footer-background);
}



.main-box {
    /*
    background: #1f1f1f1e;
    box-shadow: 0px 0px 60px 40px #1f1f1f1e;
*/
}


.main .hero-pretitle {
    color: var(--pretitle-text);
    font-weight: 600 !important;
    text-shadow: 0px 0px 7px #000000e0;
}

.main .hero-title {
    color: var(--title-text);
    font-weight: 600 !important;
    text-shadow: 0px 0px 7px #000000e0;
}

.modal-header {
    background: var(--cta-bg);
}

.btn-close {
    opacity: 1;
}

.modal-title {
    color: var(--cta-text);
}

.features h4 {
    color: var(--features-text);
    font-weight: 600;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}



/* .features .feature1,
.features .feature2,
.features .feature3 {
    height: 45px;
} */

.coupon-code {
    border-color: var(--coupon-text);
    border-radius: 99px;
    color: var(--coupon-text);
    background: var(--coupon-bg);

}

.coupon-code-img {
    filter: brightness(0) saturate(100%) invert(94%) sepia(55%) saturate(5045%) hue-rotate(326deg) brightness(102%) contrast(101%);
}

@media only screen and (max-width: 767px) {
    .main-box {
        background: unset;
        box-shadow: unset;
    }

    .main .hero-title {
        text-shadow: unset;
    }

    .main .hero-pretitle {
        text-shadow: unset;
    }

}

/* ---- SKIN END ---- */
