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


/* ---- FONT ---- */
@import url('css2-Jostwght400600700_swap.css');


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

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

    --cta-bg: #FF9000;
    --cta-text: #000000;
	
	--cta-bg-hover: #FF9000;
    --cta-text-hover: #000000;

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

    --features-text: white;

    --footer-background: #141619;
    --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: none;
    border-radius: 0px;
}

.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);
}

.main .hero-title {
    color: var(--title-text);
}

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

.btn-close {
    opacity: 1;
}

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

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



.features .feature1,
.features .feature2,
.features .feature3 {
	line-height: 30px;
	border-radius: 50%;
	background: #FF9000;
	color: #000000;
	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;
    }

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

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

}

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