* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #525365;
    ;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
}

ul,
nav {
    list-style-type: none;
}

a {
    text-decoration: none;
}


/* Colors */

.blue {
    color: #8FC9E2;
}

.orange {
    color: #FBB043;
}


/* BANNER */

.banner {
    background-color: #BE1E2D;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
}

.banner p b {
    color: #EDAC2C;
}


/* HEADER */

.header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 9;
    padding-top: 15px;
}

.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 50px;
}


/*.nav li:not(:last-child):after {
	content: '|';
	margin: 0 20px;
	color: #fff;
}*/

.nav li a {
    color: #fff;
}


/* FOOTER */

.footer {
    color: #fff;
    background-color: #0B0B32;
    text-align: center;
    padding: 120px 0;
}

.footer ul {
    margin: 30px 0;
}

.footer ul li {
    display: inline-block;
}

.footer ul li:not(:last-child):after {
    content: '|';
    margin: 0 10px;
}

.footer a {
    color: #fff;
}

.copyright {
    margin-top: 50px;
}


/* GENERAL */

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.save-btn,
.order-btn {
    background: #00C04E;
    font-weight: 600;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}


/*.btn-primary .fa-caret-right {
	margin-left: 30px;
}*/

.save-btn {
    width: 130px;
    height: 36px;
    border-radius: 3px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.save-btn:hover,
.order-btn:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.order-btn {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 400px;
    width: 100%;
    height: 80px;
    border-radius: 5px;
    font-size: 24px;
    line-height: 30px;
    padding: 24px 39px;
}

.order-now {
    max-width: 400px;
    margin: 0 auto;
}

.hurry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    max-width: 400px;
    margin-top: 17px;
}

.hurry:before,
.hurry:after {
    content: '';
    width: 18%;
    height: 1px;
    background-color: #7F7F7F;
    display: inline-block;
}

.hurry b {
    font-weight: 600;
    color: #FD1E06;
}

.title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    font-size: 60px;
    line-height: 65px;
    color: #2A2C56;
    text-align: center;
}


/* SECTIONS */


/* HERO */

.hero {
    background: url("../img/hero.jpg") 0 0 / cover no-repeat;
    min-height: 827px;
    padding-top: 150px;
    position: relative;
    color: #fff;
}

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

.hero-intro h1 {
    max-width: 680px;
    text-align: left;
    color: #fff;
}

.hero-touch {
    background: -webkit-linear-gradient(0.01deg, rgba(56, 41, 42, 0.5) 0.01%, rgba(255, 250, 245, 0.5) 50.38%, rgba(65, 43, 45, 0.5) 99.99%);
    background: linear-gradient(89.99deg, rgba(56, 41, 42, 0.5) 0.01%, rgba(255, 250, 245, 0.5) 50.38%, rgba(65, 43, 45, 0.5) 99.99%);
    box-shadow: 0px 4px 10px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    max-width: 600px;
    padding: 26px 50px 33px 37px;
    margin: 37px 0 23px;
}

.hero-touch ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 11px;
}

.hero-touch ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-touch ul li:not(:last-child):after {
    content: '';
    width: 1px;
    height: 29px;
    background-color: #fff;
    display: block;
    margin: 0 15px;
}

.hero-touch-icon {
    width: 20px;
    height: 20px;
    background-color: #FBB043;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.hero-high {
    font-weight: 600;
    font-size: 18px;
    line-height: 35px;
}

.hero-high li i {
    color: #56B762;
    margin-right: 22px;
}

.hero .order-btn {
    margin-top: 22px;
}

.hero-curve {
    width: 100%;
    max-height: 244px;
    position: absolute;
    left: 0;
    bottom: -41px;
}

.hero-earbuds {
    position: absolute;
    /*right: 135px;*/
    right: 10%;
    bottom: 22px;
    z-index: 1;
    width: 30%;
    max-width: 474px;
}


/* EXPERIENCE */

.exp {
    padding: 50px 0 0;
}

.exp .title {
    margin-bottom: 44px;
}

.exp-box {
    position: relative;
}

.exp-left {
    max-width: 680px;
}

.exp-left-top {
    width: 100%;
    height: 722.78px;
}

.exp-left-top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.exp-left-bot {
    background-color: #161618;
    padding: 43px 0 36px;
    border-radius: 0 0 20px 20px;
}

.exp-left-bot .hurry {
    color: #fff;
}

.exp-right {
    background: #E5F6FD;
    border-radius: 20px;
    max-width: 880px;
    padding: 51px 100px 20px 100px;
    position: absolute;
    top: 90px;
    left: 300px;
    width: 100%;
}

.exp-right p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 44px;
}

.exp-right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}

.exp-right ul li {
    width: calc(100% /3);
    text-align: center;
    font-weight: 600;
    margin-bottom: 43px;
}

.exp-list-icon {
    background-color: #BE1E2D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 16px;
}

.exp-earbuds {
    position: absolute;
    /*top: 96px;
	left: 36px;*/
    top: 10%;
    left: 5%;
    z-index: 1;
    width: 30%;
    max-width: 424px;
}


/* QUALITY */

.quality {
    background: #0B0B32;
    padding: 308px 0 0;
    position: relative;
}

.quality-curve {
    width: 100%;
    max-height: 244px;
    position: absolute;
    left: 0;
    top: 0;
}

.quality .title {
    color: #fff;
    text-align: left;
}

.quality-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 65px;
    margin: 68px 0 82px;
}

.quality-top ul {
    max-width: 580px;
}

.quality-top li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 26px 40px 48px 40px;
    border-radius: 20px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.quality-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #FBB043;
    margin-right: 20px;
}

.quality-top h3 {
    font-size: 30px;
    line-height: 1;
    color: #8FC9E2;
    margin-bottom: 9px;
}

.quality-top p {
    color: #fff;
    max-width: 380px;
}

.quality-top li.active {
    background: #fff;
}

.quality-top li.active .quality-icon {
    background: #BE1E2D;
}

.quality-top li.active h3 {
    color: #2A2C56;
}

.quality-top li.active p {
    color: #525365;
}

.quality-topright-img {
    max-width: 534px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
}

.quality .order-now {
    color: #fff;
}

.quality-mid {
    background: url("../img/quality/mid.jpg") 0 0 / cover no-repeat;
    min-height: 472px;
    padding: 74px 0 72px;
    margin-bottom: 155px;
    -webkit-filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.5));
    border-radius: 20px;
}

.quality-mid-box {
    max-width: 620px;
    padding: 0 20px;
    margin-left: auto;
}

.quality-mid p {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #EDAC2C;
}

.quality-mid h2 {
    margin: 25px 0;
}

.quality-mid .order-now {
    margin: 0;
}

.quality-bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.quality-bot-left {
    width: 50%;
}

.quality-bot-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.quality-bot-right {
    background: url("../img/quality/bot2.jpg") 0 0 / cover no-repeat;
    height: 727px;
    width: 50%;
    padding: 167px 0 65px;
}

.quality-bot-box {
    background: #E5F6FD;
    padding: 53px;
    border-radius: 20px;
    max-width: 590px;
    margin: auto;
}

.quality-bot .title {
    color: #2A2C56;
    max-width: 380px;
    margin-bottom: 8px;
}


/* LIGHTWEIGHT */

.light {
    background: #FFF9EA;
    position: relative;
}

.light p {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

.light-top ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    margin: 54px 0 0;
}

.light-top ul li {
    text-align: center;
}

.light-img {
    max-width: 283px;
    width: 100%;
    height: 441px;
    position: relative;
}

.light-img>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.light-icon {
    width: 100px;
    height: 100px;
    background: #BE1E2D;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}

.light h4 {
    font-size: 30px;
    line-height: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.light-top ul li:nth-of-type(2) .light-img,
.light-top ul li:nth-of-type(3) .light-img {
    height: 400px;
}

.light-top {
    position: relative;
    padding: 180px 0 122px;
}

.light-top:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 244px;
    border-radius: 50% 50% 0 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 1;
}

.light-bot {
    background: #fff;
}

.light-divider {
    display: block;
    max-width: 445px;
    width: 100%;
    height: auto;
    margin: 47px auto 35px;
}


/* WHY CHOOSE */

.why-choose {
    padding: 0 0 186px;
}

.why-choose p {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
}

.why-choose-box {
    /*display: flex;
	justify-content: space-between;*/
    margin: 152px 0 135px;
    position: relative;
}

.why-choose-left {
    padding: 79px 80px 73px 100px;
    background: #FCFCFC;
    border: 1px solid #969696;
    border-radius: 20px;
    height: 427px;
}

.why-choose-left li {
    font-weight: 600;
    font-size: 18px;
    /*line-height: 55px;*/
    margin-bottom: 25px;
}

.why-choose-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    gap: 30px;
    right: 80px;
    top: -39px;
}

.why-choose-item {
    width: 219.54px;
    height: 502.12px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    padding-top: 65px;
}

.why-choose-item:nth-of-type(1) {
    background: #0B0B32;
}

.why-choose-item:nth-of-type(2) {
    background: #EEEEEE;
}

.why-choose-item:nth-of-type(2) .why-choose-title {
    color: #070826;
}

.why-choose-earbuds {
    position: absolute;
    top: -70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 96px;
    height: 114px;
}

.why-choose-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 47px;
}

.why-choose-check .fas {
    display: block;
    margin-bottom: 24px;
    font-size: 24px;
}

.why-choose-check .fa-check {
    color: #00C04E;
}

.why-choose-check .fa-times {
    color: #FD1E06;
}


/* REVIEWS */

.reviews {
    padding: 158px 0 174px;
    background-color: #E5F6FD;
}

.reviews h2 {
    margin-bottom: 70px;
}

.reviews-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    min-height: 279px;
    margin-bottom: 70px;
}

.reviews-right {
    border-right: 1px solid #E7E7E7;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.reviews-right-top,
.reviews-right-bottom {
    padding-right: 59px;
}

.reviews-right-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 29px;
}

.reviews-right-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 24px;
}

.reviews-right-bottom img {
    width: 80px;
    height: 60px;
    margin-right: 20px;
}

.reviews-wallabuds span {
    font-weight: 600;
}

.reviews-letter {
    background-color: #BE1E2D;
    border-radius: 50%;
    width: 66px;
    height: 66px;
    font-weight: 600;
    font-size: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    margin-right: 33px;
}

.reviews-name {
    font-family: 'Bebas Neue';
    font-size: 30px;
    line-height: 1;
    color: #2A2C56;
    margin-bottom: 3px;
}

.reviews-verify {
    font-weight: 600;
    color: #00C04E;
}

.reviews-left {
    padding-left: 55px;
}

.reviews-left p {
    font-size: 18px;
    max-width: 642px;
}

.reviews-star {
    color: #FFC700;
    margin: 25px 0;
}

.reviews-img img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    margin-right: 20px;
}

.reviews .cta {
    margin-top: 200px;
}

.cta {
    max-width: 700px;
    margin: 0 auto;
}

.cta .title {
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .exp-right {
        width: calc(100% - 300px);
    }
    .exp-earbuds {
        top: 15%;
        left: 10%;
    }
}

@media (max-width: 991px) {
    .hero {
        background: url("../img/hero.jpg") 70% 70% / cover no-repeat;
        padding: 150px 0;
    }
    .hero-curve {
        bottom: 0;
    }
    .exp-earbuds {
        top: 30%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .exp-left {
        margin: 0 auto;
    }
    .exp-right {
        position: static;
        width: 100%;
    }
    .quality .title {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    .quality-top,
    .quality-bot {
        display: block;
    }
    .quality-top {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
    }
    .quality-topright {
        margin: 50px 0;
    }
    .quality-top li {
        padding: 30px;
    }
    .quality-bot-left,
    .quality-bot-right {
        width: 100%;
    }
    .light-top:before {
        display: none;
    }
    .light-icon {
        bottom: -50px;
    }
    .light h4 {
        margin-top: 70px;
    }
    .light-top ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .light-top ul li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 16px);
        flex: 0 0 calc(50% - 16px);
        margin-bottom: 40px;
    }
    .light-top ul li:nth-of-type(2) .light-img,
    .light-top ul li:nth-of-type(3) .light-img {
        height: 441px;
    }
    .light-bot {
        padding-top: 50px;
    }
    .why-choose-left {
        padding: 50px;
    }
    .why-choose-right {
        right: 50px;
    }
    .why-choose-item {
        width: 150px;
    }
}

@media (max-width: 767px) {
    .order-btn {
        font-size: 20px;
    }
    .hero-earbuds,
    .exp-earbuds {
        width: 50%;
    }
    .hero-earbuds {
        bottom: -100px;
        right: 50%;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
    .exp {
        padding: 120px 0 0;
    }
    .exp-earbuds {
        top: 18%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .banner p {
        font-size: 12px;
    }
    .title {
        font-size: 40px;
        line-height: 45px;
    }
    .hero {
        padding: 150px 0 200px;
    }
    .exp-left-top {
        height: 500px;
    }
    .exp-right {
        padding: 40px;
    }
    .exp-right ul li {
        width: calc(100% / 2);
    }
    .quality-bot-right {
        height: 600px;
        padding: 50px 10px;
    }
    .light-img {
        margin: 0 auto;
    }
    .light-top ul {
        display: block;
    }
    .light-bot {
        padding-top: 70px;
    }
    .why-choose-box {
        padding: 0;
        margin: 20px 0 100px;
    }
    .why-choose-left {
        padding: 40px;
    }
    .why-choose-right {
        position: static;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 100px;
    }
    .why-choose-item {
        width: 50%;
    }
    .reviews-item {
        display: block;
    }
    .footer {
        padding: 50px 0;
    }
}


/* Presell Page */

.p-blue {
    color: #227DA5;
}

.red {
    color: #BE1E2D;
}

.subheading {
    font-size: 40px;
    line-height: 45px;
}

.desc {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
}

.presell-page {
    background: #E5E5E5;
    color: #525365;
}

.presell-page .header {
    padding: 28px 0;
    background: #BE1E2D;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    /*z-index: 1;*/
}

.presell-page .header p {
    font-weight: 600;
    font-size: 24px;
    line-height: 20px;
    color: #FFFFFF;
}

.presell-page .nav li {
    margin-left: 70px;
}

.presell-page .nav li a:hover {
    color: #FBB043;
}

.presell-wrapper {
    padding: 49px 130px 126px;
}

.presell-inner {
    background: #fff;
    border-radius: 7px;
    padding: 50px 50px 100px;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 50px;
}


/* Presell left */

.presell-left {
    max-width: 620px;
    width: 100%;
}

.presell-left p {
    margin-bottom: 30px;
}

.presell-left .title {
    color: #070826;
    text-align: left;
}

.summary-box {
    background: #E5F6FD;
    border: 1px solid #8BDDFF;
    padding: 20px 40px;
}

.summary-box p {
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 0;
}

.presell-highend .summary-box {
    margin: 15px 0 56px;
}

.presell-why {
    margin-bottom: 57px;
}

.presell-why h2,
.presell-market h2 {
    margin-bottom: 22px;
}

.cta.summary-box {
    padding: 40px 20px;
}

.cta.summary-box h3 {
    text-align: center;
    max-width: 450px;
    margin: 0 auto 10px;
}

.presell-exp ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
}

.presell-exp li {
    position: relative;
    /*width: 300px;*/
    height: 328px;
    width: calc(calc(100% / 2) - 10px);
    overflow: hidden;
    border-radius: 10px;
}

.presell-exp li:hover>img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.presell-exp li>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.presell-exp-intro {
    position: absolute;
    left: 20px;
    bottom: 28px;
}

.presell-exp-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #FBB043;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
}

.presell-exp-icon img {
    width: 15px;
    height: auto;
}

.presell-exp h4 {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

.presell-noise h2 {
    margin-bottom: 76px;
}

.presell-noise ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.presell-noise li {
    width: calc(calc(100% / 2) - 10px);
    text-align: center;
    margin-bottom: 50px;
}

.presell-noise li .exp-list-icon {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.presell-noise li:hover .exp-list-icon {
    background-color: #FBB043;
}

.presell-noise-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
}

.presell-noise p {
    max-width: 280px;
    margin: 0 auto;
}

.presell-noise .summary-box {
    margin: 30px 0 80px;
}

.presell-special {
    width: 100%;
    height: 327px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 45px 0;
}

.presell-special img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.presell-special-intro {
    position: absolute;
    top: 81px;
    right: 70px;
    max-width: 210px;
    width: 100%;
}

.presell-special-intro h3 {
    color: #fff;
    margin-top: 10px;
}

.presell-divider {
    border-top: 0.5px dashed #C6C6C6;
    margin: 68px 0;
}

.presell-buy h2 {
    margin-bottom: 13px;
}

.presell-buy ol {
    padding-left: 20px;
}

.presell-buy li {
    margin-bottom: 20px;
}

.presell-buy li a {
    text-decoration: underline;
}

.presell-buy .summary-box {
    margin: 61px 0 12px;
}

.presell-buy-italic {
    text-align: center;
}


/* Presell right */

.presell-right {
    max-width: 400px;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: -50px;
    z-index: 1;
}

.social-wrapper p {
    color: #070826;
    font-weight: 600;
}

.social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 18px 0 32px;
}

.social-links a {
    width: 41px;
    height: 41px;
    border-radius: 5px;
    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;
    margin-right: 12px;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.social-links a:hover {
    border-radius: 50%;
}

.social-links a:nth-of-type(1) {
    background: #3C5897;
}

.social-links a:nth-of-type(2) {
    background: #0F93E2;
}

.social-links a:nth-of-type(3) {
    background: #713906;
}

.social-links a:nth-of-type(4) {
    background: #BD091C;
}

.scrolling-cta {
    background: url("../img/presell/scrolling-cta.jpg") 0 0 / cover no-repeat;
    height: 616px;
    position: relative;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 42px 20px 0;
}

.scrolling-cta:hover>img {
    -webkit-transform: translateX(-50%) translateY(-10px);
    transform: translateX(-50%) translateY(-10px);
}

.scrolling-cta .subheading {
    line-height: 20px;
}

.scrolling-cta .reviews-star {
    margin: 14px 0 15px;
}

.scrolling-cta h4 {
    font-size: 30px;
    margin: 9px 0 27px;
}

.scrolling-cta ul {
    text-align: left;
}

.scrolling-cta li {
    font-weight: 600;
    margin-bottom: 15px;
}

.scrolling-cta li .fas {
    color: #56B762;
    margin-right: 5px;
}

.scrolling-cta>img {
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 234px;
    height: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.presell-right .order-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0;
}

.presell-right .order-btn .fas {
    margin-left: 30px;
}


/* Footer CTA */

.footer-cta {
    background: #00C04E;
    padding: 20px 0;
    text-align: center;
}

.footer-cta .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-cta .subheading {
    color: #fff;
    margin-right: 53px;
}

.footer-cta a {
    max-width: 427px;
    width: 100%;
    height: 55px;
    background: #FFFFFF;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #00C04E;
}

.footer-cta a i {
    margin-left: 30px;
}

@media (max-width: 991px) {
    .presell-page .header-inner,
    .footer-cta .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .presell-page .header p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .presell-wrapper {
        padding: 50px;
    }
    .presell-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-cta .subheading {
        /*text-align: center;*/
        margin: 0 0 10px;
    }
}

@media (max-width: 575px) {
    .presell-page .header-inner,
    .footer-cta .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .presell-page .header {
        padding: 20px 0;
    }
    .presell-page .header p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .presell-wrapper {
        padding: 20px;
    }
    .presell-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 25px 25px 50px;
    }
    .scrolling-cta>img {
        width: 180px;
    }
    .footer-cta .subheading {
        text-align: center;
        margin: 0 0 10px;
    }
    .footer-cta a {
        font-size: 16px;
    }
    .subheading {
        font-size: 30px;
        line-height: 35px;
    }
    .presell-exp li,
    .presell-noise li {
        width: 100%;
    }
    .presell-special-intro {
        right: 50px;
    }
    .presell-special img {
        -o-object-position: left;
        object-position: left;
    }
}