/*----------font weight-------------------*/

.fw--light     { font-weight: 300; }
.fw--regular   { font-weight: 400; }
.fw--medium    { font-weight: 500; }
.fw--semibold  { font-weight: 600; }
.fw--extrabold { font-weight: 800; }
.fw--black     { font-weight: 900; }

/*----------font style------------------*/

.txt--uppercase   { text-transform: uppercase; }
.txt--lowercase   { text-transform: lowercase; }
.txt--capitalize  { text-transform: capitalize; }

.txt--overline    { text-decoration: overline; }
.txt--underline   { text-decoration: underline; } 
.txt--linethrough { text-decoration: line-through; }

/*-----------font align -------------------*/

.txt--center  { text-align: center; }
.txt--left    { text-align: left; }
.txt--right   { text-align: right; }
.txt--justify { text-align: justify; }

/*---------elements align------------------*/

.pull--left   { float: left; }
.pull--right  { float: right; }
.pull--none   { float: none; }
.clearfix     { clear: both; }
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/*--------overflow---------------------------------*/

.overflow--visible { overflow: visible; }
.overflow--auto    { overflow: auto; }
.overflow--hidden  { overflow: hidden; }

/*----------------------------------------------------------------------------*/
/*#CONTAINER STYLE*/
/*----------------------------------------------------------------------------*/

[class^='container'] {
    width: 100%;
    padding-left:  15px;
    padding-right: 15px;
    margin-left:  auto;
    margin-right: auto;
}
/*max-width = width of container + padding-left + padding-right*/
.container    { max-width: 1060px; }
.container--lg { }
.container--md { }
.container--sm { }
.container--xs { }

.row.gutters-xs {
    margin-left:  -5px;
    margin-right: -5px;
}

.row.gutters-xs [class*='col'] {
    padding-left:  5px;
    padding-right: 5px;
}

.row.gutters-sm {
    margin-left:  -10px;
    margin-right: -10px;
}

.row.gutters-sm [class*='col'] {
    padding-left:  10px;
    padding-right: 10px;
}

.row.gutters-md {
    margin-left:  -20px;
    margin-right: -20px;
}

.row.gutters-md [class*='col'] {
    padding-left:  20px;
    padding-right: 20px;
}

.row.gutters-lg {
    margin-left:  -25px;
    margin-right: -25px;
}

.row.gutters-lg [class*='col'] {
    padding-left:  25px;
    padding-right: 25px;
}

.row.gutters-xl {
    margin-left:  -30px;
    margin-right: -30px;
}

.row.gutters-xl [class*='col'] {
    padding-left:  30px;
    padding-right: 30px;
}

/*----------------------------------------------------------------------------*/
/*#FONT COLOR*/
/*----------------------------------------------------------------------------*/

.txt--gray          { color: #bbb; }
.txt--blue          { color: #028ed7; }
.txt--dark-blue     { color: #0054a6; }
.txt--white         { color: #fff; }
.txt--black         { color: #000; }
.txt--orange        { color: #ff5b01; }
.txt--light-orange  { color: #ffba02; }
.txt--light-grey    { color: #9daeb6;}
.txt--light-blue    { color: #7ec8da;}

.txt--white p { color: #fff; }

/*----------------------------------------------------------------------------*/
/*#BACKGROUND STYLE*/
/*----------------------------------------------------------------------------*/

.bg--white { background-color: #fff; }


/*----------------------------------------------------------------------------*/
/*#GLOBAL STYLE*/
/*----------------------------------------------------------------------------*/

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #282828;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

h1 {
    font-size: 70px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: -1px;
}

h2 {
    font-size: 44px;
    margin-bottom: 40px;
}

h3 {
    font-size: 36px;
    color: #ff5b01;
}

h4 {
    font-size: 30px;
    margin-bottom: 0;
    color: #fff;
}

h5 {
    font-size: 34px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

h6 {
    font-size: 32px;
    font-family: 'Roboto Condensed', sans-serif;
}

p,
a,
ul li,
ol li {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    font-weight: 400;
    margin-bottom: 20px;
}

.block--center {
    display: block;
    margin: auto;
}

.box--shadow {
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.img--left { margin: 0 30px 30px 0; }
.img--right { margin: 0 0 30px 30px; }



/*----------------------------------------------------------------------------*/
/*#FONT SIZE*/
/*----------------------------------------------------------------------------*/

.txt--xxs   { font-size: 11px; }
.txt--xs    { font-size: 14px; }
.txt--sm    { font-size: 16px; }
.txt--md    { font-size: 22px; }
.txt--lg    { font-size: 26px; }
.txt--xl    { font-size: 50px; }
.txt--xxl   { font-size: 66px; }
.txt--24    { font-size: 24px; }


/*----------------------------------------------------------------------------*/
/*#BACKGROUNDS*/
/*----------------------------------------------------------------------------*/

.bg--properties {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg--contain { background-size: contain; }


.bg--gray           { background-color: #f5f5f7; }
.bg--orange         { background-color: #ff5b01; }
.bg--black          { background-color: #000; }
.bg--hero           { background-image: url("../images/hero-bg.jpg"); }
.bg--guarantee      { background-image: url("../images/bg-guarantee.jpg"); }
.bg--shape-orange   { background-image: url("../images/bg-shape-orange.png"); }
.bg--orange-txt     { background-image: url("../images/bg-txt.png"); }
.bg--section        { background-image: url("../images/bg--heading.jpg"); }
.bg--dark-lg        { background-image: url("../images/bg-dark-lg.jpg"); }


/*----------------------------------------------------------------------------*/
/*#BUTTON STYLE*/
/*----------------------------------------------------------------------------*/

.btn {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-align: center;
    background-color: transparent;
    display: block;
    border-radius: 70px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.btn:hover {
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.btn--sm { max-width: 130px; }
.btn--md { max-width: 225px; }
.btn--lg { max-width: 250px; }
.btn--xl { max-width: 687px; }


.hero--height { min-height: 700px; }

main {
    max-width: 1060px;
    width: 100%;
    margin: auto;
    background-color: #fff;
}

.heading--underline { position: relative; }

.heading--underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    background-color: #ff5b01;
    height: 1px;
    width: 100px;
}

/*----------------------------------------------------------------------------*/
/*#LIST */
/*----------------------------------------------------------------------------*/

.list li {
    padding-left: 50px;
    position: relative;
}

.list-check li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 23px;
    height: 18px;
    background-repeat: no-repeat;
    background-image: url("../images/checkmark.png");
}


.width--100 { width: 100%; }


/*----------------------------------------------------------------------------*/
/*#PANELS*/
/*----------------------------------------------------------------------------*/

.panel,
.panel-phase,
.panel-bonus {
    width: 100%;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.panel { margin-bottom: 50px; }
.panel:last-child { margin-bottom: 0; }

.panel__heading {
    position: relative;
    padding: 30px;
}

.panel__icon-img {
    position: absolute;
    left: 30px;
    top: -28px;
}

.panel__body        { padding: 30px 20px; }
.panel-phase__body,
.panel-bonus__body  { padding: 70px 30px 30px; }

.panel-phase__body { overflow: hidden; }

.panel-phase,
.panel-bonus {
    width: 100%;
    clear: both;
    position: relative;
    margin-bottom: 100px;
    border: 1px solid #ff5b01;
}

.panel-bonus { border-color: #81be4a; }

.panel-phase:last-child { margin-bottom: 60px; }

.panel-phase__heading,
.panel-bonus__heading {
    position: absolute;
    top: -46px;
    left: 0;
    right: 0;
    margin: auto auto 40px;
    max-width: 370px;
    height: 84px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/bg-heading-orange.jpg");
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.panel-bonus__heading {
    z-index: 1;
    background-image: url("../images/bg-shape-green.jpg");
}

.panel p:last-child,
.panel-phase p:last-child,
.panel-bonus p:last-child { margin-bottom: 0; }

.panel__body--border {
    border: 2px dashed;
    border-top: 0;
}

.border--black  { border-color: #000; }
.border--orange { border-color: #ff5b01; }

.panel-option .panel__heading {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 20px;
}

.panel-faq .panel__heading {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 20px;
}

.panel-option .panel__body {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.panel-faq .panel__body {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.panel-option h3 {
    font-size: 28px;
    font-family: "Open Sans", sans-serif;
    font-weight: 900;
}

.panel-faq {
    border-radius: 4px;
    max-width: 100%;
    border: 1px solid #dcdbde;
}

.panel-faq p { color: #5e5e5e; }


/*----------------------------------------------------------------------------*/
/*#PRICE SECTION*/
/*----------------------------------------------------------------------------*/

.container__price {
    max-width: 660px;
    width: 100%;
    margin: auto;
}

.price__old .price__txt {
    font-size: 25px;
    margin-bottom: 0;
    font-family: 'Oswald', sans-serif;
}

.price__old .price__numb {
    position: relative;
    font-size: 90px;
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 800;
}

.price__old .price__numb::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: block;
    margin: -5px auto auto;
    height: 10px;
    width: 100%;
    max-width: 180px;
    -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
            transform: rotate(-10deg);
    background-color: #ff5b01;
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);
}

.price__today .price__txt {
    font-size: 45px;
    margin-bottom: 0;
    font-family: 'Oswald', sans-serif;
}

.price__today .price__numb {
    font-size: 130px;
    line-height: 1;
    letter-spacing: -5px;
    color: #6dae33;
    font-weight: 800;
}


.caption--style {
    padding: 30px 66px;
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
}

.img-right--style {
    position: relative;
    right: -50px;
}

.container__arrow {
    position: relative;
}

.arrow-img {
    position: absolute;
    right: -190px;
    top: -20px;
    z-index: 9;
}

.arrow-img.left {
    right: 0;
    left: -140px;
    top: -80px;
}

.section-arrow--after,
.orange-arrow--after {
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}

.section-arrow--after::after,
.orange-arrow--after::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    z-index: -1;
    width: 100%;
    max-width: 168px;
    height: 25px;
    display: block;
    margin: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/arrow-section.png");
}

.orange-arrow--after::after {
    height: 45px;
    background-image: url("../images/arrow-orange.png");
}


.max--100 { max-width: 100%; }

.txt--shadow { text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); }



/*----------------------------------------------------------------------------*/
/*#UPSELL 1, 2 , DOWNSELL & TYs*/
/*----------------------------------------------------------------------------*/


body.upsell1,
body.upsell2,
body.ty { background-color: #3a3a3a; }

.upsell1 .bg--hero1 { background-image: url("../images/bg-hero-upsell1-1.jpg"); }
.upsell1 .bg--hero2 { background-image: url("../images/bg-hero-downsell.jpg"); }
.upsell2 .bg--hero3 { background-image: url("../images/bg-hero-upsell2.jpg"); }

.upsell1 .panel-phase__heading {
    max-width: 600px;
    background-size: cover;
    background-image: url("../images/bg-heading-orange-lg.jpg");
}

.upsell1 .txt--md { font-size: 24px; }
.upsell1 .txt--lg { font-size: 28px; }
.upsell1 .txt--xl { font-size: 30px; }

.div-size {
    max-width: 335px;
    margin: auto;
}

.upsell1 h1 {
    font-size: 44px;
    color: #000;
    letter-spacing: 0;
}

.downsell h1 { color: #fff; }

.upsell1 .panel-phase__body { padding: 70px 50px 30px; }

.upsell1 .panel-phase:last-child { margin-bottom: 30px; }

.border--2 { border: 2px dashed #ff5b01; }

.max-width--100 { max-width: 100%; }

.bg--unset { background-size: unset; }

.price__numb sub {
    bottom: 0;
    letter-spacing: 0;
    font-size: 46.25%;
}

.upsell1 .panel__body { background-color: #f8f8f8; }

.references p { word-wrap: break-word; }

.ty h1       { font-size: 60px; }
.ty .txt--lg { font-size: 28px; }
.ty .txt--xl { font-size: 30px; }

.ty p,
.ty a { line-height: 1.2; }



/* TY RIPPEDIN6 */

.top-header--bg-red-gradient {
    background: -webkit-gradient(linear, left top, left bottom, from(#ff000a), to(#d00008));
    background: -webkit-linear-gradient(top, #ff000a 0%, #d00008 100%);
    background: -o-linear-gradient(top, #ff000a 0%, #d00008 100%);
    background: linear-gradient(to bottom, #ff000a 0%, #d00008 100%);
}

.card__list-title {
    padding: 25px;
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff000a), to(#d00008));
    background: -webkit-linear-gradient(top, #ff000a 0%, #d00008 100%);
    background: -o-linear-gradient(top, #ff000a 0%, #d00008 100%);
    background: linear-gradient(to bottom, #ff000a 0%, #d00008 100%);
    color: #fff;
}

.card__list-content {
    background: #f8f8f8;
    padding: 30px 50px 20px 35px;
    border: 5px dotted #ff000a;
    border-top: none;
    position: relative;
    z-index: 0;
}
.card__list-item {
    margin-bottom: 50px;
}

.card__list {
    -webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.1);
}

.bg--light-gray {
    background-color: #f4f6f7;
}

.fs--30 {
    font-size: 1.667rem;
}

.txt--red {
    color: #ff000a;
}

.card__list--thank-you img {
    max-width: 100%;
    margin-bottom: 20px;
}

.bigger, h3 {
    font-size: 1.556em;
    line-height: 1.2;
}

.gigantic {
    font-size: 3.33rem;
    line-height: 1.2;
}

/*----------------------------------------------------------------------------*/
/*#PADDINGS*/
/*----------------------------------------------------------------------------*/

.container--padding { padding: 35px 50px; }

.pl--10     { padding-left: 10px; }
.pl--20     { padding-left: 20px; }
.p--20-80   { padding: 20px 80px; }
.pb--0      { padding-bottom: 0; }

.ptb--0 {
    padding-top: 0;
    padding-bottom: 0;
}

.ptb--14 {
    padding-top: 14px;
    padding-bottom: 14px;
}

.ptb--10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ptb--15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.ptb--17 {
    padding-top: 17px;
    padding-bottom: 17px;
}

.ptb--20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ptb--20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ptb--22 {
    padding-top: 22px;
    padding-bottom: 22px;
}



/*----------------------------------------------------------------------------*/
/*#MARGINS*/
/*----------------------------------------------------------------------------*/


.ml--m50    { margin-left: -50px; }
.mr--m50    { margin-right: -50px; }

.ml--30     { margin-left: 30px; }
.mt--m50    { margin-top: -50px; }

.ml--110    { margin-left: 110px; }

.mt--20     { margin-top: 20px; }
.mb--10     { margin-bottom: 10px; }
.mb--30     { margin-bottom: 30px; }
.mb--45     { margin-bottom: 45px; }
.mb--55     { margin-bottom: 55px; }
.mb--80     { margin-bottom: 80px; }
.mb--100    { margin-bottom: 100px; }
.mb--500    { margin-bottom: 500px; }

.m--0 { margin: 0!important; }
.mb--0 { margin-bottom: 0; }

.m-tb--0 {
    margin-top:    0;
    margin-bottom: 0;
}


/*----------------------------------------------------------------------------*/
/*#RESPONSIVE STYLE*/
/*----------------------------------------------------------------------------*/


@media (max-width: 1080px) {
    .arrow-img {right: -240px; }

}

@media (max-width: 991px) {
    h1 { font-size: 45px; }

    .upsell1 .txt--xl,
    .txt--xl { font-size: 37px; }

    h1 .d-block,
    h2 .d-block { display: inline !important; }

    .tablet-size--style {
        max-width: 400px;
        margin: auto;
    }

    .img-mobile-bg2 {
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: 0.2;
    }

    .img-mobile-bg1,
    .arrow-img { display: none; }

    .tablet-bg--cover { background-size: cover; }

    .ptb--17 {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}


@media (max-width: 980px) {
    .caption--style {
        padding: 10px;
        max-width: 450px;
        margin: 20px auto;
        background-image: none;
        background: rgb(251,92,5);
        background: -moz-linear-gradient(0deg, rgba(251,92,5,1) 0%, rgba(252,150,4,1) 50%, rgba(252,206,4,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(251,92,5,1) 0%, rgba(252,150,4,1) 50%, rgba(252,206,4,1) 100%);
        background: linear-gradient(0deg, rgba(251,92,5,1) 0%, rgba(252,150,4,1) 50%, rgba(252,206,4,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fb5c05",endColorstr="#fcce04",GradientType=1);
    }
}

@media (max-width: 960px) {
    .ptb--17 {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .container--padding { padding: 20px; }

    .ptb--0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .pb--0 { padding-bottom: 0; }

    .tablet-pt--20 { padding-top: 20px; }

    .pull--left,
    .pull--right {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .img--left,
    .img--right { margin: 0 auto 30px; }

    .mt--m50 {  margin-top: 0; }

    .panel__heading,
    .ptb--22 { padding: 20px; }

    .panel__icon-img { left: 15px; }

    .upsell1 .txt--xl,
    .txt--xl { font-size: 33px; }

    .div-size { max-width: 360px; }

    h1 { font-size: 53px; }

    h2,
    .upsell1 h1 {
        font-size: 38px;
        margin-bottom: 25px;
    }

    h4 { font-size: 26px; }

    .mb--80 { margin-bottom: 50px; }

    .upsell1 p .d-block { display: inline !important; }

    .upsell1 .bg--hero1 { background-position: right; }

    .upsell1 .hero--layer {
        position: relative;
        z-index: 1;
    }

    .upsell1 .hero--layer::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        z-index: -1;
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(255,255,255,.5);
    }

    .mobile-mb--30 { margin-bottom: 30px; }

    .ty h1          {
        font-size: 46px;
        letter-spacing: 0;
    }

    .ty .txt--md    { font-size: 17px; }
    .ty .txt--lg    { font-size: 24px; }
    .ty .txt--xl    { font-size: 26px; }
    .ty .txt--24    { font-size: 21px; }

    .panel-option h3 { font-size: 25px; }
}

@media( max-width: 650px) {
    .upsell1 .panel-phase__heading,
    .upsell2 .panel-phase__heading,
    .panel-phase__heading,
    .panel-bonus__heading {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: auto auto 0;
        height: 100%;
        width: 100%;
        max-width: 100%;
        padding: 15px;
        background-image: none;
        background: rgb(253,57,1);
        background: -moz-linear-gradient(0deg, rgba(253,57,1,1) 0%, rgba(254,115,0,1) 50%, rgba(254,171,0,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(253,57,1,1) 0%, rgba(254,115,0,1) 50%, rgba(254,171,0,1) 100%);
        background: linear-gradient(0deg, rgba(253,57,1,1) 0%, rgba(254,115,0,1) 50%, rgba(254,171,0,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fd3901",endColorstr="#feab00",GradientType=1);
    }


    .panel-bonus__heading {
        background: rgb(106,147,41);
        background: -moz-linear-gradient(0deg, rgba(106,147,41,1) 0%, rgba(128,189,72,1) 50%, rgba(145,203,93,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(106,147,41,1) 0%, rgba(128,189,72,1) 50%, rgba(145,203,93,1) 100%);
        background: linear-gradient(0deg, rgba(106,147,41,1) 0%, rgba(128,189,72,1) 50%, rgba(145,203,93,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6a9329",endColorstr="#91cb5d",GradientType=1);
    }

    .panel-phase__body,
    .panel-bonus__body,
    .upsell1 .panel-phase__body,
    .upsell2 .panel-phase__body { padding: 30px 20px; }

    .panel-phase,
    .panel-bonus { margin-bottom: 40px; }

    .ty h1          { font-size: 40px; }
    .ty .txt--md    { font-size: 17px; }
    .ty .txt--lg    { font-size: 22px; }
    .ty .txt--xl   { font-size: 24px; }
    .ty .txt--24    { font-size: 20px; }
}

@media( max-width: 567px) {
    h1                              { font-size: 43px; }
    h2,
    .upsell1 h1                     { font-size: 29px; }
    h3                              { font-size: 30px; }
    h4                              { font-size: 22px; }
    h5                              { font-size: 30px; }
    h6                              { font-size: 28px; }
    .txt--md,
    .upsell1 .txt--md               { font-size: 18px; }
    .txt--lg                        { font-size: 23px; }
    .upsell1 .txt--xl,
    .txt--xl                        { font-size: 28px; }
    .price__old .price__txt         { font-size: 23px; }
    .price__old .price__numb        { font-size: 70px; }
    .price__today .price__txt       { font-size: 37px; }
    .price__today .price__numb      { font-size: 110px; }
    .txt--24                        { font-size: 22px; }
    .panel-option h3                { font-size: 20px; }

    .mobile-heading--style {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 3px;
    }

    .panel__heading .txt--uppercase,
    .panel-bonus__heading .txt--uppercase,
    .panel-phase__heading .txt--uppercase { text-transform: capitalize; }

    .panel__icon-img {
        max-width: 60px;
        left: 0;
        top: 0;
        position: relative;
    }

    .ml--110 { margin-left: 20px; }

    .panel { margin-bottom: 30px; }

    .orange-arrow--after::after { bottom: -25px; }

    .upsell1 .panel-phase__body { padding: 50px 20px 20px; }


    .div-size { max-width: 335px; }
}

@media( max-width: 450px) {
    .panel__body { padding: 20px; }

    .list li { padding-left: 30px; }

    .upsell1 .txt--xl,
    .txt--xl { font-size: 24px; }

    .ty h1          { font-size: 32px; }
    .ty .txt--md    { font-size: 15px; }
    .ty .txt--lg    { font-size: 22px; }
    .ty .txt--xl   { font-size: 24px; }
    .ty .txt--24    { font-size: 20px; }
}

@media( max-width: 430px) {
    h1                              { font-size: 39px; }
    h2,
    .upsell1 h1                     { font-size: 26px; }
    h3                              { font-size: 25px; }
    h4                              { font-size: 21px; }
    h5                              { font-size: 25px; }
    h6                              { font-size: 25px; }
    .txt--lg                        { font-size: 20px; }
    .price__old .price__txt         { font-size: 23px; }
    .price__old .price__numb        { font-size: 70px; }
    .price__today .price__txt       { font-size: 40px; }
    .price__today .price__numb      { font-size: 100px; }
    .upsell1 .txt--lg               { font-size: 21px; }
    .txt--24                        { font-size: 20px; }

    .mb--0  { margin-bottom: 0; }
    .mb--30 { margin-bottom: 30px; }
    .mb--80 { margin-bottom: 30px; }
}
