body {
    font-family: 'Montserrat', sans-serif !important;
background-color: #212529 !important;
}
.join_error {
  color: red;
}
/* HEADER */

.header-container {
    background-color: #000;
}

.navbar {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.navbar-brand {
    margin: 0 auto !important;
}

/* END OF HEADER */

/* FORM */
.form-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.step-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

/* create account */
.form-input {
    height: 35px;
    border: 1px solid #d5d5d5;
    box-shadow: 1px 1px 4px 1px #d5d5d5 inset;
    background-color: #e6e6e6;
    max-width: 350px;
    width: 100%;
    padding: 5px 0;
    outline: none;
}

.form-input:hover, .form-input:focus {
    background-color: #fff;
}

.form-input::-webkit-input-placeholder {
    font-size: 12px;
}

.form-input::-moz-placeholder {
    font-size: 12px;
}

.form-input:-ms-input-placeholder {
    font-size: 12px;
}

.form-input:-moz-placeholder {
    font-size: 12px;
}

/* choose your plan */
.plans {
    margin-bottom: 30px;
}

.plans-card-container {
    height: 328px;
}

.plans-card-container > label {
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: #eeeeee;
    padding: 5px;
    position: relative;
}

.plans-card-container > .plans-card__best::before {
    position: absolute;
    left: 50%;
    top: -15px;
    padding: 0 10px;
    width: 90%;
    background: #BB1212;
    color: #fff;
    content: attr(data-best-deal);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    font-size: 20px;
    letter-spacing: 1px;
    transform: translateX(-50%);
    white-space: nowrap;
    transition: all .5s;
}

.plans-card-container > label > .plans-card {
    /*! border: 2px solid #fff; */
}

.plans-card-container > .plans-card__input {
    display: none;
}

/* checked */
.plans-card-container:nth-child(odd) > .plans-card__input:checked + label {
    background-color: #1b2f37;
    transition: all .5s;
}

.plans-card-container:nth-child(odd) > .plans-card__input:checked + label > .plans-card {
    background-color: #cbb26a;
    transition: all .5s;
}

.plans-card-container:nth-child(odd) > .plans-card__input:checked + label > .plans-card > .plans-card__check {
    background-color: #7bcdc7;
    transition: all .5s;
}

.plans-card-container:nth-child(odd) > .plans-card__input:checked + label > .plans-card > .plans-card__desc::after {
    background-color: #6a83cb;
    color: #fff;
    transition: all .5s;
}

.plans-card-container:nth-child(even) > .plans-card__input:checked + label {
    background-color: #1b2f37;
    transition: all .5s;
}

.plans-card-container:nth-child(even) > .plans-card__input:checked + label > .plans-card {
    background-color: #cbb26a;
    transition: all .5s;
}

.plans-card-container:nth-child(even) > .plans-card__input:checked + label > .plans-card > .plans-card__check {
    background-color: #92c83e;
    transition: all .5s;
}

.plans-card-container > .plans-card__input:checked + label > .plans-card > span {
    color: #fff;
    opacity: 1;
    transition: all .5s;
}

.plans-card {
    background-color: #eeeeee;
    min-height: 176px;
    height: 100%;
    padding: 0 20px;
    cursor: pointer;
}

.plans-card > span {
    display: block;
}

.plans-card__title, .plans-card__month, .plans-card__desc, .plans-card__price, .plans-card__per, .plans-card__rebill {
    color: #333;
}

.plans-card__title {
    padding: 9px 2px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.plans-card__month {
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    padding: 25px 0 0 0;
}

.plans-card__desc {
    min-height: 34px;
    font-size: 13px;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.plans-card__desc::after {
    position: absolute;
    left: 50%;
    bottom: -9px;
    padding: 0 10px;
    content: attr(data-most-popular);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    transform: translateX(-50%);
    background: #eeeeee;
}

.plans-card__price {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}

.plans-card__per {
    font-size: 20px;
    font-weight: 700;
}

.plans-card__rebill {
    font-size: 12px;
    font-weight: 700;
    margin-top: 15px;
    opacity: 0.5;
}

.plans-card__check {
    position: absolute;
    left: 50%;
    bottom: -12px;
    display: block;
    width: 12px;
    height: 12px;
    padding: 5px;
    box-sizing: content-box;
    border: 2px solid #fff;
    transform: translateX(-50%);
    border-radius: 100%;
    background: #eee;
    color: #333;
    font-size: 12px;
    line-height: 12px;
}

.plans-card__check > .fas.fa-check::before {
    content: "\f00c";
}

.plans-card__select {
    font-size: 20px;
    font-weight: 500;
    padding: 2px 12px;
    margin: 5px 0 0 0;
    display: inline-block !important;
    color: #000;
}

/* choose payment type */
.payment {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment > input[type="radio"] {
    margin-right: 5px;
    cursor: pointer;
}

.payment__input:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.payment__input:checked + label,
.payment__input:not(:checked) + label{
    position: relative;
    padding-left: 28px;
    line-height: 20px;
    display: inline-block;
    cursor: pointer;
}

.payment__input:checked + label::before,
.payment__input:not(:checked) + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 24px;
    height: 24px;
    border: 2px solid #000;
    border-radius: 100%;
    background: #fff;
    cursor: pointer;
}

.payment__input:checked + label::after,
.payment__input:not(:checked) + label::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid #000;
    position: absolute;
    top: 21px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
}

.payment__input:not(:checked) + label::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.payment__input:checked + label::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    background: #000;
}

.submit-btn {
    text-transform: uppercase;
    border: none;
    background-color: #cbb26a;
    font-size: 40px;
    color: #fff;
    padding: 5px 30px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #d2bc7d;
}
/* END OF FORM */

/* BANNER */
.banner > picture > img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
/* END OF BANNER */

/* FOOTER */
.footer-container {
    background-color: #171717;
}

.footer {
    padding: 0 0 25px 0;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.footer > .footer__logo {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.footer > .footer__desc {
    color: #fff;
    text-align: center;
    font-size: 13px;
}

.footer > .footer__desc > a {
    color: #fff;
}

.footer > .footer__desc > a:hover {
    color: #d5d5d5;
}

.footer > .footer__menu {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    text-align: center;
}

.footer > .footer__menu > .footer__menu-item {
    margin-right: 22px;
}

.footer > .footer__menu > .footer__menu-item:last-child {
    margin-right: 0;
}

.footer > .footer__menu > .footer__menu-item > a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.footer > .footer__menu > .footer__menu-item > a:hover {
    color: #d5d5d5;
}

.footer > .footer__copyright, .footer__compliance {
    text-align: center;
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
}

.footer > .footer__copyright {
    color: #d5d5d5;
}

.footer > .footer__compliance {
    display: block;
    color: #fff;
    text-decoration: none;
}

.footer > .footer__compliance:hover {
    text-decoration: underline;
    cursor: pointer;
}
/* END OF FOOTER */

@media only screen and (max-width: 911px) {
    .plans-card-container {
        height: 200px;
    }
    .plans-card__month {
        font-size: 20px;
        padding: 15px 0 0 0;
    }
    .plans-card__desc {
        font-size: 13px;
    }
    .plans-card__per {
        font-size: 17px;
    }
    .plans-card__price {
        font-size: 27px;
    }
    .plans-card__rebill {
        margin-top: 5px;
    }
    .payment__input:checked + label,
    .payment__input:not(:checked) + label {
        width: 200px;
    }
}