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


/* ---- FONT ---- */
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@700&family=Montserrat:wght@400;500;700;800&display=swap');


:root {
    --font-family: 'Montserrat', sans-serif;
	--font-family-features: 'Khand', sans-serif;

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

    --cta-bg: #000000;
    --cta-text: #FFFFFF;
	
	--cta-bg-hover: #1B1B1B;
    --cta-text-hover: #FFFFFF;

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

    --features-bg: #E80000;
	--features-text: #FFFFFF;

    --footer-background: #2E2E2E;
    --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);

    font-size: 1.5rem;
    font-weight: 800!important;
    border-radius: 0;
    padding: 12px 16px!important;
}

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


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);
    text-shadow: 0px 0px 7px #000000e0;
	text-transform: none;
	font-weight: 800!important;
}

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

.main a.hero-title {
    font-weight: 400 !important;
}

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

.btn-close {
    opacity: 1;
}

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

.features h4 {
    font-family: var(--font-family-features);
    color: var(--features-text);
    font-weight: 700;
    display: flex;
	justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0px;
    min-width: 210px;
}



.features .feature1,
.features .feature2,
.features .feature3 {
    line-height: 30px;
    border-radius: 50%;
    background: var(--features-bg);
    color: var(--features-text);
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    padding: 5px;
    float: left;
}

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

}

.coupon-code-img {
   filter: hue-rotate(180deg) brightness(0.6); 
}

@media only screen and (max-width: 767px) {
    .main-box {
        background: unset;
        box-shadow: unset;
    	background: linear-gradient(#2e2e2e00, var(--footer-background) 20%);
    }

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

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

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