    /* 3D Animatics */
    /* fonts */
    
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');
    @import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
    @import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css");
    @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
    @import url('https://fonts.googleapis.com/css2?family=Tiro+Bangla:ital@0;1&display=swap');
    /* root */
    
     :root {
        /* colors */
        --main-color: #00c492;
        --second-color: #bdf2ce;
        --third-color: #7AFADA;
        --fourth-color: #FA997A;
        --fifth-color: #AD5032;
        /* neutral colors */
        --white-color: #fff;
        --light-color: #e6e6e6;
        --gray-color: #999999;
        --dark-color: #333;
        --hard-dark-color: #000;
        /* bg-colors */
        --bg-main-color: #00c492;
        --bg-second-color: #e1ffea;
        --bg-light-second-color: #eefff3;
        --bg-third-color: #7AFADA;
        --bg-fourth-color: #FA997A;
        --bg-fifth-color: #AD5032;
        /* bg-neutral colors */
        --bg-white-color: #fff;
        --bg-light-color: #e6e6e6;
        --bg-gray-color: #999999;
        --bg-dark-color: #333;
        --bg-hard-dark-color: #000;
        /* other colors */
        --whats-color: #00f078;
        /* fonts */
        --mon-fonts: 'Montserrat', sans-serif;
        --poppins-fonts: 'Poppins', sans-serif;
        --tiro-fonts: 'Tiro Bangla', serif;
        --font-12px: 5px;
        --font-14px: 6px;
        --font-16px: 7px;
        --font-18px: 8px;
        --font-20px: 10px;
        --font-12px: 12px;
        --font-14px: 14px;
        --font-16px: 16px;
        --font-18px: 18px;
        --font-20px: 20px;
        --box-shadow-1: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
        --box-shadow-2: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
        --box-shadow-3: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    
    #website {
        display: none;
    }
    
    body {
        font-family: var(--poppins-fonts);
        overflow-x: hidden;
    }
    
    #testimonialBody {
        margin: 20px 0;
    }
    
    .flex-stars {
        display: flex;
        justify-content: center;
    }
    
    .flex-stars i {
        color: #fff565 !important;
    }
    
    .flex-testimonial {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 2rem;
    }
    
    #getTestimonials {
        position: relative;
    }
    
    .testimonial-card::before {
        content: "\201C";
        position: absolute;
        top: 10%;
        color: #f5f5f5;
        font-size: 5rem;
        font-family: var(--tiro-fonts);
    }
    /* .testimonial-card::after {
        content: "\201D";
        position: absolute;
        bottom: 0%;
        transform: translateX(960%);
        color: #f5f5f5;
        font-size: 5rem;
        font-family: var(--tiro-fonts);
    } */
    
    .testimonial-card {
        margin: 20px 0;
        display: flex;
        flex-direction: column;
        padding: 25px;
        box-shadow: var(--box-shadow-3);
        border-radius: 0px 50px 0px 50px;
        text-align: center;
        background-color: var(--white-color);
        height: 280px;
        justify-content: flex-start;
    }
    
    .all-testimonial-body {
        margin: 10% 0 !important;
    }
    
    .register-data {
        bottom: 0;
        color: #a1a1a1;
        font-size: .8rem;
    }
    
    .testimonial-card p {
        line-height: 1.5;
        font-size: 1rem;
        margin: 15px 0;
    }
    
    .testimonial-card h3,
    .testimonial-card h4,
    .testimonial-card h5 {
        color: #00c492;
        margin-top: 10px;
    }
    
    .testimonial-cards {
        margin: 20px 0;
        display: flex;
        flex-direction: column;
        padding: 25px;
        box-shadow: var(--box-shadow-3);
        border-radius: 0px 50px 0px 50px;
        text-align: center;
        background-color: var(--white-color);
        height: 280px;
        justify-content: flex-start;
    }
    
    .testimonial-cards p {
        line-height: 1.5;
        font-size: 1rem;
        margin: 15px 0;
    }
    
    .testimonial-cards h3,
    .testimonial-cards h4,
    .testimonial-cards h5 {
        color: #00c492;
        margin-top: 10px;
    }
    
    #formBody,
    #flex-success {
        margin: 10% 0;
    }
    
    .flex-success {
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 50px;
        height: 500px;
    }
    
    .flex-success .card-3 img {
        width: 20%;
    }
    
    .flex-success .card-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 40%;
        box-shadow: var(--box-shadow-3);
        padding: 30px;
    }
    
    .flex-success .card-3 .btn-op3 {
        background-color: var(--main-color);
        color: var(--white-color);
        border-radius: 25px;
        padding: 15px;
        margin: 50px 0px;
    }
    
    .flex-success .card-3 .btn-op3 a {
        color: var(--white-color);
    }
    
    .flex-success .card-3 form,
    .flex-success .card-3 input,
    .flex-success .card-3 h2 {
        margin: 30px 0px;
    }
    
    .flex-success .card-3 a {
        color: var(--main-color);
    }
    
    .flex-success .pass i {
        position: absolute;
        bottom: 289px;
        right: 44px;
        cursor: pointer;
        color: var(--gray-color);
    }
    /* xs */
    
    @media screen and (max-width: 600px) {
        .all-testimonial-body {
            margin: 25% 0 !important;
        }
        .flex-testimonial {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 1rem;
        }
        .testimonial-card,
        .testimonial-cards {
            margin: 0px 0;
            display: flex;
            flex-direction: column;
            padding: 10px;
            border-radius: 0px 50px 0px 50px;
            /* box-shadow: none; */
            text-align: center;
            background-color: var(--white-color);
            height: auto;
            /* justify-content: space-around; */
        }
        .testimonial-card p,
        .testimonial-cards p {
            font-size: .8rem;
        }
        .testimonial-card h3,
        .testimonial-card h4,
        .testimonial-card h5,
        .testimonial-cards h3,
        .testimonial-cards h4,
        .testimonial-cards h5 {
            padding: 10px 0;
            color: #00c492;
            font-size: 1rem;
        }
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 10%;
            color: #f5f5f5;
            font-size: 5rem;
            font-family: var(--tiro-fonts);
        }
        .flex-success {
            position: relative !important;
            display: flex;
            justify-content: center;
            flex-direction: column;
            padding: 50px;
            height: 500px;
        }
        .flex-success .card-3 img {
            width: 20%;
        }
        .flex-success .card-3 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            box-shadow: var(--box-shadow-3);
            padding: 0px;
        }
        .flex-success .card-3 .btn-op3 {
            background-color: var(--main-color);
            color: var(--white-color);
            border-radius: 25px;
            padding: 15px;
            margin: 50px 0px;
        }
        .flex-success .card-3 .btn-op3 a {
            color: var(--white-color);
        }
        .flex-success .card-3 form,
        .flex-success .card-3 input,
        .flex-success .card-3 h2 {
            margin: 30px 0px;
        }
        .flex-success .card-3 a {
            color: var(--main-color);
        }
        .flex-success .pass i {
            position: absolute;
            bottom: 289px;
            right: 44px;
            cursor: pointer;
            color: var(--gray-color);
        }
        #formBody,
        #flex-success {
            margin: 20% 0;
        }
        /* checkbox */
        .switch {
            display: inline-block;
            height: 34px;
            position: relative;
            width: 60px;
        }
        .switch input {
            display: none;
        }
        .slider {
            background-color: var(--main-color);
            bottom: 0;
            cursor: pointer;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition: .4s;
        }
        .slider:before {
            background-color: #fff;
            bottom: 4px;
            content: "";
            height: 26px;
            left: 4px;
            position: absolute;
            transition: .4s;
            width: 26px;
        }
        input:checked+.slider {
            background-color: var(--main-color);
        }
        input:checked+.slider:before {
            transform: translateX(26px);
        }
        .slider.round {
            border-radius: 34px;
        }
        .slider.round:before {
            border-radius: 50%;
        }
        /* nabvar */
        nav {
            padding: 20px 0px;
            margin: 0px 0px;
            position: fixed !important;
            z-index: 99;
            top: 0;
            width: 100%;
            -webkit-box-shadow: 4px 11px 15px -7px rgba(97, 97, 97, 0.25);
            box-shadow: 4px 11px 15px -7px rgba(97, 97, 97, 0.25);
        }
        nav .navbar-brand * {
            font-size: var(--font-18px) !important;
            font-weight: 300 !important;
            position: relative;
            float: right;
        }
        nav .navbar-nav {
            font-size: var(--font-14px) !important;
            font-weight: 600 !important;
            text-transform: uppercase;
            padding: 0px 5px;
            margin: 0px 5px;
            position: relative;
        }
        nav .navbar-nav i {
            color: var(--main-color);
        }
        nav .nav-contact:hover {
            background-color: var(--hard-dark-color);
            color: var(--white-color);
        }
        .logo img {
            width: 30px;
        }
        /* section 1 */
        .bg-section-1 {
            background: url(../img/stock/BlogWellzenTools.jpg);
            background-repeat: no-repeat;
            background-position: 0px, 0px;
            background-size: cover;
            background-attachment: fixed;
            height: 550px;
            position: relative;
        }
        .bg-section-1 .circle {
            height: 12px;
            width: 12px;
            border: 2px solid var(--main-color);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            margin: 0px 4px;
        }
        .bg-section-1 .active {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        }
        .bg-section-1 .circle:hover {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        }
        .bg-section-1 .fa-chevron-left {
            position: absolute;
            top: 16%;
            left: 8%;
            background-color: var(--white-color);
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        .bg-section-1 .fa-chevron-right {
            position: absolute;
            top: 16%;
            left: 20%;
            background-color: var(--white-color);
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        .box-section-1 {
            background-color: var(--white-color);
            width: 90%;
            height: auto;
            box-sizing: border-box;
            margin: 10px;
            padding: 20px;
            border-radius: 15px;
            position: relative;
            top: 40%;
            left: 0%;
            transform: translateX(0%) translateY(-20%);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.018), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.012), 0 41.8px 33.4px rgba(0, 0, 0, 0.016), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .box-section-1 h3 {
            font-size: var(--font-20px);
            color: var(--dark-color);
            font-weight: 700;
        }
        .box-section-1 h5 {
            font-size: var(--font-16px);
            color: var(--dark-color);
            font-weight: 300;
        }
        .box-section-1 p {
            bottom: 0px;
            color: var(--dark-color);
            font-size: var(--font-14px);
            font-weight: 300;
        }
        /* section 2 Dieta */
        .bg-section-2 {
            background-color: var(--bg-second-color);
            padding: 50px 0px;
            text-align: center;
        }
        .box-section-2 h2 {
            font-size: var(--font-20px);
            font-family: var(--poppins-fonts);
            text-transform: uppercase;
            font-weight: 500;
        }
        .box-section-2 p {
            color: var(--dark-color);
            font-size: var(--font-14px);
            line-height: 1.5;
            font-weight: 500;
        }
        .flex-days-section-2 {
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-days-section-2 div {
            background: var(--second-color);
            margin: 0px;
            padding: 5px 10px;
            cursor: pointer;
        }
        .day-active {
            background-color: var(--main-color) !important;
            color: var(--white-color);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .flex-content-section-2 {
            margin: 10px 0px;
        }
        .flex-content-section-2 div {
            background: var(--white-color);
            border-radius: 0px 0px 20px 20px;
            width: 100%;
            height: 250px;
            text-align: left;
        }
        .flex-content-section-2 div img {
            width: 100%;
        }
        .flex-content-section-2 div p {
            color: var(--dark-color);
            font-size: var(--font-14px);
            font-weight: 300;
            padding: 10px;
            margin: 0px;
            padding: 5px 10px;
        }
        .flex-content-section-2 div span {
            background-color: var(--bg-second-color);
            font-weight: 500;
        }
        .flex-content-section-2 div h3 {
            color: var(--dark-color);
            font-size: var(--font-14px);
            font-weight: 700;
        }
        .flex-content-section-2 div a {
            position: relative;
            bottom: -20px;
            color: var(--bg-main-color);
            font-weight: 500;
        }
        /* section 3 servicios*/
        .box-section-3 {
            text-align: center;
            padding: 0px !important;
            margin: 0px !important;
        }
        .box-section-3 h2 {
            font-size: var(--font-14px);
            text-transform: uppercase;
            font-family: var(--poppins-fonts);
            padding: 5px 0px;
            font-weight: 300;
        }
        .box-section-3 p {
            color: var(--dark-color);
            font-size: var(--font-14px);
            font-weight: 500;
        }
        .xs-content-section-3 {
            padding: 30px 0px;
        }
        .xs-content-section-3 a {
            margin: 30px 0px;
            position: relative;
            top: 7%;
            left: 50%;
            transform: translateX(-50%) translateY(-50%);
        }
        .xs-content-section-3 ul {
            list-style: none;
            padding: 0px 5px;
            margin: 0px 5px;
        }
        .xs-content-section-3 li {
            line-height: 2;
            color: var(--dark-color);
            font-size: var(--font-14px);
        }
        .xs-content-section-3 i {
            color: var(--whats-color);
        }
        .flex-content-section-3 {
            margin: 40px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-3 div {
            /* background: var(--main-color); */
            margin: 0px 10px;
            border-radius: 5px;
            max-width: 250px;
            height: 270px;
            text-align: center;
        }
        .flex-content-section-3 div:hover>h3 {
            color: var(--main-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-3 div img {
            width: 80px;
            position: relative;
            margin: 50px 0px;
            top: 50%;
            left: 50%;
            transform: translateX(-150%) translateY(-150%);
        }
        .flex-content-section-3 h3 {
            font-size: 18px;
            font-family: var(--poppins-fonts);
            font-weight: 600;
        }
        .flex-content-section-3 p {
            font-size: var(--font-14px);
            font-family: var(--poppins-fonts);
        }
        /* section 4 frase */
        .bg-section-4 {
            padding: 0px 0px;
            background-color: var(--bg-second-color);
        }
        .box-section-4 {
            padding: 50px 0px;
            box-sizing: content-box;
        }
        .d-xs-none {
            display: none;
        }
        .box-section-4 div {
            position: relative;
            padding: 0px 10%;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(0%);
        }
        .box-section-4 h4 {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .box-section-4 h3 {
            font-size: 25px;
            line-height: 1.3;
        }
        .box-section-4 h5 {
            font-size: 16px;
            font-style: italic;
            color: var(--gray-color);
        }
        /* section 5 */
        .box-title-section-5 {
            padding: 50px 30px;
            text-align: center;
        }
        .box-title-section-5 h2 {
            font-size: 20px;
        }
        .box-content-section-5 {
            flex: none;
        }
        .box-content-section-5 h2 {
            font-size: 16px;
            font-weight: 500;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        .box-content-section-5 p {
            line-height: 1.5;
            font-weight: 300;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        /* section 6 */
        .flex-content-section-6 {
            margin: 0px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-6 div {
            background-color: var(--bg-light-second-color);
            margin: 20px 0px;
            border-radius: 15px;
            width: 400px;
            height: 500px;
            text-align: center;
            padding: 20px;
            box-shadow: 0 2.8px 2.2px rgba(73, 73, 73, 0.034), 0 6.7px 5.3px rgba(83, 83, 83, 0.048), 0 12.5px 10px rgba(88, 88, 88, 0.06), 0 22.3px 17.9px rgba(58, 58, 58, 0.072), 0 41.8px 33.4px rgba(66, 66, 66, 0.086), 0 100px 80px rgba(63, 63, 63, 0.12)
        }
        .flex-content-section-6 h2 {
            color: var(--main-color);
            font-weight: 700;
            font-size: var(--font-20px);
            margin: 10px 0px;
        }
        .flex-content-section-6 ul {
            padding: 0px;
            margin: 0px;
        }
        .flex-content-section-6 li {
            list-style-type: none;
            text-align: left;
            line-height: 1.9;
            margin: 0px;
            font-size: var(--font-14px);
        }
        .flex-content-section-6 li:hover {
            background-color: var(--bg-second-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 li:hover i {
            color: var(--whats-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 i {
            color: var(--main-color);
        }
        /* section 7 */
        .box-title-section-7 {
            padding: 50px 0px;
            box-sizing: content-box;
            text-align: center;
        }
        .box-title-section-7 h2 {
            font-size: 30px;
        }
        .flex-content-section-7 {
            margin-top: 20px;
            margin-bottom: 80px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-7 div {
            position: relative;
            background-color: var(--white-color);
            margin: 20px 0px;
            border-radius: 15px;
            width: 100%;
            height: 290px;
            text-align: center;
            padding: 10px;
        }
        .flex-content-section-7 .overflow {
            position: relative;
            left: 0%;
            right: 0%;
            height: 130px;
            overflow: auto;
            overflow-x: hidden;
            background: transparent;
        }
        .flex-content-section-7 div:hover {
            background-color: var(--main-color);
            transition: ease-in-out .3s;
            box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -webkit-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -moz-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
        }
        .flex-content-section-7 div:hover h1,
        .flex-content-section-7 div:hover h3,
        .flex-content-section-7 div:hover p {
            color: var(--white-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-7 div:hover .overflow {
            color: var(--white-color);
            transition: ease-in-out .3s;
            background-color: var(--main-color);
        }
        .flex-content-section-7 h1 {
            color: var(--main-color);
            text-align: left;
            font-size: 30px;
            font-family: var(--poppins-fonts);
        }
        .flex-content-section-7 h3 {
            color: var(--dark-color);
            text-align: left;
            font-weight: 500;
            font-family: var(--poppins-fonts);
            margin: 20px 0px;
            font-size: var(--font-20px);
        }
        .flex-content-section-7 p {
            color: var(--dark-color);
            text-align: left;
            font-family: var(--poppins-fonts);
            font-weight: 200;
            line-height: 1.8;
            font-size: 12px;
        }
        /* section 9 */
        .bg-section-9 {
            background-color: var(--bg-second-color);
            padding: 0px;
        }
        .bg-section-9 i {
            color: var(--main-color);
        }
        .box-logo-section-9 {
            display: none;
        }
        .box-img-section-9 {
            display: none;
        }
        .box-img-section-9 img {
            width: 150px;
        }
        .box-content-section-9 {
            background-color: var(--white-color);
            padding: 50px 10px;
            width: 100%;
            border-radius: 15px;
            margin: 30px 0px;
        }
        .box-content-section-9 h4 {
            text-transform: uppercase;
            color: var(--dark-color);
            font-size: var(--font-12px);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        .box-content-section-9 h2 {
            font-size: 24px;
            color: var(--hard-dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-9 h3 {
            text-transform: uppercase;
            color: var(--dark-color);
            font-size: var(--font-16px);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        .box-content-section-9 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.7;
        }
        .box-content-section-9 ul {
            list-style: none;
            margin: 0px;
            padding: 0px;
        }
        .box-content-section-9 li {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            padding: 10px 0px;
        }
        /* section carousel*/
        .title-section h2 {
            font-family: var(--poppins-fonts);
            color: var(--dark-color);
        }
        .btn-archive {
            color: var(--tx-button);
            background: var(--bg-button);
            border-color: var(--bg-button-border);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }
        .btn-archive:hover {
            color: var(--tx-button-hover);
            background-color: var(--bg-button-hover);
            border-color: var(--bg-button-hover);
        }
        .btn-archive:focus {
            -webkit-box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
            box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
        }
        .posts-section {
            background: var(--bg-post-section);
            font-family: var(--font1);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }
        .posts-section .title-section {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--tx-post-section-title);
        }
        .posts-section .bg-card {
            background: var(--bg-post-title);
            color: var(--tx-post-title);
        }
        .posts-section .post-body h2 {
            font-weight: 600;
        }
        .posts-section .post-info {
            font-size: 0.8rem;
            font-weight: 300;
        }
        .posts-section .text-img-over {
            position: relative;
        }
        .posts-section .text-img-over .card-img-top {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }
        .posts-section .text-img-over .overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            transition: 0.5s ease;
            background: var(--bg-post-image-overlay);
        }
        .posts-section .text-img-over:hover .overlay {
            opacity: 1;
        }
        .posts-section .social-hover {
            color: var(--tx-color-1);
            font-size: 40px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .posts-section .social-hover .fa-share-alt {
            color: var(--tx-color-1);
        }
        .posts-section .social-hover .fa-share-alt:hover {
            color: var(--tx-color-1);
        }
        .post-body h2 {
            color: var(--dark-color);
            margin: 20px 0px;
            font-family: var(--poppins-fonts);
            font-size: var(--font-20px);
        }
        .post-body p {
            color: var(--dark-color);
            line-height: 1.4;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        /* section 10 */
        .bg-section-10 {
            padding: 30px 0px;
        }
        .box-content-section-10 {
            width: 100%;
            order: 1;
        }
        .box-img-section-10 {
            order: 2;
        }
        .box-img-section-10 img {
            width: 200%;
            height: auto;
        }
        .box-content-section-10 h2 {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-10 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        /* footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white-color);
            padding: 50px 20px;
        }
        footer .col {
            flex: none;
        }
        footer h4 {
            font-size: var(--font-14px);
            text-transform: uppercase;
            padding: 20px 0px;
            font-weight: 700;
        }
        footer p {
            color: var(--light-color);
            font-size: var(--font-14px);
            line-height: 1.8;
        }
        footer ul {
            list-style-type: none;
            padding: 0px;
            color: var(--light-color);
        }
        footer li {
            list-style-type: none;
            padding: 5px 0px;
            font-size: var(--font-14px);
        }
        footer a {
            list-style-type: none;
            padding: 5px 0px;
            color: var(--light-color);
        }
        footer a:hover {
            color: var(--main-color);
        }
        footer i {
            padding: 0px 10px;
        }
        /* extras */
        .btn-border-more {
            margin-top: 15px;
            border: 2px solid var(--main-color);
            color: var(--dark-color);
            border-radius: 5px;
        }
        .btn-border-more:hover {
            border: 2px solid var(--dark-color);
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        .btn-colored-more {
            margin-top: 15px;
            color: var(--white-color);
            background-color: var(--main-color);
            border-radius: 5px;
        }
        .btn-colored-more:hover {
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        a {
            text-decoration: none;
        }
        .view-xs {
            display: block;
        }
        .hiden-xs {
            display: none;
        }
        .up-to-home {
            position: fixed;
            margin: 20px;
            z-index: 999;
            top: 90%;
            left: 82%;
            transform: translateX(-50%) translateY(-50%);
            background-color: rgba(5, 5, 5, 0.075);
            border-radius: 5px;
            padding: 10px;
            cursor: pointer;
        }
        .up-to-home i {
            color: rgb(0, 0, 0)
        }
        .copyright {
            text-align: center;
            margin: 10px 0px;
        }
        .copyright * {
            color: #9e9e9e !important;
        }
    }
    /* sm */
    
    @media screen and (min-width: 600px) and (max-width: 768px) {
        .flex-testimonial {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 0rem;
        }
        .testimonial-card {
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            padding: 5px;
            border-radius: 0px 50px 0px 50px;
            /* box-shadow: none; */
            text-align: center;
            background-color: var(--white-color);
            height: auto;
            /* justify-content: space-around; */
        }
        .testimonial-card p {
            font-size: .8rem;
        }
        .testimonial-card h3,
        .testimonial-card h4,
        .testimonial-card h5 {
            padding: 10px 0;
            color: #00c492;
            font-size: 1rem;
        }
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 10%;
            color: #f5f5f5;
            font-size: 5rem;
            font-family: var(--tiro-fonts);
        }
        /* checkbox */
        .switch {
            display: inline-block;
            height: 34px;
            position: relative;
            width: 60px;
        }
        .switch input {
            display: none;
        }
        .slider {
            background-color: var(--main-color);
            bottom: 0;
            cursor: pointer;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition: .4s;
        }
        .slider:before {
            background-color: #fff;
            bottom: 4px;
            content: "";
            height: 26px;
            left: 4px;
            position: absolute;
            transition: .4s;
            width: 26px;
        }
        input:checked+.slider {
            background-color: var(--main-color);
        }
        input:checked+.slider:before {
            transform: translateX(26px);
        }
        .slider.round {
            border-radius: 34px;
        }
        .slider.round:before {
            border-radius: 50%;
        }
        /* nabvar */
        nav {
            padding: 20px 0px;
            margin: 0px 0px;
            position: fixed !important;
            z-index: 99;
            top: 0;
            width: 100%;
        }
        nav .navbar-brand * {
            font-size: var(--font-18px) !important;
            font-weight: 300 !important;
            position: relative;
            float: right;
        }
        nav .navbar-nav {
            font-size: var(--font-14px) !important;
            font-weight: 600 !important;
            text-transform: uppercase;
            padding: 0px 5px;
            margin: 0px 5px;
            position: relative;
        }
        nav .navbar-nav i {
            color: var(--main-color);
        }
        nav .nav-contact:hover {
            background-color: var(--hard-dark-color);
            color: var(--white-color);
        }
        .logo img {
            width: 40px;
        }
        /* section 1 */
        .bg-section-1 {
            background: url(../img/stock/BlogWellzenTools.jpg);
            background-repeat: no-repeat;
            background-position: 0px, 0px;
            background-size: cover;
            background-attachment: fixed;
            height: 550px;
            position: relative;
        }
        .bg-section-1 .circle {
            height: 12px;
            width: 12px;
            border: 2px solid var(--main-color);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            margin: 0px 4px;
        }
        .bg-section-1 .active {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out 729.2s;
        }
        .bg-section-1 .circle:hover {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        }
        .bg-section-1 .fa-chevron-left {
            position: absolute;
            top: 16%;
            left: 8%;
            background-color: var(--white-color);
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        .bg-section-1 .fa-chevron-right {
            position: absolute;
            top: 16%;
            left: 16%;
            background-color: var(--white-color);
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        .bg-section-1 .fa-chevron-right:hover {
            color: var(--white-color);
            transition: ease-in-out .2s;
        }
        .box-section-1 {
            background-color: var(--white-color);
            width: 50%;
            height: auto;
            box-sizing: border-box;
            margin: 10px;
            padding: 20px;
            border-radius: 15px;
            position: relative;
            top: 33%;
            left: 0%;
            transform: translateX(10%) translateY(-20%);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .box-section-1 h3 {
            font-size: 40px;
            color: var(--dark-color);
            font-weight: 700;
        }
        .box-section-1 p {
            bottom: 0px;
            color: var(--dark-color);
            font-size: var(--font-16px);
            font-weight: 300;
        }
        /* section 2 */
        .bg-section-2 {
            background-color: var(--bg-second-color);
            padding: 100px 0px;
            text-align: center;
        }
        .box-section-2 h2 {
            font-size: 50px;
            font-family: var(--poppins-fonts);
            padding: 10px 0px;
        }
        .box-section-2 p {
            color: var(--dark-color);
            font-size: var(--font-18px);
            line-height: 1.9;
            font-weight: 500;
        }
        .flex-days-section-2 {
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-days-section-2 div {
            background: var(--second-color);
            margin: 0px 20px;
            padding: 5px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .flex-days-section-2 div:hover {
            background-color: var(--main-color) !important;
            color: var(--white-color);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .day-active {
            background-color: var(--main-color) !important;
            color: var(--white-color);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .flex-content-section-2 {
            margin: 40px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .content-2-section-2 {
            margin: 0px 10px;
            border-radius: 5px;
            text-align: left;
            background-color: var(--white-color);
            padding: 30px 30px;
        }
        .flex-content-section-2 div img {
            width: 480px;
            background-color: transparent !important;
        }
        .flex-content-section-2 div p {
            color: var(--dark-color);
            font-size: var(--font-16px);
            font-weight: 300;
        }
        .flex-content-section-2 div span {
            background-color: var(--bg-second-color);
            font-weight: 500;
        }
        .flex-content-section-2 div h3 {
            color: var(--dark-color);
            font-size: var(--font-18px);
            line-height: 1.9;
            font-weight: 700;
        }
        .flex-content-section-2 div a {
            position: relative;
            bottom: 0px;
            color: var(--bg-main-color);
            font-weight: 500;
        }
        /* section 3 servicios*/
        .box-section-3 {
            text-align: center;
        }
        .box-section-3 h2 {
            font-size: 30px;
            font-family: var(--poppins-fonts);
            padding: 10px 0px;
        }
        .box-section-3 p {
            color: var(--dark-color);
            font-size: var(--font-14px);
            line-height: 1.5;
            font-weight: 500;
        }
        .flex-content-section-3 {
            margin: 40px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-3 div {
            /* background: var(--main-color); */
            margin: 0px 10px;
            border-radius: 5px;
            max-width: 250px;
            height: 270px;
            text-align: center;
        }
        .flex-content-section-3 div:hover>h3 {
            color: var(--main-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-3 div img {
            width: 80px;
            position: relative;
            margin: 50px 0px;
            top: 50%;
            left: 50%;
            transform: translateX(-150%) translateY(-150%);
        }
        .flex-content-section-3 h3 {
            font-size: 18px;
            font-family: var(--poppins-fonts);
            font-weight: 600;
        }
        .flex-content-section-3 p {
            font-size: var(--font-14px);
            font-family: var(--poppins-fonts);
        }
        /* section 4 frase */
        .bg-section-4 {
            padding: 0px 0px;
            background-color: var(--bg-second-color);
        }
        .box-section-4 {
            padding: 50px 30px;
            box-sizing: content-box;
        }
        .box-section-4 div {
            position: relative;
            padding: 0px 10%;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(0%);
        }
        .box-section-4 h4 {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .box-section-4 h3 {
            font-size: 20px;
            line-height: 1.3;
        }
        .box-section-4 h5 {
            font-size: 16px;
            font-style: italic;
            color: var(--gray-color);
        }
        /* section 5 */
        .box-title-section-5 {
            padding: 50px 30px;
            text-align: center;
        }
        .box-title-section-5 h2 {
            font-size: 20px;
        }
        .box-content-section-5 h2 {
            font-size: 18px;
            font-weight: 500;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        .box-content-section-5 p {
            font-size: var(--font-14px);
            line-height: 1.5;
            font-weight: 300;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        /* section 6 */
        .flex-content-section-6 {
            margin: 80px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-6 div {
            background-color: var(--bg-light-second-color);
            margin: 20px 8px;
            border-radius: 15px;
            width: 230px;
            height: 630px;
            text-align: center;
            /* padding: 20px; */
            box-shadow: 0 2.8px 2.2px rgb(73 73 73 / 3%), 0 6.7px 5.3px rgb(83 83 83 / 5%), 0 12.5px 10px rgb(88 88 88 / 6%), 0 22.3px 17.9px rgb(58 58 58 / 7%), 0 41.8px 33.4px rgb(66 66 66 / 9%), 0 100px 80px rgb(63 63 63 / 12%);
        }
        .flex-content-section-6 h2 {
            color: var(--main-color);
            font-weight: 700;
            font-size: 15px;
            margin-top: 20px;
        }
        .flex-content-section-6 h4 {
            color: var(--dark-color);
            font-weight: 400;
            font-size: 14px;
        }
        .flex-content-section-6 ul {
            padding: 10px;
            margin: 0px;
        }
        .flex-content-section-6 li {
            list-style-type: none;
            text-align: left;
            line-height: 2;
            margin: 0px;
            font-size: var(--font-14px);
        }
        .flex-content-section-6 li:hover {
            background-color: var(--bg-second-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 li:hover i {
            color: var(--whats-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 i {
            color: var(--main-color);
        }
        /* section 7 */
        .box-title-section-7 {
            padding: 50px 30px;
            box-sizing: content-box;
            text-align: center;
        }
        .box-title-section-7 h2 {
            font-size: 50px;
        }
        .flex-content-section-7 {
            margin-top: 20px;
            margin-bottom: 80px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-7 div {
            position: relative;
            background-color: var(--white-color);
            margin: 20px 5px;
            border-radius: 15px;
            width: 210px;
            height: 300px;
            text-align: center;
            padding: 10px;
        }
        .flex-content-section-7 .overflow {
            position: relative;
            left: -8%;
            right: 0%;
            height: 130px;
            overflow: auto;
            overflow-x: hidden;
            background: transparent;
        }
        .flex-content-section-7 div:hover {
            background-color: var(--main-color);
            transition: ease-in-out .3s;
            box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -webkit-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -moz-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
        }
        .flex-content-section-7 div:hover h1,
        .flex-content-section-7 div:hover h3,
        .flex-content-section-7 div:hover p {
            color: var(--white-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-7 div:hover .overflow {
            color: var(--white-color);
            transition: ease-in-out .3s;
            background-color: var(--main-color);
        }
        .flex-content-section-7 h1 {
            color: var(--main-color);
            text-align: left;
            font-size: 50px;
            font-family: var(--poppins-fonts);
        }
        .flex-content-section-7 h3 {
            color: var(--dark-color);
            text-align: left;
            font-weight: 500;
            font-family: var(--poppins-fonts);
            margin: 20px 0px;
            font-size: var(--font-20px);
        }
        .flex-content-section-7 p {
            color: var(--dark-color);
            text-align: left;
            font-family: var(--poppins-fonts);
            font-weight: 200;
            line-height: 1.8;
            font-size: 12px;
        }
        /* section 9 */
        .bg-section-9 {
            background-color: var(--bg-second-color);
            padding: 0px;
        }
        .bg-section-9 i {
            color: var(--main-color);
        }
        .box-logo-section-9 {
            width: 100px;
            position: relative;
            left: 83%;
            bottom: -124px;
            top: 0%;
            z-index: 9;
            transform: rotate( 40deg);
        }
        .box-img-section-9 {
            position: relative;
            left: 70%;
            bottom: 230px;
            top: 0%;
            z-index: 9;
        }
        .box-img-section-9 img {
            display: none;
        }
        .box-content-section-9 {
            background-color: var(--white-color);
            padding: 50px;
            width: 100%;
            border-radius: 15px;
            margin: 30px 0px;
        }
        .box-content-section-9 h4 {
            text-transform: uppercase;
            color: var(--dark-color);
            font-size: var(--font-12px);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        .box-content-section-9 h2 {
            font-size: 24px;
            color: var(--hard-dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-9 h3 {
            text-transform: uppercase;
            color: var(--dark-color);
            font-size: var(--font-16px);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        .box-content-section-9 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.7;
        }
        .box-content-section-9 ul {
            list-style: none;
            margin: 0px;
            padding: 0px;
        }
        .box-content-section-9 li {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            padding: 10px 0px;
        }
        /* section 10 */
        .bg-section-10 {
            padding: 100px 0px;
        }
        .box-content-section-10 {
            width: 100%;
            order: 1;
        }
        .box-img-section-10 {
            width: auto;
            order: 2;
        }
        .box-content-section-10 h2 {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-10 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.9;
        }
        /* section carousel*/
        .title-section h2 {
            font-family: var(--poppins-fonts);
            color: var(--dark-color);
        }
        .btn-archive {
            color: var(--tx-button);
            background: var(--bg-button);
            border-color: var(--bg-button-border);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }
        .btn-archive:hover {
            color: var(--tx-button-hover);
            background-color: var(--bg-button-hover);
            border-color: var(--bg-button-hover);
        }
        .btn-archive:focus {
            -webkit-box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
            box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
        }
        .posts-section {
            background: var(--bg-post-section);
            font-family: var(--font1);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }
        .posts-section .title-section {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--tx-post-section-title);
        }
        .posts-section .bg-card {
            background: var(--bg-post-title);
            color: var(--tx-post-title);
        }
        .posts-section .post-body h2 {
            font-weight: 600;
        }
        .posts-section .post-info {
            font-size: 0.8rem;
            font-weight: 300;
        }
        .posts-section .text-img-over {
            position: relative;
        }
        .posts-section .text-img-over .card-img-top {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }
        .posts-section .text-img-over .overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            transition: 0.5s ease;
            background: var(--bg-post-image-overlay);
        }
        .posts-section .text-img-over:hover .overlay {
            opacity: 1;
        }
        .posts-section .social-hover {
            color: var(--tx-color-1);
            font-size: 40px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .posts-section .social-hover .fa-share-alt {
            color: var(--tx-color-1);
        }
        .posts-section .social-hover .fa-share-alt:hover {
            color: var(--tx-color-1);
        }
        .post-body h2 {
            color: var(--dark-color);
            margin: 20px 0px;
            font-family: var(--poppins-fonts);
            font-size: var(--font-18px);
        }
        .post-body p {
            color: var(--dark-color);
            line-height: 1.4;
            font-family: var(--poppins-fonts);
            font-weight: 300;
            font-size: var(--font-14px);
        }
        /* footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white-color);
            padding: 50px 20px;
        }
        footer .col {
            flex: 1 0 30%;
        }
        footer h4 {
            font-size: var(--font-14px);
            text-transform: uppercase;
            padding: 20px 0px;
            font-weight: 700;
        }
        footer p {
            color: var(--light-color);
            font-size: var(--font-14px);
            line-height: 1.8;
        }
        footer ul {
            list-style-type: none;
            padding: 0px;
            color: var(--light-color);
        }
        footer li {
            list-style-type: none;
            padding: 5px 0px;
            font-size: var(--font-14px);
        }
        footer a {
            list-style-type: none;
            padding: 5px 0px;
            color: var(--light-color);
        }
        footer a:hover {
            color: var(--main-color);
        }
        footer i {
            padding: 0px 10px;
        }
        /* extras */
        .btn-border-more {
            margin-top: 15px;
            border: 2px solid var(--main-color);
            color: var(--dark-color);
            border-radius: 5px;
        }
        .btn-border-more:hover {
            border: 2px solid var(--dark-color);
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        .btn-colored-more {
            margin-top: 15px;
            color: var(--white-color);
            background-color: var(--main-color);
            border-radius: 5px;
        }
        .btn-colored-more:hover {
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        a {
            text-decoration: none;
        }
        .view-sm {
            display: block;
        }
        .hiden-sm {
            display: none;
        }
        .up-to-home {
            position: fixed;
            margin: 20px;
            z-index: 999;
            top: 91%;
            left: 91%;
            transform: translateX(-50%) translateY(-50%);
            background-color: rgba(5, 5, 5, 0.13);
            border-radius: 5px;
            padding: 20px;
            cursor: pointer;
        }
        .up-to-home i {
            color: rgb(0, 0, 0)
        }
        .copyright {
            text-align: center;
            margin: 10px 0px;
        }
        .copyright * {
            color: #9e9e9e !important;
        }
    }
    /* iPad Pro */
    
    @media screen and (min-width: 769px) and (max-width: 1024px) {
        .flex-testimonial {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 1rem;
        }
        .testimonial-card {
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            padding: 5px;
            border-radius: 0px 50px 0px 50px;
            /* box-shadow: none; */
            text-align: center;
            background-color: var(--white-color);
            height: auto;
            /* justify-content: space-around; */
        }
        .testimonial-card p {
            font-size: .8rem;
        }
        .testimonial-card h3,
        .testimonial-card h4,
        .testimonial-card h5 {
            padding: 10px 0;
            color: #00c492;
            font-size: 1rem;
        }
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 10%;
            color: #f5f5f5;
            font-size: 5rem;
            font-family: var(--tiro-fonts);
        }
        /* checkbox */
        .switch {
            display: inline-block;
            height: 34px;
            position: relative;
            width: 60px;
        }
        .switch input {
            display: none;
        }
        .slider {
            background-color: var(--main-color);
            bottom: 0;
            cursor: pointer;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition: .4s;
        }
        .slider:before {
            background-color: #fff;
            bottom: 4px;
            content: "";
            height: 26px;
            left: 4px;
            position: absolute;
            transition: .4s;
            width: 26px;
        }
        input:checked+.slider {
            background-color: var(--main-color);
            ;
        }
        input:checked+.slider:before {
            transform: translateX(26px);
        }
        .slider.round {
            border-radius: 34px;
        }
        .slider.round:before {
            border-radius: 50%;
        }
        /* nabvar */
        nav {
            padding: 20px 0px;
            margin: 0px 0px;
            position: fixed !important;
            z-index: 99;
            top: 0;
            width: 100%;
            -webkit-box-shadow: 4px 11px 15px -7px rgba(97, 97, 97, 0.25);
            box-shadow: 4px 11px 15px -7px rgba(97, 97, 97, 0.25);
        }
        nav .navbar-brand * {
            font-size: var(--font-14px) !important;
            font-weight: 300 !important;
            position: relative;
            float: right;
        }
        nav .navbar-nav i {
            color: var(--main-color);
        }
        nav .navbar-nav {
            font-size: var(--font-12px) !important;
            font-weight: 600 !important;
            text-transform: uppercase;
            padding: 0px 5px;
            margin: 0px 5px;
            position: relative;
        }
        nav .nav-contact:hover {
            background-color: var(--hard-dark-color);
            color: var(--white-color);
        }
        .logo img {
            width: 40px;
        }
        /* section 1 */
        #slider {
            padding: 45px 0px;
        }
        .bg-section-1 {
            background: url(../img/stock/BlogWellzenTools.jpg);
            background-repeat: no-repeat;
            background-position: 0px, 0px;
            background-size: cover;
            background-attachment: fixed;
            height: 550px;
            position: relative;
        }
        .bg-section-1 .circle {
            height: 12px;
            width: 12px;
            border: 2px solid var(--main-color);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            margin: 0px 4px;
        }
        .bg-section-1 .active {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        }
        .bg-section-1 .circle:hover {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        }
        .bg-section-1 .fa-chevron-left {
            position: absolute;
            top: 16%;
            left: 8%;
            background-color: var(--white-color);
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        .bg-section-1 .fa-chevron-right {
            position: absolute;
            top: 16%;
            left: 16%;
            background-color: var(--white-color);
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        .bg-section-1 .fa-chevron-right:hover {
            color: var(--white-color);
            transition: ease-in-out .2s;
        }
        .box-section-1 {
            background-color: var(--white-color);
            width: 40%;
            height: auto;
            box-sizing: border-box;
            margin: 10px;
            padding: 20px;
            border-radius: 15px;
            position: relative;
            top: 22%;
            left: 0%;
            transform: translateX(10%) translateY(-20%);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .box-section-1 h3 {
            font-size: 30px;
            color: var(--dark-color);
            font-weight: 700;
        }
        .box-section-1 p {
            bottom: 0px;
            color: var(--dark-color);
            font-size: var(--font-16px);
            font-weight: 300;
        }
        /* section 2 */
        .bg-section-2 {
            background-color: var(--bg-second-color);
            padding: 100px 0px;
            text-align: center;
        }
        .box-section-2 h2 {
            font-size: 50px;
            font-family: var(--poppins-fonts);
            padding: 10px 0px;
        }
        .box-section-2 p {
            color: var(--dark-color);
            font-size: var(--font-18px);
            line-height: 1.9;
            font-weight: 500;
        }
        .flex-days-section-2 {
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-days-section-2 div {
            background: var(--second-color);
            margin: 0px 20px;
            padding: 5px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .flex-days-section-2 div:hover {
            background-color: var(--main-color) !important;
            color: var(--white-color);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .day-active {
            background-color: var(--main-color) !important;
            color: var(--white-color);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .flex-content-section-2 {
            margin: 40px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .content-2-section-2 {
            margin: 0px 10px;
            border-radius: 5px;
            text-align: left;
            background-color: var(--white-color);
            padding: 30px 30px;
        }
        .flex-content-section-2 div img {
            width: 480px;
            background-color: transparent !important;
        }
        .flex-content-section-2 div p {
            color: var(--dark-color);
            font-size: var(--font-16px);
            font-weight: 300;
        }
        .flex-content-section-2 div span {
            background-color: var(--bg-second-color);
            font-weight: 500;
        }
        .flex-content-section-2 div h3 {
            color: var(--dark-color);
            font-size: var(--font-18px);
            line-height: 1.9;
            font-weight: 700;
        }
        .flex-content-section-2 div a {
            position: relative;
            bottom: 0px;
            color: var(--bg-main-color);
            font-weight: 500;
        }
        /* section 3 servicios*/
        .box-section-3 {
            text-align: center;
        }
        .box-section-3 h2 {
            font-size: 30px;
            font-family: var(--poppins-fonts);
            padding: 10px 0px;
        }
        .box-section-3 p {
            color: var(--dark-color);
            font-size: var(--font-14px);
            line-height: 1.5;
            font-weight: 500;
        }
        .flex-content-section-3 {
            margin: 40px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-3 div {
            /* background: var(--main-color); */
            margin: 0px 10px;
            border-radius: 5px;
            max-width: 250px;
            height: 270px;
            text-align: center;
        }
        .flex-content-section-3 div:hover>h3 {
            color: var(--main-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-3 div img {
            width: 80px;
            position: relative;
            margin: 50px 0px;
            top: 50%;
            left: 50%;
            transform: translateX(-150%) translateY(-150%);
        }
        .flex-content-section-3 h3 {
            font-size: 18px;
            font-family: var(--poppins-fonts);
            font-weight: 600;
        }
        .flex-content-section-3 p {
            font-size: var(--font-14px);
            font-family: var(--poppins-fonts);
        }
        /* section 4 */
        .bg-section-4 {
            padding: 0px 0px;
            background-color: var(--bg-second-color);
        }
        .box-section-4 {
            padding: 50px 30px;
            box-sizing: content-box;
        }
        .box-section-4 div {
            position: relative;
            padding: 0px 10%;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(20%);
        }
        .box-section-4 h4 {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .box-section-4 h3 {
            font-size: 30px;
            line-height: 1.7;
        }
        .box-section-4 h5 {
            font-size: 16px;
            font-style: italic;
            color: var(--gray-color);
        }
        /* section 5 */
        .box-title-section-5 {
            padding: 50px 30px;
            text-align: center;
        }
        .box-title-section-5 h2 {
            font-size: 20px;
        }
        .box-content-section-5 h2 {
            font-size: 18px;
            font-weight: 500;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        .box-content-section-5 p {
            font-size: var(--font-14px);
            line-height: 1.5;
            font-weight: 300;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        /* section 6 */
        .flex-content-section-6 {
            margin: 80px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-6 div {
            background-color: var(--bg-light-second-color);
            margin: 20px 10px;
            border-radius: 15px;
            width: 310px;
            height: 750px;
            text-align: center;
            padding: 20px 0px;
        }
        .flex-content-section-6 div:nth-child(2) {
            box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -webkit-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -moz-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
        }
        .flex-content-section-6 h2 {
            color: var(--main-color);
            font-weight: 700;
            font-size: 20px;
            margin: 0px 0px;
        }
        .flex-content-section-6 h4 {
            color: var(--dark-color);
            font-weight: 400;
            font-size: 14px;
            text-transform: uppercase;
            margin: 10px 0px;
        }
        .flex-content-section-6 ul {
            margin: 0px;
            padding: 0px 10px;
        }
        .flex-content-section-6 li {
            list-style-type: none;
            text-align: left;
            font-weight: 300;
            padding: 10px 0px;
            font-size: var(--font-14px);
        }
        .flex-content-section-6 li:hover {
            background-color: var(--bg-second-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 li:hover i {
            color: var(--whats-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 i {
            color: var(--main-color);
        }
        /* section 7 */
        .box-title-section-7 {
            padding: 50px 30px;
            box-sizing: content-box;
            text-align: center;
        }
        .box-title-section-7 h2 {
            font-size: 50px;
        }
        .flex-content-section-7 {
            margin-top: 20px;
            margin-bottom: 80px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-7 div {
            position: relative;
            background-color: var(--white-color);
            margin: 20px 10px;
            border-radius: 15px;
            width: 290px;
            height: 300px;
            text-align: center;
            padding: 20px;
        }
        .flex-content-section-7 .overflow {
            position: relative;
            left: -12%;
            right: 0%;
            height: 130px;
            overflow: auto;
            overflow-x: hidden;
            background: transparent;
        }
        .flex-content-section-7 div:hover {
            background-color: var(--main-color);
            transition: ease-in-out .3s;
            box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -webkit-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -moz-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
        }
        .flex-content-section-7 div:hover h1,
        .flex-content-section-7 div:hover h3,
        .flex-content-section-7 div:hover p {
            color: var(--white-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-7 div:hover .overflow {
            color: var(--white-color);
            transition: ease-in-out .3s;
            background-color: var(--main-color);
        }
        .flex-content-section-7 h1 {
            color: var(--main-color);
            text-align: left;
            font-size: 50px;
            font-family: var(--poppins-fonts);
        }
        .flex-content-section-7 h3 {
            color: var(--dark-color);
            text-align: left;
            font-weight: 500;
            font-family: var(--poppins-fonts);
            margin: 20px 0px;
            font-size: var(--font-20px);
        }
        .flex-content-section-7 p {
            color: var(--dark-color);
            text-align: left;
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.8;
        }
        /* section 9 */
        .bg-section-9 {
            background-color: var(--bg-second-color);
            padding: 0px;
        }
        .bg-section-9 i {
            color: var(--main-color);
        }
        .box-logo-section-9 {
            display: none;
        }
        .box-img-section-9 {
            position: relative;
            left: 2%;
            bottom: -80px;
            top: 0%;
            z-index: 9;
        }
        .box-img-section-9 img {
            width: 400px;
        }
        .box-content-section-9 {
            background-color: var(--white-color);
            padding: 50px;
            width: 50%;
            border-radius: 15px;
            margin: 30px 0px;
        }
        .box-content-section-9 h4 {
            text-transform: uppercase;
            color: var(--dark-color);
            font-size: var(--font-12px);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        .box-content-section-9 h2 {
            font-size: 24px;
            color: var(--hard-dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-9 h3 {
            text-transform: uppercase;
            color: var(--dark-color);
            font-size: var(--font-16px);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        .box-content-section-9 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.7;
        }
        .box-content-section-9 ul {
            list-style: none;
            margin: 0px;
            padding: 0px;
        }
        .box-content-section-9 li {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            padding: 10px 0px;
        }
        /* section 10 */
        .bg-section-10 {
            padding: 100px 0px;
        }
        .box-content-section-10 {
            width: 50%;
        }
        .box-img-section-10 {
            width: 50%;
        }
        .box-img-section-10 img {
            width: 420px;
        }
        .box-content-section-10 h2 {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-10 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.9;
        }
        /* section carousel*/
        .title-section h2 {
            font-family: var(--poppins-fonts);
            color: var(--dark-color);
        }
        .btn-archive {
            color: var(--tx-button);
            background: var(--bg-button);
            border-color: var(--bg-button-border);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }
        .btn-archive:hover {
            color: var(--tx-button-hover);
            background-color: var(--bg-button-hover);
            border-color: var(--bg-button-hover);
        }
        .btn-archive:focus {
            -webkit-box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
            box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
        }
        .posts-section {
            background: var(--bg-post-section);
            font-family: var(--font1);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }
        .posts-section .title-section {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--tx-post-section-title);
        }
        .posts-section .bg-card {
            background: var(--bg-post-title);
            color: var(--tx-post-title);
        }
        .posts-section .post-body h2 {
            font-weight: 600;
        }
        .posts-section .post-info {
            font-size: 0.8rem;
            font-weight: 300;
        }
        .posts-section .text-img-over {
            position: relative;
        }
        .posts-section .text-img-over .card-img-top {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }
        .posts-section .text-img-over .overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            transition: 0.5s ease;
            background: var(--bg-post-image-overlay);
        }
        .posts-section .text-img-over:hover .overlay {
            opacity: 1;
        }
        .posts-section .social-hover {
            color: var(--tx-color-1);
            font-size: 40px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .posts-section .social-hover .fa-share-alt {
            color: var(--tx-color-1);
        }
        .posts-section .social-hover .fa-share-alt:hover {
            color: var(--tx-color-1);
        }
        .post-body h2 {
            color: var(--dark-color);
            margin: 20px 0px;
            font-family: var(--poppins-fonts);
            font-size: var(--font-20px);
        }
        .post-body p {
            color: var(--dark-color);
            line-height: 1.4;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        /* footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white-color);
            padding: 50px 20px;
        }
        footer .col {
            flex: 1 0 30%;
        }
        footer h4 {
            font-size: var(--font-14px);
            text-transform: uppercase;
            padding: 20px 0px;
            font-weight: 700;
        }
        footer p {
            color: var(--light-color);
            font-size: var(--font-14px);
            line-height: 1.8;
        }
        footer ul {
            list-style-type: none;
            padding: 0px;
            color: var(--light-color);
        }
        footer li {
            list-style-type: none;
            padding: 5px 0px;
            font-size: var(--font-14px);
        }
        footer a {
            list-style-type: none;
            padding: 5px 0px;
            color: var(--light-color);
        }
        footer a:hover {
            color: var(--main-color);
        }
        footer i {
            padding: 0px 10px;
        }
        /* extras */
        .btn-border-more {
            margin-top: 15px;
            border: 2px solid var(--main-color);
            color: var(--dark-color);
            border-radius: 5px;
        }
        .btn-border-more:hover {
            border: 2px solid var(--dark-color);
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        .btn-colored-more {
            margin-top: 15px;
            color: var(--white-color);
            background-color: var(--main-color);
            border-radius: 5px;
        }
        .btn-colored-more:hover {
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        a {
            text-decoration: none;
        }
        .view-ipad {
            display: block;
        }
        .hiden-ipad {
            display: none;
        }
        .up-to-home {
            position: fixed;
            margin: 20px;
            z-index: 999;
            top: 91%;
            left: 91%;
            transform: translateX(-50%) translateY(-50%);
            background-color: rgba(5, 5, 5, 0.13);
            border-radius: 5px;
            padding: 20px;
            cursor: pointer;
        }
        .up-to-home i {
            color: rgb(0, 0, 0)
        }
        .copyright {
            text-align: center;
            margin: 10px 0px;
        }
        .copyright * {
            color: #9e9e9e !important;
        }
    }
    /* md */
    
    @media screen and (min-width: 1025px) and (max-width: 1919px) {
        .testimonial-cards {
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            padding: 15px;
            border-radius: 0px 50px 0px 50px;
            /* box-shadow: none; */
            text-align: center;
            background-color: var(--white-color);
            height: auto;
            justify-content: flex-start;
        }
        .testimonial-cards p {
            font-size: 1rem;
        }
        .testimonial-cards h3,
        .testimonial-cards h4,
        .testimonial-cards h5 {
            padding: 10px 0;
            color: #00c492;
            font-size: 1rem;
        }
        /* checkbox */
        .switch {
            display: inline-block;
            height: 34px;
            position: relative;
            width: 60px;
        }
        .switch input {
            display: none;
        }
        .slider {
            background-color: var(--main-color);
            bottom: 0;
            cursor: pointer;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition: .4s;
        }
        .slider:before {
            background-color: #fff;
            bottom: 4px;
            content: "";
            height: 26px;
            left: 4px;
            position: absolute;
            transition: .4s;
            width: 26px;
        }
        input:checked+.slider {
            background-color: var(--main-color);
            ;
        }
        input:checked+.slider:before {
            transform: translateX(26px);
        }
        .slider.round {
            border-radius: 34px;
        }
        .slider.round:before {
            border-radius: 50%;
        }
        /* nabvar */
        nav {
            padding: 20px 0px;
            margin: 0px 0px;
            position: fixed !important;
            z-index: 99;
            top: 0;
            width: 100%;
            -webkit-box-shadow: 4px 11px 15px -7px rgba(97, 97, 97, 0.25);
            box-shadow: 4px 11px 15px -7px rgba(97, 97, 97, 0.25);
        }
        nav .navbar-brand * {
            font-size: var(--font-14px) !important;
            font-weight: 300 !important;
            position: relative;
            float: right;
        }
        nav .navbar-nav {
            font-size: var(--font-14px) !important;
            font-weight: 600 !important;
            text-transform: uppercase;
            padding: 0px 5px;
            margin: 0px 5px;
            position: relative;
        }
        nav .navbar-nav i {
            color: var(--main-color);
        }
        nav .nav-contact:hover {
            background-color: var(--hard-dark-color);
            color: var(--white-color);
        }
        .logo img {
            width: 40px;
        }
        /* section 1 */
        #slider {
            padding: 45px 0px;
        }
        .circle {
            height: 12px;
            width: 12px;
            border: 2px solid var(--main-color);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            margin: 0px 4px;
        }
        /* .active {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        } */
        .circle:hover {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        }
        /* section 1 */
        .bg-section-1 {
            /* img optional */
            /* background: url(../img/stock/mainslider-bg003.jpg);
        background-position: 0px, -50px; */
            /* img actual */
            /* background: url(../img/stock/BlogWellzenTools.jpg); */
            background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(255, 255, 255, 0.73)), url('../img/stock/BlogWellzenTools.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed;
            height: 580px;
            position: relative;
            -webkit-transition: all 1.4s cubic-bezier(.42, 0, .58, 1);
            transition: all .5s cubic-bezier(.42, 0, .58, 1);
        }
        .bg-section-1-slider-2 {
            /* img optional */
            background: url(../img/stock/mainslider-bg003.jpg);
            background-position: 0px, -50px;
            /* img actual */
            background-repeat: no-repeat;
            background-size: cover;
            height: 580px;
            position: relative;
            -webkit-transition: all .5s cubic-bezier(.42, 0, .58, 1);
            transition: all .5s cubic-bezier(.42, 0, .58, 1);
        }
        .bg-section-1-slider-3 {
            /* img optional */
            background: url(../img/stock/cta-bg-two.jpg);
            background-position: -250px, 0px;
            /* img actual */
            background-repeat: no-repeat;
            background-size: cover;
            height: 580px;
            position: relative;
            -webkit-transition: all .5s cubic-bezier(.42, 0, .58, 1);
            transition: all .5s cubic-bezier(.42, 0, .58, 1);
        }
        .bg-section-1-slider-4 {
            /* img optional */
            background: url(../img/stock/slider-landing.jpg);
            background-position: 0px, -50px;
            /* img actual */
            background-repeat: no-repeat;
            background-size: cover;
            height: 580px;
            position: relative;
            -webkit-transition: all .5s cubic-bezier(.42, 0, .58, 1);
            transition: all .5s cubic-bezier(.42, 0, .58, 1);
        }
        .bg-section-1 .fa-chevron-left {
            position: absolute;
            top: 50%;
            left: 5%;
            background-color: rgba(241, 241, 241, 0.431);
            padding: 20px;
            border-radius: 50px;
            cursor: pointer;
        }
        .bg-section-1 .fa-chevron-left:hover {
            color: var(--white-color);
            transition: ease-in-out .2s;
        }
        .bg-section-1 .fa-chevron-right {
            position: absolute;
            top: 50%;
            left: 42%;
            background-color: rgba(241, 241, 241, 0.431);
            padding: 20px;
            border-radius: 50px;
            cursor: pointer;
        }
        .bg-section-1 .fa-chevron-right:hover {
            color: var(--white-color);
            transition: ease-in-out .2s;
        }
        .btn-section-1 {
            position: absolute;
            top: 94%;
            left: 54%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 18%;
        }
        /* contents section-1 */
        .content-1-section-1 {
            position: absolute;
            top: 17%;
            left: 42%;
            transition: ease-in-out .2s;
        }
        .content-1-section-1 h2 {
            font-size: 50px;
            font-weight: 700;
            font-family: var(--poppins-fonts);
            letter-spacing: 1px;
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-1-section-1 h3 {
            font-size: 30px;
            border-radius: 15px;
            font-weight: 400;
            font-family: var(--poppins-fonts);
            background-color: var(--bg-light-second-color);
            padding: 20px;
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-2-section-1 {
            position: absolute;
            top: 17%;
            left: 42%;
            transition: ease-in-out .2s;
        }
        .content-2-section-1 h2 {
            font-size: 40px;
            font-weight: 700;
            font-family: var(--poppins-fonts);
            letter-spacing: 1px;
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-2-section-1 h3 {
            font-size: 30px;
            border-radius: 15px;
            font-weight: 400;
            font-family: var(--poppins-fonts);
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-3-section-1 {
            position: absolute;
            top: 17%;
            left: 42%;
            transition: ease-in-out .2s;
        }
        .content-3-section-1 h2 {
            font-size: 35px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--poppins-fonts);
            letter-spacing: 1px;
            text-transform: uppercase;
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-3-section-1 h3 {
            font-size: 20px;
            border-radius: 15px;
            font-weight: 400;
            font-family: var(--poppins-fonts);
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-3-section-1 a {
            margin: 10px 0px;
            animation-duration: .8s;
            animation-name: slideFadeIn;
        }
        .content-3-section-1 i {
            margin: 0px 5px;
            animation-duration: .8s;
            animation-name: slideFadeIn;
        }
        .floating-speed i {
            animation-name: floating;
            animation-duration: 1s;
            animation-iteration-count: infinite;
            animation-timing-function: ease-in-out;
        }
        .circle-btn {
            height: 20px;
            width: 20px;
            border: 2px solid var(--dark-color);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            margin: 0px 4px;
        }
        /* .active {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        } */
        .circle-btn:hover {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        }
        .box-section-1 {
            background-color: var(--white-color);
            width: 30%;
            height: auto;
            box-sizing: border-box;
            margin: 10px;
            padding: 20px;
            border-radius: 15px;
            position: relative;
            top: 25%;
            left: 0%;
            transform: translateX(30%) translateY(-20%);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .box-section-1 h3 {
            font-size: 40px !important;
            color: var(--dark-color);
            font-weight: 700;
        }
        .box-section-1 p {
            bottom: 0px;
            color: var(--dark-color);
            font-size: var(--font-16px);
            font-weight: 300;
        }
        /* section 2 */
        .bg-section-2 {
            background-color: var(--bg-second-color);
            padding: 100px 0px;
            text-align: center;
        }
        .box-section-2 h2 {
            font-size: 50px;
            font-family: var(--poppins-fonts);
            padding: 10px 0px;
        }
        .box-section-2 p {
            color: var(--dark-color);
            font-size: var(--font-18px);
            padding: 0px 400px;
            line-height: 1.9;
            font-weight: 500;
        }
        .flex-days-section-2 {
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-days-section-2 div {
            background: var(--second-color);
            margin: 0px 20px;
            padding: 5px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .flex-days-section-2 div:hover {
            background-color: var(--main-color) !important;
            color: var(--white-color);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .day-active {
            background-color: var(--main-color) !important;
            color: var(--white-color);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .flex-content-section-2 {
            margin: 40px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .content-2-section-2 {
            margin: 0px 10px;
            border-radius: 5px;
            text-align: left;
            background-color: var(--white-color);
            padding: 50px 30px;
        }
        .flex-content-section-2 div img {
            width: 480px;
            background-color: transparent !important;
        }
        .flex-content-section-2 div p {
            color: var(--dark-color);
            font-size: var(--font-16px);
            font-weight: 300;
        }
        .flex-content-section-2 div span {
            background-color: var(--bg-second-color);
            font-weight: 500;
        }
        .flex-content-section-2 div h3 {
            color: var(--dark-color);
            font-size: var(--font-18px);
            line-height: 1.9;
            font-weight: 700;
        }
        .flex-content-section-2 div a {
            position: relative;
            bottom: 0px;
            color: var(--bg-main-color);
            font-weight: 500;
        }
        /* section 3 */
        .box-section-3 {
            text-align: center;
        }
        .box-section-3 h4 {
            font-size: var(--font-14px);
            text-transform: uppercase;
            color: var(--dark-color);
            letter-spacing: 2px;
            font-weight: 300;
            font-family: var(--poppins-fonts);
        }
        .box-section-3 h2 {
            font-size: 30px;
            font-family: var(--poppins-fonts);
            padding: 10px 0px;
        }
        .box-section-3 p {
            color: var(--dark-color);
            font-size: var(--font-14px);
            padding: 0px 200px;
            line-height: 1.5;
            font-weight: 500;
        }
        .flex-content-section-3 {
            margin: 0px 0px 80px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-3 div {
            /* background: var(--main-color); */
            margin: 0px 10px;
            border-radius: 5px;
            max-width: 200px;
            height: 270px;
            text-align: center;
        }
        .flex-content-section-3 div:hover>h3 {
            color: var(--main-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-3 div img {
            width: 150px;
            position: relative;
            margin: 50px 0px;
            top: 50%;
            left: 50%;
            transform: translateX(-80%) translateY(-50%);
        }
        .flex-content-section-3 div:hover>img {
            padding: 5px;
            transition: ease-in-out .3s;
        }
        .flex-content-section-3 h3 {
            font-size: 18px;
            font-family: var(--poppins-fonts);
            font-weight: 600;
        }
        .flex-content-section-3 p {
            font-size: var(--font-14px);
            font-family: var(--poppins-fonts);
        }
        /* section 4 */
        .bg-section-4 {
            padding: 0px 0px;
            background-color: var(--bg-second-color);
        }
        .box-section-4 {
            padding: 50px 30px;
            box-sizing: content-box;
        }
        .box-section-4 div {
            position: relative;
            padding: 0px 10%;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(20%);
        }
        .box-section-4 h4 {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .box-section-4 h3 {
            font-size: 30px;
            line-height: 1.7;
        }
        .box-section-4 h5 {
            font-size: 16px;
            font-style: italic;
            color: var(--gray-color);
        }
        /* section 5 */
        .box-title-section-5 {
            padding: 50px 30px;
            box-sizing: content-box;
            text-align: center;
        }
        .box-title-section-5 h2 {
            font-size: 30px;
        }
        .box-content-section-5 h2 {
            font-size: 18px;
            font-weight: 500;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        .box-content-section-5 p {
            font-size: var(--font-14px);
            line-height: 1.5;
            font-weight: 300;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        /* section 6 */
        .flex-content-section-6 {
            margin: 80px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-6 div {
            background-color: var(--bg-light-second-color);
            margin: 20px 15px;
            border-radius: 15px;
            width: 350px;
            height: 750px;
            text-align: center;
            padding: 20px 0px;
        }
        .flex-content-section-6 div:nth-child(2) {
            box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -webkit-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -moz-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
        }
        .flex-content-section-6 h2 {
            color: var(--main-color);
            font-weight: 700;
            font-size: 20px;
            margin: 0px 0px;
        }
        .flex-content-section-6 h4 {
            color: var(--dark-color);
            font-weight: 400;
            font-size: 14px;
            text-transform: uppercase;
            margin: 10px 0px;
        }
        .flex-content-section-6 ul {
            margin: 0px;
            padding: 0px 10px;
        }
        .flex-content-section-6 li {
            list-style-type: none;
            text-align: left;
            font-weight: 300;
            padding: 10px 0px;
            font-size: var(--font-14px);
        }
        .flex-content-section-6 li:hover {
            background-color: var(--bg-second-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 li:hover i {
            color: var(--whats-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 i {
            color: var(--main-color);
        }
        /* section 7 */
        .box-title-section-7 {
            padding: 50px 30px;
            box-sizing: content-box;
            text-align: center;
        }
        .box-title-section-7 h2 {
            font-size: 50px;
        }
        .flex-content-section-7 {
            margin-top: 20px;
            margin-bottom: 80px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-7 div {
            position: relative;
            background-color: var(--white-color);
            margin: 20px 5px;
            border-radius: 15px;
            width: 350px;
            height: 300px;
            text-align: center;
            padding: 20px;
        }
        .flex-content-section-7 .overflow {
            position: relative;
            left: -8%;
            right: 0%;
            height: 130px;
            overflow: auto;
            overflow-x: hidden;
            background: transparent;
        }
        .flex-content-section-7 div:hover {
            background-color: var(--main-color);
            transition: ease-in-out .3s;
            box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -webkit-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -moz-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
        }
        .flex-content-section-7 div:hover h1,
        .flex-content-section-7 div:hover h3,
        .flex-content-section-7 div:hover p {
            color: var(--white-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-7 div:hover .overflow {
            color: var(--white-color);
            transition: ease-in-out .3s;
            background-color: var(--main-color);
        }
        .flex-content-section-7 h1 {
            color: var(--main-color);
            text-align: left;
            font-size: 50px;
            font-family: var(--poppins-fonts);
        }
        .flex-content-section-7 h3 {
            color: var(--dark-color);
            text-align: left;
            font-weight: 500;
            font-family: var(--poppins-fonts);
            margin: 20px 0px;
        }
        .flex-content-section-7 p {
            color: var(--dark-color);
            text-align: left;
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.8;
        }
        /* section 9 */
        .bg-section-9 {
            background-color: var(--bg-second-color);
            padding: 100px 0px;
        }
        .bg-section-9 i {
            color: var(--main-color);
        }
        .box-logo-section-9 {
            width: 90px;
            position: relative;
            left: 24%;
            bottom: 60px;
            top: 0%;
            z-index: 9;
            transform: rotate( 40deg);
        }
        .box-img-section-9 img {
            float: right;
        }
        .box-content-section-9 {
            background-color: var(--white-color);
            padding: 50px;
            width: 40%;
        }
        .box-content-section-9 h4 {
            text-transform: uppercase;
            color: var(--dark-color);
            font-size: var(--font-12px);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        .box-content-section-9 h2 {
            font-size: 24px;
            color: var(--hard-dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-9 h3 {
            text-transform: uppercase;
            color: var(--dark-color);
            font-size: var(--font-16px);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        .box-content-section-9 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.7;
        }
        .box-content-section-9 ul {
            list-style: none;
            margin: 0px;
            padding: 0px;
        }
        .box-content-section-9 li {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            padding: 10px 0px;
        }
        /* section 10 */
        .bg-section-10 {
            padding: 100px 0px;
        }
        .box-img-section-10 img {
            width: 100%;
        }
        .box-content-section-10 {
            padding: 10px 50px;
        }
        .box-content-section-10 h2 {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-10 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.9;
        }
        /* footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white-color);
            padding: 50px 20px;
        }
        footer h4 {
            font-size: var(--font-14px);
            text-transform: uppercase;
            padding: 20px 0px;
            font-weight: 700;
        }
        footer p {
            color: var(--light-color);
            font-size: var(--font-14px);
            line-height: 1.8;
        }
        footer ul {
            list-style-type: none;
            padding: 0px;
            color: var(--light-color);
        }
        footer li {
            list-style-type: none;
            padding: 5px 0px;
            font-size: var(--font-14px);
        }
        footer a {
            list-style-type: none;
            padding: 5px 0px;
            color: var(--light-color);
        }
        footer a:hover {
            color: var(--main-color);
        }
        footer i {
            padding: 0px 10px;
        }
        /* section carousel*/
        .title-section h2 {
            font-family: var(--poppins-fonts);
            color: var(--dark-color);
        }
        .btn-archive {
            color: var(--tx-button);
            background: var(--bg-button);
            border-color: var(--bg-button-border);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }
        .btn-archive:hover {
            color: var(--tx-button-hover);
            background-color: var(--bg-button-hover);
            border-color: var(--bg-button-hover);
        }
        .btn-archive:focus {
            -webkit-box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
            box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
        }
        .posts-section {
            background: var(--bg-post-section);
            font-family: var(--font1);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }
        .posts-section .title-section {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--tx-post-section-title);
        }
        .posts-section .bg-card {
            background: var(--bg-post-title);
            color: var(--tx-post-title);
        }
        .posts-section .post-body h2 {
            font-weight: 600;
        }
        .posts-section .post-info {
            font-size: 0.8rem;
            font-weight: 300;
        }
        .posts-section .text-img-over {
            position: relative;
        }
        .posts-section .text-img-over .card-img-top {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }
        .posts-section .text-img-over .overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            transition: 0.5s ease;
            background: var(--bg-post-image-overlay);
        }
        .posts-section .text-img-over:hover .overlay {
            opacity: 1;
        }
        .posts-section .social-hover {
            color: var(--tx-color-1);
            font-size: 40px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .posts-section .social-hover .fa-share-alt {
            color: var(--tx-color-1);
        }
        .posts-section .social-hover .fa-share-alt:hover {
            color: var(--tx-color-1);
        }
        .post-body h2 {
            color: var(--dark-color);
            margin: 20px 0px;
            font-family: var(--poppins-fonts);
        }
        .post-body p {
            color: var(--dark-color);
            line-height: 1.8;
            font-family: var(--poppins-fonts);
        }
        /* extras */
        .btn-border-more {
            border: 2px solid var(--main-color);
            color: var(--dark-color);
            border-radius: 5px;
            margin-top: 15px;
        }
        .btn-border-more:hover {
            border: 2px solid var(--dark-color);
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        .btn-colored-more {
            margin-top: 15px;
            color: var(--white-color);
            background-color: var(--main-color);
            border-radius: 5px;
        }
        .btn-colored-more:hover {
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        a {
            text-decoration: none;
        }
        .view-md {
            display: block;
        }
        .hiden-md {
            display: none;
        }
        .up-to-home {
            position: fixed;
            margin: 20px;
            z-index: 999;
            top: 90%;
            left: 94%;
            transform: translateX(-50%) translateY(-50%);
            background-color: rgba(5, 5, 5, 0.13);
            border-radius: 5px;
            padding: 20px;
            cursor: pointer;
        }
        .up-to-home i {
            color: var(--hard-dark-color);
        }
        .up-to-home:hover i {
            color: var(--main-color);
            transition: ease-in-out .2s;
        }
         ::-webkit-scrollbar {
            width: 10px;
        }
         ::-webkit-scrollbar-track {
            background-color: rgb(231, 255, 238);
            -webkit-border-radius: 10px;
            border-radius: 10px;
        }
         ::-webkit-scrollbar-thumb {
            -webkit-border-radius: 10px;
            border-radius: 10px;
            background: var(--second-color);
        }
        .copyright {
            text-align: center;
            margin: 10px 0px;
        }
        .copyright * {
            color: #9e9e9e !important;
        }
        @keyframes slidein {
            from {
                margin-left: 50%;
                opacity: 0;
                width: 300%;
            }
            to {
                margin-left: 0%;
                opacity: 1;
                width: 100%;
            }
        }
        @keyframes floating {
            from {
                transform: translate(0, 0px);
            }
            65% {
                transform: translate(0, 5px);
            }
            to {
                transform: translate(0, -0px);
            }
        }
    }
    /* lg */
    
    @media screen and (min-width: 1920px) {
        .testimonial-cards {
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            padding: 15px;
            border-radius: 0px 50px 0px 50px;
            /* box-shadow: none; */
            text-align: center;
            background-color: var(--white-color);
            height: auto;
            justify-content: flex-start;
        }
        .testimonial-cards p {
            font-size: 1rem;
        }
        .testimonial-cards h3,
        .testimonial-cards h4,
        .testimonial-cards h5 {
            padding: 10px 0;
            color: #00c492;
            font-size: 1rem;
        }
        /* checkbox */
        .switch {
            display: inline-block;
            height: 34px;
            position: relative;
            width: 60px;
        }
        .switch input {
            display: none;
        }
        .slider {
            background-color: var(--main-color);
            bottom: 0;
            cursor: pointer;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition: .4s;
        }
        .slider:before {
            background-color: #fff;
            bottom: 4px;
            content: "";
            height: 26px;
            left: 4px;
            position: absolute;
            transition: .4s;
            width: 26px;
        }
        input:checked+.slider {
            background-color: var(--main-color);
            ;
        }
        input:checked+.slider:before {
            transform: translateX(26px);
        }
        .slider.round {
            border-radius: 34px;
        }
        .slider.round:before {
            border-radius: 50%;
        }
        /* nabvar */
        nav {
            padding: 20px 0px;
            margin: 0px 0px;
            position: fixed !important;
            z-index: 99;
            top: 0;
            width: 100%;
            -webkit-box-shadow: 4px 11px 15px -7px rgba(97, 97, 97, 0.25);
            box-shadow: 4px 11px 15px -7px rgba(97, 97, 97, 0.25);
        }
        nav .navbar-brand * {
            font-size: var(--font-18px) !important;
            font-weight: 300 !important;
            position: relative;
            float: right;
        }
        nav .navbar-nav {
            font-size: var(--font-14px) !important;
            font-weight: 600 !important;
            text-transform: uppercase;
            padding: 0px 5px;
            margin: 0px 5px;
            position: relative;
        }
        nav .navbar-nav i {
            color: var(--main-color);
        }
        nav .nav-contact:hover {
            background-color: var(--hard-dark-color);
            color: var(--white-color);
        }
        .logo img {
            width: 40px;
        }
        /* section 1 */
        .bg-section-1 {
            /* img optional */
            /* background: url(../img/stock/mainslider-bg003.jpg);
        background-position: 0px, -50px; */
            /* img actual */
            background: url(../img/stock/BlogWellzenTools.jpg);
            background-repeat: no-repeat;
            background-position: 0px, 0px;
            background-size: cover;
            background-attachment: fixed;
            height: 620px;
            position: relative;
            -webkit-transition: all 1.4s cubic-bezier(.42, 0, .58, 1);
            transition: all .5s cubic-bezier(.42, 0, .58, 1);
        }
        .bg-section-1-slider-2 {
            /* img optional */
            background: url(../img/stock/mainslider-bg003.jpg);
            background-position: 0px, -50px;
            /* img actual */
            background-repeat: no-repeat;
            background-position: 0px, 0px;
            background-size: cover;
            height: 620px;
            position: relative;
            -webkit-transition: all .5s cubic-bezier(.42, 0, .58, 1);
            transition: all .5s cubic-bezier(.42, 0, .58, 1);
        }
        .bg-section-1-slider-3 {
            /* img optional */
            background: url(../img/stock/cta-bg-two.jpg);
            background-position: 0px, -50px;
            /* img actual */
            background-repeat: no-repeat;
            background-position: 0px, 0px;
            background-size: cover;
            height: 620px;
            position: relative;
            -webkit-transition: all .5s cubic-bezier(.42, 0, .58, 1);
            transition: all .5s cubic-bezier(.42, 0, .58, 1);
        }
        .bg-section-1-slider-4 {
            /* img optional */
            background: url(../img/stock/slider-landing.jpg);
            background-position: 0px, -50px;
            /* img actual */
            background-repeat: no-repeat;
            background-position: 0px, 0px;
            background-size: cover;
            height: 620px;
            position: relative;
            -webkit-transition: all .5s cubic-bezier(.42, 0, .58, 1);
            transition: all .5s cubic-bezier(.42, 0, .58, 1);
        }
        .circle {
            height: 12px;
            width: 12px;
            border: 2px solid var(--main-color);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            margin: 0px 4px;
        }
        /* .active {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        } */
        .circle:hover {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        }
        .bg-section-1 .fa-chevron-left {
            position: absolute;
            top: 50%;
            left: 2%;
            background-color: rgba(241, 241, 241, 0.431);
            padding: 20px;
            border-radius: 50px;
            cursor: pointer;
        }
        .bg-section-1 .fa-chevron-left:hover {
            color: var(--white-color);
            transition: ease-in-out .2s;
        }
        .bg-section-1 .fa-chevron-right {
            position: absolute;
            top: 50%;
            left: 96%;
            background-color: rgba(241, 241, 241, 0.431);
            padding: 20px;
            border-radius: 50px;
            cursor: pointer;
        }
        .bg-section-1 .fa-chevron-right:hover {
            color: var(--white-color);
            transition: ease-in-out .2s;
        }
        .btn-section-1 {
            position: absolute;
            top: 94%;
            left: 96%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
        }
        .circle-btn {
            height: 20px;
            width: 20px;
            border: 2px solid var(--gray-color);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            margin: 0px 4px;
        }
        /* .active {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        } */
        .circle-btn:hover {
            border: none;
            background-color: var(--main-color);
            transition: ease-in-out .2s;
        }
        .box-section-1 {
            background-color: var(--white-color);
            width: 20%;
            height: auto;
            box-sizing: border-box;
            margin: 10px;
            padding: 20px;
            border-radius: 15px;
            position: relative;
            top: 40%;
            left: 10%;
            transform: translateX(30%) translateY(-20%);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        /* contents section-1 */
        .content-1-section-1 {
            position: absolute;
            top: 20%;
            left: 39%;
            transition: ease-in-out .2s;
        }
        .content-1-section-1 h2 {
            font-size: 50px;
            font-weight: 700;
            font-family: var(--poppins-fonts);
            letter-spacing: 1px;
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-1-section-1 h3 {
            font-size: 30px;
            border-radius: 15px;
            font-weight: 400;
            font-family: var(--poppins-fonts);
            background-color: var(--bg-light-second-color);
            padding: 20px;
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-2-section-1 {
            position: absolute;
            top: 20%;
            left: 39%;
            transition: ease-in-out .2s;
        }
        .content-2-section-1 h2 {
            font-size: 50px;
            font-weight: 700;
            font-family: var(--poppins-fonts);
            letter-spacing: 1px;
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-2-section-1 h3 {
            font-size: 30px;
            border-radius: 15px;
            font-weight: 400;
            font-family: var(--poppins-fonts);
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-3-section-1 {
            position: absolute;
            top: 20%;
            left: 39%;
            transition: ease-in-out .2s;
        }
        .content-3-section-1 h2 {
            font-size: 35px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--poppins-fonts);
            letter-spacing: 1px;
            text-transform: uppercase;
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-3-section-1 h3 {
            font-size: 20px;
            border-radius: 15px;
            font-weight: 400;
            font-family: var(--poppins-fonts);
            width: 100%;
            animation-duration: .8s;
            animation-name: slidein;
        }
        .content-3-section-1 a {
            margin: 10px 0px;
            animation-duration: .8s;
            animation-name: slideFadeIn;
        }
        .content-3-section-1 i {
            margin: 0px 5px;
            animation-duration: .8s;
            animation-name: slideFadeIn;
        }
        .floating-speed i {
            animation-name: floating;
            animation-duration: 1s;
            animation-iteration-count: infinite;
            animation-timing-function: ease-in-out;
        }
        .box-section-1 h3 {
            font-size: 30px;
            color: var(--dark-color);
            font-weight: 700;
        }
        .box-section-1 p {
            bottom: 0px;
            color: var(--dark-color);
            font-size: var(--font-16px);
            font-weight: 300;
        }
        /* section 2 */
        .bg-section-2 {
            background-color: var(--bg-second-color);
            padding: 100px 0px;
            text-align: center;
        }
        .box-section-2 h2 {
            font-size: 50px;
            font-family: var(--poppins-fonts);
            padding: 10px 0px;
        }
        .box-section-2 p {
            color: var(--dark-color);
            font-size: var(--font-18px);
            padding: 0px 400px;
            line-height: 1.9;
            font-weight: 500;
        }
        .flex-days-section-2 {
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-days-section-2 div {
            background: var(--second-color);
            margin: 0px 20px;
            padding: 5px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .flex-days-section-2 div:hover {
            background-color: var(--main-color) !important;
            color: var(--white-color);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .day-active {
            background-color: var(--main-color) !important;
            color: var(--white-color);
            box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12)
        }
        .flex-content-section-2 {
            margin: 40px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .content-2-section-2 {
            margin: 0px 10px;
            border-radius: 5px;
            text-align: left;
            background-color: var(--white-color);
            padding: 50px 30px;
        }
        .flex-content-section-2 div img {
            width: 480px;
            background-color: transparent !important;
        }
        .flex-content-section-2 div p {
            color: var(--dark-color);
            font-size: var(--font-16px);
            font-weight: 300;
        }
        .flex-content-section-2 div span {
            background-color: var(--bg-second-color);
            font-weight: 500;
        }
        .flex-content-section-2 div h3 {
            color: var(--dark-color);
            font-size: var(--font-18px);
            line-height: 1.9;
            font-weight: 700;
        }
        .flex-content-section-2 div a {
            position: relative;
            bottom: 0px;
            color: var(--bg-main-color);
            font-weight: 500;
        }
        /* section 3 */
        .box-section-3 {
            text-align: center;
        }
        .box-section-3 h4 {
            font-size: var(--font-18px);
            text-transform: uppercase;
            color: var(--dark-color);
            letter-spacing: 2px;
            font-weight: 300;
            font-family: var(--poppins-fonts);
            padding: 10px 0px;
        }
        .box-section-3 h2 {
            font-size: 50px;
            font-family: var(--poppins-fonts);
            padding: 10px 0px;
        }
        .box-section-3 p {
            color: var(--dark-color);
            font-size: var(--font-18px);
            padding: 0px 400px;
            line-height: 1.9;
            font-weight: 500;
        }
        .flex-content-section-3 {
            margin: 20px 0px 80px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-3 div {
            /* background: var(--main-color); */
            margin-bottom: 80px;
            margin-left: 20px;
            border-radius: 5px;
            max-width: 210px;
            height: 200px;
            text-align: center;
        }
        .flex-content-section-3 div:hover>h3 {
            color: var(--main-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-3 div img {
            width: 150px;
            position: relative;
            margin: 50px 0px;
            top: 50%;
            left: 60%;
            transform: translateX(-90%) translateY(-50%);
        }
        .flex-content-section-3 div:hover>img {
            padding: 5px;
            transition: ease-in-out .3s;
        }
        .flex-content-section-3 h3 {
            font-size: 18px;
            font-family: var(--poppins-fonts);
            font-weight: 600;
        }
        /* section carousel*/
        .title-section h2 {
            font-family: var(--poppins-fonts);
            color: var(--dark-color);
        }
        .btn-archive {
            color: var(--tx-button);
            background: var(--bg-button);
            border-color: var(--bg-button-border);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
        }
        .btn-archive:hover {
            color: var(--tx-button-hover);
            background-color: var(--bg-button-hover);
            border-color: var(--bg-button-hover);
        }
        .btn-archive:focus {
            -webkit-box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
            box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
        }
        .posts-section {
            background: var(--bg-post-section);
            font-family: var(--font1);
            -webkit-transition: all 0.3s linear 0s;
            transition: all 0.3s linear 0s;
            height: 750px;
        }
        .posts-section .title-section {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--tx-post-section-title);
        }
        .posts-section .bg-card {
            background: var(--bg-post-title);
            color: var(--tx-post-title);
        }
        .posts-section .post-body h2 {
            font-weight: 600;
        }
        .posts-section .post-info {
            font-size: 0.8rem;
            font-weight: 300;
        }
        .posts-section .text-img-over {
            position: relative;
        }
        .posts-section .text-img-over .card-img-top {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }
        .posts-section .text-img-over .overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            transition: 0.5s ease;
            background: var(--bg-post-image-overlay);
        }
        .posts-section .text-img-over:hover .overlay {
            opacity: 1;
        }
        .posts-section .social-hover {
            color: var(--tx-color-1);
            font-size: 40px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .posts-section .social-hover .fa-share-alt {
            color: var(--tx-color-1);
        }
        .posts-section .social-hover .fa-share-alt:hover {
            color: var(--tx-color-1);
        }
        .post-body h2 {
            color: var(--dark-color);
            margin: 20px 0px;
            font-family: var(--poppins-fonts);
        }
        .post-body p {
            color: var(--dark-color);
            line-height: 1.8;
            font-family: var(--poppins-fonts);
        }
        /* section 4 */
        .bg-section-4 {
            padding: 0px 0px;
            background-color: var(--bg-second-color);
        }
        .box-section-4 {
            padding: 0px 30px;
            box-sizing: content-box;
        }
        .box-section-4 div {
            position: relative;
            padding: 0px 10%;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(50%);
        }
        .box-section-4 h4 {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .box-section-4 h3 {
            font-size: 50px;
        }
        .box-section-4 h5 {
            font-size: 16px;
            font-style: italic;
            color: var(--gray-color);
        }
        /* section 5 */
        .box-title-section-5 {
            padding: 50px 30px;
            box-sizing: content-box;
            text-align: center;
        }
        .box-title-section-5 h2 {
            font-size: 50px;
        }
        .box-content-section-5 h2 {
            font-size: 24px;
            font-weight: 500;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        .box-content-section-5 p {
            font-size: var(--font-16px);
            line-height: 1.5;
            font-weight: 300;
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
        }
        /* section 6 */
        .flex-content-section-6 {
            margin: 80px 0px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-6 div {
            background-color: var(--bg-light-second-color);
            margin: 20px 40px;
            border-radius: 15px;
            width: 400px;
            height: 750px;
            text-align: center;
            padding: 10px 0px;
            box-shadow: 0 2.8px 2.2px rgba(73, 73, 73, 0.034), 0 6.7px 5.3px rgba(83, 83, 83, 0.048), 0 12.5px 10px rgba(88, 88, 88, 0.06), 0 22.3px 17.9px rgba(58, 58, 58, 0.072), 0 41.8px 33.4px rgba(66, 66, 66, 0.086), 0 100px 80px rgba(63, 63, 63, 0.12)
        }
        .flex-content-section-6 h2 {
            color: var(--main-color);
            font-weight: 700;
            font-size: 26px;
            margin: 10px 0px;
        }
        .flex-content-section-6 h4 {
            color: var(--dark-color);
            font-weight: 400;
            font-size: var(--font-16px);
            margin: 10px 0px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .flex-content-section-6 li {
            list-style-type: none;
            text-align: left;
            line-height: 2.5;
            margin: 0px;
            font-size: var(--font-16px);
        }
        .flex-content-section-6 li:hover {
            background-color: var(--bg-second-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 li:hover i {
            color: var(--whats-color);
            transition: ease-in-out .2s;
        }
        .flex-content-section-6 i {
            color: var(--main-color);
        }
        /* section 7 */
        .box-title-section-7 {
            padding: 50px 30px;
            box-sizing: content-box;
            text-align: center;
        }
        .box-title-section-7 h2 {
            font-size: 50px;
        }
        .flex-content-section-7 {
            margin-top: 20px;
            margin-bottom: 80px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-flow: wrap;
            align-items: center;
        }
        .flex-content-section-7 div {
            position: relative;
            background-color: var(--white-color);
            margin: 20px 20px;
            border-radius: 15px;
            width: 350px;
            height: 300px;
            text-align: center;
            padding: 20px;
        }
        .flex-content-section-7 .overflow {
            position: relative;
            left: -13%;
            right: 0%;
            height: 130px;
            overflow: auto;
            overflow-x: hidden;
            background: transparent;
        }
        .flex-content-section-7 div:hover {
            background-color: var(--main-color);
            transition: ease-in-out .3s;
            box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -webkit-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
            -moz-box-shadow: -1px 14px 24px -7px rgba(128, 168, 253, 0.44);
        }
        .flex-content-section-7 div:hover h1,
        .flex-content-section-7 div:hover h3,
        .flex-content-section-7 div:hover p {
            color: var(--white-color);
            transition: ease-in-out .3s;
        }
        .flex-content-section-7 div:hover .overflow {
            color: var(--white-color);
            transition: ease-in-out .3s;
            background-color: var(--main-color);
        }
        .flex-content-section-7 h1 {
            color: var(--main-color);
            text-align: left;
            font-size: 50px;
            font-family: var(--poppins-fonts);
        }
        .flex-content-section-7 h3 {
            color: var(--dark-color);
            text-align: left;
            font-weight: 500;
            font-family: var(--poppins-fonts);
            margin: 20px 0px;
        }
        .flex-content-section-7 p {
            color: var(--dark-color);
            text-align: left;
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.8;
        }
        /* section 9 */
        .bg-section-9 {
            background-color: var(--bg-second-color);
            padding: 100px 0px;
        }
        .bg-section-9 i {
            color: var(--main-color);
        }
        .box-logo-section-9 {
            width: 90px;
            position: relative;
            left: 30%;
            bottom: 60px;
            top: 0%;
            z-index: 9;
            transform: rotate( 40deg);
        }
        .box-img-section-9 img {
            float: right;
        }
        .box-content-section-9 {
            background-color: var(--white-color);
            padding: 50px;
            width: 40%;
            margin: 0px 20px;
        }
        .box-content-section-9 h4 {
            text-transform: uppercase;
            color: var(--dark-color);
            font-size: var(--font-12px);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
        }
        .box-content-section-9 h2 {
            color: var(--hard-dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-9 h3 {
            text-transform: uppercase;
            color: var(--dark-color);
            letter-spacing: 2px;
            font-family: var(--poppins-fonts);
            font-weight: 300;
            font-size: var(--font-16px);
        }
        .box-content-section-9 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.7;
        }
        .box-content-section-9 ul {
            list-style: none;
            margin: 0px;
            padding: 0px;
        }
        .box-content-section-9 li {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            padding: 10px 0px;
        }
        /* section 10 */
        .bg-section-10 {
            padding: 100px 0px;
        }
        .box-content-section-10 {
            padding: 10px 50px;
        }
        .box-content-section-10 h2 {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 500;
        }
        .box-content-section-10 p {
            color: var(--dark-color);
            font-family: var(--poppins-fonts);
            font-weight: 300;
            line-height: 1.9;
        }
        /* section 11 */
        /* footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white-color);
            padding: 50px 20px;
        }
        footer h4 {
            font-size: var(--font-14px);
            text-transform: uppercase;
            padding: 20px 0px;
            font-weight: 700;
        }
        footer p {
            color: var(--light-color);
            font-size: var(--font-14px);
            line-height: 1.8;
        }
        footer ul {
            list-style-type: none;
            padding: 0px;
            color: var(--light-color);
        }
        footer li {
            list-style-type: none;
            padding: 5px 0px;
            font-size: var(--font-14px);
        }
        footer a {
            list-style-type: none;
            padding: 5px 0px;
            color: var(--light-color);
        }
        footer a:hover {
            color: var(--main-color);
        }
        footer i {
            padding: 0px 10px;
        }
        /* extras */
        .btn-border-more {
            border: 2px solid var(--main-color);
            color: var(--dark-color);
            border-radius: 5px;
            margin-top: 15px;
        }
        .btn-border-more:hover {
            border: 2px solid var(--dark-color);
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        .btn-colored-more {
            margin-top: 15px;
            color: var(--white-color);
            background-color: var(--main-color);
            border-radius: 5px;
        }
        .btn-colored-more:hover {
            color: var(--white-color);
            background-color: var(--dark-color);
        }
        a {
            text-decoration: none;
        }
        .view-lg {
            display: block;
        }
        .hiden-lg {
            display: none;
        }
        .up-to-home {
            position: fixed;
            margin: 20px;
            z-index: 999;
            top: 90%;
            left: 95%;
            transform: translateX(-50%) translateY(-50%);
            background-color: rgba(5, 5, 5, 0.13);
            border-radius: 5px;
            padding: 20px;
            cursor: pointer;
        }
        .up-to-home i {
            color: rgb(0, 0, 0);
        }
        .up-to-home:hover i {
            color: var(--main-color);
            transition: ease-in-out .2s;
        }
         ::-webkit-scrollbar {
            width: 10px;
        }
         ::-webkit-scrollbar-track {
            background-color: rgb(231, 255, 238);
            -webkit-border-radius: 10px;
            border-radius: 10px;
        }
         ::-webkit-scrollbar-thumb {
            -webkit-border-radius: 10px;
            border-radius: 10px;
            background: var(--second-color);
        }
        .copyright {
            text-align: center;
            margin: 10px 0px;
        }
        .copyright * {
            color: #9e9e9e !important;
        }
        @keyframes slidein {
            from {
                margin-left: 50%;
                opacity: 0;
                width: 300%;
            }
            to {
                margin-left: 0%;
                opacity: 1;
                width: 100%;
            }
        }
        @keyframes floating {
            from {
                transform: translate(0, 0px);
            }
            65% {
                transform: translate(0, 5px);
            }
            to {
                transform: translate(0, -0px);
            }
        }
    }