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


/* ---- FONT ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-family: 'Inter', sans-serif;
    --header-bg1-rgb: #171726;
    --header-bg2-rgb: 23,23,38;
    
    --pretitle-text: #FFFFFF;
    --title-text: #FFFFFF;

    --cta-bg: #F16DE4;
    --cta-text: #000000;
	
	--cta-bg-hover: #F6A2EE;
    --cta-text-hover: #000000;

    --cta-secondary-bg: #3B3A59;
    --cta-secondary-text: #FFFFFF;

    --coupon-bg: #FFFFFF26;
    --coupon-text: #FFFFFF;

    --features-text: #FFFFFF;
    --features-subtext: #7E899A;

    --footer-background: #171726;
    --footer-background-rgba: #171726;
    --footer-text: #FFFFFF;

    --ui-2: #F16DE4;
    --ui-3: #fcfbf8;
    --brand-3: #F16DE4;

}

/* ---- LAYOUT START ---- */

html {
    scroll-behavior: smooth;
}

body {}


.footer-text {
    font-size: 0.75rem;
}

/*
header {
    height: 100px;
}
*/

header .logo {
    height: 80px;
    max-width: 180px;
}

header .container {
    padding-left: 0 !important;
}

.main {
    height: 600px;
    /*height: calc(100vh - 220px);*/
    min-height: 270px;
}

.main .hero-pretitle {
    text-transform: uppercase;
}

#title-part-one {
    color: #fff467;
}

.main .cta-button {
    font-size: 1.5rem;
}

.main .cta-button:hover {
    filter: brightness(1.05);
}

.background-body {
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top center;
}

.coupon-code {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 13px;
    padding: 7px 17px 7px 17px;
    width: fit-content;
    height: 3rem;
    font-family: var(--font-family);
    font-weight: 900;
    color: var(--coupon-text);
    background-color: var(--coupon-bg);
}

.coupon-code-container{
    width: auto;
    border-radius: 99px;
    height: auto;
    padding: 10px 0;
    background: var(--coupon-code-bg-color);
    color: var(--coupon-code-color);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: start;
    cursor:pointer;
}
.coupon-code-container .coupon-left{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.coupon-code-container .coupon-left .coupon-title{
    font-size: 12px;
}
.coupon-code-container .coupon-left .coupon-code{
    font-size: 20px;
    font-weight: 900;
}

.coupon-left { 
    margin-left: 2.5rem;
}

.icon-container::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 28px;
    border-radius: 3px;
    border: 1px solid #FFFFFF;
    margin: 0px 5px 0px 9px;
    position: relative;
    top: 5px;
}

#copy-icon, #tick-icon {
    height: 25px;
    margin-bottom: 5px;
    color: var(--coupon-text);
}

.features .container {
    background-color: #1F1F4D;
    border-radius: 30px;
    position: relative;
    top: 2rem;
    box-shadow: 0px 0px 22.26px 0px #00000024;
}

/*--MEDIA QUERIES---*/

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

    .background-body {
        background-size: auto 61%;
        background-repeat: no-repeat;
        background-position-x: 76%;
        background-position-y: top;
    }

    .coupon-code {
        margin: 0 !important;
        font-size: 0.875rem;
    }

    .hero-pretitle {
        font-size: 1rem;
    }

    header .logo {
        height: 60px;
    }


}

@media only screen and (min-width: 1920px) and (max-width: 2440px) {

    .background-body {
        background-size: 100%;
        background-repeat: no-repeat;
    }

}



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

    .main {
        /* height: calc(100vh - 150px); */
    }
}

@media only screen and (max-width: 379px) {
    #main-container {
        position: relative;
        top: 25px;
    }

    .features .container {
        position: relative;
        top: 41px !important;
    }
}

/*--END MEDIA QUERIES---*/

/* ---- LAYOUT END ---- */

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

}

header .logo {
    height: auto;
}

header{
    background: var(--header-bg1-rgb);
}
.cta-button {
    font-family: var(--font-family);
    font-weight: 800 !important;
    font-size: 24px !important;
    padding: 16px 24px !important;
    color: var(--cta-text);
    background: var(--cta-bg);
    border: none;
    border-radius: 12px;
}

.pt-20px {
    padding-top: 20px !important;
}

.btn.btn-secondary {

}

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

.secondary-cta-button {
    width: auto;
    height: 40px;
    padding: 10px 24px;
    font-family: var(--font-family);
    font-size: 14px !important;
    color: var(--cta-secondary-text);
    background-color: var(--cta-secondary-bg);
    border: none;
    border-radius: 8px;
}

.secondary-cta-button:hover {
    background: var(--cta-secondary-bg);
    color: #FFFFFF;
}

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

header {
    background: var(--header-bg1-rgb);
}

footer {
    color: var(--footer-text);
    background-color: var(--footer-background-rgba);
    /*filter: drop-shadow(0px -20px 20px var(--footer-background));*/
}

/*
.main-box {
    
    background-color: #1f1f1f1e;
    box-shadow: 0px 0px 60px 40px #1f1f1f1e;

}
*/

.main .hero-pretitle {
    color: var(--pretitle-text);
    font-weight: 800 !important;
    font-size: 28px !important;
}

.main .hero-title {
    color: var(--title-text);
    font-weight: 900 !important;
    font-size: 60px;
    line-height: 100% !important;
}

a.hero-title.btn {
    font-weight: 700 !important;
    font-size: 20px;
}

.hero-title.mx-2.btn:hover {
    color: var(--brand-3);
}

.modal-dialog.modal-lg {
    border-radius: 8px;
}


.modal-header {
    background-color: var(--brand-3);
}

.modal-body {

}

.modal-footer {
}

.btn-close {

}

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

.features h4 {
    color: var(--features-text);
}

.icons-container{

}

.text-container{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: calc(100% - 60px);
    margin-left:15px;
}


.text-container span{
    color: var(--features-subtext);
}

.features .feature1,
.features .feature2,
.features .feature3 {
    width: 40px;
    height: 40px;
}


.features h4 {
	color: var(--features-text);
	font-weight: bold;
    font-size: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 200px;
}

.text-container span,
.text-container h4{
    width: calc(100% - 80px);
	margin: 0px;
}

/*
.features h4,
.text-container span {
    width: calc(100% - 100px);
}
*/

/* @media only screen and (min-width: 350px) and (max-width: 380px) {

    .background-body {
        background-size: auto 61%;
        background-repeat: no-repeat;
        background-position-x: 72%;
        background-position-y: top;
    }

    section.main {
        margin-top: 6rem;
    }
}

@media only screen and (min-width: 380px) and (max-width: 390px) {
        .background-body {
        background-size: auto 61%;
        background-repeat: no-repeat;
        background-position-x: 72%;
        background-position-y: top;
    }
} */

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

    header .logo {
        max-height: 60px;
        height:36px;
        width: 146px;
    }

    .secondary-cta-button {
        height: 40px;
        width: auto;
        font-size: 14px !important;
        padding: 10px 24px;
    }

    section div.container {
        padding-bottom: 0rem !important;
    }

    section.main .container {
        width: 95%;
    }

    .main-box {
        background-color: #1F1F4D;
        box-shadow: 0px 4px 8px 0px #00000040;
        border-radius: 15px;
        padding: 18px 24px;
    }

    .main .hero-title {
        color: var(--title-text);
        text-shadow: unset;
        font-size: 32px !important;
    }

    .main .hero-pretitle {
        color: var(--pretitle-text);
        text-shadow: unset;
        font-size: 18px !important;
        font-weight: 700 !important;
    }

    .cta-button {
        padding: 10px 24px !important;
        font-weight: 700 !important;
        font-size: 14px !important;
    }

    .coupon-code-container {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .coupon-code {
        width: max-content;
        background-color: var(--coupon-bg);
        font-size: 20px;
    }

    #inner-coupon-text {
        font-size: 14px;
        margin-right: 4px;
    }

    a.hero-title.mx-2.btn {
        color: var(--title-text);
        text-shadow: none;
        font-size: 12px !important;
    }

    .features .container {
        position: relative;
        top: 16px;
    }

    .features h4 {
        font-size: 18px;
    }

    .text-container{
        width: calc(100% - 50px);
    }

    section.features .container {
        width: 95%;
        border-radius: 20px;
        padding: 24px !important;
    }

    section .container div.col-12.col-md-4{
        justify-content: start !important;
    }

    .text-container span,
    .text-container h4{
        width: calc(100% - 35px);
    }

    .cta-secondary{
        font-size: 14px;
        padding: 0.5rem;
    }

    footer .container {
        margin-top: 1rem;
        padding-bottom: 1rem !important;
    }
}

@media only screen and (min-width: 768px) {
    .main-box {
        width: 500px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    h4 {
        font-size: 0.9rem;
    }

    .features .feature1, .features .feature2, .features .feature3 {
        width: 45px;
        height: 45px;
    }

    .features .container {
        top: 3rem;
    }

    .features .container .row {
        margin-left: 1px;
    }

    footer .container p {
        position: relative;
        top: 5rem;
    }

    .background-body {
        background-position: 57% 0%;
    }

    section div.container {
        max-width: 770px;
    }
}

@media only screen and (min-width: 1200px) {
    .features .container {
        top: 3rem;
    }

    footer .container p {
        position: relative;
        top: 3rem;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1198px) {
    footer .container p {
        position: relative;
        top: 1.5rem;
    }
}

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