/* Start Variables */
:root {
    --mainColor: #de3535;
    --white: #fff;
}
/* End Variables */

/* Start Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

img {
    vertical-align: middle;
    border-style: none;
}

table {
    border-collapse: collapse;
}

button {
    border-radius: 0;
    border: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}

/* End Reset */

/* Start Global Styles */
.text-right {
    text-align: right !important;
}

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

.text-left {
    text-align: left;
}

.justify-content-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}

.text-bold {
    font-weight: bold !important;
}

.text-25 {
    font-size: 25px;
}

.text-underline {
    text-decoration: underline;
}

.text-underline-cus {
    display: inline-block;
    position: relative;
}

.text-underline-cus::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    display: block;
    width: 100%;
    height: 6px;
    background-color: #000;
    border-radius: 3px;
}

.text-underline-yellow::after {
    background-color: #ffff00;
}

.text-underline-red::after {
    background-color: var(--mainColor);
}

.main-red {
    color: var(--mainColor);
}

.text-yellow {
    color: #ffff00;
}

.text-red {
    color: var(--mainColor);
}

.text-white {
    color: #fff !important;
}

.highlight-yellow {
    background-color: #ffff00;
    color: #000 !important;
}

.highlight-red {
    padding: 2px 4px;
    background-color: var(--mainColor);
    color: var(--white);
}

.special-font {
    font-family: 'Lemonada', cursive;
}

.beige-label {
    background-color: #FDFCCB !important;
    padding: 20px 40px !important;
    border-radius: 20px;
}

.w-75 {
    width: 75% !important;
}

.w-80 {
    width: 80% !important;
}

.w-90 {
    width: 90% !important;
}

.w-100 {
    width: 100% !important;
}

.p-40 {
    padding: 40px !important;
}

.p-35 {
    padding: 35px !important;
}

.bg-gray {
    background-color: #D2D2D2 !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
    max-width: 33.333%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 16px);
    padding: 1rem 0.75rem;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    /* border-radius: 0.25rem; */
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ff8080;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(255 0 0 / 25%);
}

.form-message-control {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
}

.form-success-message {
    color: #28a745;
}

.form-error-message {
    color: #e33637;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.was-validated :invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-feedback {
    display: block;
}

.sec {
    padding: 20px 0;
}

.buy-btn-wrapper {
    width: 100%;
    margin: 1.5rem 0;
}

.fixed-buy-btn-wrapper {
    position: fixed;
    bottom: 20px;
    right: 0;
    margin: 0 auto !important;
    z-index: 99999;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    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;
}

.btn-buy {
    padding: 18px 50px;
    background-color: var(--mainColor);
    border-radius: 5px;
    font-size: 32px;
    color: var(--white);
}

.btn-buy:hover {
    color: var(--white);
}

.btn-buy-green {
    padding: 18px 50px;
    background-color: #48CC66;
    border-radius: 5px;
    font-size: 32px;
    color: var(--white);
    filter: drop-shadow(0.4rem 0.4rem 0.45rem rgba(0, 0, 30, 0.2));
}

.btn-main {
    margin-top: .75rem;
    padding: 10px;
    background-color: var(--mainColor);
    border-radius: 5px;
    font-size: 20px;
    color: var(--white);
}

.btn-fixed {
    padding: 12px 30px;
    background-color: #EA212B;
    border-radius: 5px;
    font-size: 18px;
    color: var(--white);
    z-index: 99999;
}

@media (max-width: 767.9px) {
    .btn-buy {
        padding: 18px 25px;
        font-size: 1.25rem;
    }
}

.h-limited-copies-wrapper {
    width: 50%;
    margin: auto;
}

.limited-copies-wrapper {
    width: 36%;
    margin: auto;
}

.h-limited-copies-wrapper img,
.limited-copies-wrapper img {
    width: 100%;
}

@media (max-width: 767.9px) {
    .h-limited-copies-wrapper {
        width: 95%;
        font-size: 14px;
    }

    .limited-copies-wrapper {
        width: 75%;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .h-limited-copies-wrapper {
        width: 75%;
    }

    .limited-copies-wrapper {
        width: 60%;
    }
}

.h-wrapper {
    width: 50%;
    margin: 1.5rem auto;
    line-height: 1.4em;
}

.h-wrapper h2 {
    line-height: 1.5em;
}

.h-wrapper h3 {
    font-size: 1.3em;
    line-height: 1.8em;
}

@media (max-width: 767.9px) {
    .h-wrapper {
        width: 95%;
    }

    .h-wrapper h2 {
        font-size: 1.75rem;
    }

    .h-wrapper h3 {
        font-size: 1.1em;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .h-wrapper {
        width: 85%;
    }
}

.p-wrapper {
    width: 70%;
    margin: auto;
    padding: 10px 0;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8em;
}

.p-wrapper ul {
    padding: 0;
    list-style: none;
}

@media (max-width: 767.9px) {
    .p-wrapper {
        width: 97%;
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .p-wrapper {
        width: 85%;
    }
}

.img-wrapper {
    width: 100%;
    margin: auto;
}

.img-wrapper .img-circle {
    width: 7rem;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    width: 70%;
    margin: auto;
    padding: 20px 35px;
    word-wrap: break-word;
    background-color: #fcf8e3;
    background-clip: border-box;
    border: 1px solid #f4f0dc;
}

.card:before,
.card:after {
    background: none repeat scroll 0 0 #a9a9a9;
    bottom: 12px;
    box-shadow: 0 20px 8px #a9a9a9;
    content: "";
    left: 15px;
    max-width: 300px;
    position: absolute;
    top: 80%;
    transform: rotate(-4deg);
    width: 50%;
    z-index: -1;
}

.card:after {
    left: auto;
    right: 15px;
    transform: rotate(4deg);
}

@media (max-width: 767.9px) {
    .card {
        width: 98%;
        margin: auto;
        padding: 20px 10px;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .card {
        width: 90%;
    }
}

.bonus-card {
    width: 65%;
    margin: 0 auto 20px;
    word-wrap: break-word;
}

.bonus-card .bonus-card-head {
    width: 100%;
    padding: 7px 30px;
    background-color: var(--mainColor);
    border-top-right-radius: 0.25em;
    border-top-left-radius: 0.25em;
    color: var(--white);
}

.bonus-card .bonus-card-head h2 {
    margin: 0;
    font-size: 1.63em;
    line-height: 1.8em;
}

.bonus-card .bonus-card-body {
    border: 1px solid var(--mainColor);
    padding: 20px;
}

.bonus-card .bonus-card-body .h-wrapper,
.bonus-card .bonus-card-body .p-wrapper {
    width: 95%;
}

.bonus-card .bonus-card-body .p-wrapper p,
.bonus-card .bonus-card-body .p-wrapper ul {
    font-size: 1.13rem;
}

@media (max-width: 767.9px) {
    .bonus-card {
        width: 98%;
        margin: 0 auto 20px;
    }

    .bonus-card .bonus-card-head h2 {
        font-size: 1.4em;
        line-height: 1.65em;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .bonus-card {
        width: 90%;
    }
}

/* End Global Styles */

/* Start bonus photos */

.bonus,
.bonus-wide {
    display: inline-block;
    vertical-align: middle;
}
.bonus {
    background-image: url("../img/home/bonus.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 170%;
}
.bonus-wide {
    background-image: url("../img/home/bonus.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.bonus.bonus_1 {
    background-position: 0 1.2%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.bonus.bonus_2 {
    background-position: 0 10%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.bonus.bonus_3 {
    background-position: 0 19%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.bonus.bonus_4 {
    background-position: 0 27.9%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.bonus.bonus_5 {
    background-position: 0 36.8%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.bonus.bonus_6 {
    background-position: 0 45.8%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
/* .bonus.bonus_7 {
    background-position: 0 54.8%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
} */
.bonus.bonus_7 {
    background-image: url("../img/likeKids.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.bonus.bonus_8 {
    background-position: 0 63.8%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.bonus.bonus_9 {
    background-position: 0 72.6%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.bonus.bonus_10 {
    background-position: 0 81.5%;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.bonus-wide.bonus_11 {
    background-position: 0 91.1%;
    width: 100%;
    height: 0;
    padding-bottom: 56%;
}
.bonus-wide.bonus_12 {
    background-position: 0 100%;
    width: 100%;
    height: 0;
    padding-bottom: 56%;
}

/* End bonus photos */

/* Start First Paragraph */

.first-sec .p-wrapper {
    font-size: 1.4rem;
}

.first-sec .img-wrapper {
    overflow: hidden;
}

@media (max-width: 767.9px) {
    .first-sec .p-wrapper {
        font-size: 1.25rem;
    }
}

/* End First Paragraph */

/* Start Checkout Section */

.checkout {
    padding : 100px 0;
    background: url('../img/home/receipt-bg.jpg') center center fixed;
    background-size: cover;
}

.checkout .right-side,
.checkout .left-side {
    display: inline-block;
}

.checkout .right-side {
    width: 50%;
    padding-left: 10px;
}

.checkout .left-side {
    width: 50%;
    padding-right: 10px;
}

.checkout .right-side .form-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: hsla(0,0%,100%,.08);
    color: #fff;
}

.checkout .right-side .form-card .label {
    position: absolute;
    width: 12em;
    top: 1.8em;
    left: -3em;
    background-color: var(--mainColor);
    padding: 3px;
    font-size: 0.8em;
    color: var(--white);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.checkout .right-side .form-card .form-card-header {
    background: #353535;
    padding: 20px 50px;
}

.checkout .right-side .form-card .form-card-body {
    padding: 50px 25px 25px;
}

.checkout .right-side .form-card .form-card-body .btn-buy {
    display: block;
    width: 100%;
}

.checkout .right-side .form-card .form-card-body .btn-buy strong {
    display: block;
    font-size: 1.2rem;
    color: #000;
}

.checkout .left-side img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}


@media (max-width: 991.9px) {
    .checkout .row {
        flex-direction: column-reverse;
    }

    .checkout .right-side,
    .checkout .left-side {
        width: 100%;
        padding: 0 15px;
    }

    .checkout .left-side {
        margin-bottom: 3rem;
    }

    .checkout .left-side img {
        position: static;
        transform: translateY(0%);
    }
}

/* End Checkout Section */

/* Start Bio Section */

.bio .img-wrapper .img-circle {
    width: 7rem !important;
    height: 7rem !important;
    overflow: hidden;
}

.bio .p-wrapper {
    width: 50%;
}

.bio .p-wrapper p {
    font-size: 1rem;
}

@media (max-width: 767.9px) {
    .bio .p-wrapper {
        width: 90%;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .bio .p-wrapper {
        width: 80%;
    }
}

/* End Bio Section */

/* Start Testimonials Section */

div.sec-testimonials {
    background-color: #D2D2D2;
    padding: 80px 0;
}

@media (max-width: 767.9px) {
    div.sec-testimonials .col-md-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

div.sec-testimonials .verified-pic {
    width: 160px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

div.sec-testimonials .verified-pic::after {
    content: " ";
    height: 31px;
    width: 31px;
    display: block;
    background-image: url("../img/home/verified.svg");
    position: absolute;
    right: 3px;
    top: 115px;
}

div.sec-testimonials .verified-pic .img-wrapper {
    width: 100%;
    height: 100%;
}

div.sec-testimonials .verified-pic .img-wrapper .img-circle {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.sec-testimonials .verified-pic .img-wrapper .img-circle img {
    flex-shrink: 0;
    object-fit: cover;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

div.sec-testimonials blockquote {
    margin: 1.2rem 0;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.3;
}

div.sec-testimonials cite {
    color: #495057;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 40px;
    display: block;
}

div.sec-testimonials cite strong{
    display: block;
    color: #e73a04;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/* End Testimonials Section */

/* Start Public Testimonials Section */

div.sec-public-testimonials {
    background-color: #D2D2D2;
    padding: 80px 0;
}

div.sec-public-testimonials h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 80px;
}

div.sec-public-testimonials .col-md-4 {
    margin-bottom: 30px;
}

div.sec-public-testimonials img {
    width: 100%;
    border:2px solid #fff;
    -moz-box-shadow: 4px 9px 9px rgb(128 128 128);
    -webkit-box-shadow: 4px 9px 9px rgb(128 128 128);
    box-shadow: 4px 9px 9px rgb(128 128 128);
    -moz-border-radius:25px;
    -webkit-border-radius:25px;
    border-radius:25px;
}

@media (max-width: 767.9px) {
    div.sec-public-testimonials .col-md-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    div.sec-public-testimonials img {
        width: 90%;
    }
}

/* End Public Testimonials Section */

/* Start FAQs Section */

div.faqs {
    padding: 80px 0;
    background-color: transparent;
    background-image: radial-gradient(
        at center center,
        #898989 0%,
        #4b4b4b 100%
    );
    background-attachment: fixed;
}


div.faqs h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #fff;
}

div.faqs .content-wrapper {
    width: 80%;
    margin: auto;
    margin-top: 50px;
}

@media (max-width: 767.9px) {
    div.faqs .content-wrapper {
        width: 95%;
    }
}

div.faqs div.faq-accordion {
    margin: 20px 0;
    border-radius: .5rem;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

div.faqs div.faq-accordion .accordion-wrapper {
    background-color: transparent;
    border-radius: .6rem;
    cursor: pointer;

    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

div.faqs div.faq-accordion .accordion-wrapper .accordion-header {
    background-color: #D3D3D3;
    padding: 30px;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

div.faqs div.faq-accordion .accordion-wrapper .accordion-header h3 {
    margin-bottom: 0;
}

div.faqs div.faq-accordion .accordion-wrapper .accordion-header h3 button {
    padding: 0;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--urbot-black);
}

div.faqs div.faq-accordion .accordion-wrapper .accordion-header h3 button:focus {
    box-shadow: none;
}

div.faqs div.faq-accordion .accordion-wrapper .accordion-header .arrow {
    position: relative;
    z-index: 2;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
    width: 2rem;
    height: 2.5rem;
    color: transparent;
    font-size: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

div.faqs div.faq-accordion .accordion-wrapper .accordion-header .arrow::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../img/home/arrow.svg") no-repeat 50%/1.1rem;
    content: "";
}

div.faqs div.faq-accordion .accordion-wrapper .accordion-body {
    max-height: 0;
    padding: 0rem 1.25rem;
    overflow: hidden;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

div.faqs div.faq-accordion .accordion-wrapper .accordion-body p {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: #fff;
}

div.faqs div.faq-accordion .accordion-wrapper .show {
    margin-top: 15px;
    max-height: 500px;
    padding: 1rem 1.25rem;
}

/* End FAQs Section */

/* Start Thanking Section */

div.thanks .p-wrapper {
    font-size: 1.5rem;
    font-weight: 600;
}

/* End Thanking Section */

/* Start PDF Books */
.pdf-books {
    padding: 20px 0 40px;
}

.pdf-books .books-container {
    display: flex;
    flex-direction: row;
    padding-top: 20px;
}

.pdf-books .books-container div.book-item {
    width: 33.3%;
    justify-content: center;
    text-align: center;
}

.pdf-books .books-container div.book-item:nth-child(2) {
    width: 33.4%;
}

.pdf-books .books-container div.book-item .p-wrapper {
    font-size: 1rem;
}

/* End PDF Books */


/* Start Enter Code Page */

div.main {
    height: 100vh;
    display: flex;
    padding: 30px;
    align-items: center;
    justify-content: center;
}

div.main .form-wrapper {
    width: 100%;
    margin-top: 1rem;
}

div.main .form-wrapper form {
    width: 50%;
    margin: auto;
}

div.main .form-wrapper form button.btn {
    background-color: var(--mainColor);
    color: var(--white);
}

@media (max-width: 767.9px) {
    div.main .form-wrapper {
        margin-top: 1.5rem;
    }

    div.main .form-wrapper form {
        width: 85%;
    }
}

/* End Enter Code Page */

/* Start Loader */

.loader {
    display: none;
    font-size: 10px;
    margin: 10px auto;
    /* text-indent: -9999em; */
    width: 5em;
    height: 5em;
    border-radius: 50%;
    background: #e33637;
    background: -moz-linear-gradient(
        left,
        #e33637 10%,
        rgba(255, 255, 255, 0) 42%
    );
    background: -webkit-linear-gradient(
        left,
        #e33637 10%,
        rgba(255, 255, 255, 0) 42%
    );
    background: -o-linear-gradient(
        left,
        #e33637 10%,
        rgba(255, 255, 255, 0) 42%
    );
    background: -ms-linear-gradient(
        left,
        #e33637 10%,
        rgba(255, 255, 255, 0) 42%
    );
    background: linear-gradient(
        to right,
        #e33637 10%,
        rgba(255, 255, 255, 0) 42%
    );
    position: relative;
    -webkit-animation: load3 1s infinite linear;
    animation: load3 1s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader:before {
    width: 50%;
    height: 50%;
    background: #e33637;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.loader:after {
    background: #fcf8e3;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.animation__wobble {
    -webkit-animation: wobble 1500ms;
    animation: wobble 1500ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.preloader {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f4f6f9;
    height: 100vh;
    width: 100%;
    transition: height 250ms linear;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

/* End Loader */
