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

:root {
    --theme-color: #003d7f;
    --white-color: #ffffff;
    --sub-theme-color: #00c7e2;
}

body {
    font-family: "Poppins", sans-serif;
}

.theme-heading {
    color: var(--theme-color);
    font-weight: 800;
    font-size: 36px;
}

.theme-heading span {
    color: var(--sub-theme-color);
}

.para {
    color: #414141;
    margin-bottom: 16px;
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
}

/* top header css start */
.top-header {
    background-color: var(--theme-color);
    padding: 14px 0px;
}

.top-header-content ul {
    list-style-type: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.top-header-content ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    text-decoration: none;
}

.top-header-content ul li a i {
    margin-right: 10px;
}

/* top header css end */

/* header css start */
.header {
    background-color: var(--white-color);
    position: relative;
    padding: 20px 0px;
}

.header .navbar {
    padding: 0;
}

.header .nav-item .nav-link {
    padding: 20px 22px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color) !important;
    transition: all ease 0.3s;
}

.header .dropdown .dropdown-item {
    padding: 10px 20px;
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 500;
    border-top: 1px solid rgb(181, 181, 181);
    transition: all ease 0.3s;
    text-transform: capitalize;
}

.header .dropdown .dropdown-item:hover {
    background-color: var(--sub-theme-color);
    color: var(--white-color);
}

.header .nav-item .nav-link strong {
    display: block;
    border-top: 1px solid var(--theme-color);
}

.header .nav-item .nav-link:hover strong {
    border-top: 1px solid var(--white-color);
}

.header .dropdown-toggle::after {
    display: none;
}

.header .navbar-brand {
    padding: 0;
}

.header .navbar-nav {
    align-items: center;
}

.header .nav-item .nav-link:hover {
    background-color: var(--theme-color);
    color: var(--white-color) !important;
}

.header .dropdown:hover .nav-link {
    background-color: var(--theme-color);
    color: var(--white-color) !important;
}

.header .dropdown:hover .nav-link strong {
    border-top: 1px solid var(--white-color);
}

.header .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    padding: 0;
}

@media (max-width: 991.98px) {
    .header .dropdown:hover .dropdown-menu {
        display: none;
    }

    .header .dropdown .dropdown-menu.show {
        display: block;
    }
}

.header .navbar-brandXtra {
    position: absolute;
    z-index: 111;
    background-color: #fff;
    width: 335px;
    height: 166px;
    border-radius: 0 100px 0 0;
    top: -82px;
    left: -405px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
}

/* header css end */

/* home banner css start */
.home-banner {
    background-image: url("../images/home-banner.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 424px 0px;
    position: relative;
    z-index: 1;
}

.home-banner::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../images/home-banner-before.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: #020e1ad4;
}

.home-banner .home-banner-content {
    text-align: center;
}

.home-banner .home-banner-content h1 {
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 5px;
}

.home-banner .home-banner-content h2 {
    color: var(--sub-theme-color);
    font-size: 37px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.home-banner .home-banner-content p {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.home-banner .home-banner-content p span {
    color: var(--sub-theme-color);
}

.home-banner .banner-rating-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* home banner css end */

/* gateway sec css start */
.gateway-form-main {
    background-color: var(--theme-color);
    box-shadow: 0 0 30px #00000073;
    border-radius: 10px;
}

.gateway-form-main form input {
    width: 100%;
    height: 70px;
    padding: 10px;
    background: transparent;
    outline: none;
    border: 1px solid #cccccc9e;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--white-color);
}

.gateway-form-main form input::placeholder {
    color: var(--white-color);
}

.gateway-form-main form textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    background: transparent;
    outline: none;
    border: 1px solid #cccccc9e;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    resize: none;
    color: var(--white-color);
}

.gateway-form-main form textarea::placeholder {
    color: var(--white-color);
}

.gateway-form-main form button {
    width: 100%;
    height: 55px;
    background-color: var(--white-color);
    outline: none;
    border: unset;
    color: var(--theme-color);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.gateway-form-main-heading {
    background-color: var(--sub-theme-color);
    color: #fff;
    padding: 16px 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.gateway-form-main-heading h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: unset;
}

.gateway-form-main form {
    padding: 32px 32px;
}

.gateway-sec {
    margin: 64px 0px;
}

.gateway-sec-content h2 {
    text-transform: uppercase;
}

/* gateway sec css end  */

/* get exposure sec css start */
.get-exposure-sec {
    background-color: #ecf0ef;
    position: relative;
    z-index: 1;
    padding: 48px 0px;
}

.get-exposure-slides .get-exposure-slider .owl-stage {
    display: flex;
    align-items: center;
}

.get-exposure-content h3 {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 36px;
}

.get-exposure-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: var(--theme-color);
    width: 653px;
    height: 100%;
    left: 0;
    top: 0;
}

/* get exposure sec css end */

/* result oriented sec css end */
.result-oriented-sec {
    padding: 100px 0px;
    background-color: #f5f5f5;
}

.result-oriented-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.result-oriented-btn a {
    border: 1px solid #4f536c;
    color: #4f536c;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 100px;
    text-decoration: none;
    transition: all ease 0.3s;
}

.result-oriented-btn a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
    border: 1px solid var(--sub-theme-color);
}

.result-oriented-ratings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
}

.result-oriented-ratings .bg-client_img {
    width: 30px;
    height: 31px;
    background: url("../images/css_sprites.png") -290px -75px;
}

.result-oriented-ratings .result-start {
    color: #911825;
}

.result-oriented-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    color: #414141;
}

.result-oriented-box {
    text-align: center;
    position: relative;
    z-index: 1;
}

.result-oriented-box::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 250px;
    bottom: 0;
    left: 0;
    background-color: var(--white-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.result-oriented-box img {
    width: 216px;
    height: 297px;
}

.result-oriented-box-main {
    margin-top: 40px;
}

/* result oriented sec css end */

/* process sec css start */
.process {
    padding: 70px 0;
}

.process h2 {
    text-transform: uppercase;
}

.process_box {
    padding: 25px 15px;
    position: relative;
    z-index: 1;
}

.process_box span {
    border-radius: 10px;
    width: 70px;
    height: 70px;
    flex: 0 0 27%;
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    z-index: 1;
    transition: .3s ease-in-out;
    overflow: hidden;
    background-color: var(--theme-color);
}

.process_box span:before {
    content: "";
    height: 200px;
    left: -105px;
    opacity: .2;
    position: absolute;
    top: -43px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    transition: 550ms cubic-bezier(.19, 1, .22, 1);
    width: 60px;
    z-index: -1;
    background-color: #fff;
}

.process_box p {
    color: #0c1034;
    line-height: 21px;
    font-weight: 600;
    font-size: 15px;
}

.process_box:hover span {
    background-color: var(--sub-theme-color);
    color: #fff;
}

.bd_dash:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    border: 2px dashed #b7b7b7
}

.bdon_top:before {
    border-bottom: 0;
    left: 17.2%
}

.bdon_btm:before {
    border-top: 0;
    left: 17.2%;
    top: auto;
    bottom: 0
}

.process_box:hover span:before {
    left: 120%;
    transition: 550ms cubic-bezier(.19, 1, .22, 1);
}

/* process sec css end */

/* all-in-writing sec css start */
.all-in-writing {
    padding: 100px 0px;
    background-color: var(--theme-color);
}

.all-in-writing-content {
    text-align: center;
    margin-bottom: 40px;
}

.all-in-writing-content h2 {
    color: var(--white-color);
}

@media (min-width: 992px) {
    .all-in-writing-slider {
        display: block;
        /* Static content for large screens */
    }
}

.all-in-writing-slider-main {
    display: flex;
    align-items: center;
    background: #d2cfd4;
    padding: 40px 30px 50px;
    margin: 10px;
    transform: scale(.9);
}

.all-in-writing-slider .owl-item {
    transition: all ease 0.3s;
}

.all-in-writing-slider .owl-item.active.center {
    transform: scale(1.2);
}

.all-in-writing-slider-content h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme-color);
}

/* all-in-writing sec css end */

/* explore-services-sec sec css start */
.explore-services-sec {
    padding: 80px 0px;
}

.explore-services-content h2 {
    color: var(--sub-theme-color);
    margin-bottom: 50px;
}

.explore-services-content-box {
    padding: 83px 48px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.explore-services-content-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 20px;
}

/* explore-services-sec sec css end */

/* our-range-grid sec css start */
.our-range-grid {
    padding: 0 0 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.our-range-gsingle {
    text-align: center;
    width: 100%;
    border-right: 1px solid #dfdfdf;
    padding: 60px 0;
    position: relative;
}

.our-range-gsingle .before-counter {
    position: absolute;
    z-index: -1;
    color: #ecebef;
    font-size: 130px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-weight: 600;
}

.our-range-gsingle p {
    font-size: 20px;
    color: var(--theme-color);
    margin-top: 10px;
    font-weight: 700;
}

.our-range-gsingleLast {
    border: unset;
}

/* our-range-grid sec css end */

/* feedback sec css start */
.feedback-sec {
    background-color: #f5f5f5;
    padding: 80px 0px 0px;
}

.feedback-content h2 {
    color: var(--sub-theme-color);
}

.feedback-box-main .bg-Trustpiot {
    width: 96px;
    height: 24px;
    background: url("../images/css_sprites.png") -163px -59px;
}

.feedback-box-ratings {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-box-main {
    background-color: var(--white-color);
    padding: 42px 30px 25px;
    border-radius: 18px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all ease 0.3s;
    margin: 100px 0px;
    border-bottom: 5px solid var(--white-color);
}

.feedback-slider .owl-item .feedback-box-main {
    transform: scale(.9);
}

.feedback-slider .owl-item.active.center .feedback-box-main {
    transform: scale(1.1);
    border-bottom: 5px solid var(--sub-theme-color);
}

.feedback-box-ratings-content h4 {
    color: var(--sub-theme-color);
    font-size: 20px;
    font-weight: 600;
}

.feedback-box-ratings-content i {
    color: var(--theme-color);
}

/* feedback sec css end */

/* get started form sec css start */
.get-started-form-sec {
    margin: 80px 0px;
}

.get-started-content h2 {
    font-size: 65px;
    margin-bottom: 40px;
}

/* get started form sec css end */

/* top footer sec start css end */
.top-footer-sec {
    background-color: var(--theme-color);
    padding: 80px 0px;
}

.top-footer-box {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.top-footer-box i {
    font-size: 40px;
    color: var(--white-color);
}

.top-footer-box a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

/* top footer sec start css end */

/* footer start css start */
.footer {
    padding: 80px 0px 20px;
    background-color: #f8f8f8;
}

.footer-links .footer-links-box ul li {
    list-style-type: disclosure-closed;
}

.footer-links .footer-links-box ul li::marker {
    color: var(--sub-theme-color);
}

.footer-links {
    border-top: 1px solid #cdcdcf8f;
    padding-top: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-links .footer-links-box ul li a {
    color: #8f8e93;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    transition: all ease 0.3s;
}

.footer-links-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color);
}

.footer-links-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-links-right h4 {
    font-size: 18px;
    text-transform: uppercase;
}

.footer-links .footer-links-box ul li a:hover {
    color: var(--theme-color);
}

.footer-link-right-main {
    display: flex;
    position: relative;
    z-index: 1;
}

.footer-book {
    margin-top: -110px;
    margin-left: -60px;
}

.footer .container {
    max-width: 1280px;
}

.footer-link-right-main::before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 70px;
    width: 39px;
    right: -80px;
    top: 80px;
    background-image: url("../images/footer-arrow.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-social-main {
    margin-top: 30px;
    text-align: center;
}

.footer-social-main ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.footer-social-main ul li a .sprite_fb {
    width: 44px;
    height: 44px;
    background: url("../images/css_sprites.png") -86px -128px;
}

.footer-social-main ul li a .sprite_insta {
    width: 44px;
    height: 44px;
    background: url("../images/css_sprites.png") -150px -128px;
}

.footer-social-main ul li a .sprite_linkedin {
    width: 44px;
    height: 44px;
    background: url("../images/css_sprites.png") -214px -128px;
}

/* footer start css end */

/* copyright-sec css start */
.copyright-sec .container {
    max-width: 1280px;
}

.copyright-sec {
    padding: 20px 0;
    border-top: 5px solid var(--sub-theme-color);
    background-color: var(--theme-color);
}

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

.copyright-sec ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
    gap: 10px;
}

.copyright-sec ul li {
    color: var(--white-color);
}

.copyright-sec ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    text-decoration: none;
}

/* copyright-sec css end */

/* bestseller-portfolio sec css start  */
.bestseller-porfolio-sec {
    margin: 64px 0px 0;
    position: relative;
    z-index: 1;
}

.bestseller-portfolio-content h2 {
    font-size: 58px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
    margin-bottom: 80px;
    padding-top: 80px;
}

.books-boxes {
    background: #ffffffb5;
    width: 100%;
    border-radius: 10px;
    position: relative;
    text-align: center;
    filter: drop-shadow(1px 1px 4px #66666642);
    -webkit-filter: drop-shadow(1px 1px 4px #66666642);
    transition: .3s ease-out;
    margin-bottom: 80px;
}

.books-boxes:hover {
    background-color: var(--theme-color);
}

.books-boxes:hover .books-boxes-ratings span {
    color: var(--white-color);
}

.bestseller-portfolio-content .item {
    padding-top: 35px;
}

.books-boxes img {
    border-radius: 4px;
    filter: drop-shadow(1px 1px 4px #66666642);
    -webkit-filter: drop-shadow(1px 1px 4px #66666642);
    transform: translateY(-30px);
    margin: 0 auto;
    width: 216px !important;
    height: 296px;
}

.books-boxes-ratings {
    padding-bottom: 10px;
}

.books-boxes-ratings i {
    color: #fcc419;
}

.books-boxes-ratings span {
    font-size: 14px;
    font-weight: 500;
    color: #7e7e7e;
}

.bestseller-portfolio .owl-dots {
    display: block !important;
}

.bestseller-portfolio .owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
    width: 24px;
    height: 8px;
}

.bestseller-portfolio .owl-dots .owl-dot span {
    background-color: #7e7e7e;
    width: 24px;
    height: 8px;
}

.bestseller-portfolio-nav .nav .nav-link {
    padding: 10px;
    font-size: 20px;
    color: #7e7e7e;
    text-align: left;
    position: relative;
    z-index: 1;
    border-radius: unset;
}

.bestseller-portfolio-nav .nav .nav-link::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    background: linear-gradient(270deg, var(--theme-color), transparent);
    width: 100%;
    height: 100%;
    opacity: 0;
    /* -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear; */
}

.bestseller-portfolio-nav .nav .nav-link.active {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.bestseller-portfolio-nav .nav .nav-link:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.bestseller-portfolio-nav .nav .nav-link.active::before {
    opacity: 1;
}

.bestseller-portfolio-nav .nav .nav-link:hover::before {
    opacity: 1;
}

.bestseller-porfolio-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: 65%;
    background-color: #f4f4f4;
    width: 100%;
    height: 100%;
}

/* bestseller-portfolio sec css end  */

/* sellbook sec css start  */
.sellbook-sec {
    background-color: #ecf0ef;
    padding: 48px 0px;
    position: relative;
    z-index: 1;
}

.sellbook-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: var(--theme-color);
    width: 653px;
    height: 100%;
    top: 0;
    left: 0;
}

.sellbook-sec-content {
    margin-left: -100px;
}

.sellbook-sec-content p {
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 0;
    text-align: start;
}

.sellbook-sec-content p span {
    color: var(--sub-theme-color);
}

.sellbook-sec-content .sellbook-sec-anchor {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.sellbook-sec-content .sellbook-sec-anchor a {
    color: var(--white-color);
    background-color: var(--sub-theme-color);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* sellbook sec css end  */

/* story writing sec css start  */
.story-writing {
    margin: 80px 0px;
}

.story-writing-content h2 {
    text-transform: uppercase;
    text-align: center;
}

.story-writing-content {
    margin-bottom: 40px;
}

.story-writing-box {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
}

.story-writing-box-number span {
    font-weight: 700;
    color: var(--theme-color);
}

.story-writing-box-number p {
    font-size: 42px;
    font-weight: 700;
    color: var(--sub-theme-color);
    padding: 32px 0px;
}

.story-writing-box-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
}

.story-writing-box-content p {
    padding: 16px 0px 0;
    color: #8f8e93;
    margin: 0;
    text-align: start;
}

/* story writing sec css end  */

/* tools sec css start  */
.tools-sec {
    background-color: #ecf0ef;
    padding: 65px 0px;
    position: relative;
    z-index: 1;
}

.tools-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/genre-right.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    bottom: 0;
    width: 225px;
    height: 353px;
}

.tools-sec-content {
    text-align: center;
}

.tools-sec-content h2 {
    text-transform: uppercase;
}

.tools-sec-content p {
    text-align: center;
    color: #8f8e93;
    margin: 16px 0px;
}

.tools-sec .tools-sec-box {
    margin: 0 0 16px;
}

.tools-sec .tools-sec-box p {
    color: #8f8e93;
}

.tools-sec .tools-sec-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--theme-color);
}

.tools-sec .tools-sec-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sub-theme-color);
}

.tools-sec .hidden-row {
    display: none;
}

.tools-sec button {
    padding: 10px 20px;
    outline: none;
    border: unset;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 5px;
    transition: all ease 0.3s;
}

.tools-sec button:hover {
    background-color: var(--sub-theme-color);
}

/* tools sec css end */

/* embark-cta-sec css start */
.embark-cta-sec {
    background-image: url("../images/cta-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px;
    position: relative;
}

.embark-cta-content h2 {
    color: var(--white-color);
}

.embark-cta-content p {
    color: var(--white-color);
}

.embark-cta-btns {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.light-blue-btn {
    background-color: var(--sub-theme-color);
    color: var(--white-color) !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
    border-radius: 5px;
    padding: 12px 25px;
    text-transform: uppercase;
    transition: all ease 0.3s;
}

.light-blue-btn:hover {
    background-color: var(--theme-color);
}

.cta-book-div {
    position: absolute;
    bottom: -70px;
    z-index: 1;
}

/* embark-cta-sec css end */

/* excellence section css start */
.excellence-sec {
    padding: 70px 0px;
    position: relative;
    z-index: 1;
    background-color: #f1f1f1;
}

.excellence-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/genre-right.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    bottom: 0;
    width: 225px;
    height: 353px;
}

.excellence-sec-content {
    text-align: center;
    margin-bottom: 40px;
}

.excellence-sec-content h2 {
    color: var(--sub-theme-color);
}

.excellence-sec-box-white {
    padding: 55px 25px;
    background-color: var(--white-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    text-align: center;
    height: 100%;
}

.excellence-sec-box-white p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-theme-color);
    margin-bottom: 5px;
}

.excellence-sec-box-white h4 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
}

.excellence-sec-box-white a {
    text-decoration: none;
    color: var(--theme-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
}

.excellence-sec-box-blues {
    background-color: #cdd7eb;
}

/* excellence section css end */

/* why choose section css start */
.why-choose-sec {
    padding: 75px 0px;
    position: relative;
    z-index: 1;
}

.why-choose-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/pf-leaf-left.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 50px;
    width: 230px;
    height: 500px;
}

.why-choose-sec::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/pf-leaf.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    bottom: 0;
    width: 232px;
    height: 546px;
}

.why-choose-sec-content {
    margin-bottom: 40px;
}

.why-choose-sec-content h2 {
    color: var(--sub-theme-color);
    text-align: center;
}

.why-choose-sec-box .why-choose-sec-boxNumber {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 30px;
    font-size: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    padding: 0px 20px;
}

.why-choose-sec-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.why-choose-sec-box-content p {
    text-align: left;
}

.why-choose-sec-box-content h3 {
    color: var(--theme-color);
    font-weight: 700;
}

.why-choose-sec-box-main {
    position: relative;
    z-index: 1;
}

.why-choose-sec-box-main::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 2px;
    height: 85%;
    background-color: var(--theme-color);
    top: 20px;
    left: 23px;
}

.why-choose-sec-box-main.why-choose-sec-box-mainXtra::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 2px;
    height: 81%;
    background-color: var(--theme-color);
    top: 20px;
    left: 23px;
}

/* why choose section css end */

/* featured section css start */
.featured-sec-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.featured-sec-content h2 {
    color: var(--white-color);
    text-align: center;
    margin-bottom: 20px;
}

.featured-sec {
    background-color: #19508b;
    padding: 20px 0px;
}

/* featured section css end */

/* writing section css start */
.writing-sec {
    padding: 70px 0px;
}

.writing-sec-content h2 {
    color: var(--sub-theme-color);
    text-align: center;
    text-transform: uppercase;
}

.writing-sec h4 {
    color: var(--theme-color);
    font-size: 20px;
    text-align: start;
    text-transform: capitalize;
}

.writing-sec p {
    margin-bottom: 25px;
}

/* writing section css end */

/* story-cta section css start */
.story-cta {
    padding: 40px 0px;
    background-color: var(--theme-color);
    position: relative;
    z-index: 1;
}

.story-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/story-left.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    bottom: 0;
    width: 470px;
    height: 452px;
}

.story-cta::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/story-right.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    bottom: 0;
    width: 443px;
    height: 333px;
}

.story-cta-content {
    text-align: center;
}

.story-cta-content h2 {
    color: var(--white-color);
}

.story-cta-content p {
    color: var(--white-color);
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.story-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.story-cta-btns a:hover {
    color: var(--theme-color) !important;
    background-color: var(--white-color);
}

/* story-cta section css end */

/* client section css start */
.client-sec {
    padding: 70px 0px;
    background-color: var(--theme-color);
}

.client-sec-content {
    border-radius: 12px;
    background-color: #fefcf8;
    padding: 32px;
}

.client-sec-content-body {
    padding: 30px 30px 0px;
    text-align: center;
}

.client-sec-content-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-sec-content-head h4 {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 500;
}

.client-sec-content-body h4 {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.client-sec-content-body p {
    text-align: center;
    font-size: 16px;
    color: #000;
}

.client-sec-body {
    margin-top: 20px;
    border-left: 3px solid var(--theme-color);
    padding-left: 12px;
}

.client-sec-body p {
    font-size: 16px;
    color: #000;
    text-align: start;
}

.client-sec-content .paraXtra {
    font-size: 16px;
    color: #8f8f8f;
}

/* client section css end */

/* question section css start */
.question-sec {
    padding: 70px 0px;
    position: relative;
    z-index: 1;
}

.question-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/profe1.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 118px;
    top: 200px;
    width: 400px;
    height: 480px;
}

.question-sec-content-box h3 {
    text-transform: uppercase;
}

.question-sec-content-box p {
    font-size: 16px;
    color: #8f8e93;
    margin-top: 25px;
}

.question-sec-content {
    margin-bottom: 30px;
}

.question-images-div {
    position: relative;
    z-index: 1;
}

.question-images-div::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/profe-before.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: -55px;
    width: 300px;
    height: 276px;
    transform: rotate(45deg);
}

.question-images-div::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/profe-after.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    top: 50px;
    width: 300px;
    height: 276px;
    transform: rotate(45deg);
}

.question-images-div img {
    position: relative;
    z-index: 111;
}

/* question section css end */

/* faq section css start */
.faq-sec {
    background-color: #eaeaea;
    padding: 70px 0px;
}

.faq-sec-content {
    text-align: center;
}

.faq-sec-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.faq-sec-content p {
    color: #8f8e93;
    font-size: 18px;
    text-align: center;
}

.faq-sec-accordion .card {
    margin-bottom: 20px;
    background-color: var(--white-color);
}

.faq-sec-accordion .card h2 button {
    padding: 0;
    text-decoration: none;
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 600;
    box-shadow: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-sec-accordion .card-header {
    border-radius: 20px;
}

.faq-sec-accordion .card .card-body {
    color: #8f8e93;
    font-size: 16px;
    font-weight: 400;
}

/* faq section css end */

/* our packages page start */
.gs-services {
    padding: 70px 0px 0px;
}

.gs-services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align-last: center;
}

.gs-services-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.packages-sec {
    padding: 70px 0px 30px;
}

.packages-sec-content h2 {
    text-transform: uppercase;
    text-align: center;
}

.packages-sec-content .nav {
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.packages-sec-content .nav .nav-item .nav-link {
    background: 0 0;
    color: #041838;
    border: 2px solid #041838;
    font-size: 14px;
    border-radius: 5px;
    padding: 8px 20px;
    margin: 0;
    text-transform: capitalize;
    transition: .3s ease-in-out;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.packages-sec-content .nav .nav-item .nav-link.active {
    background: var(--theme-color);
    color: var(--white-color);
}

.packages-sec-content .nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--theme-color);
    width: 0;
    height: 100%;
    margin: auto;
    transition: .5s;
    z-index: -1;
}

.packages-sec-content .nav .nav-item .nav-link:hover::after {
    width: 100%;
}

.packages-sec-content .nav .nav-item .nav-link:hover {
    color: var(--white-color);
}

.packages-box-head {
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    border-radius: 10px 10px 0px 0px;
}

.packages-box-main {
    background: #fff;
    box-shadow: 0 1px 15px -3px #b2b2b2;
    margin: 0;
    border-radius: 10px;
    position: relative;
}

.packages-box-head h5 {
    background-color: var(--sub-theme-color);
    padding: 7px;
    font-size: 34px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.packages-box-head h5 b {
    font-size: 16px;
    font-weight: 500;
    text-decoration: line-through;
    border-left: 2px solid var(--theme-color);
    padding-left: 10px;
    color: #efefef;
}

.packages-box-head h4 {
    padding: 10px 0;
    font-size: 16px;
    margin: 0;
}

.packages-sec .container {
    max-width: 1580px;
}

.packages-box-body ul {
    padding: 0 10px 0 25px;
    min-height: 350px;
    max-height: 350px;
    overflow-y: scroll;
    margin: 0 0 20px;
    width: 100%;
}

.packages-box-body ul li {
    color: #041838;
    font-size: 14px;
    line-height: 20px;
    border-bottom: 1px solid #b2b2b2;
    padding: 5px 0;
    margin: 0;
}

.packages-box-body ul li.text-p {
    color: var(--sub-theme-color);
    font-size: 800;
    font-size: 16px;
    border-bottom: unset;
    list-style-type: none;
}

.packages-box-body ul::-webkit-scrollbar {
    width: 5px;
}

.packages-box-body ul::-webkit-scrollbar-track {
    background: #00c8e259;
}

.packages-box-body ul::-webkit-scrollbar-thumb {
    background: var(--sub-theme-color);
}

.packages-box-footer {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.packages-box-footer .lets-begin-btn {
    font-size: 14px;
    border-radius: 5px;
    padding: 8px 20px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    position: relative;
    z-index: 1;
    background-color: transparent;
    outline: none;
    border: 2px solid var(--sub-theme-color);
}

.packages-box-footer .lets-begin-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--sub-theme-color);
    width: 0;
    height: 100%;
    margin: auto;
    transition: .5s;
    z-index: -1;
}

.packages-box-footer .lets-begin-btn:hover {
    color: var(--white-color);
}

.packages-box-footer .lets-begin-btn:hover::after {
    width: 100%;
}

/**/
.packages-box-footer .liveChat {
    font-size: 14px;
    border-radius: 5px;
    padding: 8px 20px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    position: relative;
    z-index: 1;
    background-color: var(--theme-color);
    outline: none;
    border: 2px solid var(--theme-color);
    color: var(--white-color);
}

.packages-box-footer .liveChat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--sub-theme-color);
    width: 0;
    height: 100%;
    margin: auto;
    transition: .5s;
    z-index: -1;
}

.packages-box-footer .liveChat:hover {
    color: var(--white-color);
    border: 2px solid var(--sub-theme-color);
}

.packages-box-footer .liveChat:hover::after {
    width: 100%;
}

.ribbon-top-right {
    top: -3px;
    right: -3px;
}

.ribbon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
}

.ribbon-top-right::before {
    top: 0;
    left: 0;
}

.ribbon-top-right::after,
.ribbon-top-right::before {
    border-top-color: transparent;
    border-right-color: transparent;
}

.ribbon::after,
.ribbon::before {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #1eb5ff;
}

.ribbon-top-right::after {
    bottom: 0;
    right: 0;
}

.ribbon-top-right span {
    left: -22px;
    top: 21px;
    transform: rotate(45deg);
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 165px;
    padding: 5px 0;
    background: red;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

/* our packages page end */

/* services rates sec start */
.services-rates {
    padding: 40px 0 100px
}

.services-rates ul.nav-tabs li.nav-item {
    flex: 0 0 33%;
    margin-bottom: 0
}

.services-rates ul.nav-tabs li.nav-item a {
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 30px 10px;
    text-transform: capitalize;
    text-align: center;
    border-right: 0;
}

.services-rates .nav-tabs .nav-item.show .nav-link,
.services-rates .nav-tabs .nav-link.active {
    border-color: transparent;
    font-weight: 700;
    background-color: var(--theme-color) !important;
    color: #fff !important;
}

.services-rates ul.nav-tabs {
    border-bottom: none;
    align-items: center;
    justify-content: center
}

.services-rates .tab-content {
    padding-top: 60px
}

.services-rates .tab-content article p {
    padding-top: 25px;
    padding-bottom: 25px
}

.services-rates ul.nav-tabs li.nav-item:nth-child(n+4) a {
    border-bottom: 1px solid #ccc
}

.services-rates ul.nav-tabs li.nav-item:last-child a,
.services-rates ul.nav-tabs li.nav-item:nth-child(3) a {
    border-right: 1px solid #ccc !important
}

.services-rates ul.nav-tabs li.nav-item:first-child a,
.services-rates ul.nav-tabs li.nav-item:nth-child(3) a {
    border-bottom: 1px solid #ccc !important
}

.ser-tabs-two .table-div th:first-child {
    width: 30%
}

.table-div th h5 {
    font-size: 18px;
    line-height: 100%;
    font-weight: 700
}

.table-div th:nth-child(2n),
.table-div tr:nth-child(odd) td,
td:nth-child(2n) {
    background: #f5f5f5
}

.packages-bundle-buttons ul li button.popup-btn::after,
.packages-bundlebox-head h5 {
    background: var(--red-color);
}

.table-div th,
td>.center span.icon-no hr {
    border-top: 2px solid #000;
    margin: 0 auto;
    width: 6%
}

.table-div th,
td {
    padding: 20px 30px;
    vertical-align: middle;
    line-height: 130%
}

.table-div td p {
    font-size: 14px;
    line-height: 130%;
    color: var(--sub-theme-color);
}

.services-rates .tab-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--theme-color);
}

.ser-tabs-three .table-div th p {
    font-size: 12px;
    color: var(--theme-color);
    text-align: center;
    font-weight: 600;
}

.client-sec-slider .owl-stage {
    display: flex;
    align-items: center;
}

.client-sec-content-head img {
    width: unset !important;
    height: unset;
}

/* services rates sec end */

/*contact us page css start*/
.contact-us-sec {
    padding: 100px 0px;
}

.contact-us-content {
    text-align: center;
}

.contact-us-content p {
    text-align-last: center;
}

.contact-us-sec input,
.contact-us-sec textarea {
    width: 100%;
    padding: 12px;
    outline: none;
    color: #000;
    margin-bottom: 15px;
    border: 1px solid var(--theme-color);
    border-radius: 5px;
}

.contact-us-sec button {
    border: unset;
    outline: unset;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 12px 40px;
    border-radius: 100px;
}

/*contact us page css end*/

/* blog page css start */
.blogBanner {
    background-image: url("../images/blog-banner.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0px;
}

.blogBanner .socialleads_bann {
    margin-top: 40px;
}

.socialleads_bann ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style-type: none;
}

.blogBanner p {
    font-size: 18px;
    color: var(--white-color);
}

.blogBanner h1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--white-color);
}

.btn_themes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn_themes a {
    background-color: var(--sub-theme-color);
    padding: 12px 30px;
    text-decoration: none;
    color: var(--white-color);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
}

.custom-breadcrumb-wrap {
    background-color: var(--white-color);
    border-bottom: 1px solid #d1d1d1;
    padding: 30px 0px;
}

.custom-breadcrumb-wrap .breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.custom-breadcrumb-wrap .breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 400;
}

.blog {
    padding: 50px 0px;
}

.blog .blog-card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 12px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    height: 410px;
}

.blog .blog-card img {
    border-radius: 15px;
}

.blog .blog-card h4 {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 10px;
    font-weight: 400;
    color: var(--theme-color);
}

.blog .blog-card a {
    text-decoration: none;
}

.article-wrapper {
    padding: 50px 0px;
}

.arti-bx .articl-titl {
    font-size: 34px;
    font-weight: 700;
    color: var(--theme-color);
}

.name-month {
    margin: 20px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.name-month a {
    color: var(--theme-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.article-wrapper .arti-bx p {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.article-wrapper .arti-bx p a {
    text-decoration: none;
    color: var(--sub-theme-color);
}

.article-wrapper .arti-bx h2 {
    font-size: 25px;
    font-weight: 500;
    color: var(--sub-theme-color);
}

.article-wrapper .arti-bx h3 {
    font-size: 25px;
    font-weight: 500;
    color: var(--sub-theme-color);
}

.article-wrapper .arti-bx ul {
    margin-left: 20px;
}

.article-wrapper .arti-bx ul li {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
}

/* blog page css end */
