/* ============================================================
   SLIM V – Clone CSS
   Colors:
     Primary  : #FAA432  (orange)
     Secondary: #0D9B4D  (green)
     Dark BG  : #0A0A0A
   Fonts: Oswald (headings) | Roboto (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap');

/* -------------------------------------------------------
   1. CSS Variables
------------------------------------------------------- */
:root {
    --tg-primary-color: #FAA432;
    --tg-secondary-color: #0D9B4D;
    --tg-body-font-family: 'Roboto', sans-serif;
    --tg-heading-font-family: 'Oswald', sans-serif;
    --tg-body-font-color: #777777;
    --tg-heading-font-color: #222222;
    --tg-white: #ffffff;
    --tg-dark: #000000;
    --tg-dark-bg: #0A0A0A;
    --tg-gray: #dddddd;
    --tg-gray-two: #F5F5F5;
    scroll-behavior: auto;
}

/* -------------------------------------------------------
   2. Reset / Base
------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--tg-body-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--tg-body-font-color);
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--tg-primary-color);
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    color: var(--tg-primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-font-color);
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: .7rem;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--tg-body-font-color);
    margin-bottom: 15px;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 15px;
}

/* -------------------------------------------------------
   3. Buttons
------------------------------------------------------- */
.btn {
    background: var(--tg-secondary-color);
    border: none;
    border-radius: 50px;
    color: var(--tg-white) !important;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    letter-spacing: 0.5px;
    line-height: 1.4;
    padding: 19px 50px;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: var(--tg-primary-color);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.btn:hover::before {
    top: -40%;
}

.btn:hover {
    color: var(--tg-white) !important;
}

.btn-two {
    background: var(--tg-primary-color);
}

.btn-two::before {
    background: var(--tg-secondary-color);
}

/* -------------------------------------------------------
   4. Preloader
------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-cube-grid {
    width: 45px;
    height: 45px;
}

.tg-cube-grid .tg-cube {
    width: 33%;
    height: 33%;
    background-color: var(--tg-secondary-color);
    float: left;
    animation: tg-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.tg-cube-grid .tg-cube1 {
    animation-delay: .2s;
}

.tg-cube-grid .tg-cube2 {
    animation-delay: .3s;
}

.tg-cube-grid .tg-cube3 {
    animation-delay: .4s;
}

.tg-cube-grid .tg-cube4 {
    animation-delay: .1s;
}

.tg-cube-grid .tg-cube5 {
    animation-delay: .2s;
}

.tg-cube-grid .tg-cube6 {
    animation-delay: .3s;
}

.tg-cube-grid .tg-cube7 {
    animation-delay: .0s;
}

.tg-cube-grid .tg-cube8 {
    animation-delay: .1s;
}

.tg-cube-grid .tg-cube9 {
    animation-delay: .2s;
}

@keyframes tg-cubeGridScaleDelay {

    0%,
    70%,
    100% {
        transform: scale3D(1, 1, 1);
    }

    35% {
        transform: scale3D(0, 0, 1);
    }
}

/* -------------------------------------------------------
   5. OffCanvas
------------------------------------------------------- */
.offCanvas-overlay {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 700ms ease;
}

.offcanvas-menu-visible .offCanvas-overlay {
    opacity: 0.6;
    visibility: visible;
}

.offCanvas-wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: var(--tg-white);
    z-index: 1020;
    transform: translateX(100%);
    transition: all 600ms cubic-bezier(.785, .135, .15, .86);
    overflow-y: auto;
    padding: 35px 40px 55px;
    display: flex;
    flex-direction: column;
}

.offcanvas-menu-visible .offCanvas-wrap {
    transform: translateX(0);
}

.offCanvas-toggle {
    width: 46px;
    height: 46px;
    background: rgba(13, 155, 77, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 -10px 30px auto;
    cursor: pointer;
}

.offCanvas-toggle img {
    width: 18px;
}

.offCanvas-content h4.title {
    font-size: 18px;
    font-weight: 600;
    color: var(--tg-heading-font-color);
    line-height: 1.4;
}

.offcanvas-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.offcanvas-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(13, 155, 77, .16);
    border-radius: 50%;
    color: #222;
    font-size: 16px;
}

.offcanvas-social li a:hover {
    background: var(--tg-secondary-color);
    color: var(--tg-white);
}

.logo-text-offcanvas,
.footer-logo-text {
    font-family: var(--tg-heading-font-family);
    font-size: 28px;
    font-weight: 700;
    color: var(--tg-white);
    letter-spacing: 2px;
}

/* -------------------------------------------------------
   6. Header
------------------------------------------------------- */
.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.menu-area {
    padding: 23px 0;
}

.menu-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    max-width: 140px;
}

.logo-text {
    font-family: var(--tg-heading-font-family);
    font-size: 28px;
    font-weight: 700;
    color: var(--tg-white);
    letter-spacing: 2px;
}

.logo-text.dark {
    color: var(--tg-heading-font-color);
}

.transparent-header .secondary-logo {
    display: none;
}

.navbar-wrap {
    display: flex;
    flex-grow: 1;
}

.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto 0;
    padding: 0;
}

.navbar-wrap ul li {
    list-style: none;
    display: block;
    position: relative;
}

.navbar-wrap ul li a {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgba(255, 255, 255, .85);
    padding: 38px 25px;
    display: block;
    line-height: 1;
    transition: all .3s ease;
}

.navbar-wrap ul li a:hover {
    color: var(--tg-primary-color);
}

.header-action>ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-action>ul li {
    list-style: none;
    margin-left: 30px;
    position: relative;
}

.header-action>ul>li>a {
    display: block;
    color: var(--tg-white);
    font-size: 26px;
}

.header-action>ul>li>a:hover {
    color: var(--tg-secondary-color);
}

.header-action>ul>li.offCanvas-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--tg-secondary-color);
    color: var(--tg-white) !important;
    border-radius: 50%;
    font-size: 22px;
}

/* Sticky */
.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: var(--tg-white);
    animation: fadeInDown 600ms ease forwards;
    box-shadow: 0 10px 15px rgba(25, 25, 25, .1);
}

.sticky-menu .navbar-wrap ul li a {
    color: var(--tg-body-font-color);
}

.sticky-menu .header-action>ul>li>a {
    color: var(--tg-heading-font-color);
}

.sticky-menu .logo-text {
    color: var(--tg-heading-font-color);
}

/* Mobile toggler */
.mobile-nav-toggler {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--tg-secondary-color);
    color: var(--tg-white);
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------------------------------------
   7. Banner
------------------------------------------------------- */
.banner-area {
    background-color: #0f1a0d;
    background-image: linear-gradient(135deg, #0e2215 0%, #123319 50%, #0f1a0d 100%);
    padding: 130px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 680px;
}

.banner-area::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 80px;
    background: var(--tg-white);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.banner-caption {
    display: block;
    font-family: var(--tg-heading-font-family);
    font-size: 15px;
    font-weight: 700;
    color: var(--tg-primary-color);
    letter-spacing: 0.095em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner-content .title {
    font-size: 58px;
    line-height: 1.1;
    color: var(--tg-white);
    margin-bottom: 25px;
}

.banner-content p {
    color: rgba(255, 255, 255, .8);
    font-size: 17px;
    margin-bottom: 35px;
    max-width: 480px;
}

.banner-content .btn {
    border: 3px solid var(--tg-white);
    padding: 17px 50px;
}

.banner-images {
    position: relative;
    text-align: center;
    padding-top: 30px;
    z-index: 2;
}

.banner-images .main-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 420px;
    z-index: 2;
}

.banner-images .banner-round-bg {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: 0 auto;
    opacity: .25;
}

.banner-shape {
    position: absolute;
    z-index: 3;
}

.banner-shape.one {
    left: 10px;
    top: 30%;
    max-width: 60px;
}

.banner-shape.two {
    right: 20px;
    top: 20%;
    max-width: 60px;
}

/* -------------------------------------------------------
   8. Brand / Payment
------------------------------------------------------- */
.brand-area {
    padding: 60px 0 70px;
}

.brand-title .title {
    margin: 0 0 0;
    font-size: 14px;
    display: inline-flex;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--tg-heading-font-color);
    letter-spacing: 0.095em;
    padding: 0 70px;
}

.brand-title .title::before,
.brand-title .title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: var(--tg-primary-color);
}

.brand-title .title::after {
    left: auto;
    right: 0;
}

.brand-item {
    display: flex;
    min-height: 48px;
    max-height: 48px;
    align-items: center;
    justify-content: center;
}

/* -------------------------------------------------------
   9. Features / Benefits (dark bg)
------------------------------------------------------- */
.features-bg {
    background-color: #0D2B14;
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    position: relative;
    margin: 37px 0 44px;
}

.features-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 40px;
    background: var(--tg-white);
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 1;
}

.features-bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 40px;
    background: var(--tg-white);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.features-item {
    margin-bottom: 50px;
}

.features-icon {
    font-size: 46px;
    color: #FEE431;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    display: inline-block;
}

.features-icon::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 5px;
    width: 38px;
    height: 38px;
    background: #20B764;
    border-radius: 50%;
    z-index: -1;
    transition: .4s linear;
}

.features-item:hover .features-icon::after {
    left: 4px;
}

.features-content .title {
    font-size: 18px;
    color: var(--tg-white);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.features-content p {
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

.features-section-label {
    position: relative;
    z-index: 2;
}

/* -------------------------------------------------------
   10. Section Title (shared)
------------------------------------------------------- */
.section-title {
    margin-bottom: 50px;
}

.section-title .sub-title {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.095em;
    text-transform: uppercase;
    color: var(--tg-primary-color);
    display: block;
    margin-bottom: 12px;
}

.section-title .title {
    font-size: 44px;
    letter-spacing: -0.025em;
    margin-bottom: 0;
}

/* -------------------------------------------------------
   11. Features Products (Ingredients showcase)
------------------------------------------------------- */
.features-products {
    padding: 100px 0 80px;
    position: relative;
}

.features-products-thumb {
    position: relative;
    text-align: center;
}

.features-product-content {
    width: 90%;
}

.features-product-content .title {
    font-size: 40px;
    margin-bottom: 15px;
}

.features-product-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.features-products-wrap {
    margin-bottom: 100px;
}

.features-products-wrap:last-child {
    margin-bottom: 0;
}

/* Alternating rows */
.features-products-wrap:nth-child(even) .row {
    flex-direction: row-reverse;
}

/* -------------------------------------------------------
   12. FAQ
------------------------------------------------------- */
.faq-area {
    padding: 100px 0;
}

.faq-wrapper .accordion-item {
    border: none;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 0;
    background: transparent;
}

.faq-wrapper .accordion-item:last-of-type {
    border-bottom: none;
}

.faq-btn {
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 17px;
    font-family: var(--tg-heading-font-family);
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0;
    box-shadow: none !important;
    color: var(--tg-heading-font-color);
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-btn:not(.collapsed) {
    background: transparent;
    color: var(--tg-heading-font-color);
}

.faq-btn .count {
    color: var(--tg-primary-color);
}

.accordion-body {
    padding: 0 0 20px 0;
    font-size: 16px;
    color: var(--tg-body-font-color);
    line-height: 1.8;
}

/* -------------------------------------------------------
   13. Testimonial + Stats
------------------------------------------------------- */
.testimonial-section {
    overflow: hidden;
}

/* Testimonial carousel */
.testi-carousel-wrap {
    position: relative;
}

.testi-slide {
    display: none;
    animation: testiFade 0.5s ease-in-out;
}

.testi-slide.active {
    display: block;
}

@keyframes testiFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testi-dots {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.testi-dot.active {
    background: var(--tg-primary-color);
    border-color: var(--tg-primary-color);
}

.fact-item {
    display: flex;
    align-items: center;
    background: var(--tg-white);
    border: 1px solid #F4F4F4;
    padding: 20px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.fact-item .chart {
    position: relative;
    width: 70px;
    flex: 0 0 70px;
    height: 70px;
    margin-right: 20px;
}

.fact-item .percentage {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-font-color);
    letter-spacing: 0.02em;
    text-align: center;
}

.fact-item .percentage span {
    font-size: .8em;
}

.fact-content .title {
    font-size: 16px;
    margin-bottom: 5px;
}

.fact-content span {
    font-size: 14px;
    color: var(--tg-body-font-color);
}

/* -------------------------------------------------------
   14. Pricing
------------------------------------------------------- */
.pricing-area {
    padding: 100px 0 80px;
}

.pricing-wrap {
    padding: 0 20px;
}

.pricing__box {
    background: var(--tg-white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 35px 30px 40px;
    transition: .3s linear;
    height: 100%;
}

.pricing__box .pricing-hade>span {
    color: var(--tg-heading-font-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.pricing__box .pricing-hade .title {
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 700;
}

.pricing__box .pricing-hade>p {
    margin-bottom: 0;
    font-size: 16px;
    color: #666;
}

.pricing__box .pricing-price {
    text-align: center;
    margin-bottom: 8px;
}

.pricing__box .pricing-price .price {
    font-family: var(--tg-heading-font-family);
    font-size: 44px;
    font-weight: 700;
    color: var(--tg-heading-font-color);
    letter-spacing: -2px;
    transition: .3s linear;
}

.pricing__box .total {
    text-align: center;
    font-size: 16px;
    color: #818181;
}

.envio-info {
    text-align: center;
    font-size: 16px;
}

.pricing__box .price-savings .save {
    display: block;
    text-align: center;
    color: var(--tg-primary-color);
    font-size: 18px;
}

.pricing__box .pricing-img {
    padding: 25px 0 15px;
    text-align: center;
    margin: 0 0 15px;
}

.pricing__box .pricing-img img {
    max-height: 190px;
    max-width: 100%;
    object-fit: contain;
}

.pricing__box .pricing-btn a {
    display: block;
    background: var(--tg-primary-color);
    color: var(--tg-white) !important;
    border: 2px solid var(--tg-primary-color);
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    text-transform: uppercase;
    padding: 14px 10px;
    border-radius: 5px;
    text-align: center;
    transition: .3s;
}

.pricing__box .pricing-btn a:hover {
    background: transparent;
    color: var(--tg-primary-color) !important;
}

/* Best value */
.pricing-item.best-value-plan .pricing__box {
    border-color: var(--tg-primary-color);
}

.pricing-item.best-value-plan .pricing-price .price {
    color: var(--tg-primary-color);
}

.pricing-item:hover .pricing__box {
    border-color: var(--tg-primary-color);
}

.pricing-item:hover .pricing-price .price {
    color: var(--tg-primary-color);
}

/* -------------------------------------------------------
   15. Video Section
------------------------------------------------------- */
.video-bg {
    background-color: #0A0A0A;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.video-bg-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #090909;
    opacity: 0.82;
    z-index: -1;
}

.video-btn a {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    background: var(--tg-secondary-color);
    color: var(--tg-white) !important;
    border-radius: 50%;
}

.video-btn a:hover {
    background: var(--tg-primary-color);
}

.ripple-white {
    border-radius: 50%;
    animation: ripple-white 1.2s linear infinite;
}

@keyframes ripple-white {
    0% {
        box-shadow: 0 0 0 0px rgba(13, 155, 77, .4), 0 0 0 10px rgba(13, 155, 77, .4), 0 0 0 20px rgba(13, 155, 77, .3);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(13, 155, 77, .3), 0 0 0 20px rgba(13, 155, 77, .1), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

.video-shape {
    position: absolute;
    z-index: 2;
}

.video-shape.one {
    left: 0;
    bottom: -8%;
}

.video-shape.two {
    right: 0;
    bottom: -5%;
}

/* -------------------------------------------------------
   16. Instagram Gallery
------------------------------------------------------- */
.footer-insta-item a {
    display: block;
    position: relative;
}

.footer-insta-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-secondary-color);
    opacity: 0;
    transition: .3s ease;
}

.footer-insta-item a::after {
    content: "\f16d";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--tg-white);
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands";
    font-weight: 400;
    font-size: 50px;
    line-height: 1;
    transition: .3s ease;
    opacity: 0;
}

.footer-insta-item a:hover::before {
    opacity: .75;
}

.footer-insta-item a:hover::after {
    opacity: 1;
}

/* -------------------------------------------------------
   17. Footer
------------------------------------------------------- */
.footer-top-wrap {
    background: var(--tg-dark-bg);
    padding: 90px 0 30px;
    position: relative;
    overflow-x: hidden;
}

.footer-widget {
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-text p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
    font-size: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1B1B1B;
    border-radius: 50%;
    color: var(--tg-white);
    font-size: 15px;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--tg-secondary-color);
}

.footer-widget .fw-title {
    font-family: var(--tg-heading-font-family);
    font-size: 18px;
    color: var(--tg-white);
    letter-spacing: 0.02em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    transition: .3s;
}

.footer-widget ul li a:hover {
    color: var(--tg-secondary-color);
    opacity: 1;
}

.footer-contact-wrap p {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
}

.footer-contact-wrap ul li {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
}

.copyright-wrap {
    background: var(--tg-dark-bg);
    border-top: 1px solid #262626;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
}

/* -------------------------------------------------------
   18. Scroll to Top
------------------------------------------------------- */
.scroll-top {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: -60px;
    right: 25px;
    font-size: 16px;
    border-radius: 50%;
    z-index: 99;
    color: var(--tg-white);
    cursor: pointer;
    background: var(--tg-secondary-color);
    border: none;
    opacity: 0;
    transition: all .4s ease;
}

.scroll-top.open {
    bottom: 25px;
    opacity: 1;
}

.scroll-top:hover {
    background: var(--tg-heading-font-color);
}

/* -------------------------------------------------------
   19. Responsive
------------------------------------------------------- */
@media (max-width: 991.98px) {
    .navbar-wrap {
        display: none;
    }

    .mobile-nav-toggler {
        display: flex;
    }

    .banner-content .title {
        font-size: 40px;
    }

    .banner-area {
        padding-top: 140px;
    }

    .banner-images {
        margin-top: 40px;
        min-height: 350px;
    }

    .banner-images .main-img {
        max-width: 280px;
        position: relative;
        transform: none;
        left: auto;
        display: block;
        margin: 0 auto;
    }

    .section-title .title {
        font-size: 32px;
    }

    .features-product-content .title {
        font-size: 28px;
    }

    .facts-row {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .banner-content .title {
        font-size: 32px;
    }

    .banner-area {
        min-height: auto;
    }

    .section-title .title {
        font-size: 26px;
    }

    .features-bg {
        margin: 20px 0 30px;
    }

    .pricing__box {
        margin-bottom: 20px;
    }

    .testimonial-col {
        padding: 60px 30px !important;
    }

    .footer-top-wrap {
        padding: 70px 0 20px;
    }

    .banner-area::after {
        height: 50px;
    }

    .features-bg::before,
    .features-bg::after {
        height: 25px;
    }

    #header-fixed-height {
        height: 85px;
        display: none;
    }
}

@media (max-width: 575.98px) {
    .banner-content .title {
        font-size: 28px;
    }

    .btn {
        padding: 16px 35px;
        font-size: 14px;
    }

    .footer-instagram .col-3 {
        width: 50%;
        flex: 0 0 50%;
    }
}