@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Nunito+Sans:wght@200;300;400;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
    --light_gray: #f2f2f2;
    --black: #000;
    --white: #ffffff;
    --light_black: #333333;
    --blue: #0C6980;
    --gray: #696969;
    --red: #C85250;
}

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

@font-face {
    font-family: 'Times New Roman Cyr';
    src: url('../fonts/TimesNRCyrMT.eot');
    src: url('../fonts/TimesNRCyrMTd41d.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TimesNRCyrMT.woff2') format('woff2'),
        url('../fonts/TimesNRCyrMT.woff') format('woff'),
        url('../fonts/TimesNRCyrMT.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

img {
    pointer-events: none
}

body {
    font-family: nunito sans;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    background: #fff;
}

body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body::-webkit-scrollbar-button:start:decrement,
body::-webkit-scrollbar-button:end:increment {
    display: none;
}

body::-webkit-scrollbar-track-piece {
    background-color: #f4f4ec;
    -webkit-border-radius: 0px;
    border-left: 1px solid #ccc;
}

body::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 0px;
    background: var(--blue);
}

a {
    text-decoration: none;
    color: #000;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #000;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Times New Roman Cyr';
    /* -webkit-user-select: none;
        -webkit-touch-callout: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;*/
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

ul {
    padding: 0;
    margin: 0;
}

.center-col {
    margin: 0 auto;
    display: table;
    float: none;
}


/*Top Bar Section Begin*/

.top_bar_sec {
    background: transparent;
    padding: 15px 0;
    position: absolute;
    z-index: 999;
    width: 100%;
}

.top_bar_sec ul li {
    display: inline-block;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    padding-right: 20px;
}

.top_bar_sec ul li img {
    filter: brightness(0) invert(0);
    padding-right: 15px;
    width: 45px;
}

.top_bar_sec ul li a:hover {
    color: var(--red);
}

.top_bar_sec ul li a {
    color: var(--black);
    font-weight: 600;
}

/*Top Bar Section End*/

/*Header Section Begin*/

header {
    padding: 0 0 35px;
    z-index: 99;
    position: absolute;
    width: 100%;
    top: 10px;
}

.navbar-nav li:hover>ul.dropdown-menu {
    display: block;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 29%);
    min-width: 16rem;
    border-radius: 0;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
}

.logo_Sec_main {
    position: relative;
    top: 8px;
}

.logo_Sec_main a {
    padding-block: 30px;
}

.logo_Sec_main img {
    width: 65%;
}


/* PopUP */

.overlay-bg {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}

.popupform-main {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.62);
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.popupform-main.active {
    display: block;
}

.pop-form {
    position: absolute;
    width: 930px;
    height: 639px;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    border: outset #0c6980;
    margin: auto;
    background: url(../images/popup-bg.png);
    padding: 0px 0 0px 75px;
    z-index: 99;
    -webkit-transition: 0.5s;
    border-radius: 20px;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-size: cover;
}

.col-sm-offset-5 {
    margin-left: auto;
    position: static;
}

.popupform-main h3 {
    font-size: 26px;
    margin: 60px 0 0 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 500;
}

.popupform-main h2 {
    font-size: 40px;
    margin: 5px 0 0 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 700;
}

.popupform-main h4 {
    font-size: 26px;
    margin: 5px 0 0 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.form_submission .error {
    color: #000;
}

.pop-form .form_submission .error {
    color: #ffffff;
}


.pop-form .form_submission input,
.pop-form .form_submission textarea {
    color: #000;
}

.pop-form .close-btn {
    width: 45px;
    height: 45px;
    display: block;
    position: absolute;
    top: -18px;
    right: -20px;
    font-size: 18px;
    font-weight: 900;
    color: #000;
    padding-top: 3px;
    background-color: #e9e9e9;
    text-align: center;
    border-radius: 50px;
    align-items: center;
    display: grid;
    border: inset 3px #000;
    /* border: 5px solid #fff; */
}

.popupform-main .main-pop {
    padding: 15px 10px 0 0;
}

.popupform-main .main-pop .col-md-12 {
    padding: 0;
}

.pop-form form .control-group {
    margin-bottom: 10px;
}



.pop-form form .control-group input[type="text"],
.pop-form form .control-group input[type="text"],
.pop-form form .control-group input[type="number"],
.pop-form form .control-group input[type="email"],
.pop-form form .control-group select,
.pop-form form .control-group textarea {
    background-color: #fff;
    font-family: "Nunito", sans-serif;
    text-align: left;
}

.popupform-main form input[type="text"] {
    min-height: 25px;
    color: #333333;
    padding: 10px;
    height: 40px;
    width: 100%;
    background: transparent;
    border: 1px solid #cccccc;
    box-shadow: none;
    -webkit-appearance: none;
    border-radius: 4px;
    font-family: "Nunito", sans-serif;
}

form .numberarea {
    width: 100%;
    position: relative;
}

.pop-form .submit-btn {
    font-size: 20px;
    width: 100%;
    padding: 10px 0px;
    background-color: #c85250;
    color: #fff !important;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    transition: all .3s ease-in-out;
    border: none;
    margin-top: 15px;
    width: 100%;
    margin: 5px 0 0 0px !important;
    outline: none;
    font-weight: 700;
    border: none;
}






/* PopUP */



header .row {
    align-items: center;
}

/* rotate caret on hover */
.dropdown-menu>li>a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}


.main_menu_sec ul li a {
    font-size: 16px;
    padding: 12px 9px !important;
    text-transform: c;
    font-weight: 700;
}

.main_menu_sec {
    padding-top: 17px;
}

.dropdown-menu {
    padding: 0;
    margin: 0;
}

ul.dropdown-menu li a:hover,
ul.dropdown-menu li a:focus {
    background: var(--blue);
    color: var(--white);
}

.main_menu_sec .navbar-collapse {
    justify-content: center;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
}

ul.dropdown-menu li a {
    font-size: 16px;
    border-bottom: 1px solid rgb(204 204 204 / 32%);
    padding: 12px 20px !important;
}

/*Header Section End*/

/*New Banner Section Begin*/

.banner___sec__main video {
    width: 100%;
    height: 94vh;
    object-fit: cover;
}

.banner___sec__main .carousel-caption .row {
    align-items: center;
}

.banner___sec__main .carousel-item {
    position: relative;
}

section.banner___sec__main.term__banner video {
    height: 490px;
}

.term__banner .banner__content__sec {
    position: relative;
    top: 40px;
}

.banner___sec__main .carousel-item:before {
    content: '';
    position: absolute;
    background: rgb(234 227 218 / 35%);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.banner___sec__main .carousel-caption {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    padding: 0;
    bottom: 0;
}

.banner__content__sec h1 {
    color: var(--red);
    font-size: 40px;
    font-weight: 900;
    line-height: 52px;
    margin-bottom: 10px;
}

.banner__content__sec p {
    font-size: 19px;
    line-height: 33px;
    color: var(--black);
}

.banner__content__sec h1 span {
    color: var(--blue);
    position: relative;
}

.banner__content__sec h1 span:after {
    content: '';
    background: url(../images/404.png);
    width: 208px;
    height: 35px;
    position: absolute;
    bottom: -34px;
    right: 0px;
}

.btn_web ul li {
    display: inline-block;
    margin-right: 10px;
}

.btn_web ul li a {
    background: var(--red);
    color:
        var(--white);
    padding: 15px 30px;
    display: inline-block;
    border-radius: 45px;
    font-size: 17px;
    transition: 0.5s ease-in-out;
    font-weight: 600;
}

.btn_web {
    padding-top: 20px;
}

.btn_web ul li a:hover {
    background: var(--primary_color);
}

.btn_web ul li:nth-child(2) a {
    background: var(--primary_color);
}

.btn_web ul li:nth-child(2) a:hover {
    background: var(--secondary_color);
}

.banner__form__tab {
    margin-left: 120px;
    margin-top: 40px;
    background: rgb(255 255 255 / 30%);
    padding: 30px 30px;
    border-radius: 5px;
    backdrop-filter: blur(8px);
    border: 2px solid rgb(211 117 86 / 31%);
    box-shadow: 0px 0px 30px rgb(0 0 0 / 28%);
}

.banner__form__tab h3 {
    font-size: 25px;
    text-align: center;
    color: var(--red);
    font-weight: bold;
    margin-bottom: 25px;
}

.banner__form__tab input {
    height: 50px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid rgb(0 0 0 / 25%);
    font-size: 15px;
    width: 100%;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    color: #000;
}

.banner__form__tab textarea {
    height: 110px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid rgb(0 0 0 / 25%);
    font-size: 15px;
    resize: none;
}

.btn__submit input {
    background: var(--blue);
    color:
        var(--white);
    padding: 11px 30px;
    display: inline-block;
    border-radius: 5px;
    font-size: 17px;
    transition: 0.5s ease-in-out;
    font-weight: 600;
    cursor: pointer;
    height: auto;
    border: 0;
}

.btn__submit input:hover {
    background: var(--red);
}

/*NEw Banner Section End*/

/*Logo Platform Section Begin*/

.padding__70 {
    padding: 70px 0;
}

.platform__logo__sec {
    margin-top: -200px;
}

.platform__logos img {
    max-width: 100%;
    /* filter: brightness(0.5); */
    width: auto;
}

.platform__logo__sec .slick-slide {
    margin: 0;
}

/*Logo Platform Section End*/

/*Banner Section Begin*/

.banner_Sec_main .carousel-item img {
    width: 100%;
}

.banner_Sec_main .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    text-align: left;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    width: 100%;
    height: 100%;
}

.banner_content h1 {
    color: var(--white);
    font-size: 40px;
    line-height: 51px;
    padding-bottom: 10px;
    font-weight: bold;
    text-transform: capitalize;
}

.banner_content h1 span {
    color: var(--red);
    font-weight: bold;
}

.banner_content p {
    color: var(--white);
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 25px;
}

.banner_right_img {
    position: absolute;
    right: 0;
    width: 474px;
    top: -190px;
}

.banner_right_img img {
    width: 730px !important;
}

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

.header_btn_wrapper a,
.banner_btn ul li a {
    background: #c85250;
    color: var(--white);
    padding: 13px 50px;
    display: inline-block;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: 0 0 0 0 rgb(201 34 53 / 36%), 0 0 0 0 rgb(203 34 54 / 36%);
    -webkit-animation: pulse-icon-color-main 1.5s infinite;
}

.banner_btn ul li {
    padding: 0 25px 0 0 !important;
}

.header_btn_wrapper a.header_btnn_2,
.banner_btn ul li a.btn_2 {
    background: var(--blue);
    box-shadow: 0 0 0 0 rgb(0 67 165 / 36%), 0 0 0 0 rgb(0 66 166 / 36%);
    -webkit-animation: pulse-icon-color-main 1.5s infinite;
}


.header_btn_wrapper a.header_btnn_2 {
    margin-left: 32px;
}

.header_btn_wrapper a img {
    height: 18.5px;
    margin: 0;
    padding: 0;
    margin-top: -2px;
    margin-right: 8px;
}

.header_btn_wrapper a:hover,
.banner_btn ul li a:hover {
    background: var(--blue);
    box-shadow: 0 0 0 0 rgb(0 67 165 / 36%), 0 0 0 0 rgb(0 66 166 / 36%);
}

.header_btn_wrapper a.header_btnn_2:hover,
.banner_btn ul li a.btn_2:hover {
    background: var(--red) !important;
    box-shadow: 0 0 0 0 rgb(201 34 53 / 36%), 0 0 0 0 rgb(203 34 54 / 36%);
}

.header_btn_wrapper a.header_btnn_2:hover,
.banner_btn ul li a.btn_2:hover {
    background: var(--blue);
}

.banner_btn {
    padding-top: 10px;
}

.banner_Sec_main {
    position: relative;
    /* z-index: 99; */
}

.banner_Sec_main .row {
    align-items: center;
}

.wrap_form .banner_Sec_main.inner_banner .row {
    align-items: unset;
}

.banner_Sec_main .carousel-caption:before {
    content: '';
    background: rgb(0 0 0 / 82%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    bottom: 0;
    z-index: -1;
}

/*Banner Section End*/

/*Banner Form Section Begin*/

.banner_content {
    position: relative;
    top: 0;
    padding-top: 100px;
}

.banner_Sec_main.inner_banner .banner_content {
    padding-top: 100px;
}

.banner_form {
    background: #0085a0;
    padding: 30px 30px;
    border-radius: 0;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 27%);
    border-radius: 5px;
}

.banner_form input {
    height: 50px;
    border: 0;
    border-radius: 30px;
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
}

section.banner_form_main {
    padding: 30px 0;
    margin-top: -190px;
}

.portfolio_banner .carousel-item img {
    height: 250px !important;
}

.portfolio_banner .banner_content {
    padding: 0 !important;
}

.btn_form input {
    width: 100%;
    background: var(--light_black);
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    box-shadow: 0 0 0 0 rgb(51 51 51 / 58%), 0 0 0 0 rgb(51 51 51 / 57%);
    -webkit-animation: pulse-icon-color-main 1.5s infinite;
    cursor: pointer;
}

@-webkit-keyframes pulse-icon-color-main {
    70% {
        box-shadow: 0 0 0 20px rgba(255, 87, 64, 0), 0 0 0 8px rgba(255, 87, 64, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 64, 0), 0 0 0 0 rgba(255, 87, 64, 0);
    }
}

@-webkit-keyframes pulse-icon-color-main3 {
    70% {
        box-shadow: 0 0 0 20px rgba(246, 231, 0, 0), 0 0 0 7px rgba(246, 231, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(246, 231, 0, 0), 0 0 0 0 rgba(246, 231, 0, 0);
    }
}

/*Banner Form Section End*/


/*Media Platform Section Begin*/

.how_work_sec.home_work {
    background: url(../images/how-it-work-bg.jpg);
}

.how_work_sec.home_work:before {
    content: '';
    background: rgb(0 0 0 / 82%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    bottom: 0;
}

.how_work_sec.home_work .web_head_Content h2,
.how_work_sec.home_work .web_head_Content p,
.how_work_sec.home_work .web_head_Content h4 {
    color: var(--white);
}

.padding_70 {
    padding: 70px 0;
}

.web_head_Content {
    text-align: center;
    position: relative;
}

.web_head_Content h2,
.web_head_Content h4 {
    font-size: 33px;
    color: var(--light_black);
    padding-bottom: 0;
    position: relative;
    z-index: 99;
    text-transform: capitalize;
    font-weight: bold;
}

.web_head_Content p {
    font-size: 17px;
    line-height: 30px;
    color: var(--gray);
    position: relative;
    z-index: 99;
}

.web_head_Content:before {
    content: '';
    /* background: url(../images/heading-icon.webp); */
    width: 570px;
    height: 270px;
    position: absolute;
    bottom: 0;
    display: table;
    margin: 0 auto;
    right: auto;
    transform: translate(170px, 10px);
}

.media_logo_Sec li {
    display: inline-block;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 18%);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 10px 11px;
    background: var(--white);
}

.media_logo_Sec {
    padding-top: 30px;
}

.media_platform_sec {
    position: relative;
}

.media_platform_sec:before {
    content: '';
    position: absolute;
    background: url(../images/vector_02.webp);
    top: -79px;
    right: 40px;
    width: 210px;
    height: 250px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.media_platform_sec .web_head_Content {
    text-align: left;
}

.media_platform_sec .web_head_Content:before {
    display: none;
}

.media_left_img img {
    width: 100%;
    left: 0;
    position: relative;
}

/*Media Platform Section End*/

/*ghostwriting Section Begin*/

.ghostwriting_sec_main {
    background: url(../images/ghostwriting-bg.jpg);
    background-size: cover;
}

.web_content_sec img {
    position: absolute;
    top: -40px;
    left: 40px;
    z-index: 99;
}

.web_content_sec {
    padding-top: 40px;
}

.web_content_sec h2 {
    font-size: 33px;
    color: var(--light_black);
    font-weight: bold;
    position: relative;
    z-index: 99;
}

.web_content_sec p {
    font-size: 17px;
    line-height: 28px;
    color: var(--gray);
    position: relative;
    z-index: 999;
}

/*ghostwriting Section End*/

/*Services Section Begin*/

.services_sec_main .web_head_Content:before {
    transform: translate(170px, 100px);
}

.sercices_head_main {
    display: flex;
    align-items: center;
}

.services_icon {
    padding-right: 15px;
}

.services_head h3 {
    font-size: 22px;
    margin-bottom: 0;
    color: var(--blue);
    font-weight: 700;
}

.services_content p {
    color: var(--gray);
    font-size: 16px;
    line-height: 26px;
}

.services_content {
    padding-top: 15px;
}

.services_box {
    position: relative;
}

/*.services_tab_sec .col-sm-4:nth-child(0n+1) .services_box:before{
    content: '';    
    border-left: 1px solid #ededed;
    border-right: 0 solid #ededed;
    width: 1px;
    height: 100%;
    right: -12px;
    position: absolute;}

.services_tab_sec .col-sm-4:nth-child(1n+2) .services_box:before{
border-left: 1px solid #ededed;
}*/


.slick-dots li button:before {
    font-size: 46px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--blue);
}

.scroll-block {
    max-height: 253px;
    padding-right: 15px;
    overflow-y: scroll;
    margin-bottom: 30px;
}

.scroll-block::-webkit-scrollbar {
    width: 1px;
}

.scroll-block::-webkit-scrollbar-track {
    background-color: rgba(3, 21, 33, .1);
}

.scroll-block::-webkit-scrollbar-thumb {
    background-color: #031521;
    height: 60px;
}

.services_sec_main {
    position: relative;
}

.services_sec_main:before {
    content: '';
    position: absolute;
    background: url(../images/About-me-books-rev.png);
    width: 320px;
    height: 410px;
    z-index: 99;
    right: 0;
    background-repeat: no-repeat;
    top: 60px;
}


.services_sec_main:after {
    content: '';
    position: absolute;
    background: url(../images/About-me-writting-rev.png);
    width: 320px;
    height: 410px;
    z-index: 99;
    left: 20px;
    background-repeat: no-repeat;
    bottom: -120px;
}

/*Services Section End*/


/*how Work Section Begin*/

.how_work_sec {
    background: var(--light_gray);
    position: relative;
}

.how_work_sec .web_head_Content:before {
    bottom: 0;
    transform: translate(170px, 100px);
}


/*how Work Section End*/

/*Best Selling Section Begin*/

.best_selling_sec {
    background: url(../images/bg-section-book.jpg);
    padding: 106px 0 230px;
    background-size: 100%;
    background-position: 0 -10px;
    position: relative;
    overflow: hidden;
}

.best_selling_sec .banner_btn {
    padding-left: 90px;
}

.best_selling_sec:before {
    content: '';
    background: url(../images/vector_01.webp);
    width: 357px;
    height: 380px;
    position: absolute;
    z-index: 99;
    right: 20px;
    background-repeat: no-repeat;
    bottom: -20px;
}

.best_selling_sec .web_content_sec {
    padding-left: 90px;
    padding-top: 20px;
}

.best_selling_sec .web_content_sec h2 {
    font-size: 35px;
}

/*Best Selling Section End*/

/*Why choose Section Begin*/

.why_choose_sec {
    background: var(--light_gray) url(../images/choose_bg.jpg);
    position: relative;
    background-size: cover;
    background-attachment: fixed;
}

.why_choose_sec:before {
    content: '';
    background: rgb(10 10 10 / 60%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.choose_content_sec h2 {
    font-size: 35px;
    font-weight: bold;
    color: var(--white);
}

.choose_content_sec {
    padding-bottom: 40px;
    position: relative;
}

.reason-box-cont h3 {
    font-size: 23px;
    font-weight: bold;
    color: var(--blue);
}

.reason-box-cont p {
    font-size: 15px;
    line-height: 21px;
    color: var(--gray);
    margin-bottom: 0;
}

.choose_list_sec {
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 29%);
    z-index: 9;
}

.reason-box-cont {
    background: var(--white);
    padding: 15px 20px;
    position: relative;
    border: 1px solid #919191;
}

.choose_list_sec:before {
    content: '';
    background: var(--blue);
    position: absolute;
    width: 80px;
    height: 80px;
    top: -10px;
    left: -10px;
    border-radius: 5px;
}

.choose_list_sec:after {
    content: '';
    background: var(--red);
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -10px;
    z-index: -1;
    border-radius: 5px;
}

.choose_us_form {
    background: #fff;
    padding: 40px 30px;
    margin-top: 131px;
    margin-left: 40px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 22%);
    border-radius: 5px;
}

.form_content_sec {
    text-align: center;
    margin-bottom: 40px;
}

.form_content_sec h2 {
    font-size: 25px;
    line-height: 30px;
    color: var(--red);
    font-weight: bold;
}

.intl-tel-input {
    margin-bottom: 15px;
}

.choose_us_form input {
    height: 50px;
    margin-bottom: 15px;
    border-radius: 9px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 17%);
    border: 1px solid var(--blue);
    font-size: 15px;
}

.choose_us_form .intl-tel-input.allow-dropdown.separate-dial-code {
    margin-bottom: 15px;
    width: 100%;
}

.choose_us_form textarea {
    height: 90px;
    margin-bottom: 20px;
    resize: none;
    border: 1px solid var(--blue);
    border-radius: 10px;
    font-size: 15px;
    padding: 10px 10px;
}

.form_content_sec h4 {
    font-family: nunito sans;
    font-weight: bold;
    font-style: italic;
}

.choose_us_form .btn_form input {
    border: 0;
    font-size: 20px;
    cursor: pointer;
    background: var(--blue);
    transition: 0.5s ease-in-out;
    box-shadow: 0 0 0 0 rgb(0 67 165 / 36%), 0 0 0 0 rgb(0 66 166 / 36%);
    border-radius: 50px;
}

.choose_us_form .btn_form input:hover {
    background: var(--light_black);
}

/*Why choose Section End*/

/*Work Section Begin*/

.work_box_sec {
    background: var(--white);
    padding: 40px 20px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 18%);
    border-radius: 5px;
    position: relative;
    z-index: 3;
    min-height: 280px;
    margin-bottom: 20px;
    margin-top: 40px;
    transition: 0.5s ease-in-out;
}

.work_box_sec:hover {
    background: var(--blue);
    color: var(--white);
    transform: translate(0px, -10px);
}

.work_box_sec:hover h2,
.work_box_sec:hover p,
.work_box_sec:hover span {
    color: var(--white);
    transition: 0.5s ease-in-out;
}

.work_box_sec h2,
.work_box_sec h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
    padding-bottom: 9px;
    transition: 0.5s ease-in-out;
}

.work_box_sec p {
    font-size: 16px;
    line-height: 26px;
    color: var(--gray);
    margin-bottom: 0;
}

.work_box_sec span {
    font-size: 94px;
    position: absolute;
    right: 20px;
    opacity: 0.2;
    font-weight: bold;
    color: var(--blue);
    top: 35px;
}

.web_content_sec ul li img {
    position: relative;
    left: 0;
    top: -3px;
    padding-right: 10px;
}

.web_content_sec ul li {
    font-size: 16px;
    line-height: 27px;
    color: var(--gray);
    padding-bottom: 10px;
    position: relative;
}

.best_selling_sec .web_content_sec ul li:before {
    content: '';
    background: url(../images/list_icon.png);
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    z-index: 99;
    top: -4px;
    background-size: cover;
}

.best_selling_sec .web_content_sec ul li {
    padding-left: 40px;
}

.best_selling_sec .scroll-block {
    min-height: 401px;
    padding-right: 35px;
}

.best_selling_sec .web_content_sec .banner_btn ul li:before {
    display: none;
}

.best_selling_sec .web_content_sec .banner_btn ul {
    padding-bottom: 30px;
}

/*Work Section End*/

/*Publising Section Begin*/

.publishing_sec {
    background: url(../images/404.png);
    position: relative;
}

.publishing_sec {
    background: var(--light_gray);
    padding: 70px 0;
    position: relative;
}


.publisher_img_right img {
    width: 100%;
}

.best_selling_sec.publishing_sec .scroll-block {
    min-height: 450px;
    padding-right: 35px;
}

.seller_right_img {
    position: relative;
    right: -60px;
}

.publishing_sec .row {
    align-items: center;
}

.publishing_sec .web_content_sec {
    padding-left: 40px;
    padding-top: 10px;
}

.publishing_sec .web_content_sec img {
    top: -40px;
    left: 80px;
}

.publishing_sec .web_content_sec h2 {
    font-size: 31px;
}

.publishing_sec .scroll-block {
    max-height: 423px;
}

.home_publishing p.scroll-block {
    max-height: 223px;
}

/*Publising Section End*/

/*Faq Section Begin*/

.faq_sec_main .web_head_Content:before {
    bottom: 0;
    transform: translate(170px, 100px);
}

.slick-dots {
    bottom: -55px;
}

.slick-slide {
    margin-right: 5px;
}

.faq_sec_main {
    background: var(--white);
    position: relative;
    background-repeat: no-repeat;
}

#accordion .card-header h5 button.collapsed i.fa-minus:before {
    content: "\f067";
    top: 4px;
    position: relative;
    color: var(--white);
}

.faq_sec_main .card-header {
    background: var(--blue);
    border: 0;
    border-radius: 5px;
    padding: 5px 10px;
    transition: 0.5s ease-in-out;
}

.faq_sec_main .card {
    margin-bottom: 10px !important;
}

.faq_sec_main .card h5 button {
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    font-family: nunito sans;
    text-decoration: none;
    white-space: unset;
}

.faq_sec_main .row {
    align-items: center;
}

.work_right {
    position: relative;
    left: -90px;
}

.faq_sec_main:before {
    content: '';
    position: absolute;
    background: url(../images/work-vector-img.webp);
    width: 640px;
    height: 630px;
    right: -160px;
    background-repeat: no-repeat;
    opacity: 0.5;
    top: 180px;
    background-size: 80%;
}

.card-body {
    font-size: 16px;
    line-height: 25px;
    color: var(--gray);
}

/*Faq Section End*/


/*Review Section Begin*/

.review_content {
    text-align: center;
}

.review_sec_main .row {
    align-items: center;
}

.review_book img {
    width: 100%;
}

.review_content p {
    font-size: 19px;
    line-height: 32px;
    margin-bottom: 0;
    font-family: 'Times New Roman Cyr';
    font-style: italic;
    color: var(--light_black);
    width: 90%;
    margin: 0 auto;
}

.review_sec_main {
    padding: 70px 0;
}

.review_content img {
    border-radius: 50%;
    object-fit: cover;
    width: 132px;
    margin: 0 auto 10px;
}

.rating_star ul li {
    display: inline-block;
    font-size: 25px;
    padding: 0 5px;
    color: #ffc600;
}

.rating_star {
    padding: 15px 0 10px;
}

.review_sec_main .slick-prev {
    right: auto;
    left: -100px;
}

.review_sec_main .slick-next {
    right: -100px;
}

.review_sec_main .slick-next,
.review_sec_main .slick-prev {
    top: 60%;
    width: 55px;
    height: 55px;
    background: var(--blue);
}

.review_sec_main .slick-prev:before {
    content: "\f104";
    font-family: 'FontAwesome';
}


.review_sec_main .slick-next:before,
.review_sec_main .slick-prev:before {
    font-size: 40px;
    line-height: 1;
    opacity: 1;
}

.review_sec_main .slick-next:before {
    content: "\f105";
    font-family: 'FontAwesome';
}

/*Review Section End*/

/*Main Category Section Begin*/

.main_services_sec .web_head_Content:before {
    transform: translate(170px, 70px);
}

.category_box_tab img {
    width: 195px;
    height: 200px;
    border-radius: 15px;
}

.category_box_tab {
    position: relative;
}

.category_overlay {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 55%);
    border-radius: 16px;
    text-align: center;
}

.main_category_sec ul li {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.category_overlay a span {
    font-size: 21px;
    color: var(--white);
}

.category_overlay a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_category_sec ul li {
    display: flex;
    justify-content: center;
    flex: 0 1 10%;
    margin-bottom: 20px;
}

.main_category_sec ul {
    display: flex;
    flex-wrap: wrap;
}

.main_category_sec {
    padding-top: 50px;
}

/*Main Category Section End*/

/*Footer Section Begin*/

footer {
    background: var(--blue);
    padding: 80px 0;
    position: relative;
}

/*footer:before {
    content: '';
    background: url(../images/portfolio-bg.jpg);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}*/

.logo_footer_sec img {
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.footer__info__detail ul li span img {
    filter: brightness(0) invert(1);
}

.logo_footer_sec p {
    font-size: 17px;
    line-height: 30px;
    color: var(--white);
    font-weight: 300;
}

.social_media_footer ul li a {
    background: var(--white);
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.social_media_footer ul li {
    display: inline-block;
    margin: 0 15px 0 0;
}

.social_media_footer {
    padding-top: 20px;
    display: inline-block;
}

.social_media_footer ul li a:hover {
    background: var(--red);
    color: var(--white);
}

.heading_footer h3 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 30px;
    display: inline-block;
}

.footer_menu_sec ul li a {
    color: var(--white);
    font-size: 15px;
    padding-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-left: 25px;
    font-weight: 600;
}

.footer_menu_sec ul li a:after {
    content: '';
    position: absolute;
    border: 2px solid var(--white);
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50px;
}

.copy__right {
    /* background: var(--red); */
    background: #090909;
    padding: 15px 0;
}

.copy_text p {
    color: var(--white);
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
}

.term_links ul li {
    display: inline-block;
    padding: 0 0 0 25px;
}

.term_links {
    text-align: right;
}

.term_links ul li a {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
}

.badge_logo ul li img {
    width: auto;
    filter: unset;
    margin-bottom: 0;
}

.badge_logo ul li {
    display: inline-block;
    padding: 0 20px 0 0;
}

.badge_logo ul {
    display: flex;
    align-items: center;
}

.badge_logo ul li a {
    display: inline-block;
}

.footer__info__detail ul li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 30px;
}

.footer__info__detail ul li a {
    font-size: 17px;
    color: var(--white);
    font-weight: 500;
}

.footer__info__detail ul li span {
    position: absolute;
    left: 0;
}

.footer__info__detail ul li p {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    line-height: 22px;
}

.footer__info__detail ul li a:hover {
    color: var(--red);
}

.footer_menu_sec ul li a:hover {
    color: var(--red);
}

.term_links ul li a:hover {
    color: var(--blue);
}

/*Footer Section End*/


/*Inner Pages Begin*/

.inner_banner .banner_content ul li {
    color: var(--white);
    font-size: 17px;
    flex: 0 1 50%;
    padding-bottom: 13px;
    position: relative;
    padding: 0 0px 17px 14px;
}

.inner_banner .banner_content ul li span:before {
    content: "\f105";
    font-family: 'FontAwesome';
    font-size: 25px;
    top: 0;
}

.inner_banner .banner_content ul li span {
    position: absolute;
    left: 0;
    top: -1px;
}

.inner_banner .banner_content ul li span img {
    height: auto;
    width: auto;
    position: relative;
    top: 0;
    display: none;
}

/*Ebook Writing Page Begin*/

.ebook_sec2 {
    background: var(--white) url(../images/ebook-writing-bg2.jpg);
    background-repeat: no-repeat;
}

.inner_faq {
    background: var(--white) url(../images/faq_banner.jpg);
    background-repeat: no-repeat;
    padding: 80px 0 220px;
}

.inner_faq .web_head_Content p {
    color: var(--black);
}

.inner_faq_accordion {
    padding-top: 120px;
}

.ebook_sec_con {
    padding: 60px 0;
    background: var(--light_gray);
}

.ghostwriting_sec_main .row {
    align-items: center;
}

.ebook_rightS1 {
    /* position: absolute; */
    top: -158px;
    width: 100%;
}

.how_work_sec p.scroll-block {
    max-height: 130px;
}

.inner_review {
    background: var(--light_gray);
    padding: 110px 0 160px;
    position: relative;
}


.wrap_form {
    margin-left: 120px;
    position: relative;
    z-index: 1;
    top: 40px;
    min-width: 360px;
    right: 0;
}

.showform .top_banner_heading {
    border-radius: 0;
}

.top_banner_heading {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 25px 15px 15px;
    text-align: left;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: space-between;
}

.top_banner_heading h3:first-child {
    font-size: 30px;
    font-family: nunito sans;
    margin-bottom: 0;
}

.top_banner_heading h3 {
    font-size: 15px;
    font-family: nunito sans;
}

.top_banner_heading a {
    display: inline-flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-left: 10px;
    text-decoration: none;
    background-color: #cb2236;
    flex: 0 0 20%;
    min-height: 50px;
}

.showform .form-box-new {
    top: 0;
}

.form-box-new {
    position: relative;
    top: -570px;
    transition: all .6s ease-in-out;
}

.form-middle {
    background-color: var(--red);
    color: #fff;
    padding: 20px 0 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.form-middle h3 {
    font-size: 19px;
    text-align: center;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    font-weight: 600;
    font-family: nunito sans;
}

.form-middle h3 span {
    font-weight: bold;
}

.form-lower {
    padding-left: 22px;
    padding-right: 22px;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-top: 32px;
    padding-bottom: 36px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 37%);
}

.banner-form-inner .form-group i {
    position: absolute;
    left: 18px;
    top: 25px;
    z-index: 1;
    transform: translateY(-50%);
    font-size: 16px;
    color: #0085a0;
}

.banner-form-inner .form-group .form-control {
    position: relative;
    border-radius: 5px;
    height: 50px !important;
    color: #000 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0 10px 40px;
    outline: 0;
    box-shadow: none;
    background-color: #ececec;
    border: 0;
    border-radius: 50px;
}

.banner-form-inner .form-group {
    position: relative;
    margin-bottom: 10px;
}

.form-upper {
    background-color: var(--blue);
    color: #fff;
    text-align: left;
    padding-left: 22px;
    padding-right: 22px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: none;
}

.inner_banner .carousel-item img {
    height: 630px;
}

.showform .form-box-new {
    top: 0;
}

.intl-tel-input {
    position: relative;
    display: inline-block;
    width: 100%;
}

.btn_banner input {
    background: var(--blue);
    color: var(--white);
    padding: 12px 30px;
    display: inline-block;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 0 0 0 rgb(0 67 165 / 36%), 0 0 0 0 rgb(0 67 165 / 36%);
    -webkit-animation: pulse-icon-color-main 1.5s infinite;
    border: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.btn_banner {
    text-align: center;
    padding-top: 10px;
}

.btn_banner input:hover {
    background: var(--light_black);
}

.inner_banner .carousel-caption:before {
    background-size: 100%;
    width: 100%;
    height: 100%;
}

.inner_platform .web_head_Content:before {
    transform: translate(170px, 90px);
}

.publishing_sec .web_content_sec ul {
    display: flex;
    flex-wrap: wrap;
}

.publishing_sec .web_content_sec ul li {
    flex: 0 1 50%;
    padding: 5px 0 20px 40px;
    position: relative;
    font-size: 15px;
}

.publishing_sec .banner_btn ul li:before {
    display: none;
}

.publishing_sec .web_content_sec .banner_btn ul li {
    flex: unset !important;
}

.publishing_sec .web_content_sec ul li:before {
    content: '';
    position: absolute;
    background: url(../images/banner_icon.png);
    width: 27px;
    height: 32px;
    top: 0;
    background-size: 100%;
    left: 0;
}


.intl-tel-input .country-list .country {
    padding: 5px 10px;
    color: #333;
}

.intl-tel-input.separate-dial-code .selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
    display: table;
    height: 48px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


/*Ebook Writing Page End*/

/*Inner Pages End*/

/*Noval Page Begin*/

.novel_bg1 {
    background: var(--light_gray) url(../images/novel-bg1.jpg);
    background-position: right;
    background-repeat: no-repeat;
    padding: 150px 0;
}

.noval_bg2 {
    background: var(--white) url(../images/novel-bg2.jpg);
    background-repeat: no-repeat;
}

.seo_bg2 {
    background: var(--white) url(../images/seo_bg_img1.jpg);
    background-repeat: no-repeat;
}

.seo_right {
    position: relative;
    right: 0;
}

.children_bg2 {
    background: var(--white) url(../images/children_bg01.jpg);
    background-repeat: no-repeat;
}

.adventure_bg2 {
    background: var(--white) url(../images/adventure_bg01.jpg);
    background-repeat: no-repeat;
}

.fantasy_bg2 {
    background: var(--white) url(../images/fantacy_bg01.jpg);
    background-repeat: no-repeat;
}

.amazon_bg2 {
    background: var(--white) url(../images/amazon_bg01.jpg);
    background-repeat: no-repeat;
}

.marketing_bg2 {
    background: var(--white) url(../images/marketing_bg01.jpg);
    background-repeat: no-repeat;
}

.editing_bg2 {
    background: var(--white) url(../images/editing_bg01.jpg);
    background-repeat: no-repeat;
}

.formating_bg2 {
    background: var(--white) url(../images/formating_bg2.jpg);
    background-repeat: no-repeat;
}

.proofreading_bg2 {
    background: var(--white) url(../images/book_proofreadingbg01.jpg);
    background-repeat: no-repeat;
}

.publish_bg2 {
    background: var(--white) url(../images/publish_bg01.jpg);
    background-repeat: no-repeat;
}

body .uwy.userway_p1 .uai {
    top: 55% !important;
}

/*Noval Page End*/


.contact_banner .carousel-caption {
    align-items: center;
}

.contact_banner .carousel-item img {
    height: 500px;
    object-fit: cover;
}

.contact_banner .carousel-caption:before {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Contact Us Section Begin*/

.contact_sec_main {
    background: #fff;
    padding: 70px 0;
}

.contact-form input {
    height: 55px;
    margin-bottom: 10px;
    border-radius: 50px;
    border: 1px solid #ccc;
    padding: 10px 20px;
}

.contact-form select {
    width: 100%;
    height: 55px;
    border-radius: 50px;
    border: 1px solid #ccc;
    padding: 10px 10px;
    color: #757575;
}

.contact-form textarea {
    height: 180px;
    border-radius: 10px;
    font-size: 15px;
    padding: 20px 15px;
    resize: none;
    margin-bottom: 20px;
}

.contact_sec_main .web_content_sec h3 {
    font-weight: 500;
    font-family: nunito sans;
}

.contact_sec_main .web_content_sec h2 {
    font-size: 37px;
    font-weight: bold;
    color: var(--blue);
}

.contact-form input#styled-checkbox-1 {
    height: auto;
}

.contact-form .btn_form {
    padding-top: 20px;
}

.contact-form .btn_form input {
    background: var(--blue);
    box-shadow: 0 0 0 0 rgb(0 133 160), 0 0 0 0 rgb(0 133 160);
    height: auto;
    padding: 20px 0;
    font-size: 20px;
    border: 0;
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

.contact-form .btn_form input:hover {
    background: var(--light_black);
}

/*Contact Us Section End*/


/*Thank You CSS Begin*/

.main-thankyou-sec h1 {
    color: var(--black);
    font-size: 59px;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-thankyou-sec p.subtitle {
    color: var(--black);
    line-height: 1.4;
    font-size: 21px;
    font-weight: 300;
    padding: 5px 0 30px 0;
}

.main-thankyou-sec {
    background-size: cover;
}

/*Thank You CSS End*/


/*Amazon Portfolio Section Begin*/

.book_port_img img {
    width: 100%;
}

.book_port_img {
    margin-bottom: 20px;
    position: relative;
    margin-top: 30px;
}

.amazon_port .col-sm-3:nth-child(even) .portfct:before {
    content: "";
    height: 135px;
    width: 100%;
    background: var(--blue);
    left: -15px;
    position: absolute;
    bottom: 0;
    z-index: -1;
    top: -15px;
}

.amazon_port .col-sm-3:nth-child(odd) .portfct:before {
    content: "";
    height: 135px;
    width: 100%;
    background: #333;
    left: -15px;
    position: absolute;
    bottom: -74px;
    z-index: -1;
}

.amazon_book_port .web_head_Content:before {
    transform: translate(172px, 80px);
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    color: #333;
    padding-left: 25px;
}

/*Amazon Portfolio Section End*/


/*BEGIN: BOOKING SECTION*/

.book-section {
    background: var(--white);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover !important;
    background: url(../images/404.png);
    position: relative;
    overflow: hidden;
}

.book-section:before {
    content: '';
    position: absolute;
    background: unset;
    width: 100%;
    height: 100%;
    top: 0;
}

.book-section:after {
    content: '';
    background: unset;
    position: absolute;
    bottom: -29px;
    width: 100%;
    height: 320px;
    z-index: 9;
    transform: rotate(-180deg);
}

.book-ss figure,
.book-ss1 figure,
.book-ss2 figure {
    padding: 0;
    border: 1px solid #ccc;
    margin: 10px;
    position: relative;
}

.overlay_video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgb(0 0 0 / 53%);
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 85px;
    color: #fff;
}

.book-shelf {
    position: relative;
}

.nav-tabs .nav-link.active,
.nav-tabs {
    border: 0;
    position: relative;
    z-index: 999;
}

.book-section .tab-content>.tab-pane {
    display: block;
    height: 0px;
    overflow: hidden;
}

.book-section .tab-content>.active {
    height: auto;
}


.book-shelf:after {
    content: '',
        background: red;
    position: absolute;
    height: 200px width:300px;
    top: 0;

    z-index: 99;
}

.nav-tabs .nav-link {
    font-size: 15px;
    color: var(--black);
    border-radius: 5px;
    box-shadow: 0px 0px 5px #0085a0;
    margin: 6px;
    padding: 10px 25px;
    border: 0;
    background: rgb(255 255 255 / 0%);
    font-weight: 600;
}

.book-section .nav-tabs .nav-link.active,
.book-section .nav-tabs .nav-link:hover {
    background: var(--blue);
    color: var(--white);
}

.book-section nav {
    margin-bottom: 25px;
}

.book-section #nav-tabContent:after {
    content: '';
    position: absolute;
    height: 95px;
    width: 1275px;
    background: url(../images/404.png) no-repeat;
    bottom: -13px;
    left: -75px;
    z-index: 99;
}

.slick-dots {
    bottom: -29px;
    z-index: 99999;
}

.book-section #nav-tabContent {
    position: relative;
    padding-bottom: 15px !important;
    z-index: 999;
}

.book-section .web_content_sec h2 {
    color: var(--black) !important;
}

.book-section .web_content_sec p {
    color: var(--black) !important;
}

.web_content_sec {
    padding-bottom: 20px;
    position: relative;
    z-index: 999;
}

.slick-dots li button:before {
    font-size: 67px;
    opacity: 0.50;
    color: #cb2236;
}

.slick-dots li.slick-active button:before {
    color: #cb2236;
    opacity: 1;
}

.slick-slide {
    margin-right: 0;
}

.process-box figure img {
    width: auto;
}

.offer_sec {
    background: #ffffff url(../images/404.png);
    background-size: cover;
    background-attachment: fixed;
}

.offer_sec:before {
    content: '';
    position: absolute;
    /* background: rgb(0 0 0 / 65%); */
    top: 0;
    height: 100%;
    width: 100%;
}

.services_sec_main.offer_sec:before {
    content: '';
    /* background: linear-gradient( 
1deg, rgba(0,0,0,1) 000%, rgb(0 0 0 / 0%) 40%); */
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

/*END: BOOKING SECTION*/


.term__content__tab p {
    font-size: 17px;
    line-height: 30px;
    color: var(--gray);
}

.term__content__tab {
    padding-bottom: 20px;
}

.term__content__tab h4 {
    font-size: 33px;
    color: var(--light_black);
    font-weight: bold;
}

.term__content__tab ul li {
    font-size: 17px;
    line-height: 30px;
    color: var(--gray);
    list-style-type: disc;
}

.term__content__tab ul {
    padding: 0 20px;
}


/*Responsive Begin*/

@media (max-width: 1600px) {

    .banner__content__sec {
        padding-top: 70px;
    }


    .banner__content__sec h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .banner__content__sec p {
        font-size: 17px;
        line-height: 28px;
    }

    .platform__logo__sec {
        margin-top: -170px;
    }

    .banner___sec__main video {
        width: 100%;
        height: 98vh;
        object-fit: cover;
    }

    .banner__form__tab textarea {
        height: 90px;
    }

    .banner__form__tab input {
        height: 45px;
    }

    .banner_content h1 {
        font-size: 33px;
    }


    .banner_content p {
        font-size: 17px;
        line-height: 27px;
    }

    .banner_right_img img {
        width: 630px !important;
    }

    .banner_content {
        padding-top: 70px;
    }

    section.banner_form_main {
        margin-top: -180px;
    }

    .media_platform_sec:before {
        top: -89px;
        right: 40px;
        width: 180px;
    }

    .services_sec_main:before {
        width: 280px;
        height: 400px;
        background-size: 100%;
    }

    .services_sec_main:after {
        bottom: -120px;
        background-size: 100%;
        width: 280px;
        height: 300px;
    }

    .category_overlay a span {
        font-size: 19px;
        color: var(--white);
    }

    .category_box_tab img {
        height: 150px;
    }

    .faq_sec_main {
        overflow: hidden;
    }

    .top_bar_sec ul li {
        font-size: 15px;
    }

    .carousel-caption:before {
        width: 100%;
        height: 830px;
        bottom: auto;
        background-size: 100%;
        top: 0;
    }

    .footer_menu ul li a {
        font-size: 15px;
    }

    .ftr-links-wrap h3 {
        font-size: 20px;
    }

    .copy_right_links ul li a {
        font-size: 16px;
    }

    .review_content p {
        font-size: 18px;
        line-height: 35px;
    }

    .faq_sec_main .card h5 button {
        font-size: 16px;
    }

    .seller_right_img {
        right: -30px;
    }

    .banner_Sec_main.inner_banner .banner_content {
        padding-top: 90px;
    }

    .seller_right_img img {
        width: 620px;
    }

}

@media (max-width: 1500px) {

    .media_left_img img {
        width: 630px;
        left: -120px;
    }

    .seller_right_img img {
        width: 540px;
    }


    .seller_right_img {
        right: 0px;
    }

    .form-upper {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .form-middle {
        padding: 11px 0;
    }

    .form-lower {
        padding-top: 13px;
    }

    .media_platform_sec:before {
        top: -89px;
        right: 20px;
    }

}

@media (max-width: 1440px) {

    .web_head_Content h2,
    .web_head_Content h4 {
        font-size: 40px;
        width: 80%;
        margin: 0 auto;
    }

    .banner_Sec_main .carousel-item img {
        height: 621px;
    }

    .banner_Sec_main .banner_right_img img {
        height: auto;
    }

    .ghostwriting_sec_main {
        background-size: 100%;
        background-position: 100%;
    }

    .web_content_sec h2 {
        font-size: 39px;
    }

    .web_content_sec p {
        font-size: 15px;
    }

    .services_sec_main:after {
        bottom: -200px;
    }

    .services_sec_main:before {
        top: 20px;
    }

    .category_overlay a span {
        font-size: 16px;
    }

    .best_selling_sec .web_content_sec h2 {
        font-size: 32px;
    }

    .best_selling_sec {
        background-position: -130px -10px;
        background-size: cover;
    }

    .seller_right_img img {
        width: 490px;
    }

    .ftr-links-wrap {
        padding: 0 60px;
    }

    .footer_loc p {
        font-size: 15px;
    }

    .banner_content h1 {
        line-height: 41px;
    }

    .banner_right_img {
        top: -150px;
    }

    .banner_content {
        padding-top: 110px;
    }

    .banner_content {
        padding-top: 110px;
    }

    .top_banner_heading h3:first-child {
        font-size: 27px;
    }

    .top_banner_heading h3 {
        font-size: 14px;
    }

    .best_selling_sec.ebook_sec2 {
        background: var(--white) url(../images/ebook-writing-bg2.jpg);
        background-repeat: no-repeat;
        background-size: 60%;
        padding: 120px 0 140px;
    }

    .best_selling_sec .scroll-block {
        min-height: 385px;
        padding-right: 35px;
    }

    .best_selling_sec:before {
        width: 317px;
        height: 340px;
    }

    .publishing_sec .web_content_sec h2 {
        font-size: 33px;
    }

    .work_right {
        position: relative;
        left: -50px;
    }


    .inner_review {
        padding: 40px 0 110px;
    }

    .faq_sec_main .web_head_Content:before {
        bottom: 0;
        transform: translate(170px, 120px);
    }

    .main_services_sec .web_head_Content:before {
        transform: translate(170px, 100px);
    }

    .banner_Sec_main.inner_banner .banner_content {
        padding-top: 120px;
    }

    .media_platform_sec .web_head_Content h2,
    .media_platform_sec .web_head_Content h4 {
        width: 100%;
    }

    .media_platform_sec .web_head_Content:before {
        transform: translate(-40px, -90px);
    }

}

@media (max-width: 1300px) {

    .media_left_img img {
        width: 590px;
        left: -60px;
    }

    .review_sec_main .slick-prev {
        right: auto;
        left: -70px;
    }

    .review_sec_main .slick-next {
        right: -60px;
    }

}


@media (max-width: 1200px) {

    .banner_content h1 {
        line-height: 34px;
        width: 100%;
        font-size: 27px;
    }

    .banner_right_img {
        right: 50px;
    }

    .banner_right_img img {
        width: 530px !important;
    }

    section.banner_form_main {
        margin-top: -160px;
    }

    .media_platform_sec:before {
        top: -23px;
        right: 40px;
        width: 160px;
    }

    .main_menu_sec ul li a {
        font-size: 14px;
        padding: 12px 5px !important;
    }

    .banner_content p {
        font-size: 16px;
        line-height: 27px;
    }

    .banner_btn ul li a {
        padding: 13px 40px;
        font-size: 15px;
    }

    .web_head_Content h2,
    .web_head_Content h4 {
        font-size: 32px;
        width: 60%;
        margin: 0 auto;
    }

    .web_content_sec h2 {
        font-size: 30px;
    }

    .seller_right_img img {
        width: 390px;
    }

    .work_right img {
        width: 100%;
    }

    .work_right {
        left: -0px;
    }

    .review_sec_main .slick-next {
        right: -10px;
    }

    .review_sec_main .slick-prev {
        left: -10px;
    }

    .review_sec_main .slick-next,
    .review_sec_main .slick-prev {
        width: 45px;
        height: 45px;
    }

    .review_sec_main .slick-next:before,
    .review_sec_main .slick-prev:before {
        font-size: 30px;
    }

    .ftr-links-wrap {
        padding: 0 30px;
    }

    .ftr-links-wrap h3 {
        font-size: 16px;
    }

    .best_selling_sec {
        background-position: -110px 10px;
        background-size: 123%;
        padding: 120px 0 140px;
    }

    .best_selling_sec .web_content_sec h2 {
        font-size: 29px;
    }

    .best_selling_sec:before {
        width: 277px;
        height: 310px;
        background-size: 100%;
        bottom: -40px;
        opacity: 0.2;
    }

    .best_selling_sec .scroll-block {
        min-height: 320px;
        padding-right: 35px;
    }

    .inner_banner .banner_content ul li {
        font-size: 15px;
    }

    .inner_platform .web_head_Content:before {
        transform: translate(230px, 110px);
        background-size: 80%;
        background-repeat: no-repeat;
    }

    .services_head h3 {
        font-size: 19px;
    }

    .how_work_sec .web_head_Content:before {
        bottom: 0;
        transform: translate(220px, 130px);
        background-size: 80%;
        background-repeat: no-repeat;
    }

    .choose_content_sec h2 {
        font-size: 40px;
    }

    .reason-box-cont h3 {
        font-size: 20px;
    }

    .form_content_sec h2 {
        font-size: 22px;
        line-height: 25px;
    }

    .form_content_sec {
        margin-bottom: 30px;
    }

    .review_content p {
        font-size: 21px;
        line-height: 35px;
        width: 90%;
        margin: 0 auto;
    }

    .review_sec_main {
        padding: 30px 0 80px;
    }

    .ebook_rightS1 img {
        width: 100%;
    }

    .best_selling_sec.ebook_sec2 {
        background-size: 62%;
    }

    .faq_sec_main .row {
        align-items: center;
        position: relative;
        z-index: 99;
    }

    .inner_faq:after {
        content: '';
        position: absolute;
        background: rgb(255 255 255 / 49%);
        width: 100%;
        height: 100%;
        top: 0;
        z-index: 9;
    }

    .navbar-nav li:hover>ul.dropdown-menu {
        min-width: 13rem;
    }

}

@media (max-width: 1100px) {

    .media_left_img img {
        width: 500px;
        left: -60px;
    }

    .media_platform_sec:before {
        top: -83px;
    }

    .ghostwriting_sec_main {
        background-size: 106%;
        background-position: 100%;
    }

}

@media (max-width: 1024px) {

    .main_menu_sec ul li a {
        font-size: 12px;
        padding: 12px 6px !important;
    }

    .main_menu_sec {
        padding-top: 5px;
    }

    .banner_content h1 {
        line-height: 31px;
        width: 90%;
        font-size: 26px;
        margin-bottom: 0;
    }

    .banner_right_img img {
        width: 470px !important;
    }

    .banner_right_img {
        right: 0;
    }

    .banner_content p {
        font-size: 16px;
        line-height: 25px;
    }

    .banner_Sec_main .carousel-item img {
        height: 570px;
        object-fit: cover;
    }

    .banner_Sec_main .banner_right_img img {
        height: auto !important;
    }

    .banner_right_img {
        top: -110px;
    }

    .banner_content {
        padding-top: 80px;
    }

    .web_head_Content h2,
    .web_head_Content h4 {
        font-size: 27px;
    }

    .web_head_Content:before {
        transform: translate(28%, 10px);
        background-repeat: no-repeat;
        background-size: 80%;
    }

    .web_head_Content p {
        font-size: 16px;
    }

    .web_content_sec h2 {
        font-size: 25px;
    }

    .ghostwriting_sec_main {
        background-size: cover;
        background-position: 64%;
    }

    .services_sec_main .web_head_Content:before {
        transform: translate(160px, 140px);
    }

    .services_sec_main:before {
        display: none;
    }

    .services_content p {
        color: var(--gray);
        font-size: 14px;
        line-height: 24px;
    }

    .work_box_sec p {
        font-size: 15px;
        line-height: 23px;
    }

    .work_box_sec {
        min-height: 290px;
    }

    .work_box_sec span {
        font-size: 54px;
    }

    .work_box_sec h2 {
        font-size: 18px;
    }

    .best_selling_sec .web_content_sec h2 {
        font-size: 24px;
    }

    .form_content_sec h2 {
        font-size: 19px;
        line-height: 25px;
    }

    .form_content_sec h4 {
        font-size: 18px;
    }

    .reason-box-cont h3 {
        font-size: 17px;
    }

    .reason-box-cont p {
        font-size: 14px;
    }

    .publishing_sec .web_content_sec h2 {
        font-size: 25px;
    }

    .seller_right_img {
        right: 0;
    }

    .faq_sec_main .card h5 button {
        font-size: 14px;
    }

    .card-body {
        font-size: 15px;
        line-height: 20px;
    }

    .review_content p {
        font-size: 16px;
        line-height: 29px;
    }

    .ftr-links-wrap h3 {
        font-size: 12px;
    }

    .footer_menu ul li a {
        font-size: 11px;
        padding-bottom: 5px;
    }

    .footer_loc p {
        font-size: 13px;
    }

    .copy_right_links ul li a {
        font-size: 13px;
    }

    .wrap_form {
        margin-left: 60px;
    }

    .ebook_sec_con {
        padding: 100px 0;
    }

    .ebook_rightS1 {
        top: -78px;
    }

    .main_services_sec .web_head_Content:before {
        transform: translate(170px, 130px);
    }

    .how_work_sec .work_box_sec {
        min-height: 200px;
    }

    .how_work_sec p.scroll-block {
        max-height: 140px;
    }

    .best_selling_sec.ebook_sec2 {
        padding: 80px 0 50px;
        background-position: -40px 0;
    }

    .faq_sec_main {
        background-position: 100%;
    }

    .media_left_img img {
        width: 460px;
        left: -20px;
    }

}


@media (max-width: 992px) {

    .web_head_Content:before {
        transform: translate(27%, 50px);
        background-repeat: no-repeat;
        background-size: 80%;
        display: none;
    }




    .how_work_sec .work_box_sec {
        min-height: 290px;
    }

    .best_selling_sec {
        padding: 70px 0 90px;
        background-position: -80px -10px;
    }

    .ftr-links-wrap {
        padding: 0 10px;
    }

    .category_box_tab img {
        height: 130px;
    }

    .best_selling_sec.ebook_sec2 {
        padding: 80px 0;
    }

    .faq_sec_main:before {
        display: none;
    }

    .review_sec_main .slick-prev {
        left: 0;
    }

    .review_sec_main .slick-next {
        right: 0;
    }

    .best_selling_sec .scroll-block {
        min-height: 335px;
    }

    .best_selling_sec.ebook_sec2 {
        padding: 80px 0 50px;
        background-position: -36px 0;
        background-size: 65%;
    }

    .inner_banner .banner_content ul li {
        font-size: 13px;
        font-weight: bold;
        padding: 0 0px 25px 35px;
    }

    section.banner_form_main {
        margin-top: -160px;
        position: relative;
        top: -20px;
    }

    .media_platform_sec:before {
        top: -83px;
        right: 40px;
        width: 160px;
        opacity: 0.3;
    }

    .category_overlay a span {
        font-size: 16px;
        line-height: 18px;
    }

    .banner__form__tab h3 {
        font-size: 20px;
    }

    .banner__content__sec h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .logo_footer_sec p {
        font-size: 15px;
        line-height: 27px;
    }

    .heading_footer h3 {
        font-size: 33px;
    }

    .footer_menu_sec ul li a {
        font-size: 14px;
        padding-bottom: 11px;
    }

    .copy_text p {
        font-size: 15px;
    }

    .term_links ul li a {
        font-size: 15px;
    }

    .banner__form__tab h3 {
        font-size: 20px;
    }

    .logo_footer_sec img {
        width: 90%;
    }

    .banner__content__sec p {
        font-size: 16px;
        line-height: 25px;
    }


}

@media (max-width: 768px) {

    .header_btn_wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header_btn_wrapper a.header_btnn_2 {
        margin-left: 10px;
    }

    .header_btn_wrapper.float-right {
        float: none !important;
    }

    .header_btn_wrapper a, .banner_btn ul li a {
        padding: 10px 20px;
        font-size: 14px;
    }

    .pop-form{
        background: #000;
        background-image: none;
    }

    .pop-form .submit-btn {
        font-size: 18px;
        padding: 8px 0px;
    }

    .pop-form .close-btn {
        top: 0px;
        right: 0px;
        font-size: 18px;
    }
    
    .logo_Sec_main a {
        display: block;
        position: relative;
        top: 0;
        z-index: 99;
        text-align: center;
    }

    .logo_Sec_main {
        display: inline-block;
    }

    .logo_Sec_main a img {
        width: 70%;
    }

    .main_menu_sec {
        display: block;
    }

    .banner_content h1 {
        line-height: 37px;
        width: 100%;
        font-size: 27px;
        margin-bottom: 0;
    }

    .banner_content p {
        font-size: 16px;
        line-height: 28px;
    }

    .banner_btn ul li a {
        padding: 10px 21px;
        font-size: 13px;
    }

    .banner_btn ul li {
        padding: 0 15px 0 0 !important;
    }

    .banner_right_img img {
        width: 390px !important;
    }

    .banner_right_img {
        width: 374px;
    }

    .banner_form {
        padding: 20px 25px;
    }

    .banner_form .col-sm-3 {
        padding: 0 5px;
    }

    .web_head_Content h2,
    .web_head_Content h4 {
        font-size: 19px;
        width: 70%;
        line-height: 25px;
    }

    .media_platform_sec:before {
        display: none;
    }

    .web_head_Content:before {
        transform: translate(27%, 50px);
        background-repeat: no-repeat;
        background-size: 90%;
        width: 390px;
    }

    .wrap_form {
        display: none;
    }

    .carousel-caption .col-sm-7 {
        max-width: 100%;
        width: 100%;
        flex: 100%;
    }

    .web_head_Content p {
        font-size: 15px;
        line-height: 25px;
    }

    .web_content_sec h2 {
        font-size: 21px;
    }

    .ghostwriting_sec_main {
        background-size: cover;
        background-position: 57%;
    }

    .web_content_sec p {
        font-size: 15px;
        line-height: 21px;
    }

    .ghostwriting_sec_main {
        background-size: cover;
        background-position: 59%;
    }

    .web_content_sec {
        padding-top: 0;
    }

    .services_sec_main:after {
        display: none;
    }

    .main_services_sec .web_head_Content:before {
        transform: translate(90px, 150px);
    }

    .padding_70 {
        padding: 50px 0;
    }

    .how_work_sec .work_box_sec {
        min-height: 250px;
    }

    .best_selling_sec .web_content_sec h2 {
        font-size: 20px;
    }

    .best_selling_sec {
        padding: 40px 0 50px;
        background-position: -50px 20px;
    }

    .best_selling_sec:before {
        display: none;
    }

    .web_content_sec ul li {
        font-size: 14px;
        line-height: 19px;
    }

    .choose_content_sec h2 {
        font-size: 30px;
    }

    .reason-box-cont p {
        font-size: 13px;
    }

    .form_content_sec h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .form_content_sec h4 {
        font-size: 14px;
    }

    .publishing_sec .web_content_sec h2 {
        font-size: 21px;
    }

    .web_content_sec p {
        font-size: 14px;
        line-height: 21px;
    }

    .publishing_sec .web_content_sec {
        padding-left: 0px;
        padding-top: 10px;
    }

    .seller_right_img img {
        width: 100%;
    }

    .faq_sec_main .web_head_Content:before {
        bottom: 0;
        transform: translate(100px, 150px);
    }

    .faq_sec_main .card h5 button {
        font-size: 13px;
        padding: 9px 0;
    }

    .review_content p {
        font-size: 14px;
        line-height: 21px;
        font-style: italic;
        font-weight: 500;
    }

    .footer_menu ul li a {
        font-size: 13px;
    }

    .ftr-links-wrap h3 {
        font-size: 15px;
        min-height: 20px;
        font-weight: bold;
    }

    .copy_right_links ul li a {
        font-size: 11px;
        padding: 0 14px 0 0;
    }

    .copy_right_links ul li:after {
        height: 16px;
        right: 4px;
        top: 4px;
    }

    .copy_right {
        padding: 0px 0 0;
    }

    footer {
        padding: 40px 0 40px;
    }

    .review_sec_main .pt-5 {
        padding: 0 !important;
    }

    .review_sec_main .slick-next,
    .review_sec_main .slick-prev {
        width: 25px;
        height: 25px;
    }

    .pop-form {
        width: 100%;
        height: 60% !important;
        padding: 30px 0 0px 0px;
    }

    .popupform-main h2 {
        font-size: 16px;
        margin: 3px 0 0 0;
    }

    .popupform-main h4 {
        font-size: 18px;
        margin: 3px 0 0 0;
    }

    .popupform-main h3 {
        font-size: 18px;
        margin: 40px 0 0 0;
    }

    .review_sec_main .slick-next:before,
    .review_sec_main .slick-prev:before {
        font-size: 20px;
    }

    .choose_us_form {
        padding: 20px 20px;
        margin-top: 85px;
        margin-left: 20px;
    }

    .choose_us_form .btn_form input {
        border: 0;
        font-size: 17px;
    }

    .reason-box-cont h3 {
        font-size: 15px;
    }

    .choose_list_sec {
        margin-bottom: 25px;
    }

    .form_content_sec {
        margin-bottom: 20px;
    }

    .slick-dots {
        bottom: -45px;
    }

    .inner_platform .web_head_Content:before {
        transform: translate(130px, 170px);
        background-size: 80%;
        background-repeat: no-repeat;
    }

    .bg_noval_pos {
        background-position: -137px -20px;
        background-size: 68%;
    }

    .novel_bg1 {
        background-size: 60%;
        background-position: 101%;
    }


    .btn_form input {
        font-size: 15px;
    }

    .banner_content {
        padding-top: 50px;
    }

    .banner_Sec_main .carousel-item img {
        height: 440px;
    }

    .media_left_img img {
        width: 360px;
        left: -20px;
    }

    section.banner_form_main {
        margin-top: -140px;
    }

    .top_bar_sec ul li {
        font-size: 14px;
    }

    .inner_banner .banner_content h1 {
        font-size: 29px;
        line-height: initial;
    }

    .inner_banner .banner_content p {
        font-size: 17px;
        line-height: 27px;
    }

    .inner_banner .banner_content ul li {
        font-size: 15px;
    }

    .best_selling_sec.ebook_sec2 {
        padding: 40px 0 30px;
    }

    .best_selling_sec .web_content_sec {
        padding-left: 60px;
    }

    .best_selling_sec .scroll-block {
        min-height: 310px;
    }

    .inner_faq_accordion {
        padding-top: 30px;
    }

    .faq_sec_main {
        background-position: left;
        background-size: cover;
    }

    .how_work_sec .web_head_Content:before {
        bottom: 0;
        transform: translate(120px, 130px);
    }

    .review_content img {
        width: 100px;
    }

    .rating_star ul li {
        font-size: 20px;
        padding: 0 2px;
    }

    button.navbar-toggler {
        position: absolute;
        top: 0;
        right: 0;
        background: #0085a0;
    }


    .navbar-toggler-icon {
        background: url(../images/menu-icon.svg);
        background-size: 100% 100%;
        fill: #fff !important;
    }

    .main_menu_sec nav.navbar.navbar-expand-md {
        padding: 0px;
    }

    .main_menu_sec .navbar-collapse {
        background: #f8f8f8;
    }

    .dropdown-toggle::after {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        position: absolute;
        right: 10px;
        top: 18px;
        font-size: 25px;
    }

    .li.nav-item.dropdown.show ul.dropdown-menu.show {
        display: block;
    }


    footer .row .col-sm-5 {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 30px;
    }

    footer .row .col-sm-7 {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 50px;
    }

    .banner_Sec_main .carousel-caption .col-sm-6 {
        max-width: 100%;
        flex: 100%;
    }

    button.navbar-toggler {
        top: -60px;
    }

    .top_bar_sec {
        padding: 15px 0 0;
    }

    header {
        padding: 0px 0 0;
    }

    .banner___sec__main .col-sm-6 {
        max-width: 100%;
        flex: 100%;
    }

    .banner__form__tab {
        display: none;
    }

    .banner__content__sec {
        padding-top: 0;
        text-align: center;
    }

    header .col-sm-9 {
        max-width: 100%;
        flex: 100%;
    }

    header .col-sm-3 {
        max-width: 100%;
        flex: 100%;
    }

    header {
        padding: 20px 0 0;
    }

    .banner___sec__main video {
        height: 620px;
        object-fit: cover;
    }

    .banner__content__sec h1 {
        font-size: 29px;
        line-height: 35px;
    }

    .banner__content__sec p {
        font-size: 18px;
        line-height: 26px;
    }

    footer .col-sm-4 {
        max-width: 100%;
        flex: 100%;
    }

    .logo_footer_sec img {
        width: auto;
    }

    footer .col-sm-8.pl-5 {
        padding: 0 !important;
        margin-top: 20px;
    }

    footer .col-sm-8.pl-5 .row .col-sm-4 {
        max-width: 30%;
        flex: 30%;
    }

    footer .col-sm-8.pl-5 {
        padding: 0 !important;
        margin-top: 20px;
        max-width: 100%;
        flex: 100%;
    }

    .copy_text p {
        font-size: 12px;
    }

    .term_links ul li a {
        font-size: 13px;
    }

    .term_links ul li {
        padding: 0 0 0 12px;
    }

}

@media (max-width: 576px) {

    .banner_Sec_main .carousel-caption .col-sm-6 {
        width: 100%;
        flex: 100%;
        max-width: 100%;
    }

    .choose_content_sec h2 {
        font-size: 21px;
    }

    .logo_Sec_main a img {
        width: 50%;
    }

    .banner_right_img {
        display: none;
    }

    .banner_Sec_main .carousel-item img {
        height: 490px;
    }

    .banner_form .col-sm-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 10px;
    }

    section.banner_form_main {
        margin-top: -110px;
        top: 0;
    }

    .padding_70 {
        padding: 40px 0 50px;
    }

    .web_head_Content h2,
    .web_head_Content h4 {
        font-size: 26px;
        width: 100%;
    }

    .web_head_Content p {
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 0;
    }

    .ghostwriting_sec_main {
        background: var(--light_gray);
    }

    .ghostwriting_sec_main .col-sm-6 {
        max-width: 100%;
        flex: 100%;
    }

    .web_content_sec h2 {
        font-size: 20px;
    }

    .web_content_sec p {
        font-size: 16px;
        line-height: 25px;
    }

    .web_content_sec img {
        top: -10px;
    }

    .services_sec_main .web_head_Content:before {
        transform: translate(30px, 150px);
    }

    .services_content p {
        font-size: 16px;
        line-height: 25px;
    }

    .best_selling_sec .col-sm-7 {
        max-width: 100%;
        flex: 100%;
    }

    .best_selling_sec .scroll-block {
        min-height: 310px;
        padding-left: 0;
    }

    .best_selling_sec {
        background: var(--white);
    }

    .choose_us_form {
        display: none;
    }

    .why_choose_sec .col-sm-6 {
        max-width: 100%;
        flex: 100%;
    }

    .publishing_sec .col-sm-7 {
        max-width: 100%;
        flex: 100%;
    }

    .seller_right_img {
        display: none;
    }

    .faq_sec_main .col-sm-6 {
        flex: 100%;
        max-width: 100%;
    }

    .work_right {
        display: none;
    }

    .faq_sec_main .card h5 button {
        font-size: 16px;
        padding: 9px 0;
    }

    .faq_sec_main .my-5 {
        margin-bottom: 0 !important;
    }

    .publisher_img_right {
        display: none;
    }

    .publishing_sec .web_content_sec img {
        top: 0px;
        left: 40px;
    }

    .how_work_sec .web_head_Content:before {
        bottom: 0;
        transform: translate(60px, 140px);
    }

    footer .col-sm-5 {
        flex: 100%;
        max-width: 100%;
    }

    footer .col-sm-7 {
        flex: 100%;
        max-width: 100%;
    }

    footer .col-sm-7 .row .col-sm-3 br {
        display: none;
    }

    footer .col-sm-5 .row .col-sm-4 {
        max-width: 33%;
        flex: 0 0 33%;
    }


    footer .col-sm-5 .row .col-sm-3 {
        max-width: 70%;
        flex: 0 0 70%;
    }

    .footer_menu ul {
        margin-bottom: 30px;
    }

    .ftr-links-wrap h3 {
        min-height: auto;
    }

    .copy_right_links ul li a {
        font-size: 14px;
        padding: 0 14px 0 0;
    }

    .copy_right_links ul li:after {
        height: 16px;
        right: 4px;
        top: 2px;
    }

    .copy_right .row .col-sm-4 {
        max-width: 100%;
        flex: 100%;
        text-align: center;
    }

    .copy_right_links {
        padding-bottom: 15px;
    }


    .review_book {
        display: none;
    }

    .review_sec_main .col-sm-9 {
        max-width: 100%;
        flex: 100%;
    }

    .review_sec_main .slick-next,
    .review_sec_main .slick-prev {
        top: 60%;
    }

    .review_content p {
        font-size: 14px;
        line-height: 25px;
        font-style: unset;
    }

    .how_work_sec .work_box_sec {
        min-height: auto;
    }

    .banner_Sec_main.inner_banner .banner_content {
        padding-top: 20px;
    }

    .banner_Sec_main.inner_banner .carousel-item img {
        height: 530px;
    }

    .banner_Sec_main.inner_banner .carousel-item ul li img {
        width: auto;
        height: auto;
    }

    .banner_Sec_main.inner_banner .carousel-item .caousel-captioon {
        align-items: center;
    }

    .banner_Sec_main.inner_banner .carousel-caption {
        align-items: center;
    }

    .ebook_rightS1 {
        display: none;
    }

    .main_services_sec .web_head_Content:before {
        transform: translate(30px, 150px);
    }

    .how_work_sec .web_head_Content:before {
        bottom: 0;
        transform: translate(50px, 100px);
    }

    .inner_platform .web_head_Content:before {
        transform: translate(40px, 170px);
        background-size: 80%;
        background-repeat: no-repeat;
    }

    .best_selling_sec.ebook_sec2 {
        background-position: unset;
        background-size: 100%;
    }


    .best_selling_sec {
        background: var(--white) !important;
    }

    button.navbar-toggler {
        position: absolute;
        top: -50px;
    }

    .media_left_img {
        display: none;
    }

    .media_platform_sec .col-sm-6 {
        max-width: 100%;
        flex: 100%;
    }

    .best_selling_sec .banner_btn {
        padding-left: 0;
    }

    .top_bar_sec {
        display: none;
    }

    header {
        padding: 0px 0 20px;
        position: relative;
    }

    .banner___sec__main video {
        height: 560px;
        object-fit: cover;
    }

    .platform__logo__sec {
        margin-top: 0;
        padding: 40px 0;
    }

    .footer_menu_sec ul li a {
        font-size: 13px;
        padding-bottom: 15px;
        line-height: 19px;
    }

    .footer_menu_sec ul li a:after {
        width: 15px;
        height: 15px;
        top: 0px;
    }

    .footer__info__detail ul li p {
        font-size: 15px;
    }

    .footer__info__detail ul li a {
        font-size: 15px;
        color: var(--white);
        font-weight: 500;
    }

    .copy__right .col-sm-6 {
        max-width: 100%;
        flex: 100%;
        text-align: center;
    }

    .term_links {
        text-align: center;
    }

    .term_links ul li {
        padding: 0 15px 0 0px;
    }

    .heading_footer h3 {
        font-size: 30px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    section.banner___sec__main.term__banner video {
        height: 240px;
    }

    .term__banner .banner__content__sec {
        position: relative;
        top: 0;
    }

}

@media (max-width: 400px) {

    .faq_sec_main .web_head_Content:before {
        bottom: 0;
        transform: translate(-11px, 120px);
    }

    section.banner_form_main {
        margin-top: 0;
        top: 0;
    }

    header {
        padding: 0px 0 30px;
    }



    .banner_form .col-sm-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .web_head_Content:before {
        transform: translate(0%, -10px);
        background-repeat: no-repeat;
        background-size: 100%;
        width: 100%;
    }

    .main_services_sec .web_head_Content:before {
        transform: translate(0px, 150px);
    }

    .services_sec_main .web_head_Content:before {
        transform: translate(0px, 150px);
    }

    .how_work_sec .web_head_Content:before {
        bottom: 0;
        transform: translate(10px, 140px);
    }

    footer .col-sm-5 .row .col-sm-7 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    footer .col-sm-5 .row .col-sm-5 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .faq_sec_main .card h5 button {
        font-size: 15px;
        padding: 9px 0;
        word-break: unset;
        white-space: unset;
    }

    .logo_Sec_main img {
        width: 60%;
    }

    .top_bar_sec ul {
        text-align: center;
    }

    .inner_banner .banner_content h1 {
        font-size: 20px;
        line-height: 27px;
    }

    .inner_banner .banner_content p {
        font-size: 15px;
        line-height: 21px;
    }

    .inner_banner .banner_content ul li {
        flex: 0 1 100%;
        font-size: 14px;
        padding: 0 0px 10px 20px;
    }

    .inner_banner .banner_content ul li span {
        top: 3px;
    }

    .web_head_Content h2,
    .web_head_Content h4 {
        font-size: 22px;
        width: 100%;
        margin-bottom: 10px;
    }

    .web_head_Content p {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 0;
    }

    .category_overlay a span {
        font-size: 16px;
        line-height: 23px;
    }

    .best_selling_sec .scroll-block {
        min-height: auto;
        padding-left: 0;
        padding-right: 10px;
    }

    .inner_platform .web_head_Content:before {
        transform: translate(10px, 170px);
        background-size: 80%;
        background-repeat: no-repeat;
    }

    .banner_Sec_main.inner_banner .banner_content {
        padding-top: 0;
    }

    .web_head_Content:before {
        display: none;
    }

    .main_category_sec {
        padding-top: 20px;
    }

    .padding_70 {
        padding: 30px 0 30px;
    }

    .web_content_sec p {
        font-size: 15px;
        line-height: 25px;
    }

    .faq_sec_main .row.pt-5 {
        padding: 15px 0 !important;
    }

    button.navbar-toggler {
        position: absolute;
        top: -52px;
        z-index: 9999;
    }

    .main_menu_sec .navbar {
        padding: 0;
    }

    footer .col-sm-5 .row .col-sm-4 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .banner_content h1 {
        line-height: 28px;
        width: 100%;
        font-size: 20px;
        margin-bottom: 0;
    }

    .banner_content {
        padding-top: 65px;
    }

    .banner_content p {
        font-size: 15px;
        line-height: 25px;
    }

    .scroll-block {
        max-height: 233px;
    }

    .slick-dots {
        bottom: -20px;
    }

    .contact_banner .carousel-item img {
        height: 180px !important;
        object-fit: cover;
    }

    .term__content__tab h4 {
        font-size: 20px;
    }

    .term__content__tab p {
        font-size: 15px;
        line-height: 25px;
        color: var(--gray);
    }

    .term__content__tab ul li {
        font-size: 15px;
        line-height: 24px;
    }

    footer .col-sm-8.pl-5 {
        padding: 20px !important;
        margin-top: 20px;
        max-width: 100%;
        flex: 100%;
    }

    footer .col-sm-8.pl-5 .row .col-sm-4 {
        max-width: 50%;
        flex: 50%;
    }

    .banner__content__sec h1 {
        font-size: 20px;
        line-height: 26px;
    }

    .banner__content__sec p {
        font-size: 15px;
        line-height: 22px;
        font-weight: 600;
    }

    .banner___sec__main video {
        height: 490px;
        object-fit: cover;
    }

    .footer_menu_sec ul li a {
        font-size: 13px;
        padding-bottom: 9px;
        line-height: 19px;
        padding-left: 18px;
    }

    .logo_footer_sec img {
        width: 80%;
    }

    .footer_menu_sec ul li a:after {
        width: 13px;
        height: 13px;
        top: 2px;
    }

    header .col-sm-3 {
        max-width: 70%;
        flex: 100%;
    }

    .logo_Sec_main a img {
        width: 73%;
    }

}

/*Responsive End*/