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


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


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

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

    --cta-bg: linear-gradient(62.58deg, #AF7AF5 27.27%, #6344DF 85.82%);
    --cta-text: #FFFFFF;
	
	--cta-bg-hover: #AF7AF5;
    --cta-text-hover: #FFFFFF;

    --coupon-bg: #8E68EE;
    --coupon-text: #FFFFFF;

    --features-text: #FFFFFF;

    --footer-background: #1a102d;
    --footer-text: #FFFFFF;
}

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

}

header .logo {
    height: auto !important;
}


.cta-button {
    position: relative;
    font-family: var(--font-family);
    color: var(--cta-text);
    background: var(--cta-bg);
    padding: 16px 24px;
    border: none;
    border-radius: 100px;
    box-shadow: 0px 5px 12px 0px #FFFFFF8C inset;
    transition: none !important;

}

.cta-button::after {
    content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-205%, 20%);
  width: 13px;
  height: 11px;
  z-index: 1;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAALCAYAAACksgdhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABhSURBVHgBlY/RDYAwCESJcRBGYTPrJHWTzuIkJ41+aKUBXtI0pRx3EAUBsFEGFQhuJCoo+FKsiZJy0uKhp80crSK/IjA5mbt1w586W3x57tP4Y/JIxRuEPWb1+tbhvVOACweVf60iAm47AAAAAElFTkSuQmCC);
}

.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 0px #000000e0;
}

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

.main .hero-title.fw-bold {
    font-weight: 900 !important;
}

.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 {
    height: 65px;
}

.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(92%) sepia(69%) saturate(6701%) hue-rotate(332deg) brightness(108%) contrast(98%);
}

@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 ---- */
