@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.eot');
    src: url('../fonts/Helvetica.eot?#iefix') format('embedded-opentype'), url('../fonts/Helvetica.woff2') format('woff2'), url('../fonts/Helvetica.woff') format('woff'), url('../fonts/Helvetica.ttf') format('truetype'), url('../fonts/Helvetica.svg#Helvetica') format('svg');
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Bold.eot');
    src: url('../fonts/Helvetica-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Helvetica-Bold.woff2') format('woff2'), url('../fonts/Helvetica-Bold.woff') format('woff'), url('../fonts/Helvetica-Bold.ttf') format('truetype'), url('../fonts/Helvetica-Bold.svg#Helvetica-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    background-color: #F2F2F2;
    font-family: 'Helvetica';
    font-size: 20px;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 400;
    line-height: 30px;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-family: 'Anton';
    font-size: 45px;
    line-height: 55px;
    font-weight: 400;
}

h2 {
    font-family: 'Anton';
    font-size: 40px;
    line-height: 45px;
    font-weight: 400;
}

h3 {
    font-size: 24px;
    line-height: 25px;
    font-weight: 400;
}

h4 {
    font-size: 22px;
    line-height: 25px;
    font-weight: 400;
}

h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.05em;
}

.btnLink {
    display: inline-block;
    font-weight: 700;
    font-size: 22px;
    line-height: 25px;
    color: #FFFFFF;
    padding: 15px 30px;
    background: #354FA0;
    border-radius: 30px;
    text-decoration: none;
    transition: all .5s ease-in-out;
}

.btnLink:hover {
    color: #ffffff;
    transform: translateY(-5px);
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

.container {
    max-width: 1410px;
    padding: 0;
}

:root {
    --container-width: 1410px;
    --container-padding: calc((100vw - var(--container-width)) / 2);
}

#wrap {
    float: left;
    width: 100%;
}

#middle {
    float: left;
    width: 100%;
}

/* Header Section */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 0;
    z-index: 1;
}

header .mainHeader {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

header .mainHeader .logo {
    max-width: 464px;
    width: 100%;
}

header .mainHeader .rightBtn {
    display: flex;
}

header .mainHeader .rightBtn .amazonLogo {
    margin-right: 27px;
    padding-top: 5px;
}

header .mainHeader .rightBtn .buyBtn {
    font-family: 'Anton';
    font-weight: 400;
    font-size: 24px;
    line-height: 25px;
    color: #EC1847;
    margin-right: 36px;
    padding-top: 7px;
}

header .mainHeader .rightBtn .buyBtn span {
    color: #354FA0;
}

header .mainHeader .rightBtn .btnOr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: 'Anton';
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    border-radius: 100%;
    margin-right: 21px;
    background: #0F141A;
}

/* Banner Section */
.banner-section {
    display: flex;
    align-items: center;
    height: 100vh;
    background-image: url(../images/banner-background-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-top: 131px;
    overflow: hidden;
}

.banner-section .caption {
    max-width: 810px;
    width: 100%;
    margin: 0 auto;
}

.banner-section .caption h1 {
    text-align: center;
    margin-bottom: 15px;
}

.banner-section .caption p {
    text-align: center;
    margin-bottom: 15px;
}

.banner-section .caption .btnBox {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

.banner-section .caption .btnBox .bookBtn {
    background-color: #EC1847;
}

.banner-section .caption .bannerImg {
    display: flex;
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
}

.banner-section .caption .bannerImg img {
    max-width: 311px;
    width: 100%;
    margin-right: -70px;
}

.banner-section .caption .bannerImg img:nth-child(2) {
    margin-top: 7px;
}

.banner-section .caption .bannerImg img:nth-child(3) {
    margin-top: 14px;
}

.getOff {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: -70px;
    width: 140px;
    height: 140px;
    padding: 10px;
    background: rgba(53, 79, 160, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 100%;
    font-family: 'Anton';
    font-weight: 400;
    font-size: 28px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
    z-index: 4;
}

.getOff::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 100%;
    border: 2px solid rgba(53, 79, 160, 1);
    z-index: -1;
}

.getOff span {
    font-size: 18px;
    line-height: 28px;
}

/* Marquee Section */
.marqueeSec {
    height: 127px;
    margin-top: -53px;
    overflow: hidden;
}

.marqueeSec .marqueeBox {
    display: flex;
    background-color: #EC1847;
    box-shadow: 0px 14px 22px rgba(0, 0, 0, 0.25);
    transform: rotate(-1.3deg);
    transform-origin: right;
}

.marqueeSec .marquee-container {
    display: flex;
    padding: 14px 0;
}

.marqueeSec .marqueeInfo {
    display: flex;
}

.marqueeSec .marquee-container .marquee-text {
    position: relative;
    font-family: 'Anton';
    font-weight: 400;
    font-size: 24px;
    line-height: 25px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0 40px;
    white-space: nowrap;
}

.marqueeSec .marquee-container .marquee-text::after {
    content: "";
    position: absolute;
    background-image: url(../images/marquee-star-icons.svg);
    width: 22px;
    height: 22px;
    top: 50%;
    right: -11px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: 100%;
}

.marqueeSec .marquee-container .marquee-text a {
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.marqueeSec .marquee-container .marquee-text a:hover {
    color: #ffffff;
}

/* Smarter Way Section */
.smarterWaySec {
    padding: 74px 0 87px 0;
}

.smarterWaySec .leftCol {
    width: 100%;
    padding-right: 110px;
}

.smarterWaySec .leftCol h6 {
    color: #EC1847;
    margin-bottom: 11px;
}

.smarterWaySec .leftCol h2 {
    color: #354FA0;
    margin-bottom: 72px;
}

.smarterWaySec .leftCol ul {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 10px 0 35px 0;
}

.smarterWaySec .leftCol ul li h5 {
    color: #EC1847;
    border-radius: 20px;
    border: 1px solid #FFAFC1;
    padding: 10px 15px;
    margin: 0;
    background: #FFFFFF;
}

.smarterWaySec .leftCol p {
    margin-bottom: 30px;
}

.smarterWaySec .leftCol p:last-child {
    margin: 0;
}

.smarterWaySec .rightCol {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
}

/* Books Section */
.booksSec {
    padding: 90px 0;
}

.booksSec .booksBox {
    position: sticky;
    padding: 45px 100px 60px 90px;
    box-shadow: 0px -4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    background: #FFFFFF;
    counter-increment: item1;
    margin-bottom: 195px;
}

.booksSec .booksBox:nth-child(1) {
    top: 40px;
    z-index: 1;
}

.booksSec .booksBox:nth-child(2) {
    top: 80px;
    z-index: 2;
    margin-bottom: 113px;
}

.booksSec .booksBox:nth-child(3) {
    top: 160px;
    z-index: 3;
    margin-bottom: 0;
}

.booksSec .booksBox::before {
    position: absolute;
    left: 100px;
    top: -37px;
    display: flex;
    align-items: end;
    justify-content: center;
    content: counter(item1, decimal-leading-zero);
    width: 44px;
    height: 37px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    padding-bottom: 5px;
    clip-path: polygon(50% 30%, 100% 0%, 100% 100%, 0 100%, 0 0);
    background-color: #EC1847;

}

.booksSec .booksBox .leftCol {
    width: 100%;
}

.booksSec .booksBox .leftCol .info {
    width: 100%;
    padding-right: 70px;
    margin-bottom: 60px;
}

.booksSec .booksBox .leftCol .info h6 {
    color: #EC1847;
    margin-bottom: 25px;
}

.booksSec .booksBox .leftCol .info h2 {
    color: #354FA0;
    margin-bottom: 25px;
}

.booksSec .booksBox .leftCol .info h3 {
    margin-bottom: 25px;
}

.booksSec .booksBox .leftCol .info p {
    margin-bottom: 30px;
}

.booksSec .booksBox .leftCol .info p:last-child {
    margin: 0;
}

.booksSec .booksBox .leftCol .info span {
    margin-top: -20px;
    display: block;
}

.booksSec .booksBox .leftCol .info span a {
    color: #354FA0;
    transition: all .3s ease-in-out;
}

.booksSec .booksBox .leftCol .info span a:hover {
    color: #000000;
}

.booksSec .booksBox .leftCol .bookBtn {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.booksSec .booksBox .leftCol .bookBtn a img {
    margin-left: 10px;
}

.booksSec .booksBox .leftCol .bookBtn .amazonBtn {
    background-color: #0F141A;
}

.booksSec .booksBox .leftCol .bookBtn .buyFromBtn {
    line-height: 18px;
    text-align: center;
    padding: 6px 30px;
    background-color: #20A8D8;
}

.booksSec .booksBox .leftCol .bookBtn .buyFromBtn span {
    font-size: 14px;
}

.booksSec .booksBox .rightCol {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 495px;
    width: 100%;
    max-height: 495px;
    height: 100%;
}

.booksSec .booksBox .rightCol::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #EC1847;
    border-radius: 100%;
    z-index: -1;
}

.booksSec .booksBox .leftCol .bookBtn.westernoff .btnLink.btn1 {
    width: 240px;
    text-align: center;
}

.booksSec .booksBox .leftCol .bookBtn.westernoff .btnLink.btn2 {
    width: 220px;
    text-align: center;
}

/* Discount Section */
.discountSec {
    margin-bottom: 65px;
}

.discountSec .discountBox {
    position: relative;
    width: 100%;
    border-radius: 20px;
    padding: 22px 33px;
    background: linear-gradient(90deg, #FFFFFF 39.63%, rgba(153, 153, 153, 0) 71.41%);
    overflow: hidden;
}

.discountSec .discountBox::before {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    width: 910px;
    height: 100%;
    background-image: url(../images/discount-banner-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.discountSec .discountBox .info {
    position: relative;
    width: 40%;
}

.discountSec .discountBox .info h2 {
    color: #000000;
}

.discountSec .discountBox .info h3 {
    color: #000000;
    margin-bottom: 27px;
}

.discountSec .discountBox .info p {
    margin: 0;
}

.discountSec .discountBox .info h6 {
    color: #EC1847;
    margin-bottom: 11px;
}

.discountSec .discountBox .info h6:last-child {
    margin: 0;
}

/* RealWorld Section */
.realWorldSec {
    background: #354FA0;
    overflow: hidden;
}

.realWorldSec .leftCol {
    width: 100%;
    padding: 69px 190px 69px 0;
}

.realWorldSec .leftCol h2 {
    color: #FFFFFF;
    margin-bottom: 30px;
}

.realWorldSec .leftCol p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.realWorldSec .leftCol ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.realWorldSec .leftCol ul li {
    position: relative;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    padding-left: 46px;
}

.realWorldSec .leftCol ul li:last-child {
    margin: 0;
}

.realWorldSec .leftCol ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 26px;
    height: 26px;
    background-image: url(../images/check-icon.svg);
    background-repeat: no-repeat;
}

.realWorldSec .rightCol {
    position: relative;
    margin-right: calc(0px - var(--container-padding));
    height: 100%;
}

.realWorldSec .rightCol img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.realWorldSec .rightCol .realWorldImg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 242px;
    left: -121px;
}

.realWorldSec .rightCol .realWorldImg .img {
    margin-bottom: -20px;
    /* transform: rotate(-5.21deg); */
}

/* .realWorldSec .rightCol .realWorldImg .img1 {
    transform: rotate(12.05deg);
} */

/* How Works Section */
.howWorks {
    padding: 80px 0 92px;
}

.howWorks .worksBox {
    max-width: 660px;
    width: 100%;
    margin: 0 auto;
}

.howWorks .worksBox .title {
    margin-bottom: 55px;
}

.howWorks .worksBox .title h6 {
    color: #EC1847;
    text-align: center;
    margin-bottom: 10px;
}

.howWorks .worksBox .title h2 {
    text-align: center;
    margin-bottom: 26px;
}

.howWorks .worksBox .title p {
    max-width: 500px;
    width: 100%;
    color: #0F141AE5;
    text-align: center;
    margin: 0 auto;
}

.howWorks .worksBox .worksStap {
    position: relative;
    width: 100%;
}

.howWorks .worksBox .worksStap::before {
    position: absolute;
    left: 28px;
    top: 133px;
    content: '';
    height: 0;
    border: 1px dashed #EC1847;
    transition: height 3s ease;
}

.howWorks .worksBox .worksStap.active::before {
    height: calc(100% - 265px);
}

.howWorks .worksBox .worksStap .stapBox {
    position: relative;
    max-width: 527px;
    width: 100%;
    border-radius: 20px;
    padding: 20px 5px 25px 20px;
    margin-left: auto;
    background-color: #ffffff;
    counter-increment: item1;
    margin-bottom: 40px;
}

.howWorks .worksBox .worksStap .stapBox:last-child {
    margin-bottom: 0;
}

.howWorks .worksBox .worksStap .stapBox::before {
    position: absolute;
    left: -125px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: counter(item1, decimal-leading-zero);
    width: 40px;
    height: 40px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    border-radius: 100%;
    background-color: #EC1847;
    box-shadow: 0 0 0 9px rgba(236, 24, 71, 0.4);
}

.howWorks .worksBox .worksStap .stapBox .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    border-radius: 100%;
    background-color: #354FA0;
    margin-bottom: 10px;
}

.howWorks .worksBox .worksStap .stapBox span {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.howWorks .worksBox .worksStap .stapBox p {
    margin: 0;
}

/* Footer Section */
footer {
    float: left;
    width: 100%;
    padding: 30px 0 180px;
    background-image: url(../images/footer-banner-img.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    background-blend-mode: darken;
    background-color: #F2F2F2;
}

footer .cta {
    width: 100%;
    margin-bottom: 70px;
}

footer .cta h2 {
    text-align: center;
    margin-bottom: 15px;
}

footer .cta p {
    text-align: center;
    max-width: 674px;
    margin: 0 auto 15px auto;
}

footer .cta .ctaBtn {
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .cta .ctaBtn .contactUs {
    background-color: #EC1847;
}

footer .footerSec {
    width: 100%;
}

footer .footerSec h2 {
    text-align: center;
    margin-bottom: 15px;
}

footer .footerSec ul {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 0;
    margin: 0 0 12px 0;
    list-style: none;
}

footer .footerSec ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #0F141A;
    transition: all .5s ease-in-out;
}

footer .footerSec ul li a:hover {
    background-color: #354FA0;
}

footer .footerSec p {
    text-align: center;
    margin: 0;
}

/* Diskaun Animate */
[data-aos=diskaun] {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    transition-duration: 1s;
}

[data-aos=diskaun].aos-animate {
    opacity: 1;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    z-index: 4;
}

/* Image Animation */
[data-aos=image-container] {
    position: relative;
    background-color: transparent;
    -webkit-transition: -webkit-clip-path 0s cubic-bezier(.71, .07, .17, .91);
    transition: -webkit-clip-path 0s cubic-bezier(.71, .07, .17, .91);
    transition: clip-path 0s cubic-bezier(.71, .07, .17, .91);
    transition: clip-path 0s cubic-bezier(.71, .07, .17, .91), -webkit-clip-path 0s cubic-bezier(.71, .07, .17, .91);
    -webkit-transition-duration: 1.1s !important;
    transition-duration: 1.1s !important;
}

[data-aos=image-container] img {
    -webkit-transition: -webkit-clip-path .03s cubic-bezier(.71, .07, .17, .91);
    transition: -webkit-clip-path .03s cubic-bezier(.71, .07, .17, .91);
    transition: clip-path .03s cubic-bezier(.71, .07, .17, .91);
    transition: clip-path .03s cubic-bezier(.71, .07, .17, .91), -webkit-clip-path .03s cubic-bezier(.71, .07, .17, .91);
    -webkit-transition-duration: inherit;
    transition-duration: inherit;
}

[data-aos=image-container],
[data-aos=image-container] img {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}

[data-aos=image-container].aos-animate,
[data-aos=image-container].aos-animate img {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

/* Round Circle Animate */
[data-aos=round-circle]::before {
    transform: scale(.6);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    transition-duration: 1s;
}

[data-aos=round-circle].aos-animate::before {
    transform: scale(1);
}

/* Image Rotate Animate */
[data-aos=image-rotate] img {
    transform: rotate(0);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
    transition-duration: 1s;
}

[data-aos=image-rotate].aos-animate .img {
    transform: rotate(-5.21deg);
}

[data-aos=image-rotate].aos-animate .img1 {
    transform: rotate(12.05deg);
}