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


/* ---- FONT ---- */
@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap');


:root {
    --font-family: Roboto, sans-serif;

    --pretitle-text: #f02548;
    --title-text: white;

    --cta-bg: #3b2b74;
    --cta-text: white;
	
	--cta-bg-hover: #3b2b74;
    --cta-text-hover: #f00a47;

    --coupon-bg: #ffffff;
    --coupon-text: #f00a47;

    --features-text: white;
    --features-bg : #F00A48;

    --footer-background: #0D0430;
    --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: 30px;
	font-weight: 700;
    border: 2px solid #f00a47;
    text-transform: uppercase;
    border-radius: 9999px;
	padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    transition-timing-function: ease-in-out;
    -webkit-timing-function: ease-in-out;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.2s;
}

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


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


header {
    background: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 3px solid #F00A47;
}


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: var(--features-bg);
    color: var(--features-text);
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    padding: 5px;
    float: left;
}

.features h4{
	align-items: start;
    min-width: 230px;
}

.buttons-wrapper{
	display: flex;
	flex-wrap: wrap;
	background-color: rgba(2, 25, 39, 0.86);
	border-radius: 12px;
	margin: 20px auto;
}

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

}

.coupon-code-img {
   filter: hue-rotate(270deg) 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 ---- */
