﻿*,
:after,
:before {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

a {
    cursor: pointer;
}

    a.secondary-link {
        color: var(--gray);
        text-decoration: none;
    }

        a.secondary-link:hover,
        a.secondary-link:focus {
            color: var(--black);
            text-decoration: underline;
            transition: color 0.15s ease-in-out;
        }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');


body {
    font-family: 'Poppins', sans-serif !important;
}

:root {
    /* class/id { var(--color); } */
    --blue: #0c65b1;
    --dark: #0b4977;
    --gray: #333333;
    --black: #000000;
    --white: #ffffff;
    --yellow: #FFBC32;
    --green: #658F2E;
    --red: #A33F44;
    --light: #CCCCCC;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

.margin-auto {
    margin: 0 auto;
}

.mt-44 {
    margin-top: 44px;
}

.space-20 {
    margin-top: 20px;
}

.space-25 {
    margin-top: 25px;
}

.space-50 {
    margin-top: 50px;
}

.space-100 {
    margin-top: 100px;
}

.space-250 {
    margin-top: 250px;
}

.max-h-50 {
    max-height: 50px;
}

.max-h-200 {
    max-height: 200px;
}

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

.no-padding {
    padding: 0 !important;
}

button {
    border-radius: 0 !important;
}

.btn-yellow {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

    .btn-yellow:hover,
    .btn-yellow:focus {
        background-color: #e3a72d;
        border-color: #e3a72d;
        color: var(--black);
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

li {
    list-style: none;
}

.text-center {
    text-align: center !important;
    font-family: 'Poppins';
}

.text-left {
    text-align: left !important;
}

.text-justify {
    text-align: justify !important;
}

/* navbar */

nav {
    z-index: 999;
}

.nav-m-l {
    margin-left: 15px;
}

li.nav-item {
    font-weight: bolder;
}

    li.nav-item a.nav-link {
        color: var(--black) !important;
    }

        li.nav-item a.nav-link:hover,
        li.nav-item a.nav-link:focus {
            color: var(--dark) !important;
        }

    li.nav-item a.active {
        color: var(--dark) !important;
    }

.right-actions {
    display: inline-flex;
}

.top-nav-icon {
    font-size: 22px;
    color: var(--gray);
}

    .top-nav-icon:hover {
        color: var(--black);
        transition: color 0.15s ease-in-out;
    }


/* content */

.start-here {
    margin-top: 0px;
    padding: 0;
}

img.banner {
    width: 100%;
    display: block;
}

img.mobile-banner {
    display: none;
    width: 100%;
}

@media (max-width:569px) {
    img.banner {
        display: none;
    }

    img.mobile-banner {
        display: block;
    }
}


/* form */

.tablet-view {
    display: none;
}

.mobile-view {
    display: none;
}

.web-view {
    display: block;
}

@media (max-width:991.98px) {
    .tablet-view {
        display: block;
    }

    .web-view {
        display: none;
    }
}

@media (max-width:575.98px) {
    .tablet-view {
        display: none;
    }

    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }
}

.form-begin h2 {
    text-align: center;
    font-weight: bolder;
    color: var(--blue);
    font-family: 'Poppins';
    font-size: 29px;
}

@media (min-width: 1920px) {
    .form-begin h2 {
        font-size: 33px;
    }
}

.form-begin p {
    text-align: center;
    margin-top: 25px;
    color: var(--gray);
    font-family: 'Poppins';
}

@media (min-width: 1920px) {

    p.text-muted.text-left.small.side-padding {
        font-size: 14px !important;
    }

    a.button-vw {
        font-size: larger !important;
        padding: 0.5vw 4.5vw !important;
    }
}

@media (max-width: 1919.98px) {
    a.button-vw {
        font-size: larger !important;
        padding: 0.5vw 3.5vw !important;
    }
}

/*@media (max-width:737px) {
    .form-begin h2 {
        width: 85%;
        margin: 0 auto;
        font-size: 24px;
    }
}*/

.form-begin hr {
    width: 80%;
    margin: 0 auto;
}

.form-begin form {
    margin: 50px auto;
    width: 80%;
}

@media (max-width:1367px) {
    .form-begin form,
    .form-begin hr {
        width: 100%;
    }

    .form-control {
        padding: 17px 20px !important;
    }

    a.button-vw {
        font-size: larger !important;
        padding: 0.75vw 4.5vw !important;
    }
}

@media (max-width:737px) {
    .form-begin form,
    .form-begin hr {
        width: 80%;
    }
}

@media (max-width:1025px) {
    a.button-vw {
        font-size: larger !important;
        padding: 1vw 4.5vw !important;
    }
}

.form-begin form button {
    margin: 50px auto;
    width: 100%;
    padding: 15px;
    background-color: var(--blue);
    font-size: x-large;
}

    .form-begin form button:hover,
    .form-begin form button:focus {
        background-color: var(--dark);
        transition: color 0.15s ease-in-out;
    }

.form-control {
    padding: 15px 20px;
    border: 1px solid #0b4977;
    background-color: #f2f2f2;
}

.half-border {
    border-top: 1px solid #0b4977;
    border-bottom: 1px solid #0b4977;
    border-left: 1px solid #0b4977;
    border-right: 1px solid var(--light);
}

@media (max-width:415px) {
    .form-control {
        padding: 15px 20px !important;
    }

    /*.form-begin form button {
        padding: 10px;
        font-size: larger;
    }*/

    .start-here .mt-44 a {
        font-size: large;
    }
}

@media (max-width:769px) {
    a.button-vw {
        font-size: large !important;
        padding: 1vw 5vw !important;
    }
}

span.input-icon {
    background-color: #f2f2f2;
    border-right: 1px solid #0b4977;
    border-bottom: 1px solid #0b4977;
    border-top: 1px solid #0b4977;
    padding: 20px 25px;
}

#field-edit-icon {
    font-size: x-large;
    color: var(--gray);
}

#eyeIcon {
    font-size: x-large;
    color: var(--gray);
}

/* plans */

.plans {
    margin: 50px auto;
}

    .plans .col .card {
        border: 2px solid #4c92c9 !important;
        border-radius: 15px !important;
    }

        .plans .col .card .card-header {
            background-color: #fff;
            border-radius: 15px;
            border: 0;
        }

            .plans .col .card .card-header h4 {
                font-weight: bolder !important;
                color: #4c91c8;
                font-family: 'Poppins';
            }

            .plans .col .card .card-header p {
                font-weight: bolder;
                font-size: larger;
                color: var(--gray);
                line-height: 0;
                font-family: 'Poppins';
                opacity: 0.85;
            }

        .plans .col .card .card-body {
            padding-left: 0;
            padding-right: 0;
            padding-top: 0;
            padding-bottom: 25px;
        }

            .plans .col .card .card-body .content-center {
                margin: 0 10%;
            }



@media(max-width: 575.98px) {
    .plans .col .card .card-body .content-center {
        margin: 0 25%;
    }
}

@media (min-width:750px) {
    .plans .col .card .card-body .content-center {
        margin: 0 19%;
    }
}

@media (min-width: 921.98px) {
    .plans .col .card .card-body .content-center {
        margin: 0 5%;
    }
}

@media (min-width:900px) {
    .plans .col .card .card-body .content-center {
        margin: 0 20%;
    }
}

@media (min-width: 992px) {
    .plans .col .card .card-body .content-center {
        margin: 0 14%;
    }
}

@media (min-width: 1800px) {
    .plans .col .card .card-body .content-center {
        margin: 0 20%;
    }
}

@media (min-width: 1900px) {
    .plans .col .card .card-body .content-center {
        margin: 0 15%;
    }
}

h1.price-big {
    font-size: 32vw;
    font-weight: bolder;
    font-family: 'Poppins';
    color: black;
}

input, optgroup, select, textarea, label {
    font-family: 'Montserrat';
    color: black;
}

    input.signup {
        font-size: 1rem;
        padding: 15px 20px;
    }

.green-box {
    background-color: white;
    padding: 0px;
    font-weight: 500;
}

@media (min-width:375px) {
    .plans {
        margin-top: calc(var(--bs-gutter-y) * -1);
        margin-right: calc(var(--bs-gutter-x) / -2);
        margin-left: calc(var(--bs-gutter-x) / -2);
    }

    small.price-small {
        font-size: 1.2rem !important;
    }
}

@media (min-width:576px) and (max-width:597px) {
    .plans {
        margin-top: calc(var(--bs-gutter-y) * -1);
        margin-right: calc(var(--bs-gutter-x) / -2);
        margin-left: calc(var(--bs-gutter-x) / -2);
    }
}

@media(min-width:576px) and (max-width:840px) {
    h1.price-big {
        font-size: 59px;
    }

    small.price-small {
        font-size: 1.0rem !important;
    }

    .discount {
        font-size: 13px;
    }

    .plans .col .card .card-header p {
        font-size: 18px;
    }

    .plans .col .card .card-header h4 {
        font-size: 18px;
    }
}

@media(min-width:1200px) and (max-width:1330px) {
    h1.price-big {
        font-size: 70px;
    }
}

@media(min-width:1919px) {
    h1.price-big {
        font-size: 120px;
    }
}

small.price-small {
    font-weight: bolder;
    font-size: 1.4rem;
}

@media (min-width: 1919px) {
    small.price-small {
        font-size: 25px !important;
    }
}

.discount {
    font-family: "Poppins", sans-serif;
    color: #0665b4;
    font-size: 16px;
    margin-top: -15px;
    padding-bottom: 20px;
}

.plans .col .card .card-body h1.card-title {
    font-size: 28px;
    color: #fff;
    padding: 20px;
}

.plans .col .card .card-body h1.gray-bg {
    background-color: #999999;
}

.plans .col .card .card-body h1.blue-bg {
    background-color: #4c91c8;
}

.plans .col .card .card-body img.price {
    margin-top: 20px;
    padding-bottom: 20px;
}

.plans .col .card .card-body img.price {
    margin-top: 20px;
    padding-bottom: 20px;
}

a.price-btn {
    padding: 10px 55px;
    font-weight: 500;
    font-size: 1.2vw;
    font-family: 'Poppins';
}

.green-box {
    border: 1px solid #84ae4a;
    width: 100%;
    font-family: 'Poppins';
}

    .green-box h5.box-header {
        font-family: 'Poppins', sans-serif;
        background-color: #84ae4a;
        text-align: center;
        color: #fff;
        font-weight: bolder;
        padding-top: 30px;
        padding-bottom: 30px;
    }

@media (min-width: 1920px) {
    .green-box h5.box-header {
        font-size: 1.9rem;
    }
}

.green-box ul.features {
    text-align: center;
    padding: 30px;
}

    .green-box ul.features li {
        line-height: 38px;
        color: var(--black);
        font-size: 14px;
    }


@media (min-width: 1600px) {
    .green-box ul.features li {
        font-size: 19px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1920px) {
    .green-box ul.features li {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

.mobile-view .green-box {
    width: 95%;
    margin: 0 auto;
}


/* payment */

a.paypal-btn {
    border-radius: 7px;
    font-size: x-large;
    width: 80%;
    padding: 15px;
    margin-left: 10%;
}

    a.paypal-btn img {
        height: 40px;
    }

@media (max-width:321px) {
    a.paypal-btn {
        font-size: medium !important;
    }
}

.form-begin .form-check {
    width: 80%;
    margin-left: 10%;
    margin-top: 30px !important;
    background-color: #ebf2f8;
    font-weight: bolder;
    padding: 15px 50px;
}

@media (max-width:1367px) {
    a.paypal-btn,
    .form-begin .form-check {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width:737px) {
    a.paypal-btn,
    .form-begin .form-check {
        width: 80%;
        margin-left: 10%;
    }
}

@media (max-width:376px) {
    .form-begin .form-check {
        font-size: smaller;
    }
}

@media (max-width:321px) {
    .form-begin .form-check {
        font-size: small;
        padding: 10px 30px;
    }
}

.plans-dropdown-field {
    border-top: 1px solid #0b4977;
    border-left: 1px solid #0b4977;
    border-bottom: 1px solid #0b4977;
    border-right: 0 !important;
    background-color: #d8f1fe;
}

span.plans-dropdown {
    background-color: #4c91c8;
    border-radius: 0;
    border: 0;
}


@media (max-width:415px) {
    .plans-dropdown-field::placeholder,
    select.select-plan {
        font-size: small;
    }
}

img.payments {
    width: 250px;
}

a.underline-link {
    color: var(--blue);
    text-decoration: underline;
}

    a.underline-link:hover {
        color: #4c91c8;
    }

@media (max-width:1025px) {
    a.underline-link {
        font-size: small !important;
    }
}

.accept input.form-check-input {
    background-color: #f2f2f2;
    border: 1px solid #0b4977;
    padding: 10px;
}

    .accept input.form-check-input:checked {
        background-color: var(--blue);
        border-color: var(--blue);
    }

.accept label.form-check-label {
    padding-top: 4px;
    color: var(--gray);
    font-family: 'Poppins';
}

@media (max-width:769px) {
    .accept label.form-check-label {
        font-size: smaller;
        padding-top: 5px;
    }
}

@media (max-width:590px) {
    .accept label.form-check-label {
        font-size: 12px;
        padding-top: 5px;
    }
}

@media (max-width:376px) {
    .accept input.form-check-input {
        padding: 5px;
    }

    .accept label.form-check-label {
        font-size: 12px;
        padding-top: 3px;
    }
}

@media (max-width:668px) {
    .reset-padding {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width:321px) {
    .accept input.form-check-input {
        padding: 5px;
    }

    .accept label.form-check-label {
        font-size: 10px;
        padding-top: 3px;
    }
}

/* result */

.result {
    margin-top: 75px;
    padding-left: 10%;
    padding-right: 10%;
}

span.success {
    color: var(--green);
    font-weight: bolder;
    font-size: xx-large;
}

h2.success-text {
    font-weight: bolder;
    color: var(--black);
}

span.plain-text {
    font-size: 22px;
    color: var(--black);
}

.btn-bigger {
    padding: 20px;
    font-size: x-large;
    background: #0064B2;
}

.result-tablet-view,
.result-mobile-view {
    display: none;
}

@media (max-width:1420px) {
    span.success {
        font-size: x-large;
    }

    h2.success-text {
        font-size: x-large;
    }

    span.plain-text {
        font-size: large;
    }

    .btn-bigger {
        font-size: medium;
    }
}

@media (max-width:1010px) {
    span.success {
        font-size: x-large;
    }

    h2.success-text {
        font-size: x-large;
    }

    span.plain-text {
        font-size: medium;
    }

    .btn-bigger {
        font-size: 14px;
    }
}

@media (max-width:991.98px) {
    .result-web-view,
    .result-mobile-view {
        display: none;
    }

    .result-tablet-view {
        display: block;
    }

    .result {
        margin-top: 30px;
    }

    a.result-secondary-link {
        font-size: x-large !important;
    }
}

@media (max-width:575.98px) {
    .result-web-view,
    .result-mobile-view {
        display: none;
    }

    .result-tablet-view {
        display: block;
    }

    .result {
        margin-top: 20px;
    }
}

@media (max-width:668px) {
    .result-web-view,
    .result-mobile-view {
        display: none;
    }

    .result-tablet-view {
        display: block;
    }

    .result {
        margin-top: 20px;
    }

    .btn-bigger {
        font-size: large;
    }

    span.plain-text {
        font-size: 20px;
    }

    a.result-secondary-link {
        font-size: large !important;
    }
}

@media (max-width:668px) {
    .result-web-view,
    .result-mobile-view {
        display: none;
    }

    .result {
        margin-top: 0;
    }

    img.check {
        width: 50%;
    }

    span.success {
        font-size: 23px;
    }

    h2.success-text {
        font-size: 23px;
    }

    .btn-bigger {
        font-size: medium;
        padding: 14px;
        width: 100% !important;
    }
}

@media (min-width:575.99px) and (max-width:991.98px) {
    .result-tablet-view {
        display: block;
    }
}

@media (max-width:575.98px) {
    .result-mobile-view {
        display: block;
    }

    .result-tablet-view {
        display: none;
    }
}

@media (max-width:415px) {
    hr.bigger {
        width: 100% !important;
    }
}

@media (max-width:376px) {
    .result-web-view,
    .result-mobile-view {
        display: none;
    }

    .result-tablet-view {
        display: none;
    }

    .result-mobile-view {
        display: block;
    }

    .result {
        margin-top: 0;
    }

    span.success {
        font-size: 21px;
    }

    h2.success-text {
        font-size: 21px;
    }

    span.plain-text {
        font-size: 18px;
    }

    .btn-bigger {
        font-size: medium;
        padding: 14px;
        width: 100% !important;
    }
}

@media (max-width:321px) {
    .result-web-view,
    .result-mobile-view {
        display: none;
    }

    .result-tablet-view {
        display: none;
    }

    .result-mobile-view {
        display: block;
    }

    .result {
        margin-top: -25px;
    }

    img.check {
        width: 50%;
    }

    span.success {
        font-size: 18px;
    }

    h2.success-text {
        font-size: 18px;
    }

    span.plain-text {
        font-size: 16px;
    }

    .btn-bigger {
        font-size: small;
        padding: 3vw;
        width: 100% !important;
    }

    a.result-secondary-link {
        font-size: medium !important;
    }
}
/* watermark */

.watermark-area {
    position: relative;
    z-index: -1;
    margin-top: -250px;
    text-align: right;
    padding-bottom: 50px;
}


@media (max-width:1367px) {
    .watermark-area {
        padding-bottom: 25px;
    }
}

@media (max-width:813px) {
    .watermark-area {
        margin-top: -230px;
    }
}

@media (max-width:320px) {
    .watermark-area {
        margin-top: -200px;
    }

    /* .watermark-area img.watermark {
            height: 300px;
        }*/
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


/* responsive nav */


a.subs-btn {
    max-height: 40px !important;
}


.userIcon {
    color: black !important;
    font-size: 21px;
    padding-left: 0 !important;
}


.form-control:disabled,
.form-control[readonly] {
    background-color: #d9f0ff;
    border: 1px solid #0b4977;
    opacity: 1;
}


button.btn.dropdown-toggle.btn-light {
    background: #d8f1fe !important;
    border: none;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 15px;
    margin-top: 15px;
    width: 85%;
    text-align-last: center;
}

.bootstrap-select > .dropdown-toggle:after {
    font-size: x-large;
}

.country-city-select {
    color: inherit;
    font-weight: 100;
    width: 100% !important;
    height: 56px !important;
    border: 1px solid #0b4977 !important;
    border-radius: 0px !important;
}

    .country-city-select button.btn.dropdown-toggle.btn-light {
        background: #f2f2f2 !important;
        font-size: 1rem;
        margin-top: 0px;
        width: 100%;
        font-family: 'Montserrat' !important;
        height: 54px !important;
        text-align-last: left !important;
        padding: 15px 20px !important;
    }

    .country-city-select input.form-control {
        padding: 5px !important;
        margin-bottom: 5px;
    }

    .country-city-select .dropdown-menu.show {
        width: 100% !important;
        background-color: #f2f2f2 !important;
       
    }
    .country-city-select div.dropdown-menu.show {
        border: 1px solid #0b4977 !important;
        border-radius: 0px !important;
    }

        .country-city-select .dropdown-toggle:focus {
            outline: none !important;
            box-shadow: none !important;
        } 

@media (max-width:412px) {
    .apply-button {
        padding-left: 0px !important;
    }
}

@media (max-width:375px) {
    .form-begin h2 {
        font-size: 5vw;
    }

    .form-control {
        font-size: 5vw;
    }

    .form-begin form button {
        font-size: 5vw;
    }

    span.input-icon {
        padding: 20px 5px;
    }

    /*   .watermark-area img.watermark {
        height: 200px;
    }*/

    .green-box ul.features li {
        font-size: 5vw !important;
    }

    img.payments {
        width: 200px;
    }

    input.signup {
        height: 70% !important;
    }

    .apply-button {
        height: 70% !important;
        font-size: 3.8vw !important;
        padding: 9px 2px !important;
    }

    .apply-button-div {
        padding-left: 0px !important;
    }
}

.apply-button {
    height: 100%;
}

@media(min-width:376px) and (max-width:485px) {
    .apply-button {
        font-size: 3.8vw !important;
        padding: 17px 2px !important;
    }
}

@media(max-width:378px) {
    button.btn.dropdown-toggle.btn-light {
        margin-top: 5px;
    }
}

@media (max-width:575px) {
    .form-begin h2 {
        width: 85%;
        margin: 0 auto;
        font-size: 5vw;
    }

    .green-box ul.features li {
        font-size: 4vw;
    }

    /* .apply-button {
        font-size: 3vw !important;
        padding: 4.5vw 2px !important;
    }*/


    .changePlanInput {
        font-size: xx-small !important;
    }

    button.btn.dropdown-toggle.btn-light {
        font-size: 11px;
    }

    img.payments {
        width: 200px;
    }

    p.text-muted.text-justify.small.side-padding {
        font-size: small;
    }

    .result-tablet-view > div > div > p > img {
        transform: scale(0.8);
    }

    .result-tablet-view > div > div > br:nth-child(3) {
        display: none;
    }
}

@media(max-width:768px) {
    button.btn.dropdown-toggle.btn-light {
        margin-top: 3px;
        width: 103%;
    }
}


@media(max-width:1370px) {
    button.btn.dropdown-toggle.btn-light {
        margin-top: 0px;
    }
}

@media(max-width:1919px) {
    .price-big-margin {
        margin-left: 0px;
    }
}

@media screen and (min-width:1919px) {
    .price-big-margin {
        margin-left: 0px;
    }

    a.price-btn {
        margin-bottom: 30px;
        padding: 10px 75px;
    }
}

.hamburger-subs-btn {
    display: none !important;
}

img.watermark {
    width: 50%;
    opacity: 0.5;
    margin-right: auto;
    top: auto;
    position: initial;
    overflow: auto;
    float: initial;
    z-index: -1;
    margin-bottom: auto;
}

@media (min-width:279.98px) and (max-width:321px) {
    .apply-button {
        font-size: 3.8vw !important;
    }
}

@media (max-width:575.98px) {
    .btn-bigger {
        border-radius: 0;
    }
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%230b4977'/%3e%3c/svg%3e")
}

.form-check-input:checked {
    opacity: 1 !important;
    background-color: #fff;
    border: 2px solid #0b4977;
}

.no-sharp {
    -webkit-border-radius: 0;
    border-radius: 0;
}

@media (min-width:1920px) {
    h1.price-big {
        font-size: 8.5vw;
    }

    .price-small-fraction {
        font-size: 4vw;
        margin-top: -0.5vw;
    }

    .price-subs-time {
        margin-top: -3vw;
        margin-left: -1.6vw;
        font-size: 2.1vw;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 26px;
        margin-top: -2vw;
        padding-bottom: 1.5vw;
    }
}

@media (min-width:1530px) and (max-width:1920px) {
    h1.price-big {
        font-size: 7.5vw;
    }

    .price-small-fraction {
        font-size: 4vw;
        margin-top: -1vw;
    }

    .price-subs-time {
        margin-top: -3.2vw;
        margin-left: -1.5vw;
        font-size: 2.1vw;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 22px;
        margin-top: -2vw;
        padding-bottom: 1.5vw;
    }
}

@media (min-width:1360px) and (max-width:1530px) {
    h1.price-big {
        font-size: 8.5vw;
    }

    .price-small-fraction {
        font-size: 4vw;
        margin-top: -1vw;
    }

    .price-subs-time {
        margin-top: -3vw;
        margin-left: -1vw;
        font-size: 2.1vw;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 20px;
        margin-top: -2vw;
        padding-bottom: 1.5vw;
    }
}


@media (min-width:1200px) and (max-width:1360px) {
    h1.price-big {
        font-size: 8.5vw;
    }

    .price-small-fraction {
        font-size: 4vw;
        margin-top: -1vw;
    }

    .price-subs-time {
        margin-top: -3.5vw;
        margin-left: -1vw;
        font-size: 2.1vw;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 20px;
        margin-top: -2vw;
        padding-bottom: 1.5vw;
    }
}

@media (min-width:1024.99px) and (max-width:1200px) {
    h1.price-big {
        font-size: 9.5vw;
    }

    .price-small-fraction {
        font-size: 4vw;
        margin-top: -1vw;
    }

    .price-subs-time {
        margin-top: -3.5vw;
        margin-left: -0.5vw;
        font-size: 2.5vw;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 20px;
        margin-top: -2.5vw;
        padding-bottom: 3vw;
    }
}


@media (min-width:991.98px)and (max-width:1024.98px) {
    .price-small-fraction {
        font-size: 5.7vw;
        margin-top: 1vw;
    }

    h1.price-big {
        font-size: 15vw;
    }

    .price-subs-time {
        margin-top: -4vw;
        margin-left: -0.5vw;
        font-size: 3.8vw;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 20px;
        margin-top: -3.5vw;
        padding-bottom: 3vw;
    }
}


@media (min-width:769px) and (max-width:991.98px) {
    .price-subs-time {
        font-size: 3vw;
        margin-top: -4.5vw;
        margin-left: -3vw;
    }

    .price-small-fraction {
        font-size: 6.5vw;
        margin-top: -1.5vw;
    }

    h1.price-big {
        font-size: 13.5vw !important;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 18px;
        margin-top: -3.5vw;
        padding-bottom: 3vw;
    }
}

@media (min-width:650px) and (max-width:768px) {
    h1.price-big {
        font-size: 14vw !important;
    }

    .price-subs-time {
        font-size: 3.5vw;
        margin-top: -5.5vw;
        margin-left: -2vw;
    }
}

@media (min-width:575px) and (max-width:650px) {
    .price-subs-time {
        font-size: 3.5vw;
        margin-top: -6vw;
        margin-left: -2vw;
    }
}

@media (min-width:575.98px) and (max-width:768.98px) {
    .price-small-fraction {
        font-size: 6.5vw;
        margin-top: -2.5vw;
    }

    h1.price-big {
        font-size: 13vw !important;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 16px;
        margin-top: -3.5vw;
        padding-bottom: 3vw;
    }
}

@media (max-width:575.98px) {
    .price-subs-time {
        margin-top: -15.5vw;
        margin-left: -5vw;
        font-size: 9vw;
    }

    .price-small-fraction {
        font-size: 15.5vw;
        margin-top: -2.8vw;
        margin-bottom: 1vw;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 6vw;
        margin-top: -7vw;
        padding-bottom: 6vw;
    }
}

@media (min-width:450px) and (max-width:575.98px) {
    .price-subs-time {
        margin-top: -12.7vw;
        margin-left: -3vw;
        font-size: 9vw;
    }

    .price-small-fraction {
        font-size: 15.5vw;
        margin-top: -2.8vw;
        margin-bottom: 2.2vw;
    }

    a.button-vw {
        font-size: large !important;
        padding: 2vw 12vw !important;
    }
}

@media (min-width:375px) and (max-width:449.98px) {
    .price-subs-time {
        margin-top: -15vw;
        margin-left: -3vw;
        font-size: 9vw;
    }

    .price-small-fraction {
        font-size: 15.5vw;
        margin-top: -2.8vw;
        margin-bottom: 2vw;
    }

    a.button-vw {
        font-size: large !important;
        padding: 2vw 12vw !important;
    }
}

@media (min-width:361px) and (max-width:374.98px) {
    a.button-vw {
        font-size: large !important;
        padding: 2vw 12vw !important;
    }
}

@media (max-width:360.98px) {
    .price-subs-time {
        margin-top: -15.5vw;
        margin-left: -5vw;
        font-size: 9vw;
    }

    .price-small-fraction {
        font-size: 16.5vw;
        margin-top: -5.5vw;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 6vw;
        margin-top: -15px;
        padding-bottom: 20px;
    }

    a.button-vw {
        font-size: large !important;
        padding: 2vw 12vw !important;
    }
}

@media (max-width:321px) {
    .price-subs-time {
        margin-top: -19vw !important;
        margin-left: -3vw;
        font-size: 10vw;
    }

    .price-small-fraction {
        font-size: 16.5vw !important;
        margin-top: -5.5vw;
        margin-bottom: 1vw;
    }

    .discount {
        font-family: "Poppins", sans-serif;
        color: #4c91c8;
        font-size: 6vw;
        margin-top: -6vw;
        padding-bottom: 7vw;
    }

    a.button-vw {
        font-size: large !important;
        padding: 2vw 9vw !important;
    }
}

.promotion-accepted {
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    background-color: #ebfad7;
    margin-top: 30px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    border: 2px solid #c6e39e;
}

.prom-accepted-msg {
    color: #77a836 !important;
    margin: 0 !important;
    font-weight: bolder;
}

.prom-accepted-detail {
    color: black;
    text-align: center !important;
    font-weight: bolder;
    margin: 0 !important;
    margin-top: 7px !important;
}

.subscribe-black-text {
    font-weight: bolder;
    font-size: 24px;
    padding-right: 60px;
    padding-left: 60px;
    margin-top: 15px !important;
}

p.group-promo-text {
    font-size: 18px;
    padding-right: 25px;
    padding-left: 25px;
    margin-bottom: 15px !important;
}

p.group-promo-register-payment-text {
    font-size: 26px;
    margin-bottom: 25px !important;
    font-weight: bolder;
    color: var(--blue);
}

img.group-promo-register-payment-logo {
    margin-bottom: 25px;
}
