* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

:root {
    --green: #1768B7;
    --orange: #EE751E;
    --dark: #030a3c;
    --light: #ffffff;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}


/* ******************* Topbar Start ************************ */

.topbar {
    background-color: var(--green);
}

.topbar a {
    text-decoration: none;
    color: var(--light);
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--orange);
}

.topbar .text-color {
    color: var(--light) !important;
}

.topbar .text-dark {
    color: var(--light) !important;
}

/************************* Topbar End ************************ */

/*************************** Navbar Start************************ ***/

.navbar {
    box-shadow: var(--box-shadow);
    border-bottom: 1px solid var(--green);
}

.navbar-brand {
    width: 175px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 24px;
   /* padding: 25px 0;*/
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}


.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler {
    color: var(--light) !important;
    border-color: var(--light) !important;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid var(--orange);
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--orange);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--green);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) and (max-width: 1024px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 16px;
        font-size: 12px;
    }
}

@media screen and (max-width: 840px) {
    .navbar-brand {
        width: 107px;
    }

    .navbar-collapse {
        position: absolute;
        background: white !important;
        height: 100vh;
        width: 225px;
        left: -282px;
        top: 54px;
        box-shadow: var(--box-shadow);
        padding-top: 10px;
        padding-bottom: 10px;
        transition: .3s linear;
    }

    .navbar-collapse.show {
        top: 65px;
        left: 0px;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }


}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: 1px solid var(--green);
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/************************* navbar end ************************ */


/*** ************************carousel start ***************************/

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}



/* .carousel img {
    height: 640px;
    width: 100%;
}

@media screen and (max-width: 840px) {

    .carousel img {
        height: 260px;
        width: 100%;
    }

} */

marquee {
    background-color: var(--orange);
}

/************************* carousel end  *************************/


/*************************** Section Title Start ************************ ***/

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 450px;
    color: var(--green);
}

@media screen and (max-width: 840px) {
    .section-title {
        width: 280px;
    }

}
.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--orange);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--orange);
    border: 10px solid var(--light);
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}

/************************* Section Title End *************************/


/************************** Product Start **************************/

#product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

#product .nav-pills .nav-item .btn {
    background: var(--green);
    color: var(--light);
}

#product .nav-pills .nav-item .btn:hover,
#product .nav-pills .nav-item .btn.active {
    background: var(--orange);
    color: var(--light);
}

#product .product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

#product .product-item .new {
    background: var(--orange);
    color: var(--light);
}

#product .product-item img {
    transition: .5s;
}

#product .product-item:hover img {
    transform: scale(1.1);
}

#product .product-item a {
    text-decoration: none;
    color: var(--green);
}

#product .product-item .fa-star {
    color: var(--orange);
}

#product .product-item a:hover {
    color: var(--dark) !important;
}


.flag-discount {
    border-radius: 6px 0 0 6px;
    color: #fff;
    display: block;
    float: left;
    padding: 10px 20px;
    background: var(--orange);
    font-size: 20px;
    font-weight: 400;
    position: relative;
}

.flag-discount::before,
.flag-discount::after {
    content: "";
    position: absolute;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    display: block;
}

.flag-discount::before {
    top: 0;
    border-width: 22px 15px 0 0;
    border-color: var(--orange) transparent transparent transparent;
}

.flag-discount::after {
    bottom: 0;
    border-width: 0 15px 22px 0;
    border-color: transparent transparent var(--orange) transparent;
}


/************************** Product End **************************/



/***************************** Testimonial Start *****************************/
.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--green) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--orange) !important;
}


/***************************** Testimonial End *****************************/


/***************************** Footer Start *****************************/

#footer {
    background: var(--green);
    color: var(--light);
}

#footer h4,
#footer h1 {
    color: var(--orange);
}

#footer a {
    text-decoration: none;
    color: var(--light);
}

#footer a:hover {
    color: var(--orange);
}

#footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

#footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

#footer .btn.btn-link:hover {
    color: var(--orange);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    padding: 10px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    background-color: var(--orange);
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--green);
}

/***************************** Footer End *****************************/


/***************************** Video Start *****************************/

#video-section {
    background: linear-gradient(rgba(85, 180, 78, 0.85), rgba(78, 180, 78, 0.85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

#video-section .icon {
    height: 40px;
    width: 40px;
    background: var(--light);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 16px;
}

#video-section .text {
    color: var(--dark);
}

#video-section .btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

#video-section .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

#video-section .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

#video-section .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--orange);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#video-section .modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#video-section .modal-video .modal-body {
    position: relative;
    padding: 0px;
}

#video-section .modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: var(--orange);
    opacity: 1;
}

/***************************** Video End *****************************/


/****************************** contact section start  ******************************/

#contact .info {
    background: var(--green);
    box-shadow: var(--box-shadow);
    border-radius: 20px;
}

#contact .info h5 {
    color: var(--dark);
}

#contact .info p {
    color: var(--light);
}

#contact .contact-form {
    border: 2px solid var(--orange);
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    padding: 18px;
}

/****************************** contact section End  ******************************/


/****************************** Our Story Start  ******************************/

#our_story h1 {
    color: var(--dark);
}

#our_story i {
    color: var(--orange);
    font-size: 20px;
}

#year_sucess ul {
    --col-gap: 2rem;
    --row-gap: 2rem;
    --line-w: 0.25rem;
    display: grid;
    grid-template-columns: var(--line-w) 1fr;
    grid-auto-columns: max-content;
    column-gap: var(--col-gap);
    list-style: none;
    width: min(60rem, 90%);
    margin-inline: auto;
    padding-left: 0;
}

/* line */
#year_sucess ul::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 20;
    background: rgb(225, 225, 225);
    border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
#year_sucess ul li:not(:last-child) {
    margin-bottom: var(--row-gap);
}

/* card */
#year_sucess ul li {
    grid-column: 2;
    --inlineP: 1.5rem;
    margin-inline: var(--inlineP);
    grid-row: span 2;
    display: grid;
    grid-template-rows: min-content min-content min-content;
}

/* date */
#year_sucess ul li .date {
    --dateH: 3rem;
    height: var(--dateH);
    margin-inline: calc(var(--inlineP) * -1);

    text-align: center;
    background-color: var(--accent-color);

    color: white;
    font-size: 1.25rem;
    font-weight: 700;

    display: grid;
    place-content: center;
    position: relative;

    border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
#year_sucess ul li .date::before {
    content: "";
    width: var(--inlineP);
    aspect-ratio: 1;
    background: var(--accent-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
    position: absolute;
    top: 100%;

    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: 0;
}

/* circle */
#year_sucess ul li .date::after {
    content: "";
    position: absolute;
    width: 2rem;
    aspect-ratio: 1;
    background: var(--bgColor);
    border: 0.3rem solid var(--accent-color);
    border-radius: 50%;
    top: 50%;

    transform: translate(50%, -50%);
    right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
#year_sucess ul li .title,
#year_sucess ul li .descr {
    background: var(--bgColor);
    position: relative;
    padding-inline: 1.5rem;
}

#year_sucess ul li .title {
    overflow: hidden;
    padding-block-start: 1.5rem;
    padding-block-end: 1rem;
    font-weight: 500;
}

#year_sucess ul li .descr {
    padding-block-end: 1.5rem;
    font-weight: 300;
}

/* shadows */
#year_sucess ul li .title::before,
ul li .descr::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    left: 50%;
    border-radius: 50%;
    filter: blur(4px);
    transform: translate(-50%, 50%);
}

#year_sucess ul li .title::before {
    bottom: calc(100% + 0.125rem);
}

#year_sucess ul li .descr::before {
    z-index: -1;
    bottom: 0.25rem;
}

@media (min-width: 40rem) {
    #year_sucess ul {
        grid-template-columns: 1fr var(--line-w) 1fr;
    }

    #year_sucess ul::before {
        grid-column: 2;
    }

    #year_sucess ul li:nth-child(odd) {
        grid-column: 1;
    }

    #year_sucess ul li:nth-child(even) {
        grid-column: 3;
    }

    /* start second card */
    #year_sucess ul li:nth-child(2) {
        grid-row: 2/4;
    }

    #year_sucess ul li:nth-child(odd) .date::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        left: 0;
    }

    #year_sucess ul li:nth-child(odd) .date::after {
        transform: translate(-50%, -50%);
        left: calc(100% + var(--col-gap) + var(--line-w) / 2);
    }

    #year_sucess ul li:nth-child(odd) .date {
        border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
    }
}

/****************************** Our Story End  ******************************/

/****************************** Our Cause Start  ******************************/
#our_cause h1 {
    color: var(--dark);
}

#our_cause .our_cause_box {
    transition: .5s;
    border: 2px solid var(--green);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

#our_cause .our_cause_box i {
    color: var(--orange);
}

#our_cause .our_cause_box h4 {
    color: var(--green);
}

#our_cause .our_cause_box:hover {
    background: var(--green);
}

#our_cause .our_cause_box:hover {
    color: var(--light);
}

#our_cause .our_cause_box:hover i {
    color: var(--dark);
}

#our_cause .our_cause_box:hover h4 {
    color: var(--orange);
}

/****************************** Our Cause End  ******************************/

/***************************** mission_vission start  *****************************/

#mission_vission .mission_vission-start,
#mission_vission .mission_vission-end {
    background: linear-gradient(rgba(85, 180, 78, 0.85), rgba(78, 180, 78, 0.85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

#mission_vission h1 {
    color: var(--dark);
}

#mission_vission p {
    color: var(--light);
}

@media (min-width: 992px) {
    #mission_vission .mission_vission-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    #mission_vission .mission_vission-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

/***************************** mission_vission End  *****************************/


/***************************** Directors Section Start  *****************************/


#directors .director-card {
    margin-bottom: 32px;
}

#directors .director-card .card-header {
    color: var(--light);
}

#directors .director-card .socials a {
    width: 40px;
    height: 40px;
    background: var(--green);
    display: inline-block;
    transition: .9s;
}

#directors .director-card .socials a:hover {
    background: var(--orange);
}

#directors .director-card .socials i {
    color: #fff;
    padding: 12px;
}

#directors .director-card .line {
    height: 5px;
    width: 200px;
    background: linear-gradient(90deg, var(--green) 0%, var(--orange) 50%, var(--green) 100%);
    margin: 20px 0;
}

#directors .director-card .card-header {
    background: linear-gradient(90deg, var(--green) 0%, var(--orange) 50%, var(--green) 100%);
}

#directors .director-card .card-body {
    background: #ddd;
}


@media (max-width: 600px) {
    #directors .director-card .socials {
        margin-bottom: 30px;
    }

    #directors .director-card .card-body img {
        width: 100%;
    }
}

.teamWrapper {
    margin-top: 80px;
}

.teamWrapper .avatar {
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    text-align: center;
}

.teamWrapper .avatar img {
    width: 150px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid var(--dark);
    box-shadow: var(--box-shadow);
}

.teamWrapper .teamcolinner {
    position: relative;
    border: 1px dashed var(--dark);
    min-height: 100px;
    background: var(--light);
    z-index: 9;
}

.teamWrapper .teamcol {
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
    position: relative;
    transition: transform 1s ease-in-out;
}

.teamWrapper .teamcol:hover {
    box-shadow: var(--box-shadow);
    transition: transform 1s ease-in-out;
}

.teamWrapper .teamcol:before {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background: -webkit-linear-gradient(var(--green), var(--green));
    border-top-right-radius: 10px;
    transition: width 1s ease-in-out;
}

.teamWrapper .teamcol:after {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: -webkit-linear-gradient(var(--orange), var(--orange));
    border-bottom-left-radius: 10px;
    transition: width 1s ease-in-out;
}

.teamWrapper .teamcol:hover::before,
.teamWrapper .teamcol:hover::after {
    width: 100%;
    transition: width 1s ease-in-out;
}

.teamWrapper .member-name {
    margin-top: 80px;
    color: var(--dark);
}

.teamWrapper .member-mail a {
    text-decoration: none;
    color: var(--orange);
}

.teamWrapper .member-info {
    padding: 10px 20px;
}

.teamWrapper .social-listing {
    align-items: center;
    justify-content: center;
    display: flex;
    list-style: none;
    padding: 0;
}

.teamWrapper .social-listing li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--green);
    border-radius: 50%;
    margin: 5px;
}

.teamWrapper .social-listing li a {
    color: var(--light);
}

.teamWrapper .social-listing li:hover {
    background-color: var(--dark);
}

.teamWrapper .social-listing li a:hover {
    color: var(--orange);
}

/***************************** Directors Section End  *****************************/


/**************************** News letter start ****************************/

#newsletter .newsletter-card {
    box-shadow: var(--box-shadow);
    border: 1px solid var(--green);
    border-radius: 0px 0px 20px 20px;
    border-bottom: 5px solid var(--green);
    margin-bottom: 32px;
}

#newsletter h2 {
    color: var(--dark);
}

#newsletter ul li {
    list-style: none;
}

#newsletter ul li i {
    color: var(--orange);
    font-size: 24px;
    font-weight: 500;
    margin-right: 10px;
}

#newsletter .line_clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#newsletter .card-body {
    border-bottom: 1px solid var(--orange);

}

/**************************** News letter End ****************************/



/**************************** Seal of Trust Start ****************************/

#seal_of_trust .item {
    border-bottom: 2px solid var(--orange);
    box-shadow: var(--box-shadow);
}

#seal_of_trust .item h3 {
    color: var(--dark);
}

/**************************** Seal of Trust End ****************************/


/**************************** Wellness Books Start ****************************/
#wellness_books .book_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    border: 2px solid var(--green);
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: var(--box-shadow);
}

#wellness_books .book_box h3 {
    color: var(--dark);
    margin-top: 10px;
}

#wellness_books .book_box .rating {
    color: var(--orange);
}

#wellness_books .line_clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
    margin: 20px;
}

#wellness_books .book {
    --witdh: 200px;
    --height: 300px;
    --thick: 40px;
    --inner: 6px;
    --pages-bg: var(--light);
    --cover-bg: rgba(33, 32, 30, 255);
    --cover-radius: 6px;
    position: relative;
    width: var(--witdh);
    height: var(--height);
    transform: rotateY(-30deg) rotateX(30deg);
    transition: 0.5s transform;
}

#wellness_books .book:hover {
    transform: rotateY(-20deg) rotateX(20deg);
}

#wellness_books .book,
#wellness_books .book__cover,
#wellness_books .book__pages {
    transform-style: preserve-3d;
}

#wellness_books .book__cover,
#wellness_books .book__cover::before,
#wellness_books .book__cover-img {
    border-top-right-radius: var(--cover-radius);
    border-bottom-right-radius: var(--cover-radius);
    user-select: none;
}

#wellness_books .book__cover::before,
#wellness_books .book__cover::after,
#wellness_books .book__pages::before,
#wellness_books .book__pages::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
}

#wellness_books .book__cover,
#wellness_books .book__cover::before,
#wellness_books .book__cover::after {
    background-color: var(--cover-bg);
}

#wellness_books .book__cover {
    width: 100%;
    height: 100%;
}

#wellness_books .book__cover::before {
    width: 100%;
    transform: translateZ(calc(var(--thick)*-1));
    box-shadow: 0 0 16px 1px rgba(0, 0, 0, 1);
}

#wellness_books .book__cover::after {
    width: var(--thick);
    transform-origin: left center;
    transform: rotateY(90deg);
}

#wellness_books .book__cover-img {
    width: 100%;
    height: 100%;
}

#wellness_books .book__pages,
#wellness_books .book__pages::before,
#wellness_books .book__pages::after {
    background: var(--pages-bg);
}

#wellness_books .book__pages {
    position: absolute;
    right: var(--inner);
    top: var(--inner);
    width: var(--thick);
    height: calc(100% - var(--inner)*2);
    transform-origin: right center;
    transform: rotateY(-90deg);
}

#wellness_books .book__pages::before,
#wellness_books .book__pages::after {
    width: var(--thick);
    height: calc(var(--witdh) - var(--inner));
}

#wellness_books .book__pages::before {
    transform-origin: center top;
    transform: rotateX(90deg);
}

#wellness_books .book__pages::after {
    top: unset;
    bottom: 0;
    transform-origin: center bottom;
    transform: rotateX(-90deg);
}

/**************************** Wellness Books End ****************************/


/**************************** Receipes Start ****************************/

.recipe-card {
    background: var(--dark);
    margin-bottom: 24px;
    /* margin: 4em auto;
    width: 90%;
    max-width: 496px; */
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.recipe-card aside {
    position: relative;
}

.recipe-card aside img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.recipe-card aside .button {
    background: var(--orange);
    display: inline-block;
    position: absolute;
    top: 80%;
    right: 3%;
    width: 4.0625em;
    height: 4.0625em;
    border-radius: 4.0625em;
    line-height: 4.0625em;
    text-align: center;
}

.recipe-card aside .button .icon {
    vertical-align: middle;
}

.recipe-card article {
    padding: 1.25em 1.5em;
}

.recipe-card article ul {
    list-style: none;
    margin: 0.5em 0 0;
    padding: 0;
}

.recipe-card article ul li {
    display: inline-block;
    margin-left: 1em;
    line-height: 1em;
}

.recipe-card article ul li:first-child {
    margin-left: 0;
}

.recipe-card article ul li .icon {
    vertical-align: bottom;
}

.recipe-card article ul li span:nth-of-type(2) {
    margin-left: 0.5em;
    font-size: 0.8em;
    font-weight: 300;
    vertical-align: middle;
    color: var(--light);
}

.recipe-card article h2,
.recipe-card article h3 {
    margin: 0;
    font-weight: 300;
}

.recipe-card article h2 {
    font-size: 1.75em;
    color: var(--green);
}

.recipe-card article h3 {
    font-size: 0.9375em;
    color: var(--light);
}

.recipe-card article p {
    margin: 1.25em 0;
    font-size: 0.8125em;
    font-weight: 400;
    color: var(--light);
}

.recipe-card article p span {
    font-weight: 700;
    color: var(--orange);
}

.recipe-card article .ingredients {
    margin: 2em 0 0.5em;
}

.recipe-card .icon {
    display: inline;
    display: inline-block;
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/203277/recipe-card-icons.svg);
    background-repeat: no-repeat;
}

.recipe-card .icon-calories,
.recipe-card .icon-calories\:regular {
    background-position: 0 0;
    width: 16px;
    height: 19px;
}

.recipe-card .icon-clock,
.recipe-card .icon-clock\:regular {
    background-position: 0 -19px;
    width: 20px;
    height: 20px;
}

.recipe-card .icon-level,
.recipe-card .icon-level\:regular {
    background-position: 0 -39px;
    width: 16px;
    height: 19px;
}

.recipe-card .icon-play,
.recipe-card .icon-play\:regular {
    background-position: 0 -58px;
    width: 21px;
    height: 26px;
}

.recipe-card .icon-users,
.recipe-card .icon-users\:regular {
    background-position: 0 -84px;
    width: 18px;
    height: 18px;
}



/**************************** Receipes End ****************************/



.picZoomer {
    position: relative;
    /*margin-left: 40px;
    padding: 15px;*/
}

.picZoomer-pic-wp {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.picZoomer-pic-wp:hover .picZoomer-cursor {
    display: block;
}

.picZoomer-zoom-pic {
    position: absolute;
    top: 0;
    left: 0;
}

.picZoomer-pic {
    /*width: 100%;
	height: 100%;*/
}

.picZoomer-zoom-wp {
    display: none;
    position: absolute;
    z-index: 999;
    overflow: hidden;
    border: 1px solid #eee;
    height: 460px;
    margin-top: -19px;
}

.picZoomer-cursor {
    display: none;
    cursor: crosshair;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid #eee;
    background-color: rgba(0, 0, 0, .1);
}

.picZoomCursor-ico {
    width: 23px;
    height: 23px;
    position: absolute;
    top: 40px;
    left: 40px;
    background: url(images/zoom-ico.png) left top no-repeat;
}

.my_img {
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
}

.piclist li {
    display: inline-block;
    width: 90px;
    height: 114px;
    border: 1px solid #eee;
}

.piclist li img {
    width: 97%;
    height: auto;
}

/* custom style */
.picZoomer-pic-wp,
.picZoomer-zoom-wp {
    border: 1px solid #eee;
}



.section-bg {
    background-color: #fff1e0;
}

section {
    padding: 60px 0;
}

.row-sm .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
}

/*===pic-Zoom===*/
._boxzoom {
    display: flex;
}
._boxzoom .zoom-thumb {
    width: 90px;
    display: inline-block;
    vertical-align: top;
    margin-top: 0px;
}

._boxzoom .zoom-thumb ul.piclist {
    padding-left: 0px;
    top: 0px;
}

._boxzoom ._product-images {
    width: 80%;
    display: inline-block;
}

._boxzoom ._product-images .picZoomer {
    width: 100%;
}

._boxzoom ._product-images .picZoomer .picZoomer-pic-wp img {
    left: 0px;
}

._boxzoom ._product-images .picZoomer img.my_img {
    width: 100%;
}


.piclist li img {
    height: 100px;
    object-fit: cover;
}


.product-thumb .item img {
    height: 100px;
}

.product-name {
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 4px;
}

.product-price-discount {
    font-size: 22px;
    font-weight: 400;
    padding: 10px 0;
    clear: both;
}

.product-price-discount span.line-through {
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 14px;
    vertical-align: middle;
    color: #a5a5a5;
}

.display-flex {
    display: flex;
}

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

.product-info {
    width: 100%;
}

.reviews-counter {
    font-size: 13px;
}

.reviews-counter span {
    vertical-align: -2px;
}

.rate {
    float: left;
    padding: 0 10px 0 0;
}

.rate:not(:checked)>input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked)>label {
    float: right;
    width: 15px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 21px;
    color: #ccc;
    margin-bottom: 0;
    line-height: 21px;
}

.rate:not(:checked)>label:before {
    content: "\2605";
}

.rate>input:checked~label {
    color: #ffc700;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.product-dtl p {
    font-size: 14px;
    line-height: 24px;
    color: #7a7a7a;
}

.product-dtl .form-control {
    font-size: 15px;
}

.product-dtl label {
    line-height: 16px;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.product-count {
    margin-top: 15px;
}

.product-count .qtyminus,
.product-count .qtyplus {
    width: 34px;
    height: 34px;
    background: #212529;
    text-align: center;
    font-size: 19px;
    line-height: 36px;
    color: #fff;
    cursor: pointer;
}

.product-count .qtyminus {
    border-radius: 3px 0 0 3px;
}

.product-count .qtyplus {
    border-radius: 0 3px 3px 0;
}

.product-count .qty {
    width: 60px;
    text-align: center;
}

.product-count a {
    text-decoration: none;
}

.round-black-btn {
    border-radius: 4px;
    background: #212529;
    color: #fff;
    padding: 7px 45px;
    display: inline-block;
    margin-top: 20px;
    border: solid 2px #212529;
    transition: all 0.5s ease-in-out 0s;
}

.round-black-btn:hover,
.round-black-btn:focus {
    background: transparent;
    color: #212529;
    text-decoration: none;
}

.product-info-tabs {
    margin-top: 25px;
}

.product-info-tabs .nav-tabs {
    border-bottom: 2px solid #d8d8d8;
}

.product-info-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}

.product-info-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #323232;
}

.product-info-tabs .nav-tabs .nav-item .nav-link:hover {
    border: none;
}

.product-info-tabs .nav-tabs .nav-item.show .nav-link,
.product-info-tabs .nav-tabs .nav-link.active,
.product-info-tabs .nav-tabs .nav-link.active:hover {
    border: none;
    border-bottom: 2px solid #d8d8d8;
    font-weight: bold;
}

.product-info-tabs .tab-content .tab-pane {
    padding: 30px 20px;
    font-size: 15px;
    line-height: 24px;
    color: #7a7a7a;
}

.review-form .form-group {
    clear: both;
}

.mb-20 {
    margin-bottom: 20px;
}

.review-form .rate {
    float: none;
    display: inline-block;
}

.review-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: #000;
}

.review-form .form-control {
    font-size: 14px;
}

.review-form input.form-control {
    height: 40px;
}

.review-form textarea.form-control {
    resize: none;
}

.review-form .round-black-btn {
    text-transform: uppercase;
    cursor: pointer;
}



/* shop single ==================================================== */


.picZoomer {
    position: relative;
    /*margin-left: 40px;
    padding: 15px;*/
}

.picZoomer-pic-wp {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.picZoomer-pic-wp:hover .picZoomer-cursor {
    display: block;
}

.picZoomer-zoom-pic {
    position: absolute;
    top: 0;
    left: 0;
}

.picZoomer-pic {
    /*width: 100%;
	height: 100%;*/
}

.picZoomer-zoom-wp {
    display: none;
    position: absolute;
    z-index: 999;
    overflow: hidden;
    border: 1px solid #eee;
    height: 460px;
    margin-top: -19px;
}

.picZoomer-cursor {
    display: none;
    cursor: crosshair;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid #eee;
    background-color: rgba(0, 0, 0, .1);
}

.picZoomCursor-ico {
    width: 23px;
    height: 23px;
    position: absolute;
    top: 40px;
    left: 40px;
    background: url(images/zoom-ico.png) left top no-repeat;
}

.my_img {
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
}

.piclist li {
    display: inline-block;
    width: 90px;
    height: 114px;
    border: 1px solid #eee;
}

.piclist li img {
    width: 97%;
    height: auto;
}

/* custom style */
.picZoomer-pic-wp,
.picZoomer-zoom-wp {
    border: 1px solid #eee;
}



.section-bg {
    background-color: #fff1e0;
}

section {
    padding: 60px 0;
}

.row-sm .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
}

/*===pic-Zoom===*/
._boxzoom .zoom-thumb {
    width: 90px;
    display: inline-block;
    vertical-align: top;
    margin-top: 0px;
}

._boxzoom .zoom-thumb ul.piclist {
    padding-left: 0px;
    top: 0px;
}

._boxzoom ._product-images {
    width: 80%;
    display: inline-block;
}

._boxzoom ._product-images .picZoomer {
    width: 100%;
}

._boxzoom ._product-images .picZoomer .picZoomer-pic-wp img {
    left: 0px;
}

._boxzoom ._product-images .picZoomer img.my_img {
    width: 100%;
}

.piclist li img {
    height: 100px;
    object-fit: cover;
}


.product-thumb .item img {
    height: 100px;
}

.product-name {
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 4px;
}

.product-price-discount {
    font-size: 22px;
    font-weight: 400;
    padding: 10px 0;
    clear: both;
}

.product-price-discount span.line-through {
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 14px;
    vertical-align: middle;
    color: #a5a5a5;
}

.display-flex {
    display: flex;
}

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

.product-info {
    width: 100%;
}

.reviews-counter {
    font-size: 13px;
}

.reviews-counter span {
    vertical-align: -2px;
}

.rate {
    float: left;
    padding: 0 10px 0 0;
}

.rate:not(:checked)>input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked)>label {
    float: right;
    width: 15px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 21px;
    color: #ccc;
    margin-bottom: 0;
    line-height: 21px;
}

.rate:not(:checked)>label:before {
    content: "\2605";
}

.rate>input:checked~label {
    color: #ffc700;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.product-dtl p {
    font-size: 14px;
    line-height: 24px;
    color: #7a7a7a;
}

.product-dtl .form-control {
    font-size: 15px;
}

.product-dtl label {
    line-height: 16px;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.product-count {
    margin-top: 15px;
}

.product-count .qtyminus,
.product-count .qtyplus {
    width: 34px;
    height: 34px;
    background: #212529;
    text-align: center;
    font-size: 19px;
    line-height: 36px;
    color: #fff;
    cursor: pointer;
}

.product-count .qtyminus {
    border-radius: 3px 0 0 3px;
}

.product-count .qtyplus {
    border-radius: 0 3px 3px 0;
}

.product-count .qty {
    width: 60px;
    text-align: center;
}

.product-count a {
    text-decoration: none;
}

.round-black-btn {
    border-radius: 4px;
    background: #212529;
    color: #fff;
    padding: 7px 45px;
    display: inline-block;
    margin-top: 20px;
    border: solid 2px #212529;
    transition: all 0.5s ease-in-out 0s;
}

.round-black-btn:hover,
.round-black-btn:focus {
    background: transparent;
    color: #212529;
    text-decoration: none;
}

.product-info-tabs {
    margin-top: 25px;
}

.product-info-tabs .nav-tabs {
    border-bottom: 2px solid #d8d8d8;
}

.product-info-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}

.product-info-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #323232;
}

.product-info-tabs .nav-tabs .nav-item .nav-link:hover {
    border: none;
}

.product-info-tabs .nav-tabs .nav-item.show .nav-link,
.product-info-tabs .nav-tabs .nav-link.active,
.product-info-tabs .nav-tabs .nav-link.active:hover {
    border: none;
    border-bottom: 2px solid #d8d8d8;
    font-weight: bold;
}

.product-info-tabs .tab-content .tab-pane {
    padding: 30px 20px;
    font-size: 15px;
    line-height: 24px;
    color: #7a7a7a;
}

.review-form .form-group {
    clear: both;
}

.mb-20 {
    margin-bottom: 20px;
}

.review-form .rate {
    float: none;
    display: inline-block;
}

.review-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: #000;
}

.review-form .form-control {
    font-size: 14px;
}

.review-form input.form-control {
    height: 40px;
}

.review-form textarea.form-control {
    resize: none;
}

.review-form .round-black-btn {
    text-transform: uppercase;
    cursor: pointer;
}


/* what we do  ================================================= */
.what-we-do-img {
    width: 50px;
}

/*--------------------------------------------------------------
# WHY US Section
--------------------------------------------------------------*/
.why-us .img-bg {
    background-size: cover;
    background-position: center center;
    min-height: 400px;
}
@media screen and (max-width: 840px) {

    .why-us .img-bg {

        min-height: 260px;
    }
}
.why-us h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

/* .why-us h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--green);
    left: 0;
    bottom: 0;
} */


.why-us .icon-box i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: 0.3s;
}

.why-us .icon-box:hover i {
    background-color: var(--green);
    color: #fff;
}

.why-us .icon-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.why-us .icon-box h4 a {
    color: #000;
    transition: 0.3s;
}

.why-us .icon-box h4 a:hover {
    color: var(--green);
}

.why-us .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}


/* Why Choose Us */
:root {
    --main-color: #01B77A;
}

.main-timeline {
    font-family: 'Poppins', sans-serif;
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.main-timeline .timeline {
    width: 49%;
    padding: 150px 0 0;
    float: left;
}

.main-timeline .timeline-content {
    text-align: start;
    padding: 0 20px 20px;
    border: 3px dashed var(--main-color);
    border-top: none;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    display: block;
    position: relative;
    z-index: 1;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-content:before {
    content: '';
    background-color: var(--main-color);
    height: 110px;
    width: 110px;
    border-radius: 80% 100% 10px;
    box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: -150px;
    z-index: -1;
}

.main-timeline .timeline-year {
    color: var(--main-color);
    background-color: #fff;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 20px;
    height: 68px;
    width: 68px;
    padding: 15px 10px;
    border-radius: 50%;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5), 0 0 0 7px #fff;
    transform: translateX(-50%);
    position: absolute;
    top: -132px;
    left: 50%;

}

.main-timeline .timeline-year span {
    display: block;
}

.main-timeline .title {
    color: var(--main-color);
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px 0;
    text-align: center;
}

.main-timeline .description {
    color: #555;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0;
}

.main-timeline .timeline:nth-child(even) {
    float: right;
    margin: 0 0 0 10px;
}

.main-timeline .timeline:nth-child(2) {
    --main-color: #FF3E58;
}

.main-timeline .timeline:nth-child(3) {
    --main-color: #02A7B9;
}

.main-timeline .timeline:nth-child(4) {
    --main-color: #FF8E16;
}

@media screen and (max-width:767px) {

    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even) {
        width: 100%;
        margin: 0 0 30px;
    }
}

#what-we-do {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

.main .card {
    color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

.main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
}

.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .main .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--dark);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}

.about-item{
    overflow: hidden;
    border-radius: 10px;
}
.about-item img {
    transition: .5s;
}

.about-item:hover img {
    transform: scale(1.2);
}

.about-section{
	position:relative;
	/* padding:120px 0px; */
}

.about-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.about-section .content-column .inner-column{
	position:relative;
	padding-top:50px;
	padding-right:100px;
}

.about-section .content-column .text{
	position:relative;
	color:#777777;
	font-size:15px;
	line-height:2em;
	margin-bottom:40px;
}

.about-section .content-column .email{
	position:relative;
	color:#252525;
	font-weight:700;
	margin-bottom:50px;
}

.about-section .image-column{
	position:relative;
	margin-bottom:50px;
}

.about-section .image-column .inner-column{
	position:relative;
	padding:40px 40px 0px 0px;
	margin-left:50px;
}

.about-section .image-column .inner-column:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	left:40px;
	bottom:100px;
	z-index:-1;
	border:2px solid #d7a449;
}

.about-section .image-column .inner-column .image{
	position:relative;
}

.about-section .image-column .inner-column .image:before{
	position:absolute;
	content:'';
	left:-50px;
	bottom:-50px;
	width:299px;
	height:299px;
	background:url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.about-section .image-column .inner-column .image .overlay-box{
	position:absolute;
	left:40px;
	bottom:48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box{
	position:relative;
	color:#252525;
	font-size:24px;
	font-weight:700;
	line-height:1.4em;
	padding-left:125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number{
	position:absolute;
	left:0px;
	top:0px;
	width:110px;
	height:110px;
	color:#d7a449;
	font-size:68px;
	font-weight:700;
	line-height:105px;
	text-align:center;
	background-color:#ffffff;
	border:1px solid #000000;
}
.about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}
.about-section .btn-style-three:hover {
    color: #ffffff;
    background: #d7a449;
}
.about-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid #d7a449;
    font-family: 'Arimo', sans-serif;
}
.sec-title2{
	color:#fff;
}
.sec-title {
    position: relative;
    padding-bottom: 40px;
}
.sec-title .title {
    position: relative;
    color: #d7a449;
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}
.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}
 .pf-section {
        padding: 60px 0;
        background: #f8f9fa;
    }
    .pf-title {
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        color: #333;
        margin-bottom: 20px;
    }
    .pf-subtitle {
        text-align: center;
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto 40px;
        color: #555;
        line-height: 1.8;
    }
    .pf-card {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: 0.3s;
        height: 100%;
    }
    .pf-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }
    .pf-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        color: crimson;
    }
    .pf-card p {
        font-size: 15px;
        color: #444;
        line-height: 1.7;
    }
    .pf-icon {
        font-size: 50px;
        color: crimson;
        margin-bottom: 15px;
    }
	
	#intro {
		background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
		background-size: auto;
	}
	
	.focus-section {
        padding: 60px 0;
        background: #ffffff;
    }
    .focus-title {
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 40px;
        color: #333;
    }
    .focus-card {
        background: #f8f9fa;
        border-radius: 14px;
        padding: 28px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: 0.3s ease;
        height: 100%;
        text-align: center;
    }
    .focus-card:hover {
        transform: translateY(-6px);
        background: #fff;
        box-shadow: 0 10px 26px rgba(0,0,0,0.15);
    }
    .focus-icon {
        font-size: 40px;
        margin-bottom: 12px;
        color: crimson;
    }
    .focus-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #333;
    }
    .focus-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
    }
	  .icon-box {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 18px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.07);
        transition: 0.3s ease-in-out;
        height: 195px;
    }
    .icon-box i {
        font-size: 28px;
        color: #1768B7;
        margin-right: 12px;
        margin-top: 4px;
    }
    .icon-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.10);
    }
    .icon-title {
        font-weight: 700;
        font-size: 15px;
    }
    .icon-box p {
        margin-top: 3px;
        font-size: 13px;
        color: #555;
    }
	/* Accordion Question */
.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
    color: #1768B7;
    background-color: #eaf4ff;
    border: 1px solid #c7e0ff;
    border-radius: 0.5rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.faq-question:after {
    font-size: 1.2rem;
    color: #1768B7;
}

/* Accordion Answer */
.faq-answer {
    background-color: #fff;
    border-left: 3px solid #1768B7;
    padding: 15px;
    border-radius: 0 0 0.5rem 0.5rem;
    color: #333;
}

/* Hover & Active Effects */
.faq-question:hover {
    background-color: #d0e7ff;
    color: #0f4d91;
}

.accordion-button:not(.collapsed) {
    background-color: #1768B7 !important;
    color: #fff !important;
    border-radius: 0.5rem;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
 /* --- Layout --- */
    .services-wrapper {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }
    @media (max-width: 991px) {
        .services-wrapper { flex-direction: column; }
    }

    /* --- Left nav (sticky) --- */
    .services-nav {
        width: 280px;
        position: sticky;
        top: 90px;
        align-self: flex-start;
    }
    @media (max-width: 991px) {
        .services-nav { width: 100%; position: relative; top: 0; }
    }
    .services-nav .nav-card {
        background: #fff;
        border-radius: 12px;
        padding: 18px;
        box-shadow: 0 6px 22px rgba(23,104,183,0.08);
    }
    .services-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .services-nav .nav-list li {
        margin-bottom: 10px;
    }
    .services-nav .nav-link {
        display: block;
        padding: 10px 12px;
        border-radius: 8px;
        color: #0f4d91;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.2s, color 0.2s;
    }
    .services-nav .nav-link:hover,
    .services-nav .nav-link.active {
        background: linear-gradient(90deg, rgba(23,104,183,0.08), rgba(23,104,183,0.03));
        color: #11457a;
    }

    /* --- Right content --- */
    .services-content {
        flex: 1;
    }

    .service-card {
        background: #fff;
        border-radius: 14px;
        padding: 22px;
        margin-bottom: 20px;
        box-shadow: 0 8px 28px rgba(10, 25, 47, 0.06);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 36px rgba(10, 25, 47, 0.09);
    }

    .service-head {
        display: flex;
        gap: 14px;
        align-items: center;
        margin-bottom: 12px;
    }
    .service-badge {
        min-width: 56px;
        min-height: 56px;
        border-radius: 12px;
        background: linear-gradient(135deg,#1768B7,#3b8bd8);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        box-shadow: 0 6px 18px rgba(23,104,183,0.14);
        font-size: 18px;
    }
    .service-title {
        font-size: 20px;
        font-weight: 700;
        color: #0f3f6a;
    }
    .service-desc {
        color: #444;
        line-height: 1.65;
        margin-bottom: 12px;
    }
    .service-list {
        padding-left: 18px;
        margin: 0;
        color: #444;
    }
    .service-list li {
        margin: 6px 0;
    }

    /* small helper */
    .muted { color:#6c757d; font-size:14px; }