body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
}

:root {
    --org: #e77c24;
    --wth: #ffffff;
    --forg: #b9641d;
    --fhorg: #753f13;
    --fblk: #2b2b2b;
    --grey: #bebebe;
    --blk: #000;
    --blk1: #282828;
    --para: #4e4f4f;
    --lgrey: #bbbbbb;
}


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

a {
    text-decoration: none !important;
    padding: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.org-clr {
    color: var(--org);
}

.web-btn {
    background: var(--org);
    padding: 6px 0px !important;
    border-radius: 20px;
    font-size: 16px;
    color: var(--wth);
    font-weight: 400;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.wth-btn {
    background: var(--wth);
    color: var(--blk);
    border: 1px solid var(--org);
}

/* header css start */

.header-top {
    background: var(--org);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    gap: 100px;
}


.logo-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-info ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.des-para p {
    color: var(--wth);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
}

.logo-top strong {
    position: relative;
    z-index: 0;
}

.logo-top strong:before {
    position: absolute;
    z-index: 0;
    content: "";
    top: -30px;
    left: 0px;
    height: 60px;
    width: 2px;
    background: var(--wth);
}

.top-info ul strong {
    position: relative;
    z-index: 0;
}

.top-info ul strong:before {
    position: absolute;
    z-index: 0;
    content: "";
    top: -30px;
    left: 0px;
    height: 60px;
    width: 2px;
    background: var(--wth);
}

.top-info ul li a {
    color: var(--wth);
    text-transform: uppercase;
    font-weight: 600;
}

header ul.navbar-nav {
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
}

header ul.navbar-nav li a {
    color: var(--org) !important;
    font-weight: 800;
    text-transform: uppercase;
}

/* header css end */

/* banner css start */

.banner {
    background-image: url(../imgs/banner.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
}

.banner-video-layout {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.banner-video-layout:before {}

.banner:before {
    position: absolute;
    z-index: -1;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000a6;
}

.banner-video-layout video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

.banner-content {
    margin-top: 70px;
}

.banner-content h1 {
    color: var(--wth);
    font-weight: 900;
    text-transform: uppercase;
       line-height: 45px;
    font-size: 38px;
    font-family: "DM Serif Display", serif;
}

.banner-content p {
    color: var(--wth);
    font-weight: 500;
    /*text-transform: uppercase;*/
    margin-top: 20px;
    font-size: 18px;
    width: 91%;
}

.btn-div {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 25px;
}


.banner-form {
    background: var(--wth);
    padding: 40px 20px;
    border-radius: 20px 20px 20px 20px;
    /* text-align: center; */
    position: relative;
    z-index: 1;
}

.banner-form .img-fluid.form-50 {
    position: absolute;
    z-index: 0;
    width: 110px;
    top: -57px;
    right: -36px;
}

.banner-form h3 {
    color: var(--org);
    font-weight: 800;
    font-size: 25px;
    margin-bottom: 20px;
}

.banner-form h6 {
    color: var(--wth);
    font-weight: 400;
    font-size: 20px;
    margin: 10px 0;
}

.banner-form form label {
    font-weight: 500;
    color: var(--org);
    font-size: 15px;
}
.banner-form form .form-control {
    background: var(--forg);
    border: none;
    height: 45px;
    margin: 5px 0;
    border-radius: 10px;
    padding: 2px 15px;
    color: var(--blk);
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--blk);
}

.banner-form form .form-control::placeholder {
    color: var(--blk);
}

.banner-form form .form-control:hover {
    background: var(--fhorg);
    background: transparent;
}

.banner-form form textarea#textarea {
    height: unset !important;
}

.form-btn {
    background: var(--fblk);
    width: 100%;
    margin: auto;
    border-radius: 6px;
    color: var(--wth);
    font-weight: 600;
    padding: 12px 0;
    font-size: 18px;
    margin-top: 20px;
}

.form-btn:hover {
    background: var(--org);
}

/* banner css end */

/* review-recognize css start */

.review-recognize {
    background-color: var(--grey);
    padding: 50px 0;
}

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

.review-heading h2 {
    font-size: 40px;
    color: var(--wth);
    font-weight: 500;
    margin-bottom: 20px;
}

.review-heading p {
    color: var(--wth);
    font-weight: 500;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.trusted-reviews {
    text-align: center;
    background: var(--blk1);
    padding: 10px;
    border-radius: 30px;
    height: 340px;
}

.trusted-reviews a h5 {
    color: var(--wth);
    font-size: 18px;
    margin-top: 10px;
    font-weight: 500;
}

.trusted-reviews a p {
    color: var(--wth);
    font-weight: 300;
    font-size: 17px;
    line-height: 20px;
}


/* review-recognize css end */

/* marketing-services css start */

.marketing-services {
    padding: 50px 0;
}

.services-marketing h3 {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    color: var(--blk1);
}

.services-marketing p {
    margin: auto;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    color: var(--para);
    font-size: 15px;
    width: 65%;
}

.services-box {
    background: var(--blk1);
    border-radius: 20px;
    height: 300px;
    margin-top: 30px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.services-box h4 {
    color: var(--wth);
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 20px;
}

.services-box p {
    color: var(--wth);
    font-weight: 300;
    font-size: 15px;
    margin: auto;
    width: 95%;
    margin-top: 0;
}

.services-box.org-box {
    background: var(--org);
}

/* marketing-services css end */

/* launch-book css start */

.launch-book {
    padding: 50px 0;
}

.time-advertising {
    background: var(--org);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 10px;
    border-radius: 20px;
}

.time-advertising h4 {
    color: var(--blk1);
    font-weight: 600;
    font-size: 20px;
}

.time-advertising p {
    color: var(--blk1);
    font-weight: 400;
    font-size: 18px;
}

.book-promotion {
    position: relative;
    z-index: 0;
    height: 350px;
    border-radius: 20px;
    background: var(--blk1);
    padding-left: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.book-promotion img {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 20px;
    width: 35%;
}

.book-promotion .mobile-pick {
    animation: moveable 5s infinite linear;
}

.book-promotion h2 {
    color: var(--wth);
    font-size: 50px;
    font-weight: 500;
}

.book-promotion p {
    color: var(--wth);
    font-weight: 400;
    margin: 20px 0;
    width: 80%;
}

.book-promotion button.web-btn.wth-btn {
    position: relative;
    z-index: 0;
    padding: 10px 0px 10px 50px !important;
    font-weight: 600;
    color: var(--org);
    font-size: 20px;
    border-radius: 30px;
}

.book-promotion button.web-btn.wth-btn img {
    width: 18%;
    bottom: 11px;
}

.book-promotion:before {
    position: absolute;
    z-index: -1;
    content: "";
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    box-shadow: 0 0 230px 60px var(--wth);
}

/* launch-book css end */


/* perfomance-book css start */

.perfomance-book {
    padding: 50px 0 0 0;
}


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

.top-performer h3 {
    color: var(--blk1);
    font-size: 45px;
    font-weight: 600;
}

.top-performer p {
    margin: auto;
    width: 42%;
    font-size: 18px;
    color: var(--para);
    font-weight: 500;
}

.top-performer .btn-div {
    justify-content: center;
}

.curve-back-book {
    background-image: url(../imgs/curve-back-book.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 240px 0px 200px 0;
    margin-top: -200px;
}

.out-top-books {
    text-align: center;
}

.out-top-books img {
    width: 90%;
    margin-top: 100px;
}

.out-top-books.mid-book img {
    width: 80%;
    margin-top: 120px;
}

a.web-btn img {
    width: 10%;
    margin-right: 10px;
}

/* perfomance-book css end */

/* live-straming css start */


.live-straming {
    background: var(--lgrey);
    position: relative;
    z-index: 0;
    padding: 50px 80px 50px 200px;
    overflow: hidden;
}

.circle {
    position: absolute;
    z-index: -1;
}

.circle1 {
    right: -200px;
}

.live-conversion h2 {
    color: var(--wth);
    font-weight: 600;
    font-size: 55px;
}

.live-conversion p {
    color: var(--wth);
    font-weight: 500;
    font-size: 18px;
    width: 85%;
    margin-top: 10px;
}

.live-conversion ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px 0 30px 0px;
    gap: 60px;
}

.live-conversion ul li {
    display: flex;
    align-items: baseline;
    width: 40%;
    gap: 10px;
}

.live-conversion ul li img {
    width: 8%;
}

.live-conversion ul li p {
    font-size: 18px;
    font-weight: 400;
}

.live-cambridge-publish h6 {
    background: var(--org);
    color: var(--wth);
    display: inline;
    padding: 10px 40px;
    font-size: 25px;
    border-radius: 30px;
}

.live-video-conversion {
    background: var(--blk1);
    padding: 20px;
    border-radius: 30px;
    margin: 30px 0;
}

.video-picture {
    padding: 10px;
    overflow: hidden;
}

.video-picture img {
    animation: scaleimg 15s infinite linear;
}


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

.call-setting img {
    width: 60%;
}

.circle2 {
    bottom: 0px;
    left: -260px;
}

.circle.circle2 img {
    width: 80%;
}

/* live-straming css end */

/* article-news css start */

.article-news {
    background: transparent;
}

.article-news .video-picture img {
    animation: unset;
}

.article-news .live-conversion h2 {
    color: var(--blk1);
}

.article-news .live-conversion p {
    color: var(--blk1);
}

/* article-news css end */

/* podcast-straming css start */

.podcast-straming .circle1 {
    right: -470px;
    bottom: 100px;
}

.podcast-straming .circle2 {
    top: 20px;
    left: -300px;
}

.podcast-straming .video-picture img {
    border: 2px solid var(--wth);
    border-radius: 30px;
}

.podcast-straming .call-setting {
    text-align: start;
}

.podcast-straming .call-setting h3 {
    text-align: center;
    font-size: 35px;
    color: var(--wth);
    font-weight: 600;
}

.podcast-straming .live-video-conversion {
    margin-bottom: 0;
}

.podcast-straming .call-setting img {
    margin: 20px 0 10px 0;
}

.podcast-straming .call-setting p {
    color: var(--wth);
    font-size: 22px;
    font-weight: 400;
    border-top: 2px solid var(--wth);
}

/* podcast-straming css end */

/* trusted-client css start */

.trusted-client {
    padding: 50px 0;
}

.client-trusted-logos h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 600;
    color: var(--blk1);
}

/* trusted-client css end */

/* contact-form css start */

.contact-form .live-conversion form .form-control {
    background: transparent;
    border: 2px solid var(--wth);
    border-radius: 20px;
    padding: 12px 30px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}


.contact-form .live-conversion form {
    margin-top: 40px;
    width: 90%;
}

.contact-form .live-conversion form .form-control::placeholder {
    color: var(--wth);
}

.contact-form .web-btn {
    width: 100%;
    border: 1px solid var(--wth);
    padding: 10px 0px !important;
}


.contact-form .video-picture img {
    animation: unset;
}

/* contact-form css end */

/* footer css start */

footer {
    padding: 50px 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.footer-info h2 {
    color: var(--blk1);
    font-size: 50px;
    font-weight: 600;
    margin: 25px 0;
}

.footer-info ul li p {
    color: var(--para);
    font-weight: 400;
    font-size: 25px;
}

.footer-info ul li p strong {
    color: var(--blk1);
}

.footer-info ul li p a {
    color: var(--para);
    font-weight: 400;
    font-size: 25px;
}

.copy-right {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.copy-right p {
    font-weight: 400;
    font-size: 16px;
    color: var(--wth);
}

.copy-right ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.copy-right ul li a {
    font-weight: 400;
    font-size: 17px;
    color: var(--wth);
}

footer .circle.circle2 {
    left: 0;
    bottom: -360px;
}

footer .circle.circle2 img {
    width: 100%;
}

.copy-right ul li {
    color: var(--wth);
}

/* footer css end */

@keyframes moveable {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(50px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes scaleimg {
    0% {
        transform: scale(1.0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.0);
    }
}


.modal-header {
    position: absolute;
    z-index: 8;
    right: 0px;
    top: 5px;
    background: var(--org);
    border-radius: 60%;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.modal-header button {
    color: #000;
    opacity: 1;
    font-size: 13px;
    margin: 0 !important;
    filter: brightness(0) invert(1);
}
.modal-content {
    background: 0 0;
    border: none;
}
div#exampleModal .banner-form h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: start;
    font-size: 25px;
}


.modal-dialog.modal-dialog-centered {
    max-width: 800px;
}

div#exampleModal .banner-form h5 {
    color: black;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    text-align: start;
    margin-bottom: 10px;
}

div#exampleModal .banner-form {
    padding: 20px 15px;
}

div#exampleModal button.btn.ylw-btn {
    width: 100%;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    background: var(--org);
}



div#exampleModal .banner-form {
    background: #fff;
    box-shadow: -2px -2px 4px 0 #f69702;
    padding: 20px 30px;
    border: 1px solid var(--org);
    border-radius: 20px;
    margin: auto;
    width: 100%
}

div#exampleModal .banner-form h2 {
    font-size: 22px;
    font-weight: 600;
    color: #f69702;
}

div#exampleModal .banner-form input {
    border: 1px solid #000;
    margin-bottom: 10px;
    border-radius: 10px;
    height: 45px;
    border-color: #f69702;
    background: transparent;
    color: black;
}

div#exampleModal .banner-form input::placeholder {
 color:black;   
}

div#exampleModal .banner-form textarea::placeholder {
   color:black;  
}

div#exampleModal .banner-form textarea {
    border: 1px solid #000;
    margin-bottom: 10px;
    border-radius: 10px;
    height: 100px!important;
    border-color: var(--org);
    background: transparent;
      color:black;  
}

div#exampleModal .banner-form input#click_sub {
    height: unset
}

div#exampleModal .banner-form label {
    margin-top: 10px;
    color: #00000080;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 14px
}



.new-year-sale-popup {
    position: unset;
    z-index: 0;
    left: -20px;
    top: -30px;
    height: 100%;
    border-radius: 10px;
}

.new-year-sale-popup img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
