/* CSS for Del Monte Clone Website */

/* General Reset */
/* @import url('https://fonts.cdnfonts.com/css/avenir'); */
/* * {
    font-family: 'Avenir', sans-serif;
} */
@font-face {
    font-family: "AvenirNextCondensed";
    src: url("../fonts/AvenirNextCondensed-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "AvenirNextCondensed";
    src: url("../fonts/AvenirNextCondensed-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "AvenirNextCondensed-medium";
    src: url("../fonts/AvenirNextCondensed-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "AvenirNextCondensed";
    src: url("../fonts/AvenirNextCondensed-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "AvenirNextCondensed";
    src: url("../fonts/AvenirNextCondensed-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: "AvenirNextCondensed", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div {
    font-family: "AvenirNextCondensed", sans-serif;
    letter-spacing: 1px;
}
.flex {
    display: flex;
}
p {
    margin-top: 0;
    margin-bottom: 0;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
flex-row {
    display: flex;
    flex-direction: row;
}
justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 8px;
}

#nav-icon3 span:nth-child(4) {
    top: 16px;
}

#nav-icon3.open span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}

#nav-icon3 {
    width: 24px;
    height: 24px;
    position: relative;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

/* Navbar Styling */
/* Navbar Styling */
.navbar {
    background-color: #007833;
    padding: 0px 30px 0px;
    color: white;
    top: 0;
    width: 100%;
    margin-bottom: 30px;
    position: fixed;
    z-index: 9999;
}
.nav-item.active .nav-link {
    color: #f9f400;
    font-weight: 600;
    background-color: transparent;
}
.mobile-link:hover {
    color: #f9f400 !important;
}
.nav-link {
    position: relative;
}

.nav-link-dropdown {
    display: none;
    background: #eaeaea;
    width: 150px;
    position: absolute;
    /* border: #df033f 1px solid; */
    color: #007833;
    top: 55px;

    /* -------  */
    div {
        /* font-weight: 400; */
        font-family: "AvenirNextCondensed-medium", sans-serif !important;

        letter-spacing: 1.3px;
        /* position: relative; */
        font-size: 1.2rem;
        padding: 10px 30px;
        width: 100%;
        /* text-align: center; */
        cursor: pointer;
        a {
            font-family: "AvenirNextCondensed-medium", sans-serif !important;
        }
        div {
            /* display: flex; */
            padding: 24px;
            font-weight: 500;
            position: absolute;
            left: 100%;
            top: 0;
            background-color: #fff;
            cursor: pointer;
            width: 240px;
            display: none;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;

            a {
                color: #007833;
                font-size: 14px;
                text-decoration: none;
                font-weight: 600;
                letter-spacing: 1.5px;
                &:hover {
                    color: #e20c3b;
                }
            }
        }
    }
    div:hover > div {
        display: flex;
        background-color: #fff;
    }
    div:hover {
        background-color: #e20c3b;
        color: #fff;
    }
}
.nav-item:hover .nav-link-dropdown {
    display: block;
}
/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #4f4f4f; /* Color of the scrollbar thumb */
    border-radius: 6px; /* Rounded corners */
}

::-webkit-scrollbar-thumb:hover {
    background: #000000; /* Color when hovered */
}
.nav-item:hover .nav-dropdown-2 {
    display: block;
}
.nav-dropdown-2 {
    display: none;
    background: #eaeaea;
    width: 210px;
    position: absolute;
    /* border: #df033f 1px solid; */
    color: #006f39;
    top: 55px;
    a {
        font-family: "AvenirNextCondensed-medium", sans-serif !important;
    }
    div {
        font-family: "AvenirNextCondensed-medium", sans-serif !important;

        letter-spacing: 1.2px;
        /* position: relative; */
        font-size: 1.2rem;
        text-transform: uppercase;
        padding: 10px 30px;
        width: 100%;
        /* text-align: center; */
        cursor: pointer;
        div {
            /* display: flex; */
            padding: 24px;
            font-weight: 500;
            position: absolute;
            right: 100%;
            top: 0;
            background-color: #fff;
            cursor: pointer;
            width: 300px;
            display: none;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
            overflow-y: scroll;
            height: 550px;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -ms-touch-action: pinch-zoom;
            touch-action: pinch-zoom;

            ul {
                /* border: #df033f 1px solid; */
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 0px;
                padding-left: 0;
                h3 {
                    color: #007833;
                    text-decoration: underline;
                    text-underline-offset: 8px;
                    font-size: 1.1rem;
                    margin-bottom: 16px;
                }
                a {
                    color: #505050 !important;
                    font-size: 0.9rem;
                    text-decoration: none;
                    text-transform: capitalize;
                    transition: all 0.2s;
                    -webkit-transition: all 0.2s;
                    letter-spacing: 1.2px;
                    text-transform: uppercase;
                    margin-bottom: 4px;
                }
                a:hover {
                    color: #e20c3b !important;
                }
            }
        }
    }
    div:hover > div {
        display: flex;
        background-color: #fff;
    }
    div:hover {
        background-color: #e20c3b;
        color: #fff;
    }
}
.navbar .navbar-brand img.logo {
    width: 110px;
    position: absolute;
    top: -7%;
    left: 0px;
    transform: translateY(-50%);
    margin-top: 30px;
    z-index: 10;
}
.dekstop-nav {
    display: none;
}
.sub-nav-link-meu {
    position: relative;
}
.mobile-nav-list-item {
    & ul {
        margin: 0;
        padding-left: 1rem;
        & li {
            a {
                cursor: pointer;
            }
        }
    }
}

.prev-menu {
    cursor: pointer;
    color: #006f39;
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: -20px;
}
.sub-sub-menu {
    opacity: 0;
    /* display: none; */
    position: absolute;
    transform: scaleY(0);
    transform-origin: center;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-bottom: 2px solid #df033f;
    transition: all 0.4s ease-out;
}
.sub-sub-menu.open {
    opacity: 100;

    /* display: block !important; */
    transform: scaleY(1) !important;
}
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }
    .navbar-nav {
        padding-top: 80px;
    }
    .navbar .navbar-brand img.logo {
        width: 80px !important;
        top: -20%;
    }
}
.nav-container {
    padding-left: 5%;
    padding-right: 5%;
}
.navbar .navbar-brand {
    position: relative;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 18px;
    margin-right: 0;
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 30px !important;
    padding-right: 30px !important;
    letter-spacing: 1.5px;
    padding-top: 16px;
    padding-bottom: 12px;
}

.navbar-nav .nav-link:hover {
    color: #f9f400;
}
.nav-link {
    font-family: "AvenirNextCondensed-medium", sans-serif !important;
}
#cookbookDropdown {
    padding-right: 0 !important;
    margin-right: 30px !important;
}

.navbar-nav .dropdown-menu {
    background-color: #006f39;
    border: none;
    border-radius: 5px;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: white;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #ffd700;
    color: #006f39;
}

/* Remove the dropdown arrow */
.navbar-nav .dropdown-toggle::after {
    display: none;
}
.mobile-logo {
    width: 80px;
    position: absolute;
    top: 30%;
    z-index: 9999;
}
.mobile-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 99;
    background-color: #007833;
    z-index: 9999;
}
.mobile-nav-list {
    position: absolute;
    top: 60px;
    padding: 20px 30px 10px;
    background-color: #fff;
    width: 100%;
    left: 0;
    z-index: 99;
    transition: all 0.2s ease-out;
    border-bottom: 4px solid #df033f;
    transform-origin: top;
    transform: scaleY(0);
}
.mobile-nav-list.active {
    transform: scaleY(1);
}
.mobile-nav-list-item {
    margin-top: 20px;
    .mobile-link {
        color: #006f39;
        font-size: 1.2rem;
        text-transform: uppercase;
        display: block;
        letter-spacing: 1.5px;
        font-family: "AvenirNextCondensed-Medium" sans-serif !important;
        /* padding: 2px 0; */
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        &:hover {
            color: #f9f400 !important;
        }
    }
    ul {
        list-style: none;
        li {
            a {
                color: #e20c3b;
                font-size: 0.9rem;
                text-transform: uppercase;
                display: block;
                padding: 0;
                font-weight: 500;
                text-decoration: none;
                letter-spacing: 1.5px;
                transition: all 0.2s;
            }
        }
    }
}
@media (min-width: 768px) {
    .nav-container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .nav-container {
        width: 970px;
    }
    .mobile-nav {
        display: none;
    }
    .dekstop-nav {
        display: block;
    }
}
@media (min-width: 1200px) {
    .nav-container {
        width: 1170px !important;
    }
}

/* Hero Section */

/* rebuilding custom carousel  */
.c-section {
    /* min-height: 70vh; */
    margin-top: 55px;
}
.c-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
}
.c-item {
    position: relative;
    width: 10%;
    background-color: black;
    transition: all 0.5s ease-out;
    cursor: pointer;
}
.c-item img {
    width: 100%;
    height: 40vw;
    object-fit: cover;
    opacity: 30%;
}

.c-item p {
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    white-space: nowrap;
    position: absolute;
    left: 50%;
    translate: -83%;
    bottom: 2rem;
    margin-bottom: 0;
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
}
/* .c-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
  } */
.c-icons {
    position: absolute;
    display: none;
    font-size: 30px;
    color: #006f39;
    border: 1px solid #006f39;
    padding: 4px 11px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    backdrop-filter: blur(10px);
    height: fit-content;
    width: fit-content;
}
.c-icons.left {
    left: 0;
    top: 50%;
}
.c-icons.right {
    right: 0;
    top: 50%;
}

.c-item.active {
    width: 80%;
    cursor: default;
    /* aspect-ratio: 16/9;
    height: 100%; */
    p {
        display: none;
    }
    .c-icons {
        display: inline-block;
    }
    img {
        opacity: 100%;
        /* height: 100%;
      object-fit: cover; */
    }
}
@media (max-width: 940px) {
    .c-item {
        width: 15%;
    }
    .c-item.active {
        width: 70%;
    }
}
.text-green {
    color: #007833 !important;
}

@media (max-width: 768px) {
    .c-item p {
        font-size: 1rem;
    }
    .c-section {
        margin-top: 60px;
    }
    p > br {
        display: none;
    }
    .c-section {
        min-height: 0 !important;
        margin-top: 3.7rem;
    }
    .c-item img {
        height: 100%;
    }
    .c-item.active img {
        object-fit: cover;
        object-position: top;
    }
    .c-container {
        flex-direction: column;
    }
    .c-item {
        width: 100%;
        height: 10vh;
        border-bottom: #6161617c 1px solid;
    }
    .product-third-column {
        display: none;
    }
    .c-item.active {
        width: 100%;
        height: 86vw;
    }
    .c-item p {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        bottom: 50%;
        translate: -50% 50%;
        font-size: 24px;
        line-height: 22px;
        font-weight: 800;
    }
    .c-icons.left {
        top: 1rem;
        left: 50%;
        translate: -50%;
        rotate: 90deg;
    }
    .c-icons.right {
        top: auto;
        bottom: 1rem;
        rotate: 90deg;
        left: 50%;
        translate: -50%;
    }
    .strap-section h2 {
        font-size: 1.5rem !important;
    }
    .flex {
        flex-direction: column;
    }
    .c-image.mobile {
        height: 100% !important;
    }
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cols-span-1 {
    grid-column: span 1 / span 1;
}
@media (min-width: 1428px) {
    .c-image {
        height: 40vw !important;
    }
}
@media (min-width: 1600px) {
    .c-item {
        width: 13%;
    }
    .c-item.active {
        width: 100%;
        /* height: 80vh; */
    }

    .c-item img {
        height: 40vw !important;
    }
    .solid-box {
        gap: 6rem !important;
        .img-container {
            position: relative;
            left: 18px;
        }
    }
    .solid-box .text-box {
        width: 100%;
        p {
            font-size: 28px;
        }
    }
    .solid-box div p {
        width: 100%;
    }
    .solid-box .img-container .img-fluid {
        width: 500px;
    }
}
/* custom carousel  */

/* Strap Section */
.strap-section {
    background-color: #e20c3b;
    color: white;
    text-align: center;
    padding: 15px 0 !important;

    font-weight: bold;
    text-transform: uppercase;
}
.strap-section h2 {
    margin-bottom: 0;
    font-size: 30px !important;
    letter-spacing: 1.5px;
}
/* For box */
/* General Reset for Columns (No gap between items) */
.container {
    padding: 0;
}

/* Row configuration */
.row {
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of columns */
}

/* Column style */
.col-md-4 {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1st and 3rd Column - Hover effect and zoom */
.hover-box {
    position: relative;
    overflow: hidden;
    width: 33.33vw;
    height: 33.33vw;
    /* margin-bottom: 20px; Add spacing between boxes */
}
@media (max-width: 920px) {
    .hover-box {
        width: 100% !important;
        height: 100%;
    }
    .product-card-1 {
        height: 100vw !important;
        width: 100% !important;
    }
    .product-all-column {
        flex-direction: column;
    }
}
.hover-box img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
    transform-origin: center; /* Set origin to the right */
}

.hover-box:hover > img {
    transform: scale(1.2); /* Zoom in */
}
.hover-box .contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.icon-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.text-content {
    font-weight: 600;
    font-size: 20px;
    padding: 2px;
    text-transform: uppercase;
}
.hover-box .text-icons {
    width: 100%;
    text-align: center;
}
.hover-box:hover .text-content-green {
    background-color: green; /* Darker on hover */
}
.hover-box:hover .text-content-red {
    background-color: red; /* Darker on hover */
}
.hover-box:hover .text-content-brown {
    background-color: rgb(138, 43, 42); /* Darker on hover */
}
.hover-box:hover .text-content-yellow {
    background-color: rgb(84, 98, 14); /* Darker on hover */
}
.hover-box:hover .text-content-dark-red {
    background-color: rgb(138, 43, 42); /* Darker on hover */
}
.hover-box:hover .text-content-dark-yellow {
    background-color: rgb(84, 98, 14); /* Darker on hover */
}

.hover-box:hover .themeBg-r {
    background-color: rgb(138, 43, 42); /* Darker on hover */
}
.hover-box:hover .themeBg-g {
    background-color: rgb(138, 43, 42); /* Darker on hover */
}

.know-more-btn {
    margin-top: 10px;
    padding: 5px 10px;
    color: white;
    text-decoration: none;
    text-transform: uppercase; /* Make text uppercase */
    background-color: transparent; /* Remove the background color */
    border: 1px solid white;
    font-weight: 600;
    font-size: 12px;
}

.hover-box .overlay-green {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(24, 55, 1, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.hover-box .overlay-yellow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(198, 158, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.hover-box .overlay-orange {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(195, 66, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.hover-box .overlay-brown {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(195, 66, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.hover-box .overlay-red {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(65, 3, 20, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.hover-box:hover .overlay-green {
    opacity: 0; /* Ensure overlay stays visible on hover */
}
.hover-box:hover .overlay-red {
    opacity: 0; /* Ensure overlay stays visible on hover */
}
.hover-box:hover .overlay-yellow {
    opacity: 0; /* Ensure overlay stays visible on hover */
}
.hover-box:hover .overlay-brown {
    opacity: 0; /* Ensure overlay stays visible on hover */
}
.hover-box:hover .overlay-orange {
    opacity: 0; /* Ensure overlay stays visible on hover */
}
.mobile-link,
.mobile-link:hover,
.mobile-link:active {
    color: #006f39 !important;
}
.mobile-nav-list-item.active {
    .mobile-link {
        color: #e20c3b !important;
        font-weight: bold !important;
        &:hover {
            color: #f9f400 !important;
        }
    }

    a {
        font-weight: bold !important;
        transition: none !important;
    }
    a:hover {
        font-weight: 600 !important;
    }
}

/* Footer Styling */
.footer {
    background-color: #007833;
    color: white;
    text-align: center;
    padding: 8px 24px;
    font-size: 14px;
}
.social-media {
    gap: 10px;
}
.footer a {
    color: #f5f5f5;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: none;
}
/* Style for social media icons */
.social-media {
    text-align: right;
}
.social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px; /* Centers the icon vertically */
    text-align: center;
    border-radius: 50%; /* Makes the icon round */
    border: solid 1px white;
    background-color: transparent; /* Transparent background */
    color: #fff; /* White color for icons */
    font-size: 10px; /* Adjust size of the icons */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
    text-decoration: none; /* Removes underline */
}
.social-icon i {
    font-size: 12px; /* Make sure icons are sized well */
}
@media (min-width: 1000px) {
    .footer div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    .c-item-text {
        font-size: 1.8rem !important;
        line-height: 1.8rem !important;
    }
    footer > div .flex-col a {
        margin-right: 20px;
    }
}
@media (max-width: 999px) {
    footer > div .flex-col a {
        margin-bottom: 5px;
        margin-top: 5px;
    }
    .social-media {
        gap: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/* Media Queries */

/* ------------ product cards ------------
   */
.product-card-1 {
    height: 33.33vw;
    width: 33.33vw;
    background-color: #df033f;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    /* border: #f8f400 1px solid; */
}
.product-card-1-img {
    margin-right: -151px;
    height: inherit;
    transition: all 0.3s ease-out;
    max-height: 640px;
    position: absolute;
    left: 2%;
}
.product-card-1:hover .product-card-1-img {
    transform: scale(1.06);
}
.product-card-1-text-box {
    position: absolute;
    left: 55%;
    /* translate: 50%; */
    p {
        text-transform: uppercase;
        font-size: 30px;
        line-height: 26px;
        margin-bottom: 8px;
        font-weight: 900;
        padding-right: 10px;
    }
    a {
        padding: 2px 8px 1px;
        text-transform: uppercase;
        font-size: 14px;
        text-decoration: none;
        color: #f8f400;
        border: #fff 1px solid;
        cursor: pointer;
        position: relative;
        z-index: 99;
    }
}
.product-card-1.yellow {
    background-color: #f8f400;
    color: #007833;
    .product-card-1-text-box {
        a {
            color: #007833;
            border: #007833 1px solid;
        }
        p {
            color: #007833;
        }
    }
}
.product-card-1.green {
    background-color: #007833;
}
.doc-container {
    padding-right: 40px;
    padding-left: 40px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 55px;
    padding-top: 40px;
    max-width: 1200px;
    width: 100%;
}
.content-page-title {
    color: #df033f;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .content-description {
        margin-top: 0px;
    }
}

.content-description {
    margin-top: 15px;
    margin-bottom: 40px;
    font-size: 1rem;
    font-weight: 500;
    strong {
        font-weight: 600;
        font-size: 15px;
        color: #333;
    }
}
@media only screen and (max-width: 768px) {
    .doc-container {
        padding-top: 40px;
    }
    .content-description p {
        font-size: 14px;
        letter-spacing: 1.2px;
    }
    .strap-section h2 {
        font-size: 20px !important;
    }
}
@media only screen and (max-width: 992px) {
    .c-image.dekstop {
        display: none;
    }
    .c-image.mobile {
        height: 70vw;
    }
}
@media only screen and (min-width: 921px) {
    .product-card-1-img {
        max-height: 580px;
        position: absolute;
        left: 2%;
    }
}
@media only screen and (min-width: 993px) {
    .c-image.mobile {
        display: none;
    }
}

.content-description p {
    margin-bottom: 5px;
    line-height: 20px;
}
@media (min-width: 1125px) {
    .product-card-1-img {
        margin-right: -188px;
        height: inherit;
    }
}
@media (min-width: 1525px) {
    .product-card-1-img {
        margin-right: -250px;
        height: inherit;
    }
}
@media (max-width: 968px) {
    .doc-container {
        max-width: 750px;
        padding-right: 15px;
        padding-left: 15px;
    }
}
/* @media (max-width: 1000px) {
    .hover-box {
        width: 33vw !important;
    }
} */
/* carousel */
.carousel-control-next-icon {
    background-image: url("../images/icons/right-arrow-btn.png");
    height: 40px !important;
    width: 40px !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    right: 16px;
    z-index: 999;
    opacity: 1 !important;
}
.carousel-control-prev-icon {
    background-image: url("../images/icons/left-arrow-btn.png");
    height: 40px !important;
    width: 40px !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    left: 16px;
    z-index: 9999;
    opacity: 1 !important;
}
.carousel-control-next-icon.green {
    background-image: url("../images/icons/right-arrow-green.png") !important;
}
.carousel-control-prev-icon.green {
    background-image: url("../images/icons/left-arrow-green.png") !important;
}
.carousel-control-next,
.carousel-control-prev {
    opacity: 1 !important;
}
.carousel-control-div {
    /* background-color: #fff !important; */
    color: #007833 !important;
    span {
        color: #007833 !important;
    }
}
/* carousel control */
.carousel-control-next {
    right: -14% !important;
}
.carousel-control-prev {
    left: -14% !important;
}
@media (min-width: 468px) {
    .carousel-control-prev {
        left: -60px;
        .carousel-control-div {
            justify-content: end;
        }
    }
    .carousel-control-next {
        right: -60px;
        .carousel-control-div {
            justify-content: start;
            padding: 7px 25px 7px 0px;
        }
    }
}

@media (min-width: 376px) {
    .carousel-control-next {
        right: -12% !important;
    }
    .carousel-control-prev {
        left: -12% !important;
    }
}
@media (min-width: 572px) {
    .carousel-control-next {
        right: -10.5% !important;
    }
    .carousel-control-prev {
        left: -10.5% !important;
    }
}
@media (min-width: 768px) {
    .carousel-control-next {
        right: -10% !important;
    }
    .carousel-control-prev {
        left: -10% !important;
    }
}
@media (max-width: 1130px) {
    .carousel-control-next {
        right: -50px;
    }
    .carousel-control-prev {
        left: -50px;
    }
}

/* CSP issue resolution */
.product-card-1-know-more{
    cursor: pointer; position: relative; z-index: 30;
}
/* CSP issue resolution */
