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


/* ---- FONT ---- */
@import url('https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,400;0,700;1,400;1,700&display=swap');


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

    --pretitle-text: #F5EB71;
    --title-text: #A8EA8F;

    --cta-bg: #ED6D6F;
    --cta-text: #FFFFFF;
	
	--cta-bg-hover: #ED6D6F;
    --cta-text-hover: #FFFFFF;

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

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

    --footer-background: #0070be;
    --footer-text: #FFFFFF;
}

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

}


.main .cta-button {
    font-family: var(--font-family);
	font-size: 16px;
	font-weight: 700;
    color: var(--cta-text);
    background: var(--cta-bg);
    border: none;
    border-radius: 30px;
}

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

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

.terms-title, .terms-title:hover {
	color: #FFFFFF;
	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: bold;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}



.features .feature1,
.features .feature2,
.features .feature3 {
	line-height: 28px;
	border-radius: 50%;
	background: var(--features-bg);
	color: var(--features);
	min-width: 40px;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	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: brightness(0) saturate(100%) invert(89%) sepia(26%) saturate(447%) hue-rotate(139deg) brightness(97%) 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 ---- */
