/********** Template CSS **********/
:root {
    /*
        --luue: #88B44E;
    */
        --luue: #afb2ff;
        --orag: #FB9F38;
        --hung: #cc3737;
        --chin: #F5F8F2;
        --haag: #252C30;
        --foot: #383838;
        /* --look: #D7FFAF; */
        --look: #eafdd6;
        --body: #CCFF66;
        --copy: #252525;
        --head: #00FF90;
        --navv: #14c477;
        --navb: #27ab72;
    }
    
    .loginText {
        text-transform: none;
        line-height: normal;
        font-size: 1.1em;
        font-family: Verdana;
        text-align: left;
    }
    
    .display-7 {
        font-size: 2rem;
    }
    
    .cartContainer {display: flex; justify-content: space-between; padding: 0 5px 0 10px;}
        
    .paypalCart {
        margin: auto;
        border: outset;
        border-color: chartreuse;
        background-color: #FFF;
        min-height: 42px;
    }    
    .product, .article {
        background: var(--look);
    }
    
    .footer, .bg-footer{
        background: var(--foot);
        color: #B0B9AE;
    }
    
    .copyright, .bg-copyright {
        background: var(--copy);
        color: #B0B9AE;
    }
    
    @media(min-width: 768px) {
        .product, .footer, .copyright {
            background: var(--body);
        }
    }
    
    .product-heading-font {
        background: var(--navb);
        text-transform: none;
        font-family: Verdana;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        font-variant: normal;
    }
    
    .back-to-top {
        position: fixed;
        display: none;
        right: 30px;
        bottom: 30px;
        z-index: 99;
    }
    
    .fw-medium {
        font-weight: 600;
    }
    
    .fw-bold {
        font-weight: 700;
    }
    
    .fw-black {
        font-weight: 900;
    }
    
    
    /*** Spinner ***/
    #spinner {
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s ease-out, visibility 0s linear .5s;
        z-index: 99999;
    }
    
    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }
    
    
    /*** Button ***/
    .btn {
        transition: .5s;
        font-weight: 500;
    }
    
    .btn-primary,
    .btn-outline-primary:hover {
        color: var(--chin);
    }
    
    .btn-secondary,
    .btn-outline-secondary:hover {
        color: var(--haag);
    }
    
    .btn-square {
        width: 38px;
        height: 38px;
    }
    
    .btn-sm-square {
        width: 32px;
        height: 32px;
    }
    
    .btn-lg-square {
        width: 48px;
        height: 48px;
    }
    
    .btn-square,
    .btn-sm-square,
    .btn-lg-square {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: normal;
    }
    
    /* Use for Add-Item and Product Options */
    /* Ensure text is white normally */
    .custom-btn {
        color: white;
        transition: color 0.3s ease-in-out;
    }
    
    /* On hover, change text color to button's background color */
    .custom-btn:hover {
        color: var(--bs-primary); /* Bootstrap variable for btn-warning color */
        background-color: transparent; /* Background becomes transparent */
        border-color: var(--bs-primary); /* Keeps border consistent */
    }
    
    /*** Navbar ***/
    .sticky-top {
        top: -150px;
        transition: .5s;
    }
    
    .navbar .navbar-brand {
        position: absolute;
        padding: 0;
        width: 200px;
        height: 50px;
        top: 20px;
        left: 10px;
    }
    
    /*
    .navbar-toggler-icon:hover {color: var(--chin);}
    */
    
    .navbar .navbar-nav .nav-link {
        margin-right: 25px;
        padding: 25px 0;
        color: var(--navb);
        font-weight: 600;
        text-transform: uppercase;
        outline: none;
    }
    
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #b64ce0; /* nav-item color (e.g. HOME) and dropdown-menu item when clicked */
    }
    
    .navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        vertical-align: middle;
        margin-left: 8px;
    }
    
    @media (max-width: 991.98px) {
        .navbar .navbar-brand {
            width: 148px;
            height: 37px;
            top: 18px;
            left: 0px;
        }
    
        .navbar .navbar-nav .nav-link  {
            margin-right: 0;
            padding: 10px 0;
        }
    
        .navbar .navbar-nav {
            margin-top: 20px;
            border-top: 1px solid #EEEEEE;
        }
    }
    
    @media (min-width: 992px) {
        .navbar .nav-item .dropdown-menu {
            display: block;
            border: 1px solid #b9f5a6; /* dropdown-menu border color */
            margin-top: 0;
            top: 150%;
            opacity: 0;
            visibility: hidden;
            transition: .5s;
        }
    
        .navbar .nav-item:hover .dropdown-menu {
            top: 70%; /* gap between nav-item (e.g. HOME) and dropdown-menu	*/
            visibility: visible;
            transition: .5s;
            opacity: 1;
        }
    }
    
    
    /*** Header ***/
    .carousel-caption {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    /* VINCENT below define background color
        background: rgba(136, 180, 78, .7);
    */
        z-index: 1;
    
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 15%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 3.5rem;
        background-color: var(--haag);
        border: 15px solid var(--haag);
    }
    
    .turboLogo {
        font-family: Verdana, sans-serif;
        color: #FF0000;
        font-size: 1.8rem;
        font-weight: 900;
    }
    @media (max-width: 768px) {
        #header-carousel .carousel-item {
            position: relative;
            min-height: 450px;
        }
        
        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    
        .turboLogo {
        font-size: 1.3rem;
        }
    }
    
    .page-header {
        background: linear-gradient(rgba(136, 180, 78, .7), rgba(136, 180, 78, .7)), url(../img/carousel-1.jpg) center center no-repeat;
        background-size: cover;
    }
    
    .page-header .breadcrumb-item+.breadcrumb-item::before {
    /*
        color: var(--chin);
    */
    }
    
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 18px;
        color: var(--chin);
    }
    
    
    /*** Section Title ***/
    .section-title {
        position: relative;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .section-title::before {
        position: absolute;
        content: "";
        width: 50%;
        height: 2px;
        bottom: 0;
        left: 0;
        background: var(--luue);
    }
    
    .section-title::after {
        position: absolute;
        content: "";
        width: 28px;
        height: 28px;
        bottom: -13px;
        left: calc(25% - 13px);
        background: var(--haag);
        border: 10px solid #FFFFFF;
        border-radius: 28px;
    }
    
    .section-title.text-center::before {
        left: 25%;
    }
    
    .section-title.text-center::after {
        left: calc(50% - 13px);
    }
    
    
    /*** Products VINCENT this defines the background and color of the frame ***/ 
    .product-bg {
    /*
        background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    */
        background: url(../imagesBrand/productWave.jpg) left bottom no-repeat;
        background-size: auto;
    }
    
    .promotion-bg {
        background: url(../imagesBrand/promotionBG.jpg) left bottom no-repeat;
        background-size: auto;
    }
    
    .product-carousel .owl-nav {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    
    .product-carousel .owl-nav .owl-prev,
    .product-carousel .owl-nav .owl-next {
        margin: 0 10px;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: var(--luue);
        border-radius: 55px;
        box-shadow: 0 0 45px rgba(0, 0, 0, .15);
        font-size: 25px;
        transition: .5s;
    }
    
    .product-carousel .owl-nav .owl-prev:hover,
    .product-carousel .owl-nav .owl-next:hover {
        background: #FFFFFF;
        color: var(--luue);
    }
    
    
    /*** About ***/
    .video {
    /*
        background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/video-bg.jpg) center center no-repeat;
    */
        background: url(../imagesBrand/video-bg.jpg) center center no-repeat;
        background-size: cover;
    }
    
    .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;
    }
    
    .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;
    }
    
    .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;
    }
    
    .btn-play span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        left: 13px;
        border-left: 40px solid var(--luue);
        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;
        }
    }
    
    .modal-video .modal-dialog {
        position: relative;
        max-width: 800px;
        margin: 60px auto 0 auto;
    }
    
    .modal-video .modal-body {
        position: relative;
        padding: 0px;
    }
    
    .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: #000000;
        opacity: 1;
    }
    
    .block-38 .block-38-header .block-38-heading {
      color: #000;
      margin: 0;
      font-weight: 300; }
    
    .block-38 .block-38-header .block-38-subheading {
      color: #b3b3b3;
      margin: 0 0 20px 0;
      text-transform: uppercase;
      font-size: 15px;
      letter-spacing: .1em; }
    
    .block-38 .block-38-header img {
      width: 260px;
      border-radius: 50%;
      margin-bottom: 20px; }
    
    /*** Store ***/
    .store-item .store-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(138, 180, 78, .3);
        opacity: 0;
        transition: .5s;
    }
    
    .store-item:hover .store-overlay {
        opacity: 1;
    }
    
    
    /*** Contact ***/
    .contact .btn-square {
        width: 100px;
        height: 100px;
        border: 20px solid var(--chin);
        background: var(--luue);
        border-radius: 50px;
    }
    
    
    /*** Testimonial ***/
    .testimonial {
    /*
        background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../imagesBrand/Testimonial.jpg) center center no-repeat;
    */
        background: url(../imagesBrand/Testimonial.jpg) center center no-repeat;
        background-size: cover;
    }
    
    /* this changes the width of testimonial */ 
    .testimonial-item {
        margin: 0 auto;
        max-width: 1000px; /* old value = 600px */
        text-align: center;
        background: #FFFFFF;
        border: 30px solid var(--luue);
    }
    
    .testimonial-item img {
        width: 60px !important;
        height: 60px !important;
        border-radius: 60px;
    }
    
    .testimonial-carousel .owl-dots {
        margin-top: 35px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }
    
    .testimonial-carousel .owl-dot {
        position: relative;
        display: inline-block;
        margin: 0 5px;
        width: 15px;
        height: 15px;
        background: var(--luue);
        border-radius: 15px;
        transition: .5s;
    }
    
    .testimonial-carousel .owl-dot.active {
        width: 30px;
        background: var(--haag);
    }
    
    
    /*** Footer ***/
    .footer {
        color: #B0B9AE;
    }
    
    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-align: left;
        color: #B0B9AE;
        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(--luue);
        margin-right: 10px;
    }
    
    .footer .btn.btn-link:hover {
        color: var(--chin);
        letter-spacing: 1px;
        box-shadow: none;
    }
    
    /*
    .copyright {
        background: #252525;
        color: #B0B9AE;
    }
    */
    
    .copyright a:hover {
        color: #FFFFFF !important;
    }
    
    /* cart bag number */
    
    .icons-btn {
    /*
      display: inline-block;
    */
        color: var(--luue);
        text-align: center;}
        .icons-btn i:hover {color: var(--luue);}
    
        .icons-btn span {
            display: block;
            height: 40px;
            width: 33px;
            line-height: 40px; }
            .icons-btn span:hover {color: var(--orag);}
            @media (max-width: 991.98px) {
                .icons-btn span {
    /*
                width: 24px; } }
    */
                 width: 28px; } }
           
    .bag {
      position: relative;
      left: -6px; }
    .number {
        right: -10px;}
    .bag .number {
        position: absolute;
        top: 0;
        width: 20px;
        height: 20px;
        font-family: Arial, Helvetica, sans-serif;
        color: var(--luue);
        border-radius: 50%;
        border: 2px solid var(--luue);
        line-height: 18px;
        font-size: 15px;
        background: var(--chin);
        }
    
    /*
    .number:hover {
        color: var(--orag);
        border: 2px solid var(--orag);
        }
    */
    
    /*
    .item-price, .item-title h5{
        font-family: Arial, Helvetica, sans-serif;
        color: #669bbc;
    }
    */
    .site-blocks-table {
      overflow: auto; }
      .site-blocks-table .product-thumbnail {
        width: 200px; }
      .site-blocks-table thead th {
        padding:30px;
        text-align: center;
        border-width: 1px !important;
        vertical-align: middle;
        color: #212529;
        font-family: verdana;
        font-size: 18px; }
      .site-blocks-table td {
    /*
        padding: 20px; padding of thumbnail photo in Cart
    */
        padding: 5px;
        text-align: center;
        vertical-align: middle;
        color: #212529; }
      .site-blocks-table tbody tr:first-child td {
        border-top: 1px solid #ee4266 !important; }
    
    @media (max-width: 767.98px) {
        .site-blocks-table tbody td {
        font-size: 14px;
        } 
    }
    
    /* checkout border */
    .checkout_border {
        border: none;}
        
        @media (min-width: 768px) {
        .checkout_border {
        border: 1px solid #dee2e6;
        }
    }
    
    .product-thumbnail {
        width: 200px; }
        
    /* user login logout register */
    
    .register-display-frame {
        height: 30px;
        text-transform: uppercase;
        margin-top: -4px;
    /*
        vertical-align: middle;
    */
        text-overflow: ellipsis;
        overflow: hidden;
        max-width:12ch;}
        @media (max-width: 991.98px) {
        .register-display-frame {
        max-width: 7ch; } }
        
    .menu-hover span:hover {color: var(--orag);}
    
    .fa:hover {color: var(--orag);}
    
    /* Shop pages */
    
    .site-block-27 ul, .site-block-27 ul li {
      padding: 0;
      margin: 0; }
    
    .site-block-27 ul li {
      display: inline-block;
      margin-bottom: 4px; }
      .site-block-27 ul li a, .site-block-27 ul li span {
        text-align: center;
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        border: 1px solid #ccc; }
      .site-block-27 ul li.active a, .site-block-27 ul li.active span {
        background: #ee4266;
        color: #fff;
        border: 1px solid transparent; }
        
    /* Product pages - text over image */
    
    /* Container holding the image and the text */
    .text-over-image-container {
        position:relative;
        align-items:center;
        display:flex;
        font-family: Verdana;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        font-variant: normal;
    }
    
    /*
    .text-over-image-container img {
        width: 100%;
    }
    */
    /* As is text */
    .text-as-is {
      position: absolute;
      bottom: 0px;
      right: 0px;
    }
    
    /* Bottom left text */
    .text-bottom-left {
      position: absolute;
      bottom: 8px;
      left: 16px;
    }
      
    /* Top left text */
    .text-top-left {
      position: absolute;
      top: 8px;
      left: 16px;
    }
    
    /* Top right text */
    .text-top-right {
      position: absolute;
      top: 8px;
      right: 16px;
    }
    
    /* Bottom right text */
    .text-bottom-right {
      position: absolute;
      bottom: 8px;
      right: 16px;
    }
    
    /* Centered text */
    .text-centered {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    /* Carousel centered top */
    .carousel-top {
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -30%);
    }
    
    /* Carousel centered bottom */
    .carousel-bottom {
      position: absolute;
      bottom: 20%;
      left: 50%;
      transform: translate(-50%, -20%);
    }
    
    /* Carousel centered explore */
    .carousel-explore {
      position: absolute;
      bottom: 12%;
      left: 50%;
      transform: translate(-50%, -12%);
    }
    
    /* *****Story pages***** */
    .NormalText {
        font-family: Verdana, sans-serif;
        font-size: medium;
        line-height: normal;
        font-weight: normal;
        text-transform: none;
        color: var(--haag);
    }
    
    /*
    .StoryTitle {
        font-weight: bold;
        color: #996666;
    }
    .SubMenuText {
        text-transform: none;
        height: auto;
        width: auto;
        font-size: normal 14px/normal Verdana;
        font-family: Verdana;
        text-align: left;
    }
    .TableText {
        font: normal 12px/normal "OCR A Std";
        text-transform: none;
        color: #666;
    }
    .TableTitle {
        font: bolder normal 12px/normal "OCR A Std";
        text-transform: none;
        color: #000;
        font-weight: normal;
    }
    */
    
    .PageHeading {
        text-transform: none;
        color: #996666;
        font-family: Verdana;
        font-size: 24px;
        font-style: normal;
        line-height: normal;
        font-weight: bold;
        font-variant: normal;
    }
    .TextHeading {
        text-transform: none;
        color: #000099;
        text-decoration: underline;
        font-family: Verdana;
        font-size: 18px;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        font-variant: normal;
    }
    .FirstLetter {
        font: normal 36px/normal Verdana, Geneva, sans-serif;
        text-transform: none;
        color: #F00;
    }
    .UnitPrice {
        text-transform: none;
        color: #996600;
        font-family: Verdana;
        font-size: 1.5em;
        font-style: normal;
        line-height: normal;
        font-weight: 500;
        font-variant: normal;
    }
    .HighlightText {
        text-transform: none;
        color: #036;
        text-align: left;
        font-family: Verdana;
        font-size: 18px;
        font-style: normal;
        line-height: normal;
    }
    .StoryHighlight {
        text-transform: none;
        color: #993366;
        text-decoration: underline;
        font-family: Verdana;
        font-size: 18px;
        font-style: normal;
        line-height: normal;
    }
    .StoryLink {
        text-transform: none;
        font-family: Verdana;
        font-size: 16px;
        font-style: normal;
    }
    .StoryTitle {
        font-weight: bold;
        color: #996666;
    }
    .Mission {
        font-family:Arial, Helvetica, sans-serif;
        font-size:24px;
        line-height: normal;
        color: #333;
    }
    .Statement {
        text-transform: none;
        color: #363d7c;
        text-align: left;
        font-family:Arial, Helvetica, sans-serif;
        font-size: 18px;
        line-height: normal;
    }
    