@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    background-color: var(--color-brand-dx-bg);
}

html {
    font-size: 14px; 
}

main{
    display: flex;
    flex-direction: column;
    /*gap: 10rem;*/
}

@media (max-width: 1200px) {
    html {
        font-size: 13px;
    }
}
@media (max-width: 992px) {
    html {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px; 
    }
}
/*@media (max-width: 576px) {
    html {
        font-size: 10px;
    }
}*/

/*
@media(min-width: 1400px){
    html{
        font-size: 20px;
    }
}*/
.container {
    padding: 2rem;
}

.container-main{
    margin-top: 10rem;
}

a[role="button"]{
    text-decoration: none;
}

.PMTWeb-text-white {
    color: var(--color-brand-white);
}

.PMTWeb-text-blue-paragraph {
    color: var(--color-brand-blue-paragraph);
}

.PMTWeb-text-paragraph {
    color: var(--color-brand-paragraph);
}

.PMTWeb-text-blue-primary {
    color: var(--color-brand-blue-primary);
}

.PMTWeb-text-lead {
    color: var(--color-brand-lead);
}

.PMTWeb-text-accent {
    color: var(--color-brand-accent);
}

.PMTWeb-bg-blue-primary {
    background: var(--color-brand-blue-primary);
}

.PMTWeb-fw-4{
    font-weight: 400;
}

.PMTWeb-fw-6 {
    font-weight: 600;
}

.PMTWeb-fw-7 {
    font-weight: 700;
}

.PMTWeb-fw-8 {
    font-weight: 800;
}


.PMTWeb-ellipse-left::before {
    content: "";
    display: inline-flex;
    background: radial-gradient(141.42% 141.42% at 100% 100%, #5700C0 18.75%, #3194E6 77.6%);
    width: 0.8125rem;
    height: 100%;
    mask-image: url(/icons/ellipse.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.PMTWeb-arrow-forward-after::after {
    content: "";
    display: inline-flex;
    background: currentColor;
    width: 1.5rem;
    height: 1.5rem;
    mask-image: url(/icons/arrow-forward.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
}

.PMTWeb-lp-step-number {
    display: flex;
    width: 3rem;
    height: 3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    leading-trim: both;
    text-edge: cap;
    font-family: Overpass;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 110%; /* 1.65rem */
    letter-spacing: -0.045rem;
    border-radius: 5rem;
}


/*Header*/
header {
    padding-left: 8px;
    padding-right: 8px;
}
.PMTWeb-header {
    height: 7rem;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.PMTWeb-header-logo {
    width: 7.1875rem;
    height: 4rem;
    background-color: var(--color-brand-white);
    mask-image: url(/icons/logo-zenit.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    flex-shrink: 0;
    position: absolute;
    left: 1rem;
}

.PMTWeb-mobile-header {
    height: 7rem;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: between;
    padding-bottom: 1rem;
}

.PMTWeb-mobile-header-logo {
    width: 7.1875rem;
    height: 4rem;
    background-color: var(--color-brand-white);
    mask-image: url(/icons/logo-zenit.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    flex-shrink: 0;
}

.PMTWeb-header-menu {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}


.PMTWeb-header-menu-link {
    color: var(--color-brand-white);
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.5rem */
}

    .PMTWeb-header-menu-link:focus {
        color: var(--color-brand-blue-primary);
        font-weight: 700;
    }

.PMTWeb-header-buttons {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    position: absolute;
    right: 1rem;
}

.PMTWeb-header-language-btn {
    display: inline-flex;
    padding: 0.5rem 0rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-align: right;
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.5rem */
    text-decoration: none;
}

    .PMTWeb-header-language-btn::after {
        content: "";
        width: 1rem;
        height: 1rem;
        background-color: currentColor;
        mask-image: url(/icons/drop-down.svg);
        mask-position: center;
        mask-size: contain;
        transition: transform .2s ease-in-out;
    }

    .PMTWeb-header-language-btn[aria-expanded='true']::after {
        transform: rotate(180deg);
    }

.PMTWeb-header-language-menu-wrapper{
    right: 0;
}

.PMTWeb-header-language-menu {
    display: flex;
    max-width: 11.25rem;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: 0.5rem;
    background: #292A4F;
}

.PMTWeb-header-language-menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: stretch;
    text-decoration: none;
}

    .PMTWeb-header-language-menu-item img {
        width: 1.5rem;
    }

    .PMTWeb-header-language-menu-item span {
        /* Paragraph 1 */
        font-family: Roboto;
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 1.5rem */
        text-transform: capitalize;
    }

.PMTWeb-header-buttons-btn {
    display: inline-flex;
    height: 3.5rem;
    padding: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    border-radius: 5rem;
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 1.5rem */
    white-space: nowrap;
}

.PMTWeb-header-contact-us-btn {
    color: var(--color-brand-blue-primary);
    font-weight: 700;
    border: 2px solid #5700C0;
}

.PMTWeb-header-get-funded-btn {
    color: var(--color-brand-white);
    font-weight: 400;
    background: var(--gradient);
}

/*Landing page*/


/*Hero*/
.PMTWeb-lp-hero{
/*    padding-bottom: 6rem;
    padding-top: 2rem;*/
}


.PMTWeb-lp-hero-kicker {
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 1.5rem */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.62rem;
    padding-bottom: 2.5rem;
}

.PMTWeb-lp-hero-title {
    text-align: center;
    /* H1 */
    padding-bottom: 4.75rem
}

.fs-title {
    font-weight: 600;
    font-family: Inter;
    font-size: 4.5rem;
    font-style: normal;
    line-height: 100%; /* 4.5rem */
    letter-spacing: -0.135rem;
}

.fs-subtitle {
    font-weight: 500;
    font-size: 1.5rem;
    font-style: normal;
}

.PMTWeb-lp-hero-cards{
    padding: 6rem 0 1.5rem 0;
    justify-content: center;
}

.PMTWeb-lp-hero-card {
    /*    position: relative;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    gap: 1.5rem;
    max-width: 23.5rem;
}

.PMTWeb-lp-hero-card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: var(--Zenit-Radial-Gradient, radial-gradient(50% 50% at 50% 50%, #2584FF 0%, rgba(37, 132, 255, 0.00) 100%));
    filter: blur(200px);
    z-index: -999;
}

.PMTWeb-lp-hero-card-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 16.25rem;
}

.PMTWeb-lp-hero-card-step-description {
    text-align: center;
    /* H4 */
    font-family: Inter;
    font-size: 2.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 2.175rem */
    letter-spacing: -0.01813rem;
}

.PMTWeb-lp-hero-card-btn{
    display: inline-flex;
    height: 4.5rem;
    padding: 1rem 2.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    border-radius: 5rem;
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.5rem */
    white-space: nowrap;
    margin-top: auto;
}


/*About*/

.PMTWeb-lp-about{
    /*padding: 4.5rem 0;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.PMTWeb-lp-about-title {
    text-align: center;
    /* H2 */
    font-family: Inter;
    font-size: 2.9375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 3.23125rem */
    letter-spacing: -0.02938rem;
    padding-bottom: 1.5rem;
}

.PMTWeb-lp-about-subtitle {
    text-align: center;
    /* H4 */
    font-family: Inter;
    font-size: 1.8125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 2.175rem */
    letter-spacing: -0.01813rem;
    padding-bottom: 1rem;
}

.PMTWeb-lp-about-paragraph {
    display: flex;
    flex-direction: column;
    padding-bottom: 4rem;
    text-align: center;
    /* Paragraph Big */
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 1.625rem */
}

.PMTWeb-lp-about-cards {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    justify-content: center;
}

.PMTWeb-lp-about-card {
    display: flex;
    max-width: 23.5rem;
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    align-self: stretch;
    border-radius: 0.5rem;
    background: var(--Zenit-Gradient-Card, linear-gradient(90deg, #21345D 0%, #1C2046 100%));
}

.PMTWeb-lp-about-card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1 0 0;
    align-self: stretch;
}

.PMTWeb-lp-about-card-top-text {
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.PMTWeb-lp-about-card-btm-text {
    /* Paragraph Big */
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 26px */
}

/*Plans*/

.PMTWeb-lp-plans {
    display: flex;
    /*padding: 5rem 0;*/
    flex-direction: column;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.PMTWeb-lp-plans-title {
    text-align: center;
    /* H2 */
    font-family: Inter;
    font-size: 2.9375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 3.23125rem */
    letter-spacing: -0.02938rem;
    padding-bottom: 2rem;

}

.PMTWeb-lp-plans-tab {
    display: flex;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border-radius: .75rem;
    margin-bottom: 3rem;
    background-color: var(--color-brand-newBlue-dark);
    border: 2px solid var(--color-brand-newBlue-light)
}

.btn-check:checked + .PMTWeb-lp-plans-tab-btn {
    background-color: var(--color-brand-newBlue-light);
    color: var(--color-brand-white);
}

.PMTWeb-lp-plans-tab-btn {
    display: flex;
    height: 2.5rem;
    padding: 0.5625rem 1.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: .5rem;
    cursor: pointer;
    color: var(--color-brand-blue-primary);
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 1.5rem */
}

.PMTWeb-lp-plans-cards {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    row-gap: 2.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.PMTWeb-lp-plans-card {
    display: flex;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    align-self: stretch;
    border-radius: .25rem .25rem 1rem 1rem;
    background: var(--color-brand-newBlue-light);
    position: relative;
    min-width: 240px;
}

.PMTWeb-lp-plans-footer {
    margin-top: 1.5rem;
    font-size: 1.15rem;
}


.PMTWeb-lp-plans-card-popular {
    border-radius: 0.84375rem;
    background: linear-gradient(91deg, #FFC369 0%, #FFA41C 100%);
    position: absolute;
    width: 80%;
    height: 1.6875rem;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-brand-white);
    text-align: center;
    font-family: Poppins;
    font-size: .625rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.0520625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.PMTWeb-lp-plans-card-content {
    display: flex;
    /*padding-bottom: 2rem;*/
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: 16px;
    align-self: stretch;
}

.PMTWeb-lp-plans-card-content-pricing-tag {
    font-family: Geologica;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 1.125rem */
    letter-spacing: -0.01125rem;
}

.PMTWeb-lp-plans-card-content-pricing-info {
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.PMTWeb-lp-plans-card-content-title {
    font-family: Geologica;
    font-size: 3.0625rem;
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 3.0625rem */
    letter-spacing: -0.06125rem;
}

.PMTWeb-lp-plans-card-content-features {
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    line-height: 150%; /* 24px */
    display: flex;
    padding-top: .5rem;
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: .5rem;
    align-self: stretch;
}

.PMTWeb-lp-plans-card-btn {
    display: flex;
    height: 3rem;
    padding: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    align-self: stretch;
    border-radius: 3.5rem;
    background: var(--gradient);
    color: var(--color-brand-white);
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    text-decoration: none;
}

/*Why Us*/

.PMTWeb-lp-whyus {
    /*padding: 5rem 2rem;*/
    display: flex;
    flex-direction: column;
}

.PMTWeb-lp-whyus-title {
    text-align: center;
    /* H2 */
    font-family: Inter;
    font-size: 2.9375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 3.23125rem */
    letter-spacing: -0.02938rem;
    padding-bottom: 1.5rem;
}

.PMTWeb-lp-whyus-subtitle {
    text-align: center;
    /* Paragraph Big */
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 1.625rem */
    padding-bottom: 2rem;
}

.PMTWeb-lp-whyus-logos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

    .PMTWeb-lp-whyus-logos img{

    }


.PMTWeb-lp-benefits {
    /*padding: 5rem 2rem;*/
}

.PMTWeb-lp-benefits-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12.5rem;
    position: relative;
}

.PMTWeb-lp-benefit {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    row-gap: 2rem;
}

.PMTWeb-lp-benefit-img {
    display: flex;
    justify-content: center;
    position: relative;
}
/*
.PMTWeb-lp-benefit-img-bg {
    width: 26.5625rem;
    height: 26.5625rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.4;
    background: var(--Zenit-Radial-Gradient, radial-gradient(50% 50% at 50% 50%, #2584FF 0%, rgba(37, 132, 255, 0.00) 100%));
    filter: blur(104px);
}*/
.PMTWeb-list-decimal{
    list-style: decimal;
}
.PMTWeb-list-lower-latin{
    list-style: lower-latin;
}
.PMTWeb-lp-blur-bg{
    height: 300%;
    width: 200%;
    position: absolute;
    background-image: url(/img/blur.png);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    z-index: -1;
    background-size: contain;
    background-position: center;
    pointer-events: none;
}


.PMTWeb-lp-benefit-description {
    display: flex;
    flex-direction: column;
}

.PMTWeb-lp-benefit-description-kicker {
    padding-bottom: .5rem;
    /* Paragraph Big */
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 26px */
}

.PMTWeb-lp-benefit-description-title {
    padding-bottom: 1.5rem;
    /* H3 */
    font-family: Inter;
    font-size: 2.4375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 2.68125rem */
    letter-spacing: -0.04875rem;
}

.PMTWeb-lp-benefit-description-paragraph {
    display: flex;
    flex-direction: column;
    /* Paragraph Big */
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 1.625rem */
    gap: 1rem;
}

.PMTWeb-lp-benefit-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    opacity: 0.4; 
    background: var(--Brand-Blue-Primary, #178FFF); 
}

/*What we provide*/

.PMTWeb-lp-whatweprovide {
    display: flex;
    flex-direction: column;
    /*padding: 4.5rem 2rem;*/
    justify-content: center;
    align-self: stretch;
}

.PMTWeb-lp-whatweprovide-title {
    text-align: center;
    /* H3 */
    font-family: Inter;
    font-size: 2.4375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 2.68125rem */
    letter-spacing: -0.04875rem;
    padding-bottom: 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    align-self: stretch;
    position: relative;
}

.PMTWeb-lp-whatweprovide-subtitle {
    text-align: center;
    /* Paragraph Big */
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 1.625rem */
    padding-bottom: 2rem;
    align-items: center;
    gap: .5rem;
    align-self: stretch;
    justify-content: center;
}

.PMTWeb-lp-whatweprovide-cards {
    padding-top: 2rem;
    padding-inline: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.PMTWeb-lp-whatweprovide-card {
    display: flex;
    padding: 2.5rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: .5rem;
    background: url(/img/card-bg.png), linear-gradient(90deg, #21345D 0%, #1C2046 100%);
    background-color: lightgray;
    background-position: 50%;
    background-size: cover;
    background-blend-mode: multiply, normal; 
}

.PMTWeb-lp-whatweprovide-card-icon {
    display: flex;
    padding: 0.75rem;
    align-items: center;
    gap: 0.5rem;
    border-radius: 5rem;
    background: linear-gradient(91deg, #FFC369 0%, #FFA41C 100%);
}

.PMTWeb-lp-whatweprovide-card-text {
    text-align: center;
    font-family: Geologica;
    font-size: 1.3125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 1.3125rem */
    letter-spacing: -0.01313rem;
}

.PMTWeb-lp-whatweprovide-bg {
    width: 50vw; 
    height: 50vw;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -15%);
    z-index: -1;
    opacity: 0.3;
    background: var(--Zenit-Radial-Gradient, radial-gradient(50% 50% at 50% 50%, #2584FF 0%, rgba(37, 132, 255, 0.00) 100%));
    background-position-y: bottom;
    filter: blur(10vw);
}
/*Rules*/

.PMTWeb-lp-rules {
    background-color: var(--color-brand-newBlue-dark);
    background-image: url(/img/lp-rules-hero.png);
    background-repeat: no-repeat;
    background-position: center right;
    width: 100%;
    height: 40.875rem;
    flex-shrink: 0;
    align-content: center;
    background-size: contain;
}

.PMTWeb-lp-rules-content {
    max-width: 36.7rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.PMTWeb-lp-rules-content-title {
    /* H3 */
    font-family: Inter;
    font-size: 2.4375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 2.68125rem */
    letter-spacing: -0.04875rem;
}

.PMTWeb-lp-rules-content-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.PMTWeb-lp-rules-content-subtitle {
    font-family: Roboto;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 2.03125rem */
}

.PMTWeb-lp-rules-content-paragraph {
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.5rem */
}

.PMTWeb-lp-rules-content-btn {
    display: flex;
    padding: 1rem 2.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    align-self: stretch;
    border-radius: 5rem;
    background: var(--gradient);
    color: var(--color-brand-white);
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 1.5rem */
    width: max-content;
}

/*Affiliates*/

.PMTWeb-lp-affiliates {
    background-color: #070F1D;
    background-image: url(/img/lp-affiliate-hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 35.875rem;
    flex-shrink: 0;
    align-content: center;
}
    .PMTWeb-lp-affiliates .container{
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.PMTWeb-lp-affiliates-content {
    display: flex;
    flex-direction: column;
    gap: 2.0rem;
}

.PMTWeb-lp-affiliates-content-title {
    /* H3 */
    font-family: Inter;
    font-size: 2.4375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 2.68125rem */
    letter-spacing: -0.04875rem;
}

.PMTWeb-lp-affiliates-content-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.PMTWeb-lp-affiliates-content-subtitle {
    font-family: Roboto;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 2.03125rem */
}

.PMTWeb-lp-affiliates-content-paragraph {
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.5rem */
}

.PMTWeb-lp-affiliates-content-btn {
    display: flex;
    padding: 1rem 2.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 5rem;
    background: var(--gradient);
    color: var(--color-brand-white);
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 1.5rem */
    width: max-content;
    place-self: center;
}

/*How does it work*/
.PMTWeb-lp-hdiw {
    display: flex;
    /*padding: 6rem 2rem;*/
    padding-top: 0px;
    flex-direction: column;
    align-items: center;
}

.PMTWeb-lp-hdiw-title {
    display: flex;
    padding-bottom: 4rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    text-align: center;
    /* H2 */
    font-family: Inter;
    font-size: 2.9375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 3.23125rem */
    letter-spacing: -0.02938rem;
}

.PMTWeb-lp-hdiw-cards {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.PMTWeb-lp-hdiw-card {
    width: 100%;
    display: flex;
    height: 19rem;
    flex: 1;
    padding: 1.5rem 2rem;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    border-radius: 1rem;
    background: url(/img/card-bg.png), linear-gradient(90deg, #21345D 0%, #1C2046 100%);
    background-color: lightgray;
    background-position: 50%;
    background-size: cover;
    background-blend-mode: multiply, normal;
}

.PMTWeb-lp-hdiw-card-content {
    display: flex;
    padding-top: 1rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1 0 0;
}

.PMTWeb-lp-hdiw-card-step {
    display: flex;
    width: 3rem;
    height: 3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border-radius: 5rem;
    background: var(--Radial-gradient, radial-gradient(141.42% 141.42% at 100% 100%, #5700C0 18.75%, #3194E6 77.6%));
    padding-top: 0.25rem;
    font-family: Overpass;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 110%; /* 26.4px */
    letter-spacing: -0.045rem;
}

.PMTWeb-lp-hdiw-card-text {
    text-align: center;
    font-family: Geologica;
    font-size: 1.3125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 1.3125rem */
    letter-spacing: -0.01313rem;
}

/*Faq*/

.PMTWeb-lp-faq {
    display: flex;
    /*padding: 5rem 2rem;*/
    flex-direction: column;
    align-self: stretch;
    position: relative;
}

.PMTWeb-lp-faq-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
}

.PMTWeb-lp-faq-header-title {
    text-align: center;
    /* H2 */
    font-family: Inter;
    font-size: 2.9375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 3.23125rem */
    letter-spacing: -0.02938rem;
}

.PMTWeb-lp-faq-header-subtitle {
    text-align: center;
    /* Lead */
    font-family: Roboto;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 2.03125rem */
}

.PMTWeb-lp-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.PMTWeb-lp-faq-accordion::-webkit-scrollbar {
    display: none;
}

.PMTWeb-lp-faq-accordion-item {
    display: flex;
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: .5rem;
    background: var(--Zenit-Gradient-Card, linear-gradient(90deg, #21345D 0%, #1C2046 100%));
}
.PMTWeb-lp-faq-accordion-header{
    width: 100%;
}
.PMTWeb-lp-faq-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: .5rem;
    align-self: stretch;
    color: var(--Brand-White, #FFF);
    /* Paragraph Big */
    font-family: Roboto;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 26px */
}

    .PMTWeb-lp-faq-accordion-btn::after {
        content: "";
        display: inline-flex;
        background: currentColor;
        width: 1.5rem;
        height: 1.5rem;
        mask-image: url(/icons/drop-down.svg);
        mask-repeat: no-repeat;
        mask-position: center;
        transition: transform 0.2s ease-in-out;
    }

    .PMTWeb-lp-faq-accordion-btn[aria-expanded="true"].PMTWeb-lp-faq-accordion-btn::after {
        transform: rotate(180deg);
    }

.PMTWeb-lp-faq-accordion-content {
    display: flex;
    padding-right: 5rem;
    align-items: center;
    gap: .5rem;
    align-self: stretch;
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-top: .5rem;
}

.PMTWeb-lp-faq-blur-left {
    width: 45vw; 
    height: 40vw; 
    position: absolute;
    left: -20vw;
    top: -12vh;
    opacity: 0.4;
    background: var(--Zenit-Radial-Gradient, radial-gradient(50% 50% at 50% 50%, #2584FF 0%, rgba(37, 132, 255, 0.00) 100%));
    filter: blur(10vw); 
    z-index: -1;
}

.PMTWeb-lp-faq-blur-right {
    width: 45vw; 
    height: 40vw;
    position: absolute;
    right: -20vw; 
    bottom: -30vh;
    opacity: 0.4;
    background: var(--Zenit-Radial-Gradient, radial-gradient(50% 50% at 50% 50%, #2584FF 0%, rgba(37, 132, 255, 0.00) 100%));
    filter: blur(10vw); 
}
/*Get funded*/
.PMTWeb-lp-getfunded {
    display: flex;
    padding: 4.5rem 0 7.3125rem 0;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-shrink: 0;
    flex-direction: column;
    position: relative;
}

.PMTWeb-lp-getfunded-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    align-self: stretch;
}

.PMTWeb-lp-getfunded-title {
    text-align: center;
    /* H2 */
    font-family: Inter;
    font-size: 2.9375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 3.23125rem */
    letter-spacing: -0.02938rem;
}

.PMTWeb-lp-getfunded-subtitle {
    max-width: 28.375rem;
    text-align: center;
    /* Lead */
    font-family: Roboto;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 2.03125rem */
}

.PMTWeb-lp-getfunded-btn {
    display: flex;
    padding: 1rem 2.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border-radius: 5rem;
    background: var(--gradient);
    color: var(--color-brand-white);
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}

.PMTWeb-footer {
   /* display: flex;
    height: 5rem;*/
    /*justify-content: space-around;*/
/*    align-items: center;
    text-align: center;*/
    font-family: "Open Sans";
    /*font-size: .75rem;*/
    font-style: normal;
    /*font-weight: 400;
    line-height: 160%;*/ /* 19.2px */

    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.PMTWeb-footer-languages{
    display: flex;
    gap: .5rem;
    align-items: center;
}

.PMTWeb-footer-language {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}
    .PMTWeb-footer-language:not(:first-child)::before {
        content: "-";
    }

.modal {
    background: rgba(5, 11, 31, 0.80);
    backdrop-filter: blur(8px);
}

    .modal .modal-content {
        border-radius: 1rem;
        border: 1px solid rgba(var(--rgb-brand-blue-paragraph), 0.3);
        background: linear-gradient(106deg, #232B46 25.38%, rgba(66, 78, 118, 0.00) 71.25%);
        padding: 3.5rem 2.5rem;
        height: 100%;
        gap: 2rem;
        position: relative;
    }

    .modal .btn-close {
        width: 2.5rem;
        height: 2.5rem;
        position: absolute;
        right: 1.5rem;
        top: 1.5rem;
    }

.modal-logo {
    width: 11.75rem;
    height: 6.5rem;
    content: url(/icons/logo-zenit.svg);
    align-self: center;
}

.modal-tab {
    display: flex;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border-radius: .75rem;
}

.modal-tab-btn {
    display: flex;
    height: 2.5rem;
    padding: 0.5625rem 1.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: .5rem;
    cursor: pointer;
    color: var(--color-brand-blue-primary);
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    border: 1px solid rgba(var(--rgb-brand-blue-paragraph), 0.3);
}

.btn-check:checked + .modal-tab-btn {
    background-color: var(--color-brand-newBlue-light);
    color: var(--color-brand-white);
}

.modal-tab-section {
    overflow: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: thin; /* Firefox */
}

#mdlComingSoon {
    background: var(--color-brand-dx-bg);
}
    #mdlComingSoon .modal-content {
        border-radius: 40px;
        background: transparent;
        overflow: hidden;
    }
    #mdlComingSoon .modal-header {
        padding: 0px;
        margin: 0px;
        border: none;
        border-radius: 0px;
        text-align: center;
        display: block;
    }
    #mdlComingSoon .modal-header, #mdlComingSoon .modal-body {
        background: var(--gradient);
        color: var(--color-brand-paragraph);
        padding-bottom: 32px;
    }
    #mdlComingSoon .modal-body {
        text-align: center;
        padding: 40px;
        background: var(--gradient);
        color: var(--color-brand-paragraph);
        font-size: 1.5em;
    }


.PMTWeb-lp-modal-rules, small {
    color: var(--color-brand-blue-paragraph);
    font-family: Roboto;
}

    .PMTWeb-lp-modal-rules h1, h2, h3, h4, h5, h6, strong {
        color: var(--color-brand-white);
        font-family: Inter;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 2.68125rem */
    }

    .PMTWeb-lp-modal-rules ul{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

.PMTWeb-footer-title {
    font-weight: 500;
    font-size: 1.25rem;
    font-style: normal;
    font-family: Roboto;
}

.fs-small{
    font-size: 0.8rem;
}

a[href]{
    text-decoration: none !important;
}
    a[href]:hover {
        text-decoration: underline !important;
    }

.card {
    /*background: rgba(5, 11, 31, 0.80);*/
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    border: 1px solid rgba(var(--rgb-brand-blue-paragraph), 0.3);
    /*background: linear-gradient(106deg, #232B46 25.38%, rgba(66, 78, 118, 0.00) 71.25%);*/
    background: #232B46;
    padding: 3.5rem 2.5rem;
}

/* inputs */

input.form-control, textarea.form-control {
    padding: 8px 16px !important;
    background-color: var(--color-crmv3-bg) !important;
    border-radius: 2px !important;
    color: var(--color-crmv3-typo-primary) !important;
    border: 0px;
}

    input.form-control:focus, input.form-control:focus-visible {
        background-color: var(--color-crmv3-panel) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--rgb-crmv3-blue-primary), .25) !important;
    }


input[type="checkbox"] {
    background-color: var(--color-crmv3-bg) !important;
    border: 2px solid var(--color-crmv3-typo-primary) !important;
}

    input[type="checkbox"][disabled] {
        background-color: var(--color-crmv3-bg) !important;
        border: 2px solid var(--color-crmv3-typo-secondary) !important;
    }

    input[type="checkbox"]:focus {
        border-color: var(--color-crmv3-blue-primary) !important;
    }

    input[type="checkbox"]:checked {
        background-color: var(--color-crmv3-blue-primary) !important;
        border-color: var(--color-crmv3-blue-primary) !important;
    }

.form-check-label, .form-label {
    color: var(--color-crmv3-typo-secondary);
}

select, select.dt-input, select.form-select {
    background-color: var(--color-crmv3-bg) !important;
    border: unset !important;
    border-radius: 4px !important;
    color: var(--color-crmv3-input-text-active) !important;
}

    .select:focus, .select:focus-visible, select.dt-input:focus, select.dt-input:focus-visible, select.form-select:focus, select.form-select:focus-visible {
        background-color: var(--color-crmv3-panel) !important;
        border-color: var(--color-crmv3-blue-primary) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--rgb-crmv3-blue-primary), .25) !important
    }

.btn-primary {
    display: inline-flex;
    height: 3.5rem;
    padding: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    border-radius: 5rem;
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 1.5rem */
    white-space: nowrap;
    color: var(--color-brand-white);
    font-weight: 400;
    background: var(--gradient);
    border: 0px;
}
.btn-primary:hover{
    opacity: 0.8;
}


.PMTWeb-cookies-text {
    color: var(--color-brand-blue-paragraph);
    /* Paragraph 1 */
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.5rem */
}

.table.PMTWeb-table {
    --bs-table-bg: none;
    --bs-table-color: var(--color-brand-blue-paragraph);
    --bs-table-border-color: rgba(var(--rgb-brand-blue-paragraph), 0.3);
}

.table.PMTWeb-table tr:first-child{
    
}
}

hr {
    border-top: 1px solid var(--color-crmv3-typo-primary);
    width: 100%;
}

#detailRules table {
    color: var(--color-brand-white);
    --bs-table-color: var(--color-brand-white);
}