*, ::before, ::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.6rem;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

/* Common */

:root {
    /* --primaryColor: #aec5cd; */


    --primaryColor: #6689db;
    --secondColor: #546166;
    --bgColor: #c4d6dc;
    --bgBlueColor: #6689db;
    
    --darkPerfect: #343333;
    --darkColor: #292828;
    --darkClear: #031836;
    --darkText: #111;
    --textColor: #546166;
    --darkColor: #191B1D;
    --whiteColor: #ffffff;
    --greyColor: #4E5358;
    --yellowLight: #FFF9E5;
}

.primary-color {
    color: var(--primaryColor) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #546166;
}

input, select, textarea, button {
    font-size: inherit;
    font-family: inherit;
}

a {
    text-decoration: none;
}

.btn {
    --height: 44px;

    display: inline-block;
    background-color: var(--bgBlueColor);
    min-width: 108px;
    height: var(--height);
    line-height: var(--height);
    border-radius: 10px;
    /* font-family: 'Manrope', sans-serif; */
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--whiteColor);
    text-align: center;
}

.btn:hover {
    opacity: 0.9;
}

.small-font {
    font-size: 1.5rem !important;
}

.normal-font {
    font-size: 40px !important;
}

.big-font {
    font-size: 52px !important;
}

.large-font {
    font-size: 64px !important;
}

.blue-color {
    color: var(--bgBlueColor) !important;
}

.bold {
    font-weight: 600 !important;
}

.italic {
    font-style: italic;
}


.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}
 
.font-ranga {
    font-family: "Ranga", cursive;
    display: block;
}

.padding-between {
    padding-top: 20px;
    padding-bottom: 20px;
}

.text-decoration {
    text-decoration: underline;
}

/* Header */
.header {
    /* background-color: #6689db; */
    color: var(--darkText);
    padding: 10px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--darkText);
    font-size: 18px;
    font-weight: normal;
}

.logo a strong {
    font-weight: 900;
}

.logo img {
    width: 200px;
    max-width: 100%;
}


.header__inner .cta a {
    margin-left: 10px;
    background-color: transparent;
    color: var(--darkText);
    font-size: 18px;
    font-weight: normal;
} 

/************ MAIN CONTENT ************/
.main.main-homepage {
    background-color: #F7F8FC;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.main.main-homepage h1, .main.main-homepage h2, .main.main-homepage h3, .main.main-homepage h4, .main.main-homepage h5 {
    color: var(--darkClear);
}

.main-homepage .page__list-disc {
    margin-top: 20px;
    margin-left: 0;
    list-style: none;
}

.main-homepage .page__list-disc li {
    position: relative;
    margin-bottom: 26px;
    font-size: 20px;
    line-height: 1.4;
}

.main-homepage .page__list-disc.page__list--icon li.page__list--icon__li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-homepage .page__list-disc li.page__list--border a {
    color: var(--bgBlueColor);
    font-weight: 500;
    text-decoration: underline;
}

.main-homepage .page__list-disc li i {
    display: inline-block;
    color: var(--primaryColor);
    margin-right: 8px;
    font-size: 28px;
}

.page__list--border {
    border-style: solid;
    border-width: 0px 0px 0px 5px;
    border-color: var(--primaryColor);
    padding-left: 24px;
}

.page__list--bg {
    padding: 24px;
    background-color: var(--primaryColor);
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
}

.section-top {    
    padding-top: 20px;
    padding-bottom: 20px;
}

.section-top__subhead {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--bgBlueColor);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.section-top__italic {
    color: var(--whiteColor);
    font-size: 26px;
    font-style: italic;
    line-height: 1.2;
    text-align: center;
}

.section-top-row-wrap {
    padding: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    border: 8px solid var(--bgBlueColor);
    border-top: none;
}

.section-top__inner p {
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: var(--darkClear);
    line-height: 1;
}

.section-top__inner p.font-ranga {
    /* padding: 14px 0; */
    /* font-family: "Ranga", cursive;
    color: var(--darkPerfect);
    font-size: 60px;
    font-weight:700; */
}

.section-top__inner p.font-ranga {
    font-family: "Ranga", cursive;
    color: var(--darkPerfect);
    font-size: 60px;
    font-weight:700;
}

.section-top__inner p.strike {
    color: var(--darkPerfect);
    font-size: 54px;
    text-decoration: underline;
    text-decoration-color: red;
    margin-bottom: 8px;
}

.section-top__inner p.bigger-font {
    font-size: 68px;
    font-weight: 900;
}

.section-top__inner p.largest-font {
    font-size: 90px;
    font-weight: 900;
    margin-bottom: -2px;
}

.section-top__inner p.american-paragraph {
    font-size: 26px;
    line-height: 1.2;
    font-weight: normal;
}

.section-top__inner p.american-paragraph span {
    font-family: "Ranga", cursive;
    color: var(--bgBlueColor);
}

.section-top__img  {
    margin-top: 40px;
    text-align: center;
}

.section-top__img img {
    max-width: 100%;
}

.section-general-row-wrap {
    padding: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}


.section-general-row-wrap.border-around {
    border: 10px dashed var(--bgBlueColor);
}

.section-general__inner h2 {    
    margin-bottom: 40px;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: var(--darkClear);
}

.section-general__inner h2 {    
    font-size: 48px;
}

.section-general__inner h2.no-margin {
    margin-bottom: 6px;
}

.section-general__inner h2 span {
    color: var(--bgBlueColor);
    font-weight: bold;
    text-decoration: underline;
}

.section-general__inner h3 {
    font-family: "Ranga", cursive;
    font-size: 52px;
    text-align: center;
    line-height: 1.2;
    color: var(--darkCorlor);
}

.section-general__inner h4 {
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    color: var(--darkClear);
}

.section-general__inner h4.less-font {
    font-size: 32px;
}

.section-general__inner h4.font-custom {
     font-size: 30px;
}

.section-general__inner  .page__list-disc strong {
    font-weight: 700;
}

.section-general__img {
    margin: 20px auto;
    text-align: center;
}

.border-blue {
    border: 8px solid var(--bgBlueColor);
}

.section-general__inner .start-winning {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
}

.section-general__img img {
    margin: 10px 0 20px;
    width: 700px;
    max-width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.section-general__img img.img-book {
    border: 4px dotted rgba(0, 0, 0, 0.2);
}

.dvd-img img {
    max-width: 100%;
}

.page__list-column {
    flex-direction: column !important;
    align-items: start !important;
    margin-bottom: 14px !important;
}

.page__list--icon-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
}

.page__list-column .page__list--icon-wrap i.fa-chevron-right {
    margin-right: 16px;
}

.page__list-column .font-ranga {
    margin-left: 32px;
    font-size: 24px;
}

.subcribe-iframe  {
    margin-top: 50px;
    margin-bottom: 20px;
}

.subcribe-iframe iframe {
    width: 100%;
    max-width: 600px;
    min-height: 700px;
}

.section-bottom {
    padding-top: 20px;
    padding-bottom: 60px;
}

.section-bottom-row-wrap {
    padding: 30px;
    background-color: rgb(255, 255, 255);    
    border: 10px dotted var(--bgBlueColor);
}

.section-bottom__inner h2 {  
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.section-bottom__inner h2.font {
    font-family: "Ranga", cursive;
    font-size: 54px;
    font-weight: normal;
    line-height: 1;
}

.section-bottom__inner h3 {
    margin-bottom: 40px;
    font-family: "Ranga", cursive;
    font-size: 52px;
    text-align: center;
    line-height: 1.2;
    color: var(--darkCorlor);
}

.section-bottom__inner h4 {
    font-size: 36px;
    text-align: center;
    line-height: 1.2;
    color: var(--darkClear);
}

.section-bottom .section-general__img img {
    margin-top: 0;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 12px;
}

.buttons .btn {
    min-width: auto;
    height: auto;
    padding: 12px 20px;
    line-height: normal;
    font-size: 24px;
}

.under-buttons {
    margin-bottom: 30px;
}

.under-buttons p {
    font-size: 18px;
    text-align: center;
}


/***************** FOOTER *******************/
.footer-section {
    padding: 40px 0;
}

.footer-section__links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid #7e7d7d;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.footer-section__links ul a {
    color: #111;
    line-height: 1.6;
}

.footer-section__copyright {
    text-align: center;
    line-height: 1.6;
}


/***************** PAGE CONTENT ******************/
.page-content {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #F7F8FC;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.page-content h1 {
    color: var(--darkText);
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 20px;
}

.page-content p {    
    font-size: 26px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
    margin-bottom: 14px;
}

.page-content h2 {
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.2;
    color: var(--darkText);
    font-weight: bold;
}

.page-content ol {
    margin-left: 20px;
    list-style-type: number;
}

.page-content ol li {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
}

.page-content ul {
    margin-left: 20px;
    list-style-type: disc;
}

.page-content ul li {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
}

.page-content p a {
    color: var(--primaryColor);
    font-weight: bold;
}


/***************** SHARE BUTTONS ****************/
.share-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex
;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
 
.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.share-buttons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/****** THANK YOU PAGE ******/

.main-thankyou p.text-decoration {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 22px;
}

.main-thankyou p.text-decoration a {
    text-decoration:  underline;
    color: var(--bgBlueColor);
    line-height: 1.2;
}

.main-thankyou p.red-text {
    color: #cf1333;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.main-thankyou p.red-text span.padding-r {
    padding-right: 30px;
}

.main-thankyou p.red-text span.padding-l {
    padding-left: 30px;
}

.main-thankyou .section-top__img {
    margin-top: 0px;
}

.main-thankyou .three-dvds {
    margin-bottom: 20px;
    text-align: center;
}

.main-thankyou .three-dvds img {
    width: 800px;
    max-width: 100%;
}

.main-thankyou .dvd-img img {
    width: 280px;
    max-width: 100%;
}

.main-thankyou .access-buttons {
    margin-bottom: 0px;
}

.main-thankyou .access-buttons .btn {
    background-color: #cb213e;
}

.coupon-img {
    margin-top: 36px;
    text-align: center;
}

.coupon-img img {
    width: 420px;
    max-width: 100%;
}



















