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


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


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

	--main-box-bg: #0333AC;
    --pretitle-text: #27BEFF;
    --title-text: white;

    --cta-bg: #D5182A;
    --cta-text: #ffffff;
	
	--cta-bg-hover: #D5182A;
    --cta-text-hover: #ffffff;

    --coupon-bg: #FFFFFF;
    --coupon-text: #27BEFF;

    --features-text: white;

    --footer-background: #021135;
    --footer-text: #FFFFFF;
}

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

}

header .logo{
	margin-left: 80px;
}

.cta-button {
    font-family: var(--font-family);
    color: var(--cta-text);
    background: var(--cta-bg);
	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-wrap {
	filter: drop-shadow(8px 8px 0px #ffffff);
}
.main-box {
    /*
    background: #1f1f1f1e;
    box-shadow: 0px 0px 60px 40px #1f1f1f1e;
*/
	background: var(--main-box-bg);
	padding: 50px 80px;
	clip-path: polygon(5% 0%, 100% 0, 95% 100%, 0 100%);
}


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

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

.modal-header {
    background: var(--main-box-bg);
	border-radius: 0px;
}
.modal-content{
	border-radius:0px;
}
.btn-close {
    opacity: 1;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(54deg) brightness(111%) contrast(102%);
}

.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(--cta-bg);
    color: var(--cta-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(167deg) brightness(1.0); 
}

@media only screen and (max-width: 767px) {

	header .logo {
		margin-left: 0px;
	}
	.main-box-wrap{
		filter: none;
	}
	.main-box {
        background: unset;
        box-shadow: unset;
		padding:0px;
		transform: skew(0deg);
    }

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

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

}

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