:root {
    --foreground: #171717;
    --main-color: #a3b18a;
    --light-gray: #344e41;
    --dark-gray: #344e41;
    --light-brown: #dad7cd;
    --white: #fff;
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 40s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap))
}

@media (prefers-color-scheme: dark) {
    :root {
        --foreground: #ededed
    }
}

@font-face {
    font-family: Poppins;
    src: url(assets/Poppins-Regular-CTKNfV9P.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Alex-brush;
    src: url(assets/AlexBrush-Regular-D-KohkEC.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

body {
    font-family: Poppins, sans-serif
}
@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }
}

.slider-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-block: 40px;
    font-weight: 700
}

.carousel-thumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px
}

.carousel-bar {
    width: 220px;
    height: 5px;
    background-color: #7f8184;
    transition: background-color .3s, height .3s
}

.carousel-bar.active {
    background-color: var(--main-color);
    height: 8px
}

.gray_btn_main {
    text-align: center
}

.thankyou-form {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 15px;
    width: 100%;
    box-sizing: border-box
}

.footer-left-50 {
    margin-left: 0
}

@media (max-width: 600px) {
    .slider-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-block: 10px;
        font-weight: 700
    }
    .thankyou-form {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px
    }
}

@media (max-width: 1093px) {
    .footer-left-50 {
        margin-left: 50px
    }
}

.iti {
    width: 100%
}

.thankyou-form input,
.thankyou-form select,
.thankyou-form button {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--main-color)
}

.submit_btn {
    background-color: var(--main-color);
    color: #2d353f;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color .3s ease
}

.thankyou-form-2 input,
.thankyou-form-2 select,
.thankyou-form-input {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--main-color)
}

.thankyou-form-input.error {
    border: 2px solid red
}

.submit_btn {
    padding: 10px;
    border-radius: 5px;
    width: 200px;
    background-color: var(--main-color);
    color: #2d353f;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color .3s ease
}

.background-section {
    background-image: url(assets/clip-art-about_2-i12Ifw8A.webp);
    background-position: right 2% center;
    background-repeat: no-repeat;
    background-size: contain
}

@media (max-width: 1440px) {
    .background-section {
        background-image: none
    }
}

.about-banner {
    height: 100%;
    display: flex;
    align-items: flex-end
}

@media (min-width: 2000px) {
    .about-banner {
        display: none
    }
}

@media (max-width: 768px) {
    .about-banner {
        display: none
    }
}

.no-scroll {
    overflow: hidden;
    height: 100vh
}

ul.banner-list {
    list-style-image: url(assets/orange-checkbox-B5pB66ko.svg) !important;
    list-style-type: disc
}

@keyframes blink {
    0% {
        opacity: 1
    }
    25% {
        opacity: .7
    }
    to {
        opacity: 1
    }
}

.blinking-text {
    animation: blink 1s infinite
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.iframe-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding-bottom: 56.25%;
    height: 0
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: top;
    margin-top: 20px;
    height: 50px
}

.pagination .swiper-pagination-bullet {
    width: 10px;
    height: 20px;
    border-radius: 3px;
    background-color: var(--light-gray);
    opacity: .7;
    margin: 0 5px;
    transition: all .3s ease-in-out
}

.pagination .swiper-pagination-bullet-active {
    width: 10px;
    height: 40px;
    background-color: var(--main-color);
    opacity: 1
}

.header_btn_black {
    background-color: #344e41;
    padding: 10px 15px;
    border: 1px solid var(--main-color);
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 100;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: all .3s ease
}

.header_btn_black:hover,
.header_btn_black.active {
    background-color: var(--main-color);
    border: 1px solid #344E41;
    color: var(--dark-gray)
}

.header_button {
    display: flex;
    align-items: center;
    justify-content: center
}

.dropdown {
    position: relative;
    display: inline-block
}

.arrow {
    font-size: 14px
}

.dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2e3a47;
    color: #fff;
    border: 1px solid var(--main-color);
    border-radius: 10px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    z-index: 1000;
    min-width: 200px;
    box-shadow: 0 4px 6px #0003;
    display: none
}

.dropdown_menu li {
    padding: 10px 20px;
    border-bottom: 1px solid #3e4b57
}

.dropdown_menu li:last-child {
    border-bottom: none
}

.dropdown_menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: color .3s ease
}

.dropdown_menu li a:hover {
    color: var(--main-color)
}

.dropdown_menu li a.active {
    font-weight: 700;
    color: var(--main-color)
}

#mobile-menu {
    z-index: 99999 !important
}

@media (max-width: 768px) {
    .dropdown_menu {
        background-color: #fff;
        color: #000;
        border: 1px solid #ddd;
        box-shadow: 0 4px 6px #0000001a
    }
    .dropdown_menu li {
        padding: 5px 10px;
        border-bottom: 1px solid #ddd
    }
    .dropdown_menu li a {
        color: #000
    }
    .dropdown_menu li a:hover,
    .dropdown_menu li a.active {
        color: var(--main-color)
    }
}

@media (max-width: 1024px) {
    header {
        background-color: transparent !important;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0
    }
    #mobile-menu {
        padding-top: 20px
    }
}

.footer-main {
    /*background: url(/build/assets/footer-background-C3FFLqzd.webp);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-inline: 100px;
    padding-block: 80px 20px
}

.footer-section-detail {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    height: 430px
}

.footer-clip-art {
    position: absolute;
    left: 100px;
    bottom: 00px
}

.footer-logo {
    width: 28%
}

.footer-logo p {
    margin-top: 20px;
    color: #fff;
    text-align: justify
}

.footer-links {
    width: 15%;
    display: flex;
    flex-direction: column;
    color: #fff;
    padding-top: 80px
}

.footer-links h1 {
    color: #fff;
    font-size: 18px;
    font-weight: 800
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    padding-block: 2px
}

.footer-links a:hover {
    text-decoration: none;
    color: #fff;
    cursor: pointer
}

.footer-line-break {
    padding-top: 60px
}

.footer-form {
    width: 350px;
    border-radius: 10px;
    padding-top: 80px
}

.footer-form h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 800
}

.input-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px #0000001a
}

.input-container select {
    border: none;
    background-color: #f8e8e8;
    color: #333;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 0;
    border-right: 1px solid #ccc;
    width: 70px
}

.input-container select option {
    background-color: #fff
}

.input-container input {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    flex: 1;
    color: #333
}

.input-container img {
    width: 20px;
    height: 15px;
    margin-right: 5px
}

.footer-section-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.social-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%
}

.social-container_1 {
    width: 28%;
    background-color: #394049;
    border: 2px solid #898f97;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 80px
}

.social-container_2 {
    width: 68%;
    height: 80px;
    background-color: #394049;
    border: 2px solid #898f97;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.social-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.social-detail p {
    font-size: 16px;
    margin: 0;
    color: #fff;
    white-space: normal
}

.phoneNumer {
    white-space: nowrap !important
}

.footer-section-terms {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff
}

.footer-section-terms a,
.footer-section-terms a:hover {
    color: #fff;
    text-decoration: none
}

@media (max-width: 1024px) {
    .footer-form {
        padding-top: 0
    }
    .social-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px
    }
    .social-container_1,
    .social-container_2 {
        display: flex;
        width: 100%
    }
    .social-detail p {
        white-space: nowrap
    }
    .social-container_2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        height: auto
    }
    .social-detail p {
        text-align: center;
        font-size: 18px
    }
    .footer-section-terms {
        text-align: center
    }
    .footer-section-terms p {
        font-size: 14px
    }
}

@media (max-width: 768px) {

    .footer-main {
        padding: 50px 20px 20px;
    }

    .footer-section-detail,
    .footer-main .row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        height: auto;
    }

    .footer-line-break,
    .footer-clip-art {
        display: none;
    }

    .footer-logo,
    .footer-links,
    .footer-form {
        width: 100%;
        padding-top: 0;
        margin-bottom: 30px;
        text-align: left;
    }

    .footer-logo {
        display: block;
    }

    .footer-logo img {
        width: 140px;
        margin-bottom: 15px;
    }

    .footer-logo p,
    .footer-links h1,
    .footer-links a,
    .footer-form h2,
    .footer-form p,
    .footer-section-terms,
    .footer-section-terms p {
        text-align: left;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links a {
        display: block;
        margin-bottom: 8px;
    }
    
    .footer-main .contact-list li {
    margin-left: -28px;
}

    .footer-form {
        max-width: 100%;
    }

    .social-container {
        flex-direction: column;
        gap: 15px;
    }

    .social-container_1,
    .social-container_2 {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .social-container_2 {
        align-items: flex-start;
    }

    .social-detail {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .social-detail p {
        text-align: left;
        white-space: normal;
        font-size: 14px;
    }

    .footer-section-terms {
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }
}
.banner_btn_white {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    z-index: 2;
    color: #2d353f;
    cursor: pointer;
    transition: ease-in-out .1s
}

.banner_btn-wrapper img {
    transition: ease-in-out .1s
}

.banner_btn-wrapper:hover .banner_btn_white {
    background-color: var(--main-color);
    color: #fff
}

.banner_btn-wrapper:active .banner_btn_white {
    transform: translate(8px, 8px)
}

.btn-outline-white {
    background-color: transparent;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    padding-block: 22px;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    transition: ease-in-out .1s
}

.btn-outline-white:hover,
.banner_btn-wrapper:hover .btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--main-color)
}

@media (max-width: 600px) {
    .hero_btn {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        position: relative
    }
    .btn-outline-white {
        width: 100% !important;
        font-size: 14px;
        padding-block: 19px
    }
    .banner_btn_white {
        width: 100% !important;
        font-size: 14px
    }
}

.hero-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 10px;
    z-index: -1
}

.banner-text {
    width: 50%;
    color: var(--white);
    row-gap: 12px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 93%;
    z-index: 99
}

@media (min-width: 1440px) {
    .banner-text {
        width: 50%;
        color: var(--white);
        row-gap: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        z-index: 99
    }
}

.banner-text h1 {
    color: var(--main-color);
    font-size: 42px
}

.banner-text h2 {
    color: var(--white);
    font-size: 20px
}

.banner-text p {
    color: var(--white);
    font-size: 18px
}

.banner-book-img {
    width: 40%;
    text-align: end;
    display: flex;
    justify-content: flex-end;
    padding-right: 60px;
    position: relative;
    align-items: start;
    height: 80%
}

.hero_btn {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
    margin-top: 30px
}

.form-section {
    width: 400px;
    background-color: var(--main-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px #0000001a;
    padding-block: 10px;
    text-align: center;
    position: relative
}

.form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between
}

.form-header h2 {
    width: 100%;
    color: var(--dark-gray);
    font-size: 20px;
    margin-bottom: 10px;
    background-color: #fff
}

.form-header p {
    font-size: 18px;
    color: #fff
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px
}

.signup-form input,
.signup-form select,
.signup-form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 5px
}

.submit_btn {
    background-color: #2d353f;
    color: #fff;
    font-weight: 700;
    border: 1px solid var(--main-color);
    cursor: pointer;
    transition: background-color .3s ease;
    outline: none !important;
    border: none !important
}

@media (max-width: 1024px) {
    .banner-logo {
        display: inline;
        margin-bottom: 10px
    }
    .hero-banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        row-gap: 10px;
        z-index: -1
    }
    .banner-book-img {
        width: 90%;
        text-align: end
    }
    .form-section {
        width: 100%;
        background-color: var(--main-color);
        border-radius: 10px;
        box-shadow: 0 4px 8px #0000001a;
        padding-block: 30px;
        text-align: center;
        position: relative
    }
    .banner-text {
        width: 100%;
        color: var(--white);
        row-gap: 12px;
        display: flex;
        flex-direction: column;
        margin-top: 80px
    }
    .form-header h2 {
        width: 100%;
        color: #fff;
        font-size: 20px;
        margin-bottom: 10px;
        background-color: #2d353f
    }
}

@media (max-width: 768px) {
    .hero-banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        row-gap: 10px;
        z-index: -1
    }
    .banner-book-img {
        width: 100%;
        text-align: end;
        padding-right: 0
    }
    .form-section {
        width: 100%;
        background-color: var(--main-color);
        border-radius: 10px;
        box-shadow: 0 4px 8px #0000001a;
        padding-block: 30px;
        text-align: center;
        position: relative
    }
    .banner-text {
        width: 100%;
        color: var(--white);
        row-gap: 12px;
        display: flex;
        flex-direction: column
    }
    .banner-text h1 {
        font-size: 32px
    }
    .banner-text h2,
    .banner-text p {
        font-size: 18px
    }
    .hero_btn {
        display: flex;
        align-items: center;
        position: relative;
        flex-wrap: wrap
    }
    .form-header h2 {
        width: 100%;
        color: #fff;
        font-size: 16px;
        margin-bottom: 10px;
        background-color: #2d353f
    }
}

.form-section {
    width: 400px;
    background-color: #2d353f;
    border-radius: 10px;
    box-shadow: 0 4px 8px #0000001a;
    padding: 20px;
    padding-block: 20px;
    text-align: center
}

.form-header h2 {
    background: inherit;
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700
}

.form-header p {
    font-size: 38px;
    color: #fff
}

.form-header span {
    color: #fff;
    font-weight: bolder
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding: 0
}

.signup-form input,
.signup-form select,
.signup-form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #2d353f;
    border-radius: 5px;
    color: #000
}

.signup-form button {
    color: #2d353f;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color .3s ease
}

.signup-form button:hover {
    background-color: none
}

@media (max-width: 1024px) {
    .form-section {
        background-color: #2d353f;
        border-radius: 10px;
        box-shadow: 0 4px 8px #0000001a;
        padding: 20px;
        padding-block: 20px;
        text-align: center
    }
}

@media (max-width: 768px) {
    .form-section {
        width: 100%;
        background-color: #2d353f;
        border-radius: 10px;
        box-shadow: 0 4px 8px #0000001a;
        padding: 20px;
        padding-block: 20px;
        text-align: center
    }
    .form-header h2 {
        color: #fff;
        font-size: 24px;
        margin-bottom: 10px
    }
    .form-header p {
        font-size: 26px;
        color: #fff
    }
}

.wrapper {
    width: 80%
}

.marquee {
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    gap: var(--gap);
    -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
    mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
    height: 100px
}

@media (max-width: 768px) {
    .marquee img {
        filter: none;
        transition: none
    }
    .marquee img:hover {
        transform: none
    }
    .marquee img:hover~.marquee__group,
    .marquee:hover .marquee__group {
        animation-play-state: running
    }
}

.portfolio-main {
    background: url(assets/background-D0Ur4jGu.webp) no-repeat center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 40px;
    z-index: -9
}

.portfolioSwiper {
    width: 90%;
    height: 100%;
    position: relative
}

.portfolioSwiper>.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform .3s ease;
    height: 100px
}

@media (max-width: 1024px) {
    .portfolioSwiper {
        width: 80%;
        height: 100%;
        position: relative
    }
}

@media (max-width: 768px) {
    .portfolio-main {
        background: none;
        padding-block: 20px;
        z-index: -9
    }
    .portfolioSwiper {
        width: 80%;
        height: 100%;
        position: relative
    }
    .portfolioSwiper .swiper-pagination {
        display: none
    }
}

.achievement-main {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    background-color: var(--dark-gray);
    position: relative;
    padding: 30px 0
}

.achievement-content {
    width: 100px;
    color: var(--light-brown);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px
}

.achievement-content h1 {
    font-size: 30px;
    font-weight: 800;
    transition: ease-in-out .3s
}

.achievement-content p {
    width: 150px;
    font-size: 14px;
    font-weight: 700;
    text-align: center
}

@media (max-width: 768px) {
    .inkpen {
        display: none
    }
    .achievement-main {
        gap: 50px;
        margin-top: 40px;
        margin-bottom: 0
    }
    .achievement-content p {
        width: 100px
    }
}

.achievementSwiper {
    width: 70%;
    position: relative
}

.achievementSwiper>.swiper-slide {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    transition: transform .3s ease;
    height: 100px
}

.services_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-inline: 100px
}

.service_card {
    background-color: var(--light-gray);
    border: 2px solid var(--main-color);
    color: #fff;
    border-radius: 25px;
    padding: 20px 15px;
    text-align: center;
    height: 300px;
    transition: background-color .3s ease-in-out;
    box-shadow: 0 4px 8px #0003
}

.service_card:hover {
    background-color: var(--main-color);
    border: 2px solid var(--dark-gray);
    color: #fff
}

.service_card h2 {
    font-size: 25px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 700;
    margin-inline: 30px
}

.service_card h3 {
    font-size: 25px;
    margin-bottom: 40px;
    font-weight: 400
}

.service_card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    padding-inline: 30px 10px;
    height: 200px;
    overflow-y: scroll
}

.service_card ul::-webkit-scrollbar {
    display: none
}

.service_card li {
    margin: 10px 0;
    font-size: 18px;
    position: relative;
    padding-left: 20px
}

.service_card li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #fff
}

.service_card li:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 12px;
    bottom: -10px;
    width: 1px;
    background-color: #fff;
    height: 130%
}

.service_card li:last-child:after {
    content: none
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-inline: 100px
}

.service-bg-icon {
    position: absolute;
    z-index: -1;
    right: 5%
}

.white-card {
    background-color: #fffc;
    border: 2px solid var(--main-color);
    color: #000;
    border-radius: 25px;
    padding: 20px 15px;
    text-align: left;
    height: 250px;
    box-shadow: 0 4px 8px #0003
}

@media (max-width: 1300px) {
    .white-card {
        background-color: #fffc;
        border: 2px solid var(--main-color);
        color: #000;
        border-radius: 25px;
        padding: 20px 15px;
        text-align: left;
        height: 320px;
        box-shadow: 0 4px 8px #0003
    }
}

@media (max-width: 1024px) {
    .card-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-inline: 0px
    }
    .services_cards {
        padding-inline: 20px
    }
    .white-card {
        background-color: #fffc;
        border: 2px solid var(--main-color);
        color: #000;
        border-radius: 25px;
        padding: 20px 15px;
        text-align: left;
        height: 250px;
        box-shadow: 0 4px 8px #0003
    }
}

@media (max-width: 767px) {
    .services_cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        padding-inline: 0px
    }
    .service_card {
        background-color: var(--light-gray);
        border: 2px solid var(--main-color);
        color: #fff;
        border-radius: 25px;
        padding: 30px 4px 10px;
        text-align: center;
        height: 400px;
        transition: background-color .3s ease-in-out;
        box-shadow: 0 4px 8px #0003
    }
    .service_card h2 {
        font-size: 20px;
        margin-bottom: 5px;
        font-weight: 700;
        text-align: left
    }
    .service_card ul {
        list-style: none;
        padding: 0;
        text-align: left;
        padding-inline: 30px 10px;
        height: 300px;
        overflow-y: scroll
    }
    .service_card ul::-webkit-scrollbar {
        display: none
    }
    .service_card li {
        margin: 10px 0;
        font-size: 12px;
        position: relative;
        padding-left: 20px
    }
    .service_card li:before {
        content: "●";
        position: absolute;
        left: 0;
        color: #fff;
        font-size: 12px
    }
    .service_card li:after {
        content: "";
        position: absolute;
        left: 3px;
        top: 12px;
        bottom: -10px;
        width: 1px;
        background-color: #fff;
        height: 130%
    }
    .card-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        padding-inline: 0px
    }
    .white-card {
        background-color: #fffc;
        border: 2px solid var(--main-color);
        color: #000;
        border-radius: 25px;
        padding: 20px 15px;
        text-align: left;
        height: 100%;
        box-shadow: 0 4px 8px #0003
    }
}

.hero_btn {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative
}

.banner_btn-wrapper {
    position: relative;
    display: inline-block
}

.banner_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #344e41;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    z-index: 2;
    transition: ease-in-out .1s
}

.banner_btn-wrapper:hover .banner_btn {
    background-color: var(--main-color)
}

.banner_btn-wrapper:active .banner_btn {
    transform: translate(8px, 8px)
}

.btn-outline {
    background-color: transparent;
    padding: 10px;
    border: 2px solid #344E41;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    padding-block: 22px;
    position: absolute;
    top: 8px;
    left: 8px;
    transition: ease-in-out .1s;
    z-index: 1
}

.btn-outline:hover,
.banner_btn-wrapper:hover .btn-outline {
    background-color: transparent;
    border: 2px solid var(--main-color)
}

@media (max-width: 600px) {
    .hero_btn {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        position: relative
    }
    .btn-outline {
        width: 100% !important;
        font-size: 14px;
        padding-block: 19px
    }
    .banner_btn {
        width: 100% !important;
        font-size: 14px
    }
}

.trusted-main {
    position: relative;
    background-color: var(--main-color);
    background-image: url('https://www.bookwritingconsultant.com/build/assets/trusted-bg-CNZKljIA.svg');
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 40px;
    row-gap: 24px;
    overflow: hidden
}

.slideContent {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 200px;
    box-shadow: 0 5px 15px #0000001a;
    transition: transform .3s ease
}

.slideContent:hover {
    transform: scale(1.3)
}

.wrapper {
    width: 100%
}

.marquee {
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    gap: var(--gap);
    height: 150px
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    animation: scroll-x var(--duration) linear infinite
}

.marquee__group_2 {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x-reverse var(--duration) linear infinite
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused
    }
}

.marquee--vertical {
    --mask-direction: to bottom
}

.marquee--vertical,
.marquee--vertical .marquee__group {
    flex-direction: column
}

@keyframes scroll-x-reverse {
    0% {
        transform: translate(var(--scroll-end))
    }
    to {
        transform: translate(var(--scroll-start))
    }
}

@keyframes scroll-x {
    0% {
        transform: translate(var(--scroll-start))
    }
    to {
        transform: translate(var(--scroll-end))
    }
}

.marquee img {
    width: 100px;
    transition: filter .3s ease, transform .3s ease;
    margin-left: 30px;
    margin-right: 30px
}

@media (max-width: 600px) {
    .marquee img {
        filter: none;
        transition: none
    }
    .marquee img:hover {
        transform: none
    }
    .marquee img:hover~.marquee__group,
    .marquee:hover .marquee__group {
        animation-play-state: running
    }
    .slideContent {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        border-radius: 20px;
        padding: 30px;
        width: 150px;
        box-shadow: 0 5px 15px #0000001a;
        transition: transform .3s ease
    }
}

.bestseller-main_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-inline: 100px
}

.step-card {
    height: 220px;
    background-color: var(--dark-gray);
    border-radius: 12px;
    padding: 10px;
    padding-inline: 30px;
    color: #fff;
    font-size: 14px;
    position: relative;
    box-shadow: 0 4px 6px #0000001a;
    transition: .3s ease, transform .3s ease
}

.step-card:hover {
    background-color: var(--main-color);
    color: #fff
}

.step-header {
    position: absolute;
    top: -25px;
    right: 20px;
    background-color: var(--main-color);
    color: var(--dark-gray);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    transition: background-color .3s ease, color .3s ease
}

.step-card:hover .step-header {
    background-color: var(--dark-gray);
    color: var(--main-color)
}

.card_heading {
    color: var(--main-color);
    font-weight: 700;
    font-size: 20px !important;
    width: 80%
}

.step-card:hover .card_heading {
    color: var(--dark-gray)
}

.step-content__item {
    position: relative;
    margin-block: 20px;
    display: flex;
    align-items: center
}

.step-content p{
    font-size: 17px;
    
}

.step-card:hover .icon {
    background-image: var(--icon-hover)
}

@media (max-width: 1024px) {
    .bestseller-main_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding-inline: 20px
    }
    .step-card {
        height: 100%
    }
    .card_heading {
        font-size: 18px !important
    }
}

@media (max-width: 768px) {
    .bestseller-main_container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        padding-inline: 10px
    }
    .step-card {
        width: 100%;
        height: 100%;
        padding-bottom: 30px
    }
    .card_heading {
        font-size: 16px !important
    }
}

.we-write-main {
    background: url('https://www.bookwritingconsultant.com/build/assets/footer-background-C3FFLqzd.webp') no-repeat center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 40px;
    z-index: -9;
    padding-inline: 100px
}

.slide-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    cursor: grab
}

.slide-content:active {
    cursor: grabbing
}

.item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 8px;
    overflow: hidden;
    transition: opacity .5s ease-in-out
}

.item img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    transition: opacity .5s ease
}

.item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b3;
    opacity: .4;
    transition: opacity .5s ease-in-out;
    border-radius: 25px
}

.item:hover .overlay {
    opacity: 1;
    transition: opacity .3s ease-in-out
}

.item h1 {
    color: #fff;
    font-weight: 700;
    position: absolute;
    bottom: 20px;
    left: 30px;
    margin: 0;
    font-size: 24px;
    transition: opacity .5s ease, bottom .5s ease
}

.item span {
    display: none;
    opacity: 0;
    transform: translateY(20px)
}

.item:hover span {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: transform .6s ease-in-out;
    font-size: 16px;
    font-weight: 300;
    width: 90%
}

.swiper-slide {
    display: flex;
    justify-content: space-around;
    align-items: center
}

@media (max-width: 1024px) {
    .slide-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 15px;
        cursor: grab
    }
    .item h1 {
        overflow: hidden;
        color: #fff;
        font-weight: 400;
        font-size: 18px;
        position: absolute;
        bottom: 8px;
        left: 10%;
        margin: 0;
        display: flex;
        justify-content: end;
        flex-direction: column
    }
    .paraHover {
        color: #fff;
        font-weight: 400;
        font-size: 8px;
        margin: 0
    }
    .item:hover span {
        display: block;
        transition: transform .6s ease-in-out;
        font-size: 12px;
        font-weight: 300;
        width: 80%
    }
}

@media (max-width: 786px) {
    .we-write-main {
        background: linear-gradient(to bottom, var(--light-gray), var(--light-gray), var(--main-color));
        padding-block: 20px;
        padding-inline: 0px;
        z-index: -9
    }
    .slide-content {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(1, auto)
    }
    .item {
        position: relative;
        width: 100%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        border-radius: 8px;
        opacity: 1;
        transition: opacity .3s ease, transform .3s ease
    }
    .item h1 {
        overflow: hidden;
        color: #fff;
        font-weight: 400;
        font-size: 16px;
        position: absolute;
        bottom: 10px;
        left: 5%;
        margin: 0;
        display: flex;
        justify-content: end;
        flex-direction: column
    }
    .paraHover {
        color: #fff;
        font-weight: 400;
        font-size: 8px;
        margin: 0
    }
    .item:hover span {
        display: block;
        transition: transform .6s ease-in-out;
        font-size: 12px;
        font-weight: 300;
        width: 80%
    }
}

.cliet-approved {
    background-image: url('https://www.bookwritingconsultant.com/build/assets/Background-JphZXKmT.webp');
    background-position: 100px center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-block: 40px;
    padding-inline: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    flex-direction: column;
    text-align: center
}

.content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%
}

.logo-layout {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.logo-grid-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%
}

.logo_1,
.logo_2 {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--main-color);
    padding: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%
}

.logo_3 {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--main-color);
    padding: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo_4 {
    width: 100px;
    height: 250px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--main-color);
    padding: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo_5 {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--main-color);
    padding: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo_6 {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--main-color);
    padding: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo_6 img {
    width: 150px
}

@media (max-width: 1024px) {
    .cliet-approved {
        padding-block: 40px;
        padding-inline: 30px
    }
    .content-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        width: 100%
    }
}

@media (max-width: 768px) {
    .cliet-approved {
        padding-block: 20px;
        padding-inline: 10px
    }
    .content-section {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        row-gap: 30px;
        width: 100%
    }
    .logo-layout {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px
    }
    .logo_6 img {
        width: 100px
    }
}

.Testimonials_main {
    background: url('https://www.bookwritingconsultant.com/build/assets/testimonials-bg-CYM4ToyT.svg') no-repeat center center;
    background-size: cover;
    padding-block: 50px;
    padding-inline: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    flex-direction: column;
    text-align: center
}

.testimoial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%
}

@media (max-width: 768px) {
    .Testimonials_main {
        padding-inline: 0
    }
}

.testimonial-swiper {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.testimonials-slide {
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 40px;
    height: auto;
    width: 100%
}

.testimoial_Card {
    background-color: var(--dark-gray);
    color: #fff;
    width: 100%;
    max-width: 400px;
    height: 350px;
    padding: 15px;
    border-radius: 20px;
    border: 2px solid var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .5s ease, box-shadow .5s ease;
    transform: scale(.9)
}

.testimoial_Card.active {
    background-color: var(--main-color);
    border: 2px solid var(--light-gray);
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 10px 20px #0003;
    z-index: 2
}

.profileImg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid var(--main-color)
}

.testimoial_Card.active .profileImg {
    border: 2px solid var(--dark-gray)
}

@media (max-width: 1024px) {
    .testimoial_Card {
        max-width: 90%;
        transform: scale(.95)
    }
}

@media (max-width: 768px) {
    .testimonial-swiper {
        width: 100%;
        height: auto
    }
    .testimoial_Card {
        max-width: 100%;
        transform: scale(.95)
    }
}

.faq_main {
    padding-block: 40px;
    padding-inline: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    flex-direction: column;
    text-align: center
}

.faq-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 20px;
    width: 100%
}

.faq_left-img {
    background-image: url('images/mind-reading-1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center
}

.faq_left-img img {
    width: 55%
}

.faq_question_section {
    width: 65%;
    border-radius: 10px;
    padding: 20px;
    padding-block: 50px;
    text-align: center
}

.faq-item {
    margin: 20px 0;
    border-radius: 20px 20px 0 0
}

.faq-question {
    text-align: left;
    padding: 15px;
    cursor: pointer;
    background-color: #f9f9f9;
    font-weight: 700;
    color: #2d353f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    z-index: 9;
    box-shadow: 0 4px 8px #00000043;
    width: 100%;
    transition: transform .4s ease, background-color .4s ease
}

.faq-question:hover {
    background-color: #eee9e0
}

.faq-answer {
    margin-top: -10px;
    padding: 15px;
    background-color: var(--main-color);
    color: #fff;
    display: none;
    border-radius: 0 0 10px 10px;
    text-align: left;
    z-index: -1
}

.arrow {
    width: 10%
}

.arrow img {
    width: 14px;
    margin-right: 20px
}

@media (max-width: 1204px) {
    .faq_left-img {
        display: none
    }
    .faq_question_section {
        width: 100%
    }
}

@media (max-width: 768px) {
    .faq_main {
        padding-block: 20px;
        padding-inline: 10px;
        row-gap: 0px
    }
    .faq_left-img {
        display: none
    }
    .faq_question_section {
        width: 100%;
        border-radius: 10px;
        padding: 0;
        padding-inline: 10px;
        text-align: center
    }
    .faq-question,
    .faq-answer {
        font-size: 12px
    }
}

.inner-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 10px;
    z-index: -1
}

.inner-text {
    width: 50%;
    color: var(--white);
    row-gap: 12px;
    display: flex;
    flex-direction: column
}

.inner-text h1 {
    color: var(--main-color);
    font-size: 38px;
    font-weight: 700
}

.inner-text h2 {
    color: var(--white);
    font-size: 22px
}

.inner-text p {
    color: var(--white);
    font-size: 18px
}

.inner-book-img {
    width: 25%;
    text-align: end
}

.inner_btn {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
    margin-top: 50px
}

.banner-logo {
    display: none
}

@media (min-width: 2000px) {
    .inner-book-img {
        display: none
    }
}

@media (max-width: 900px) {
    .inner-text {
        width: 100%
    }
    .inner-book-img {
        display: none
    }
}

@media (max-width: 768px) {
    .banner-logo {
        display: inline;
        margin-bottom: 10px
    }
    .inner-text {
        width: 100%;
        margin-block: 10px
    }
    .hero-banner {
        background-image: none;
        background: linear-gradient(to bottom, #d3d3d3, #a9a9a9)
    }
    .inner-book-img {
        display: none
    }
    .inner-text h1 {
        font-size: 24px
    }
    .inner-text h2 {
        font-size: 18px
    }
    .inner-text p {
        font-size: 14px
    }
    .inner_btn {
        flex-wrap: wrap;
        display: flex;
        align-items: center;
        margin-top: 0;
        position: relative;
        gap: 20px
    }
}

.publishing-Card-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-block: 40px;
    width: 100%;
    padding-inline: 100px
}

.publishing-Card {
    height: 100%;
    width: 100%;
    background-color: var(--light-gray);
    border: 3px solid var(--main-color);
    border-radius: 12px;
    padding: 10px 10px 20px;
    padding-inline: 30px;
    color: #fff;
    font-size: 14px;
    position: relative;
    box-shadow: 0 4px 6px #0000001a;
    transition: .3s ease, transform .3s ease
}

.publishing-Card:hover {
    background-color: var(--main-color);
    border: 3px solid var(--light-gray)
}

.card_heading {
    color: var(--main-color);
    font-size: 20px;
    width: 75%
}

.publishing-Card:hover .card_heading {
    color: var(--dark-gray)
}

.publishing-Card-content_item {
    position: relative;
    margin-block: 20px;
    display: flex;
    align-items: center
}

.icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 40px;
    background-image: var(--icon-default);
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image .3s ease
}

.publishing-Card:hover .icon {
    background-image: var(--icon-hover)
}

.publishing-Card p {
    font-size: 18px;
    font-weight: 400
}

@media (max-width: 1440px) {
    .publishing-Card-main {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding-block: 40px;
        width: 100%;
        padding-inline: 50px
    }
    .publishing-Card {
        min-height: 220px;
        width: 100%;
        background-color: var(--light-gray);
        border: 3px solid var(--main-color);
        border-radius: 12px;
        padding: 10px 10px 20px;
        padding-inline: 30px;
        color: #fff;
        font-size: 14px;
        position: relative;
        box-shadow: 0 4px 6px #0000001a;
        transition: .3s ease, transform .3s ease
    }
}

@media (max-width: 768px) {
    .publishing-Card-main {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
        padding-block: 20px;
        width: 100%;
        height: 100;
        padding-inline: 20px
    }
    .publishing-Card {
        height: 100% !important;
        width: 100%;
        background-color: var(--light-gray);
        border: 3px solid var(--main-color);
        border-radius: 12px;
        padding: 10px;
        padding-inline: 30px;
        color: #fff;
        font-size: 14px;
        position: relative;
        box-shadow: 0 4px 6px #0000001a;
        transition: .3s ease, transform .3s ease;
        padding-bottom: 0 !important
    }
    .card_heading {
        color: var(--main-color);
        font-size: 16px;
        width: 70%
    }
    .publishing-Card {
        margin-bottom: 30px
    }
}

.blog-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-inline: 100px;
    padding-block: 50px
}

.blogs-card-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 4px 8px #0003;
    border: 3px solid var(--dark-gray);
    transition: border .3s ease-in-out, transform .3s ease-in-out;
    background-color: var(--dark-gray);
    width: 100%
}

.blogs-card-container:hover {
    border-color: var(--main-color);
    transform: scale(1.02)
}

.blog-card-content {
    width: 100%;
    padding-inline: 30px;
    padding-block: 10px;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    font-size: 15px
}

@media (max-width: 1024px) {
    .blog-card-content {
        height: 130px;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        font-size: 15px
    }
}

@media (max-width: 1440px) {
    .blog-main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding-inline: 100px;
        padding-block: 50px
    }
}

@media (max-width: 768px) {
    .blog-main {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding-inline: 20px;
        padding-block: 50px
    }
    .hero_btn {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 35px;
        position: relative;
        margin-top: 50px
    }
    .blog-card-content {
        font-size: 12px
    }
}

.cliet-approved {
    background-image: url('https://www.bookwritingconsultant.com/build/assets/Background-JphZXKmT.webp');
    background-position: 100px center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 150px;
    padding-inline: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    flex-direction: column;
    text-align: center;
    position: relative
}

.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 12px;
    width: 100%
}

@media (max-width: 786px) {
    .cliet-approved {
        padding-inline: 10px;
        padding-block: 20px
    }
    .content-section {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        row-gap: 12px;
        width: 100%
    }
}

*,
:before,
:after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

*,
:before,
:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

:before,
:after {
    --tw-content: ""
}

html,
:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: Poppins, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,
select {
    text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

ol,
ul,
menu {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

button,
[role=button] {
    cursor: pointer
}

:disabled {
    cursor: default
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle
}

img,
video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

.container {
    width: 100%
}

@media (min-width: 640px) {
    .container {
        max-width: 640px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px
    }
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.bottom-0 {
    bottom: 0
}

.left-0 {
    left: 0
}

.left-3 {
    left: .75rem
}

.left-5 {
    left: 1.25rem
}

.left-\[10\%\] {
    left: 10%
}

.right-3 {
    right: .75rem
}

.top-0 {
    top: 0
}

.top-1\/2 {
    top: 50%
}

.top-5 {
    top: 1.25rem
}

.top-\[55\%\] {
    top: 55%
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-50 {
    z-index: 50
}

.z-\[-9\] {
    z-index: -9
}

.z-\[99\] {
    z-index: 99
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem
}

.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}

.my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

.my-\[10px\] {
    margin-top: 10px;
    margin-bottom: 10px
}

.my-\[20px\] {
    margin-top: 20px;
    margin-bottom: 20px
}

.my-\[30px\] {
    margin-top: 30px;
    margin-bottom: 30px
}

.my-\[40px\] {
    margin-top: 40px;
    margin-bottom: 40px
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mb-\[20px\] {
    margin-bottom: 20px
}

.ml-0 {
    margin-left: 0
}

.ml-1 {
    margin-left: .25rem
}

.ml-2 {
    margin-left: .5rem
}

.ml-auto {
    margin-left: auto
}

.mr-2 {
    margin-right: .5rem
}

.mr-3 {
    margin-right: .75rem
}

.mr-\[20px\] {
    margin-right: 20px
}

.mr-auto {
    margin-right: auto
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mt-6 {
    margin-top: 1.5rem
}

.mt-\[40px\] {
    margin-top: 40px
}

.block {
    display: block
}

.flex {
    display: flex
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.h-14 {
    height: 3.5rem
}

.h-2 {
    height: .5rem
}

.h-4 {
    height: 1rem
}

.h-64 {
    height: 16rem
}

.h-\[100\%\] {
    height: 100%
}

.h-\[100px\] {
    height: 100px
}

.h-\[200px\] {
    height: 200px
}

.h-\[250px\] {
    height: 250px
}

.h-\[40px\] {
    height: 40px
}

.h-\[500px\] {
    height: 500px
}

.h-\[50px\] {
    height: 50px
}

.h-\[70px\] {
    height: 70px
}

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.h-screen {
    height: 100vh
}

.min-h-\[50vh\] {
    min-height: 50vh
}

.w-1\/4 {
    width: 25%
}

.w-1\/6 {
    width: 16.666667%
}

.w-14 {
    width: 3.5rem
}

.w-4 {
    width: 1rem
}

.w-48 {
    width: 12rem
}

.w-\[100\%\] {
    width: 100%
}

.w-\[100px\] {
    width: 100px
}

.w-\[120px\] {
    width: 120px
}

.w-\[150px\] {
    width: 150px
}

.w-\[15px\] {
    width: 15px
}

.w-\[160px\] {
    width: 160px
}

.w-\[18px\] {
    width: 18px
}

.w-\[20px\] {
    width: 20px
}

.w-\[250px\] {
    width: 250px
}

.w-\[25px\] {
    width: 25px
}

.w-\[300px\] {
    width: 300px
}

.w-\[30px\] {
    width: 30px
}

.w-\[50\%\] {
    width: 50%
}

.w-\[50px\] {
    width: 50px
}

.w-\[75\%\] {
    width: 75%
}

.w-\[80\%\] {
    width: 80%
}

.w-\[80px\] {
    width: 80px
}

.w-\[85\%\] {
    width: 85%
}

.w-\[90\%\] {
    width: 90%
}

.w-\[95\%\] {
    width: 95%
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.max-w-7xl {
    max-width: 80rem
}

.flex-1 {
    flex: 1 1 0%
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.animate-spin {
    animation: spin 1s linear infinite
}

.cursor-not-allowed {
    cursor: not-allowed
}

.cursor-pointer {
    cursor: pointer
}

.resize {
    resize: both
}

.list-disc {
    list-style-type: disc
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.flex-row {
    flex-direction: row
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.justify-start {
    justify-content: flex-start
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-around {
    justify-content: space-around
}

.justify-evenly {
    justify-content: space-evenly
}

.gap-1 {
    gap: .25rem
}

.gap-10 {
    gap: 2.5rem
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-\[100px\] {
    gap: 100px
}

.gap-\[10px\] {
    gap: 10px
}

.gap-\[150px\] {
    gap: 150px
}

.gap-\[15px\] {
    gap: 15px
}

.gap-\[24px\] {
    gap: 24px
}

.gap-\[2px\] {
    gap: 2px
}

.gap-\[30px\] {
    gap: 30px
}

.gap-\[50px\] {
    gap: 50px
}

.space-x-5>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-6>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-y-2>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
}

.space-y-4>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

.overflow-hidden {
    overflow: hidden
}

.overflow-y-auto {
    overflow-y: auto
}

.overflow-x-hidden {
    overflow-x: hidden
}

.whitespace-normal {
    white-space: normal
}

.whitespace-nowrap {
    white-space: nowrap
}

.rounded {
    border-radius: .25rem
}

.rounded-\[10px\] {
    border-radius: 10px
}

.rounded-\[20px\] {
    border-radius: 20px
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-md {
    border-radius: .375rem
}

.border {
    border-width: 1px
}

.border-2 {
    border-width: 2px
}

.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1))
}

.border-gray-600 {
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1))
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1))
}

.border-t-blue-500 {
    --tw-border-opacity: 1;
    border-top-color: rgb(59 130 246 / var(--tw-border-opacity, 1))
}

.bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1))
}

.bg-darkGray {
    --tw-bg-opacity: 1;
    background-color: rgb(52 78 65 / var(--tw-bg-opacity, 1))
}

.bg-gray-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1))
}

.bg-lightGray {
    --tw-bg-opacity: 1;
    background-color: rgb(63 74 87 / var(--tw-bg-opacity, 1))
}

.bg-mainOrange {
    --tw-bg-opacity: 1;
    background-color: rgb(163 177 138 / var(--tw-bg-opacity, 1))
}

.bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1))
}

.bg-transparent {
    background-color: transparent
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.bg-opacity-50 {
    --tw-bg-opacity: .5
}

.bg-cover {
    background-size: cover
}

.bg-center {
    background-position: center
}

.bg-right {
    background-position: right
}

.bg-no-repeat {
    background-repeat: no-repeat
}

.fill-yellow-600 {
    fill: #ca8a04
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.p-2 {
    padding: .5rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

.p-\[20px\] {
    padding: 20px
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-\[0px\] {
    padding-left: 0;
    padding-right: 0
}

.px-\[20px\] {
    padding-left: 20px;
    padding-right: 20px
}

.px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.py-\[40px\] {
    padding-top: 40px;
    padding-bottom: 40px
}

.py-\[50px\] {
    padding-top: 50px;
    padding-bottom: 50px
}

.py-\[5px\] {
    padding-top: 5px;
    padding-bottom: 5px
}

.pl-0 {
    padding-left: 0
}

.pl-10 {
    padding-left: 2.5rem
}

.pl-4 {
    padding-left: 1rem
}

.pl-5 {
    padding-left: 1.25rem
}

.pt-12 {
    padding-top: 3rem
}

.pt-2 {
    padding-top: .5rem
}

.pt-5 {
    padding-top: 1.25rem
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-start {
    text-align: start
}

.font-sans {
    font-family: Poppins, sans-serif
}

.text-1rem {
    font-size: 16px
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-\[0\.8rem\] {
    font-size: .8rem
}

.text-\[1\.2rem\] {
    font-size: 1.2rem
}

.text-\[1\.5rem\] {
    font-size: 1.5rem
}

.text-\[12px\] {
    font-size: 12px
}

.text-\[14px\] {
    font-size: 14px
}

.text-\[16px\] {
    font-size: 16px
}

.text-\[18px\] {
    font-size: 18px
}

.text-\[1rem\] {
    font-size: 1rem
}

.text-\[20px\] {
    font-size: 20px
}

.text-\[22px\] {
    font-size: 22px
}

.text-\[24px\] {
    font-size: 24px
}

.text-\[25px\] {
    font-size: 25px
}

.text-\[2rem\] {
    font-size: 2rem
}

.text-\[30px\] {
    font-size: 30px
}

.text-\[32px\] {
    font-size: 32px
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.font-\[800\] {
    font-weight: 800
}

.font-black {
    font-weight: 900
}

.font-bold {
    font-weight: 700
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.font-semibold {
    font-weight: 600
}

.text-darkGray {
    --tw-text-opacity: 1;
    color: rgb(52 78 65 / var(--tw-text-opacity, 1))
}

.text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1))
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1))
}

.text-mainOrange {
    --tw-text-opacity: 1;
    color: rgb(163 177 138 / var(--tw-text-opacity, 1))
}

.text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1))
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1))
}

.text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1))
}

.text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.opacity-50 {
    opacity: .5
}

.shadow-\[4px_4px_10px_rgba\(0\, 0\, 0\, 0\.4\)\] {
    --tw-shadow: 4px 4px 10px rgba(0, 0, 0, .4);
    --tw-shadow-colored: 4px 4px 10px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.outline {
    outline-style: solid
}

.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.duration-300 {
    transition-duration: .3s
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.hover\:bg-blue-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1))
}

.hover\:bg-gray-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}

.hover\:bg-gray-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1))
}

.hover\:bg-orange-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1))
}

.hover\:text-mainOrange:hover {
    --tw-text-opacity: 1;
    color: rgb(163 177 138 / var(--tw-text-opacity, 1))
}

.group:hover .group-hover\:block {
    display: block
}

.group:hover .group-hover\:inline {
    display: inline
}

.group:hover .group-hover\:hidden {
    display: none
}

@media (min-width: 640px) {
    .sm\:my-\[40px\] {
        margin-top: 40px;
        margin-bottom: 40px
    }
    .sm\:mb-\[40px\] {
        margin-bottom: 40px
    }
    .sm\:flex {
        display: flex
    }
    .sm\:h-\[450px\] {
        height: 450px
    }
    .sm\:w-\[20px\] {
        width: 20px
    }
    .sm\:items-center {
        align-items: center
    }
    .sm\:justify-between {
        justify-content: space-between
    }
}

@media (min-width: 768px) {
    .md\:m-\[30px\] {
        margin: 30px
    }
    .md\:my-10 {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem
    }
    .md\:my-8 {
        margin-top: 2rem;
        margin-bottom: 2rem
    }
    .md\:my-\[40px\] {
        margin-top: 40px;
        margin-bottom: 40px
    }
    .md\:mb-0 {
        margin-bottom: 0
    }
    .md\:mt-0 {
        margin-top: 0
    }
    .md\:block {
        display: block
    }
    .md\:w-\[100\%\] {
        width: 100%
    }
    .md\:w-\[200px\] {
        width: 200px
    }
    .md\:w-\[250px\] {
        width: 250px
    }
    .md\:w-\[33\%\] {
        width: 33%
    }
    .md\:w-\[62\%\] {
        width: 62%
    }
    .md\:flex-row {
        flex-direction: row
    }
    .md\:flex-nowrap {
        flex-wrap: nowrap
    }
    .md\:items-center {
        align-items: center
    }
    .md\:gap-4 {
        gap: 1rem
    }
    .md\:gap-\[100px\] {
        gap: 100px
    }
    .md\:gap-\[50px\] {
        gap: 50px
    }
    .md\:rounded-t-\[100px\] {
        border-top-left-radius: 100px;
        border-top-right-radius: 100px
    }
    .md\:p-10 {
        padding: 2.5rem
    }
    .md\:p-4 {
        padding: 1rem
    }
    .md\:p-\[0px\] {
        padding: 0
    }
    .md\:p-\[40px\] {
        padding: 40px
    }
    .md\:px-\[100px\] {
        padding-left: 100px;
        padding-right: 100px
    }
    .md\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }
    .md\:text-center {
        text-align: center
    }
    .md\:text-\[1\.1rem\] {
        font-size: 1.1rem
    }
    .md\:text-\[1\.2rem\] {
        font-size: 1.2rem
    }
    .md\:text-\[1\.8rem\] {
        font-size: 1.8rem
    }
    .md\:text-\[1rem\] {
        font-size: 1rem
    }
    .md\:text-\[2\.2rem\] {
        font-size: 2.2rem
    }
    .md\:text-\[2rem\] {
        font-size: 2rem
    }
    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }
}

@media (min-width: 1024px) {
    .lg\:top-20 {
        top: 5rem
    }
    .lg\:mb-10 {
        margin-bottom: 2.5rem
    }
    .lg\:block {
        display: block
    }
    .lg\:flex {
        display: flex
    }
    .lg\:hidden {
        display: none
    }
    .lg\:h-\[120px\] {
        height: 120px
    }
    .lg\:h-\[350px\] {
        height: 350px
    }
    .lg\:h-\[600px\] {
        height: 600px
    }
    .lg\:h-\[650px\] {
        height: 650px
    }
    .lg\:h-\[70px\] {
        height: 70px
    }
    .lg\:h-\[800px\] {
        height: 800px
    }
    .lg\:w-\[20\%\] {
        width: 20%
    }
    .lg\:w-\[33\%\] {
        width: 33%
    }
    .lg\:w-\[36\%\] {
        width: 36%
    }
    .lg\:w-\[3px\] {
        width: 3px
    }
    .lg\:w-\[60\%\] {
        width: 60%
    }
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    .lg\:flex-row {
        flex-direction: row
    }
    .lg\:items-start {
        align-items: flex-start
    }
    .lg\:justify-center {
        justify-content: center
    }
    .lg\:justify-around {
        justify-content: space-around
    }
    .lg\:justify-evenly {
        justify-content: space-evenly
    }
    .lg\:gap-0 {
        gap: 0px
    }
    .lg\:gap-3 {
        gap: .75rem
    }
    .lg\:gap-y-10 {
        row-gap: 2.5rem
    }
    .lg\:bg-white {
        --tw-bg-opacity: 1;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
    }
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .lg\:px-\[100px\] {
        padding-left: 100px;
        padding-right: 100px
    }
    .lg\:px-\[200px\] {
        padding-left: 200px;
        padding-right: 200px
    }
    .lg\:px-\[50px\] {
        padding-left: 50px;
        padding-right: 50px
    }
    .lg\:px-\[80px\] {
        padding-left: 80px;
        padding-right: 80px
    }
    .lg\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }
    .lg\:py-\[50px\] {
        padding-top: 50px;
        padding-bottom: 50px
    }
    .lg\:py-\[80px\] {
        padding-top: 80px;
        padding-bottom: 80px
    }
    .lg\:text-\[1\.2rem\] {
        font-size: 1.2rem
    }
    .lg\:text-\[1\.5rem\] {
        font-size: 1.5rem
    }
    .lg\:text-\[1\.6rem\] {
        font-size: 1.6rem
    }
    .lg\:text-\[2\.2rem\] {
        font-size: 2.2rem
    }
    .lg\:text-\[24px\] {
        font-size: 24px
    }
    .lg\:text-\[2rem\] {
        font-size: 2rem
    }
    .lg\:text-\[35px\] {
        font-size: 35px
    }
    .lg\:text-\[3rem\] {
        font-size: 3rem
    }
    .lg\:text-\[42px\] {
        font-size: 42px
    }
    .lg\:text-\[60px\] {
        font-size: 60px
    }
}

@media (min-width: 1280px) {
    .xl\:h-\[400px\] {
        height: 400px
    }
    .xl\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media (min-width: 1536px) {
    .\32xl\:flex {
        display: flex
    }
    .\32xl\:h-\[400px\] {
        height: 400px
    }
    .\32xl\:h-\[545px\] {
        height: 545px
    }
    .\32xl\:flex-col {
        flex-direction: column
    }
    .\32xl\:justify-center {
        justify-content: center
    }
}

@media (prefers-color-scheme: dark) {
    .dark\:border-gray-700 {
        --tw-border-opacity: 1;
        border-color: rgb(55 65 81 / var(--tw-border-opacity, 1))
    }
    .dark\:bg-gray-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1))
    }
    .dark\:text-gray-600 {
        --tw-text-opacity: 1;
        color: rgb(75 85 99 / var(--tw-text-opacity, 1))
    }
}

/* banner */
    .top-banner {
            background: linear-gradient(135deg, #1a4d4d 0%, #2d6b6b 100%);
            color: white;
            padding: 15px 40px;
            text-align: center;
            font-size: 16px;
            margin-bottom: 0;
        }

        .main-header {
            background: white;
            padding: 6px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo-top {
            font-size: 42px;
            font-weight: bold;
            letter-spacing: 1px;
            color: #2d3748;
        }

        .logo-top .and {
            color: #d4a574;
            font-weight: 300;
        }

        .logo-bottom {
            background: #1a4d4d;
            color: white;
            padding: 5px 20px;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 3px;
            margin-top: 5px;
        }

        .header-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 20px;
        }

        .buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #1a4d4d;
        }

        /*.btn-phone {*/
        /*    background: #1a4d4d;*/
        /*    color: white;*/
        /*}*/

        /*.btn-phone:hover {*/
        /*    background: #2d6b6b;*/
        /*    transform: translateY(-2px);*/
        /*}*/

        .btn-quote {
            background: transparent;
            color: #1a4d4d;
        }

        .btn-quote:hover {
            background: #1a4d4d;
            color: white;
            transform: translateY(-2px);
        }

        .services-list {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .service-item {
            color: #2d3748;
            font-size: 15px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: color 0.3s ease;
            position: relative;
        }

        .service-item:hover {
            color: #1a4d4d;
        }

        .service-item::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #1a4d4d;
            transition: width 0.3s ease;
        }

        .service-item:hover::after {
            width: 100%;
        }

        @media (max-width: 1024px) {
            .main-header {
                flex-direction: column;
                gap: 25px;
                text-align: center;
            }

            .logo {
                align-items: center;
            }

            .header-right {
                align-items: center;
                width: 100%;
            }

            .services-list {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .buttons {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            .services-list {
                flex-direction: column;
                gap: 15px;
            }

            .logo-top {
                font-size: 32px;
            }

            .logo-bottom {
                font-size: 18px;
            }
        }

    /* BWC Carousel Section */
    .bwc-carousel-section {
        position: relative;
        width: 100%;
        min-height: 100vh;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4rem 1rem;
        overflow: hidden;
    }

    .bwc-section-header {
        display: none;
    }

    .bwc-carousel-container {
        width: 100%;
        height: 600px;
        position: relative;
        perspective: 1000px;
        transform-style: preserve-3d;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bwc-carousel-track {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bwc-card {
        position: absolute;
        width: 400px;
        height: 450px;
        background: #1e293b;
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease, z-index 0s;
        overflow: hidden;
        cursor: pointer;
        user-select: none;
        -webkit-user-drag: none;
        transform-origin: center center;
    }

    .bwc-card-image {
        width: 100%;
        height: calc(100% - 60px);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        border-radius: 14px 14px 0 0;
        overflow: hidden;
    }

    .bwc-card-title {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .bwc-card {
            width: 380px;
            height: 420px;
        }
    }

    @media (max-width: 768px) {
        .bwc-card {
            width: 340px;
            height: 380px;
        }

        .bwc-carousel-container {
            perspective: 800px;
        }
    }

        
.tm-premium-section {
    /* Local Tokens to avoid :root global scope */
    --tm-sage-muted: #8FA895;
    --tm-sage-light: #C5D1C8;
    --tm-forest-dark: #2D3A30;
    --tm-charcoal-overlay: rgba(18, 18, 18, 0.85);
    --tm-soft-white: #F5F5F5;
    --tm-pure-white: #FFFFFF;
    --tm-accent-sage: #A3B18A;
    --tm-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/library-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden; /* Prevent horizontal scroll from slider */
}

/* Reset for internal elements only */
.tm-premium-section *, 
.tm-premium-section *::before, 
.tm-premium-section *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.tm-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Charcoal overlay kept as comment per user's last edit, but using blur */
    background-color: rgb(35 33 33 / 85%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.tm-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tm-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.tm-title {
    font-family: 'Outfit', sans-serif;
    color: var(--tm-accent-sage);
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.tm-description {
    color: var(--tm-soft-white);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.9;
}

/* Slider Container */
.tm-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    cursor: grab;
    position: relative;
}

.tm-slider-container:active {
    cursor: grabbing;
}

.tm-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Card Styling */
.tm-card {
    flex: 0 0 400px; 
    margin: 0 40px;
    height: 480px;
    border-radius: 24px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--tm-transition);
    position: relative;
    user-select: none;
}

/* Side Cards */
.tm-card.tm-side {
    background-color: var(--tm-forest-dark);
    transform: scale(0.85);
    opacity: 0.6;
}

.tm-card.tm-side .tm-text {
    color: var(--tm-soft-white);
}

.tm-card.tm-side .tm-user-name {
    color: var(--tm-pure-white);
}

/* Focused Card */
.tm-card.tm-focused {
    background-color: var(--tm-sage-light);
    transform: scale(1.05);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tm-card.tm-focused .tm-text {
    color: #2D3A30;
}

.tm-card.tm-focused .tm-user-name {
    color: #1A241D;
}

/* Avatar Styling */
.tm-avatar-container {
    width: 80px;
    height: 80px;
    background-color: var(--tm-pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.tm-avatar-container img {
    width: 70%;
    height: auto;
}

.tm-user-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tm-text {
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

/* Indicators */
.tm-indicator-container {
    margin-top: 60px;
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 40px;
}

.tm-indicator-bar {
    width: 6px;
    background-color: var(--tm-pure-white);
    opacity: 0.3;
    border-radius: 4px;
    height: 12px;
    transition: var(--tm-transition);
}

.tm-indicator-bar.tm-active {
    height: 32px;
    width: 8px;
    background-color: var(--tm-sage-muted);
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tm-card {
        flex: 0 0 300px;
        margin: 0 15px;
        height: 420px;
        padding: 32px 24px;
    }

    .tm-header {
        margin-bottom: 40px;
    }

    .tm-title {
        font-size: 1.5rem; /* Adjusted for mobile */
    }

    .tm-description {
        font-size: 0.95rem;
    }
}

    

/* ================= FOOTER OVERRIDE FIX ================= */
/* High-specificity + !important so global/page CSS can't break this footer */

.footer-main,
.footer-bottom {
    background-color: #1f3a3a !important;
    color: #ffffff !important;
}

.footer-main .container,
.footer-bottom .container {
    max-width: 1320px;
    margin-inline: auto;
}

/* ---- Layout fallback (works even if Bootstrap grid fails/conflicts) ---- */
.footer-main .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 40px !important;
}

.footer-main .row > [class*="col-"] {
    flex: 1 1 300px !important;
    max-width: 100% !important;
}

.footer-main .row > .col-lg-5 { flex: 1 1 40% !important; }
.footer-main .row > .col-lg-3 { flex: 1 1 22% !important; }
.footer-main .row > .col-lg-4 { flex: 1 1 30% !important; }

@media (max-width: 991px) {
    .footer-main .row > [class*="col-"] {
        flex: 1 1 100% !important;
    }
}

/* ---- Logo / description ---- */
.footer-main .logo-section img {
    display: block;
}

.footer-main .description {
    color: #d8e0e0 !important;
    line-height: 1.7;
    font-size: 15px;
}

/* ---- Section headings (Services / Contact) ---- */
.footer-main .section-title {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 28px !important;
    margin-bottom: 20px !important;
}

/* ---- Services list ---- */
.footer-main .services-lists {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-main .services-lists li {
    margin-bottom: 14px;
}

.footer-main .services-lists a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 16px;
}

.footer-main .services-lists a:hover {
    text-decoration: underline !important;
}

/* ---- Contact list ---- */
.footer-main .contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #ffffff !important;
}

.footer-main .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #ffffff !important;
    font-size: 15px;
}

.footer-main .contact-list a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.footer-main .contact-list i {
    color: #ffffff !important;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

/* ---- Bottom footer row ---- */
.footer-bottom .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: auto !important;
}

.footer-bottom .footer-links li {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap;
}

.footer-bottom .footer-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    white-space: nowrap;
}

.footer-bottom .footer-links a:hover {
    text-decoration: underline !important;
}

.footer-bottom .copyright {
    color: #ffffff !important;
    font-size: 14px;
}

.footer-bottom .payment-icons img {
    background: #ffffff;
    border-radius: 4px;
    padding: 2px 6px;
}

/* ---- Disclaimer ---- */
.disclaimer {
    background-color: #1f3a3a !important;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.disclaimer p {
    color: #b9c4c4 !important;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

@media(max-width:991px){

.footer-main{
text-align:left;
}

.logo-section img{
margin-bottom:20px;
}

.description{
max-width:100%;
}

.payment-icons{
justify-content:flex-start;
margin-top:25px;
}

.copyright{
text-align:left;
margin:20px 0;
}

.footer-bottom{
padding:25px 0;
}

}

@media (max-width:991px){

    .footer-main{
        text-align:left;
    }

    .payment-icons{
        justify-content:flex-start;
        margin-top:20px;
    }

    .copyright{
        text-align:left;
        margin:20px 0;
    }

    .description{
        max-width:100%;
    }
}




        :root{
  --teal-dark: #14524f;
  --teal-darker: #0d3c39;
  --gold: #d9a441;
  --grey-bg: #8a8a8a;
  --text-dark: #174248;
}

*{
  box-sizing: border-box;
}

body{
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  margin:0;
  overflow-x: hidden;
}

a{ text-decoration:none; }

/* ===================== HERO SECTION ===================== */
.hero-section{
  position: relative;
  min-height: 760px;
  padding: 90px 0;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-bg-grid{
  position:absolute;
  inset:0;
  background-image:url('images/bookcover.webp');
  background-size: 220px 220px;
  background-repeat: repeat;
  background-color:#11151a;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    
}

.hero-row{
  position:relative;
  z-index:2;
}

.hero-title{
  color:#fff;
  font-weight: 800;
  font-size: 3.1rem;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.hero-text{
  color:#e9e9e9;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-buttons{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-phone{
  border: 2px solid #fff;
  color:#fff;
  background: transparent;
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 2px;
  transition: all .25s ease;
}
.btn-outline-phone:hover{
  background:#fff;
  color: var(--teal-darker);
}

.btn-outline-quote{
  border: 2px solid #fff;
  color:#fff;
  background: rgba(255,255,255,0.08);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 2px;
  transition: all .25s ease;
}
.btn-outline-quote:hover{
  background:#fff;
  color: var(--teal-darker);
}

.btn-outline-phone-dark{
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark);
  background: transparent;
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 2px;
  transition: all .25s ease;
}
.btn-outline-phone-dark:hover{
  background: var(--teal-dark);
  color:#fff;
}

.btn-outline-quote-dark{
  border: 2px solid var(--teal-dark);
  color:#fff;
  background: var(--teal-dark);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 2px;
  transition: all .25s ease;
}
.btn-outline-quote-dark:hover{
  background: var(--teal-darker);
}

/* ===================== FORM CARD ===================== */
.hero-form-card{
  background:#fff;
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.form-heading{
  color: var(--teal-dark);
  font-weight: 700;
  text-align:center;
  margin-bottom: 24px;
  font-size: 1.4rem;
  line-height: 1.4;
}
select.custom-input{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.custom-input{
  background:#f4f4f4;
  border: none;
  border-radius: 4px;
  padding: 13px 16px;
  font-size: 0.95rem;
}
.custom-input:focus{
  box-shadow: 0 0 0 3px rgba(20,82,79,0.25);
  background:#fff;
}

.btn-submit{
  background: var(--teal-dark);
  color:#fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px;
  border-radius: 4px;
  border:none;
  transition: background .25s ease;
}
.btn-submit:hover{
  background: var(--teal-darker);
  color:#fff;
}
.hero-form-col{
    flex: 0 0 35%;
    max-width: 35%;
}

@media (max-width:991.98px){
    .hero-form-col{
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 49.666667%;
    }
}

/* ===================== ICON FEATURES ===================== */
.icon-features{
  background:#fff;
}

.icon-circle{
  width: 90px;
  height: 90px;
  background: var(--teal-dark);
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 22px;
  font-size: 2rem;
  color:#fff;
}

.feature-title{
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.feature-text{
  color:#555;
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ===================== ABOUT / PARALLAX SECTION ===================== */
.about-section{
  position: relative;
  padding: 130px 0 90px;
  overflow:hidden;
  isolation:isolate;
}

.about-section .col-lg-7{
 padding-left: 50px;
}

.about-content{
    flex: 0 0 55%;
    max-width: 50%;
}

@media (max-width:991.98px){
    .about-content{
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.about-wave-top{
  position:absolute;
  top:-1px;
  left:0;
  width:100%;
  height:90px;
  z-index:3;
  background:#fff;
  -webkit-clip-path: ellipse(60% 100% at 50% 0%);
  clip-path: ellipse(60% 100% at 50% 0%);
}

.about-parallax-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  background-image:url('images/barnesnoblepublishing.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateY(0);
}

.about-dark-overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background: rgba(70,70,70,0.55);
}

.about-heading{
  color:#fff;
  font-weight: 800;
  font-size: 2.1rem;
  margin-bottom: 18px;
  text-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.about-text{
  color:#f1f1f1;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.book-mockup-wrap{
  display:flex;
  justify-content:center;
}

.book-mockup{
  border-radius: 4px;
  transform: rotate(-2deg);
  max-width: 480px;
}

/* ===================== OUR SERVICES SECTION ===================== */
.services-section{
  background:#fff;
}

.services-heading{
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--text-dark);
}

.services-subtext{
  color:#666;
  font-size: 1rem;
}

.service-title{
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.service-text{
  color:#555;
  line-height: 1.75;
  margin-bottom: 26px;
}

.service-image{
  max-width: 360px;
  border-radius: 6px;
      margin-left: 50px;

}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px){
  .hero-title{ font-size: 2.3rem; }
  .hero-section{ padding: 60px 0; min-height: auto; }
  .about-section{ padding: 90px 0 60px; }
  .about-parallax-bg{ background-attachment: scroll; }
}

@media (max-width: 575.98px){
  .hero-title{ font-size: 1.9rem; }
  .hero-buttons{ flex-direction: column; }
  .hero-buttons .btn{ width: 100%; text-align:center; }
}

@media (prefers-reduced-motion: reduce){
  .about-parallax-bg{
    transform: none !important;
  }
}

/* ===================== ZIGZAG SERVICES GRID ===================== */
.zigzag-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.zg-img{
  border-radius: 6px;
  overflow:hidden;
  min-height: 280px;
}
.zg-img img{
  width:100%; height:100%; object-fit:cover; display:block; min-height:280px;
}
.zg-content{
  display:flex; flex-direction:column; align-items:center;
  text-align:center; justify-content:center; padding: 10px 20px;
}
@media (max-width: 767.98px){
  .zigzag-grid{ grid-template-columns: 1fr; }
}

/* ===================== PRICING SECTION ===================== */
.pricing-section{ background:#fff; }
.pricing-heading{ font-weight:600; font-size:3rem; color:var(--text-dark); }
.pricing-subtext{ color:#666; max-width:1200px; margin:18px auto 0; }

.price-card{
  background:#fafafa;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 30px 26px;
  text-align:center;
  height:100%;
  display:flex; flex-direction:column;
}
.price-card-featured{
  background:#fff;
  border: 2px solid var(--teal-dark);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transform: scale(1.03);
}
.price-title{ font-weight:800; font-size:2rem; margin-bottom:4px; }
.price-sub{ color:#777; margin-bottom:16px; }
.price-off{
  background: var(--teal-dark);
  color:#fff;
  font-weight:800;
  font-size:1.3rem;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.price-list{
  list-style:none;
  padding:0;
  margin: 0 0 22px;
  text-align:left;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 8px;
}
.price-list li{
  font-size:0.92rem;
  line-height:1.5;
  color:#444;
  margin-bottom:12px;
  display:flex;
  gap:8px;
}
.price-list li i{ color: var(--teal-dark); margin-top:3px; flex-shrink:0; }
.price-list::-webkit-scrollbar{ width:6px; }
.price-list::-webkit-scrollbar-thumb{ background:#bbb; border-radius:10px; }
.price-list::-webkit-scrollbar-track{ background:#f0f0f0; }

/* ===================== CTA PARALLAX SECTION ===================== */
.cta-parallax-section{
  position:relative;
  padding: 90px 0;
  overflow:hidden;
  isolation:isolate;
}
.cta-parallax-bg{
  position:absolute; inset:0; z-index:-2;
  background-image:url('images/DcU9ZDCVAAAEDuB.webp');
  background-size:cover;
  background-position:center;
  will-change: transform;
}
.cta-dark-overlay{
  position:absolute; inset:0; z-index:-1;
  background: rgba(10,10,10,0.55);
}

.cta-left-card{
  background:#fff;
  border-radius:6px;
  padding: 40px 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  opacity:0;
  transform: translateX(-80px);
  transition: opacity .8s ease, transform .8s ease;
}
.cta-left-card.in-view{
  opacity:1;
  transform: translateX(0);
}
.cta-left-title{ color:var(--teal-dark); font-weight:800; font-size:1.9rem; margin-bottom:18px; }
.cta-left-text{ color:#444; line-height:1.75; margin-bottom:18px; }

.text-gold{ color: var(--gold); }

.btn-outline-quote-dark2{
  border:2px solid var(--teal-dark); color:var(--teal-dark);
  padding:12px 28px; font-weight:600; border-radius:2px; background:transparent;
  transition: all .25s ease;
}
.btn-outline-quote-dark2:hover{ background:var(--teal-dark); color:#fff; }
.btn-outline-phone-dark2{
  border:2px solid var(--teal-dark); color:#fff; background:var(--teal-dark);
  padding:12px 26px; font-weight:600; border-radius:2px;
  transition: all .25s ease;
}
.btn-outline-phone-dark2:hover{ background:var(--teal-darker); }
    


/* ===================== PORTFOLIO ===================== */

.portfolio-section{
    background:#fff;
    padding:90px 0;
}

.portfolio-section .container-fluid{
    max-width:1380px;
}

.portfolio-heading{
    font-size:40px;
    font-weight:500;
    color:#000;
    margin-bottom:15px;
}

.portfolio-subtext{
    max-width:900px;
    margin:auto;
    font-size:19px;
    color:#444;
    margin-bottom:60px;
}

/* Carousel */

.portfolio-carousel-wrap{
    position:relative;
}

.portfolio-track-viewport{
    overflow:hidden;
}

.portfolio-track{
    display:flex;
    gap:12px;
    transition:.6s ease;
}

.portfolio-slide{
    flex:0 0 calc((100% - 24px) / 3);
}

.portfolio-slide img{

    width:100%;
    height:550px;
    object-fit:cover;
    display:block;

    border-radius:0;
    transition:.45s;
}

.portfolio-slide:hover img{
    transform:scale(1.03);
}

/* Arrows */

.portfolio-arrow{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.15);

    z-index:5;
    cursor:pointer;

    transition:.3s;
}

.portfolio-prev{
    left:-25px;
}

.portfolio-next{
    right:-25px;
}

.portfolio-arrow:hover{
    background:#000;
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

.portfolio-slide{
    flex:0 0 calc((100% - 12px)/2);
}

.portfolio-slide img{
    height:540px;
}

}

/* Mobile */

@media(max-width:767px){

.portfolio-heading{
    font-size:36px;
}

.portfolio-subtext{
    font-size:15px;
}

.portfolio-slide{
    flex:0 0 100%;
}

.portfolio-slide img{
    height:480px;
}

.portfolio-prev{
    left:10px;
}

.portfolio-next{
    right:10px;
}

}
/* ===================== TIMING SECTION ===================== */
.timing-img{ min-height:340px; }
.timing-img img{ width:100%; height:100%; object-fit:cover; display:block; min-height:340px; }

.timing-text-wrap{
  background:#e9e9e9;
  display:flex;
  align-items:center;
  min-height:340px;
}
.timing-text{ padding: 50px 60px; }
.timing-heading{ font-weight:800; font-size:1.9rem; margin-bottom:18px; }
.timing-sub{ font-weight:600; margin-bottom:24px; }

@media (max-width: 991.98px){
  .timing-text{ padding: 40px 30px; }
}

/* ===================== ALTERNATING SERVICE ROWS ===================== */
.svc-row{ width:100%; background:#fff; }

.svc-text{ padding: 55px 60px; }
.svc-light .svc-text{ background:#fff; }
.svc-grey .svc-text{ background:#f0f0f0; }
.svc-dark .svc-text{ background: var(--teal-dark); color:#fff; }

.svc-text h3{ font-weight:700; font-size:1.5rem; margin-bottom:10px; }
.svc-text h5{ font-weight:700; font-size:1.02rem; margin-bottom:16px; }
.svc-text p{ font-size:0.95rem; line-height:1.7; margin-bottom:14px; }
.svc-light .svc-text p, .svc-grey .svc-text p{ color:#444; }
.svc-dark .svc-text p{ color:#e8e8e8; }

.svc-italic{ font-style: italic; }
.svc-light .svc-italic, .svc-grey .svc-italic{ color:#555 !important; }
.svc-dark .svc-italic{ color:#cfd8d6 !important; }

/* Image side: always plain white, image floats centered, NOT full-bleed cover */
.svc-img{
  background:#fff;
  min-height:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 30px 40px;
}
.svc-img img{
  width:auto;
  max-width:100%;
  height:auto;
  max-height:420px;
  object-fit:contain;
  display:block;
}

@media (max-width: 991.98px){
  .svc-text{ padding: 36px 24px; }
  .svc-img{ padding: 20px; }
}


/*==============================
GENERAL
==============================*/
.why-section{
    margin-top: 50px;
}
.why-section,
.testimonial-section{
    padding:90px 0;
    background:#fff;
    

}

.section-title{
    font-size:40px;
    font-weight:600;
    color:#000;
    margin-bottom:25px;
}

.section-desc{
    max-width:900px;
    margin:auto;
    font-size:17px;
    line-height:1.7;
    color:#222;
}

/*==============================
CAROUSEL
==============================*/

.carousel-item{
    padding:10px;
}

/*==============================
WHY CARD
==============================*/

.why-card{

    position:relative;

    border:2px solid #1d5157;

    border-radius:18px;

    background:#fff;

    min-height:260px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:5px 8px;

    overflow:hidden;

}

.why-icon{

    width:80px;
    margin-bottom:20px;
     display:flex;
    justify-content:center;
    align-items:center;

}


.why-icon i{
    font-size:48px;
}

.why-icon img{

    width:100%;

}

.why-card h3{

    font-size:40px;
    font-weight:700;
    color:#25253b;
    margin-bottom:20px;

}

.why-card p{

    font-size:17px;
    line-height:1.8;
    color:#333;
    max-width:900px;

}

/*==============================
TESTIMONIAL CARD
==============================*/

.testimonial-card{

    position:relative;

    border:1px solid #e6e6e6;

    border-radius:14px;

    min-height:210px;

    padding:10px 16px;

    overflow:hidden;

    background:#fff;

}

.testimonial-card h3{

    font-size:40px;

    font-weight:600;

    color:#25253b;

    margin-bottom:20px;

}

.testimonial-card p{

    font-size:17px;

    line-height:1.8;

    color:#333;

}

/*==============================
CORNERS
==============================*/

.corner{

    position:absolute;

    background:#17484d;

}

/* top left */

.corner-top{

    top:0;

    left:0;

    width:170px;

    height:90px;

    clip-path:polygon(0 0,100% 0,0 100%);

}

/* bottom right */

.corner-bottom{

    right:0;

    bottom:0;

    width:170px;

    height:90px;

    clip-path:polygon(100% 0,100% 100%,0 100%);

}

/*==============================
REMOVE DEFAULT ICONS
==============================*/

.carousel-control-next-icon,
.carousel-control-prev-icon{

    display:none;

}

.carousel-indicators{

    margin-bottom:-55px;

}

.carousel-indicators button{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#17484d;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.section-title{

font-size:42px;

}

.section-desc{

font-size:17px;

padding:0 15px;

}

.why-card{

padding:40px 25px;

min-height:280px;

}

.why-card h3{

font-size:30px;

}

.why-card p{

font-size:16px;

}

.testimonial-card{

padding:35px 25px;

}

.testimonial-card h3{

font-size:30px;

}

.testimonial-card p{

font-size:16px;

}

.corner-top,
.corner-bottom{

width:110px;
height:60px;

}

}

/*=========================
CONTACT
==========================*/

.contact-section{

    position:relative;

    padding:90px 0;

    background:url(images/02-1-scaled.jpg) center/cover;

    overflow:hidden;

}

.contact-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(4px);

}

.contact-heading{

    position:relative;

    z-index:2;

    color:#fff;

    margin-bottom:50px;

}

.contact-heading h2{

    font-size:58px;

    font-weight:800;

}

.contact-heading p{

    width:700px;

    max-width:100%;

    margin:18px auto 0;

    font-size:18px;

}

.contact-box{

    position:relative;

    z-index:2;

    background:#fff;

    max-width:820px;

    margin:auto;

    border-radius:28px;

    padding:35px;

    border:4px solid #1f5d64;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.contact-box label{

    font-weight:700;

    color:#27414b;

    margin-bottom:8px;

    display:block;

}

.contact-box label span{

    color:red;

}

.contact-box .form-control{

    height:52px;

    border-radius:14px;

    border:1.5px solid #2d6a73;

    padding:15px;

    font-size:15px;

    box-shadow:none;

}

.contact-box textarea.form-control{

    height:130px;

    resize:none;

}

.interest-title{

    margin-bottom:18px;

}

.form-check{

    margin-bottom:12px;

}

.form-check label{

    font-weight:500;

    margin-left:8px;

    display:inline;

}

.contact-btn{

    width:100%;

    height:55px;

    border:none;

    border-radius:8px;

    background:#3e5f69;

    color:#fff;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.contact-btn:hover{

    background:#1f4f57;

}

@media(max-width:768px){

.contact-section{

padding:70px 20px;

}

.contact-heading h2{

font-size:34px;

}

.contact-box{

padding:25px;

}

}

/*=========================
FAQ
==========================*/

.faq-section{

    padding:80px 0;

    background:#fff;

}

.custom-faq{

    max-width:1200px;

    margin:auto;

}

.custom-faq .accordion-item{

    border:1px solid #e5e5e5;

    border-radius:0;

    margin-bottom:12px;

    overflow:hidden;

}

.custom-faq .accordion-button{

    background:#fff;

    font-size:16px;

    font-weight:600;

    color:#000;

    padding:14px 10px;

    box-shadow:none;

}

.custom-faq .accordion-button:focus{

    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:#fff;

    color:#000;

}

.custom-faq .accordion-body{

    padding:0 30px 25px;

    color:#555;

    font-size:16px;

    line-height:1.8;

}

/* Arrow */

.custom-faq .accordion-button::after{

    background-image:none;

    content:"\f054";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    transform:none;

    font-size:18px;

}

.custom-faq .accordion-button:not(.collapsed)::after{

    transform:rotate(90deg);

}

@media(max-width:768px){

.custom-faq .accordion-button{

font-size:16px;

padding:18px;

}

.custom-faq .accordion-body{

padding:0 18px 18px;

font-size:15px;

}

}


/*=========================
FOOTER
==========================*/

.footer-section{

    background:#24474d;

    color:#fff;

    padding:80px 0 30px;

}

.footer-logo{

    width:180px;

    margin-bottom:30px;

}

.footer-text{

    color:#e3e3e3;

    line-height:2;

    margin-bottom:35px;

}

.footer-links,
.footer-menu,
.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li,
.footer-menu li,
.footer-contact li{

    margin-bottom:16px;

}

.footer-links a,
.footer-menu a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover,
.footer-menu a:hover{

    color:#d8b36a;

}

.footer-section h3{

    font-size:40px;

    font-weight:700;

    margin-bottom:30px;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    color:#f5f5f5;

    line-height:1.8;

}

.footer-contact i{

    margin-top:6px;

    color:#fff;

}

.footer-bottom{

    margin-top:50px;

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.payment-icons{

    display:flex;

    gap:15px;

}

.payment-icons img{

    height:34px;

}

.footer-disclaimer{

    margin-top:30px;

    color:#d8d8d8;

    font-size:14px;

    line-height:1.9;

}

@media(max-width:991px){

.footer-section{

text-align:center;

}

.footer-contact li{

justify-content:center;

}

.footer-bottom{

justify-content:center;

}

.footer-section h3{

font-size:30px;

}

}