: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(/build/assets/Poppins-Regular-CTKNfV9P.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Alex-brush;
    src: url(/build/assets/AlexBrush-Regular-D-KohkEC.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

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

.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(/build/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(/build/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: 14px;
    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: 14px
    }
    .footer-section-terms {
        text-align: center
    }
    .footer-section-terms p {
        font-size: 12px
    }
}

@media (max-width: 768px) {
    .footer-line-break,
    .footer-section-detail img {
        display: none
    }
    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        width: 100%
    }
    .footer-logo img {
        margin-right: 15px;
        width: 50px
    }
    .footer-logo p {
        font-size: 14px
    }
    .footer-links {
        width: 45%
    }
    .footer-section-detail {
        flex-wrap: wrap;
        justify-content: space-between
    }
    .footer-form {
        width: 100%
    }
    .social-container_1 {
        width: 100%;
        justify-content: space-evenly;
        margin-bottom: 20px
    }
    .social-container_2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        height: auto;
        font-size: 12px
    }
    .social-detail p {
        text-align: center;
        font-size: 12px;
        white-space: normal
    }
    .footer-section-terms {
        text-align: center
    }
    .footer-section-terms p {
        font-size: 12px
    }
}

.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: 16px
}

.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: 16px;
    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: 16px
    }
    .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: 36px;
    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: 24px;
        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(/build/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: 12px;
    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: 16px;
    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-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('https://www.bookwritingconsultant.com/build/assets/mind-reading%201-B1ukVXrd.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: 16px
}

.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: 16px;
    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))
    }
}