/* ---- 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: #DE172F;
    --header-bg2-rgb: 23,23,38;
    
    --pretitle-text: #FFFFFF;
    --title-text: #FFFFFF;

    --cta-bg: linear-gradient(180deg, #FFF63C 33.65%, #FFA101 100%);
    --cta-text: #000000;
	
	--cta-bg-hover: #FFF63F;
    --cta-text-hover: #000000;

    --cta-secondary-bg: transparent;
    --cta-secondary-text: #FFFFFF;

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

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

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

    --ui-2: #FFA101;
    --ui-3: #fcfbf8;
    --brand-3: #FFA101;
}

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

html {
    scroll-behavior: smooth;
}

body {}


.footer-text {
    font-size: 14px;
}

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

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

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

.main-box {
    text-shadow: 0px 0px 16px #000C;
}

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

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

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

.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;
    text-shadow: none;
}
.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: #DE172F;
    border-radius: 30px;
    position: relative;
    top: 2rem;
    box-shadow: 0px 0px 22.26px 0px #00000024;
}

/* .payments-providers > .container {
    background-color: #111111;
    position: relative;
    top: 3.5rem;
    margin-top: 2rem;
    box-shadow: 0px 0px 22.26px 0px #00000024;
}

.image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.image-row img {
    background-color: #FFFFFF1A;
    border-radius: 16px;
    padding: 16px 8px;
}

.container-logo {
    width: 181px;
    height: 75px;
} */

.grid-container {
    display: grid;
    grid-template-columns: 20% 40% 40%;
    grid-template-rows: 1fr;
    align-items: center;
    background-color: #111111;
    position: relative;
    top: 3.5rem;
    margin-top: 1.5rem;
}

.grid-container-logo {
    width: 181px;
    height: 75px;
    margin-top: 2rem;
}

/* .hr-decoration {
    position: relative;
}

.hr-decoration:after {
    content: " ";
    background: #454545;
    position: absolute;
    bottom: 50%;
    left: 80%;
    width: 1px;
    height: 96px;
} */

.payments-container {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: auto auto auto;
    grid-auto-rows: minmax(50px, auto);
    align-content: start;
    max-width: max-content;
    justify-items: start;
    align-items: center;
}

.payments-title {
    color: #CCCCCC;
    font-weight: 700;
    font-size: 12px;
    grid-column: 1 / -1;
}

.payment {
    background: #FFFFFF1A;
    border-radius: 14px;
    padding: 6px 12px;
}

.payment img {
    width: 92px;
    height: auto;
}

.providers-container {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: auto auto auto auto;
    grid-auto-rows: minmax(50px, auto);
    align-content: start;
    max-width: max-content;
    justify-items: start;
    align-items: center;
}

.providers-title {
    color: #CCCCCC;
    font-weight: 700;
    font-size: 12px;
    grid-column: 1 / -1;
}

.provider {
    background: #FFFFFF1A;
    border-radius: 14px;
    padding: 6px 12px;
}

.provider img {
    width: 92px;
    height: auto;
}

/*--MEDIA QUERIES---*/

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

    .background-body {
        background-size: auto 33%;
        background-repeat: no-repeat;
        background-position-x: 73%;
        background-position-y: 20%;
    }

    .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); */
    }
}

/*--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: 99px;
    text-shadow: none;
}

.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 {
    position: relative;
    padding: 10px 24px;
    font-family: var(--font-family);
    font-size: 14px !important;
    color: var(--cta-secondary-text);
    background-color: var(--cta-secondary-bg);
    border-radius: 99px;
}

.secondary-cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 99px;
    padding: 2px;
    background: linear-gradient(#FFF63C 33.65%, #FFA101 100%);
    mask: linear-gradient(#fff 0 0) content-box, 
          linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

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

body {
    background-color: #111111;
}

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

footer {
    color: var(--footer-text);
    background-color: var(--footer-background-rgba);
    text-align: center;
    padding: 24px;
    line-height: 28px;
    /*filter: drop-shadow(0px -20px 20px var(--footer-background));*/
}


details {
    max-width: 800px;
    margin: 80px auto 0px;
}

details[open] .read-more::after {
    content: attr(data-open);
}

details:not([open]) .read-more::after {
    content: attr(data-close);
    text-decoration: none;
}

summary a {
    font-size: 14px;
    font-weight: 700;
    color: #CCCCCC !important;
    text-decoration: underline;
}

details[open] .faded-terms{
    display:none;
}

::marker {
    content: "";
}

.terms-title {
    color: #FFFFFF;
    font-size: 14px;
}

.faded-terms {
    height: 80px;
    overflow: hidden;
    mask-image: linear-gradient(0deg, transparent 16px, #001133 80px);
}

details p {
    color: #FFFFFF;
}

.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: 400 !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: min-content;
}

.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: 576px) {
    .mt-5rem {
        margin-top: 5rem;
    }

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

    .secondary-cta-button {
        height: auto;
        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: transparent;
        border-radius: 15px;
        padding: 18px 24px;
    }

    #title-part-one {
        display: block;
    }

    .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: -3rem;
    }

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

    .hr-decoration {
        display: none;
    }

    .grid-container {
        grid-template-columns: 1fr;
        justify-items: center;
        top: -4rem;
    }

    .payments-container {
        justify-items: center;
    }

    .providers-title {
        text-align: center;
    }

    .providers-container {
        grid-template-columns: repeat(3, min-content)!important;
        justify-items: center;  
        margin-top: 2rem;
    }

    .provider img {
        width: 80px;
        height: auto;
  }

    .payment img {
        width: 80px;
        height: auto;
    }

    details {
        margin: 0 10px 0 10px;
    }

    footer {
        padding: 14px 24px 88px 24px;
    }

    .cta-container {
        bottom: 0;
        position: fixed;
        left: 0%;
        width: 100%;
        padding: 0;
        height: 75px;
        display: inline-block;
        background-color: #292929;
        z-index: 9999;
    }

    .is-sticky {
        bottom: calc(10px + env(safe-area-inset-bottom));
        position: fixed;
        left: 50%;
        width: calc(100% - 20px);
        transform: translateX(-50%);
        transition: bottom 2s;
        box-shadow: 0px 0px 7px 0px #45FF2461;
    }
}

@media only screen and (min-width: 576px ) and (max-width: 992px) {
    .background-body {
        background-size: auto 61%;
        background-repeat: no-repeat;
        background-position-x: 67%;
        background-position-y: 20%;
    }

    .hr-decoration {
        display: none;
    }

    .grid-container {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .payments-container {
        grid-template-columns: auto auto;
    }

    .providers-container {
        grid-template-columns: auto auto auto;
    }
}

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

@media only screen and (min-width: 576px) and (max-width: 768px) {
    .providers-container {
        grid-template-columns: auto auto;
        gap: 0.5rem 0;
    }

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

@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 .row {
        margin-left: 1px;
    }
}

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

    .payments-providers {
        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;
    }

    .grid-container-logo {
        width: 140px;
        height: 60px;
        margin-top: 2rem;
    }

    .payment {
        background: #FFFFFF1A;
        border-radius: 14px;
        padding: 5px 9px;
    }

    .provider {
        background: #FFFFFF1A;
        border-radius: 14px;
        padding: 10px 8px;
    }


    .hr-decoration {
        display: none;
    }

    .grid-container {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .payments-container {
        grid-template-columns: auto auto;
    }

    .providers-container {
        grid-template-columns: repeat(3, min-content);
    }
}

@media only screen and (min-width: 992px) {
    .hr-decoration::after {
        content: "";
        width: 1px;
        height: 80px;
        background-color: #454545;
        display: inline-block;
        right: 50%;
        position: absolute;
        right: 82%;
        top: 43%;
    }
}

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