/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto+Slab:wght@100;400&display=swap');
<style> */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto+Slab:wght@100;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab', serif;
}

:root {
    --green: #10562c;
    --orange: #ffae00;
    --dark: #030a3c;
    --light: #ffffff;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

p {
    font-size: 18px;
}

/* ******************* 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);
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    width: 175px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 24px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 19px;
    font-weight: 500;
    text-transform: capitalize;
    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: 16px;
    }
}

@media screen and (min-width:577px) and (max-width: 840px) {
    .navbar-brand {
        width: 100px;
    }

    .navbar-collapse {
        position: absolute;
        background: var(--orange);
        height: 100vh;
        width: 234px;
        left: -282px;
        top: 63px;
        box-shadow: var(--box-shadow);
        padding-top: 10px;
        padding-bottom: 10px;
        transition: .3s linear;
    }

    .navbar-collapse.show {
        top: 63px;
        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;
    }
}

@media (max-width:576px) {
    .nav_testing {
        width: 100%;
        position: fixed;
        height: 90px;
        display: block;
        /* border: 2px red solid; */
        padding-top: 20px !important;
    }

    .navbar-toggler {
        margin-top: 0px !important;
    }

    .navbar {
        height: 80px !important;
    }

    .navbar img {
        height: auto;
        width: 57px !important;


    }

    .navbar-collapse {
        position: absolute;
        background: var(--orange);
        height: 100vh;
        width: 234px;
        left: -282px;
        top: 80px;
        box-shadow: var(--box-shadow);
        padding-top: 10px;
        padding-bottom: 10px;
        transition: .3s linear;
    }

    .navbar-collapse.show {
        top: 80px;
        left: 0px;
    }
}

/************************* navbar end ************************ */


/*** ************************carousel start ***************************/

.carousel img {
    height: 590px;
    width: 100%;
}
@media screen and (min-width:577px) and (max-width: 840px){
    .carousel img {
        height: 400px;
        width: 100%;
    }

}
@media screen and (max-width: 577px) {

    .carousel img {
        height: 250px;
        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);
}

.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 *************************/


/**************************** feature Start ****************************/

#feature {
    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;
}


#feature .feature-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    overflow: hidden;
}

#feature .feature-item img {
    transition: .5s;
}

#feature .feature-item:hover img {
    transform: scale(1.1);
}

#feature .feature-item h4 {
    color: var(--dark);
}

/************************** feature End **************************/



/************************** Product Start **************************/
.ruchiker-logo,
.samtripti-logo{
    width: 60px;
    margin-right: 16px;
}
#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: var(--box-shadow);
    border: 1px solid var(--green);
}
#product .product-image{
    background: #217b0061;
}
#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;
}

#product .product-modal h3 {
    color: var(--green);
}

#product .product-modal h5 {
    color: var(--orange);
}

#product .product-modal i {
    color: var(--dark);
    margin-right: 10px;
    font-size: 20px;
}
#product .product-modal .modal-body{
    background-color: rgba(128, 240, 72, 0.458);
}

.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);
    font-weight: 700;
}

#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(29, 95, 24, 0.85), rgba(27, 88, 27, 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(--orange);
    font-size: 18px;
}

#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(--orange);
}

#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: 500;
}

/* 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(--light);
}

#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(29, 95, 24, 0.85), rgba(27, 88, 27, 0.85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

#mission_vission h1 {
    color: var(--orange);
}

#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(--green);
    margin-bottom: 24px;
    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: 600; */
}

.recipe-card article h2 {
    /* font-size: 1.75em; */
    color: var(--orange);
}

.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 ****************************/