body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.toprow {
    display: grid;
    grid-template-columns: 35% 55% 10%;
    grid-auto-rows: minmax(50px, auto);
    justify-items: stretch;
    align-items: stretch;
    padding-left: 8%;
    background: var(--neutral-100) !important;
    font-size: 16px;
    padding: 0.5rem 0;
    font-weight: normal;
}


.toprow>p {
    color: black;
}

.toprow>p>a {
    color: #e69500;
    text-decoration: none;
}

.toprow>ul {
    padding-right: 10%;
}

.toprow>ul>li {
    float: right;
}

.socialicons {
    list-style-type: none;
    /* z-index: 0; */
}

.socialicons .fab {
    color: #62be1f;
}

.socialicons>li {
    float: left;
    text-align: center;
    padding-left: 2%;

}

.socialicons>li>a>img {
    width: 42px;
    height: 42px;
    border: 0;
}

.fa-sharp {
    color: white;
}


/* Menu bar */

.navbar {
    /* font-family: Bodoni MT, Didot, Didot LT STD, Hoefler Text, Garamond, Times New Roman, serif; */
    font-size: 18px;
    background-color: rgba(255, 248, 218, 0.623);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 30px 0 0 !important;
    z-index: 2;
}

.main-nav {
    list-style-type: none;
    display: none;

}

.nav-links,
.logo {
    text-decoration: none;
    color: black;
}

#lang_2 {
    font-size: 200%;
    color: #1A5D3C;
}

#lang_O a,
#lang_O2 a {
    color: #1A5D3C;
    text-decoration: none;
    transition: color 0.3s ease;
}

#lang_O a:hover,
#lang_O2 a:hover {
    color: #093019;
}

.main-nav li {
    text-align: center;
    margin: 15px auto;
}

.navbar img {
    display: inline-block;
    font-size: 22px;
    margin-top: 5px;
    margin-left: 60px;
    width: 180px;
    height: 70px;
}

.navbar-toggle {
    float: right;
    margin-top: 26px;
    margin-right: 20px;
    right: 25px;
    cursor: pointer;
    color: black;
    font-size: 30px;
}

.active {
    display: block;
}

.active_li a {
    color: #cc8c24;
}

#products_activetab>#products_l {
    color: #cc8c24;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    color: #1A5D3C;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.dropdown button i {
    font-size: 1.2rem;
}

.dropdown button:hover {
    color: #093019;
    transform: scale(1.05);
}

.dropdown button:active {
    transform: scale(0.95);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 5rem;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
    z-index: 4;
    text-align: center;
    border-radius: 8px;
    right: 0;
}

.dropdown-content > a {
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
}

.dropdown-content > a:hover {
    background-color: #f1f1f1;
    color: #1A5D3C;
    font-weight: 500;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#gap_ {
    display: none;
}

.dropdown_p {
    position: relative;
    /* display: inline-block; */
    padding-top: 2px;

}

.dropdown_p>div>a {
    color: black;
    text-decoration: none;

}

.dropdown_p>div>a:hover {
    color: #e69500;

}

@keyframes dropdownAppear {
    0% {
        opacity: 0;
        transform: translateY(-10px) skew(20deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) skew(20deg);
    }
}

@keyframes dropdownDisappear {
    0% {
        opacity: 1;
        transform: translateY(0) skew(20deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) skew(20deg);
    }
}

.dropdown-content_p {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 15rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    margin-left: 2.5rem;
    margin-top: 1.6rem;
    text-align: left;
    z-index: 3;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-10px) skew(20deg);
    animation: dropdownDisappear 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
}

.dropdown-content_p>a {
    color: #1A5D3C;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-content_p>a:hover {
    background-color: rgba(26, 93, 60, 0.05);
    color: #093019;
    border-left: 3px solid #1A5D3C;
    padding-left: 1.8rem;
}

.dropdown_p:hover .dropdown-content_p {
    display: block;
    animation: dropdownAppear 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: auto;
}

@media screen and (min-width: 768px) {

    .navbar {
        display: grid;
        grid-template-columns: 10% 10% 75%;
        padding-bottom: 0;
        /* transform: translateZ(0); */

    }

    .main-nav {

        /* background-color: #4CAF50; */
        display: grid;
        justify-items: center;
        grid-template-columns: 20% 20% 20% 20% 20%;
        align-items: center;
        margin-left: auto;
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0;
        z-index: 1;
    }

    .main-nav li {
        transform: skew(-20deg);
        background-color: #b9e0af;
        margin-left: 1px;
        width: max-content;
        padding-left: 1.7rem;
        padding-right: 2rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0;
        height: 1rem;
        width: 5rem;
    }


    .nav-links {
        display: inline-block;
        transform: skew(20deg);

    }

    .active_li {
        border-bottom: 2px solid #00000033;
    }

    #products_activetab {
        border-bottom: 2px solid #00000033;
    }

    .logo_img {
        transform: skew(-20deg);
        background-color: #b9e0af;
        width: 240px;
        height: 100%;
        margin-left: -15px;
        padding-left: 20px;
    }

    .navbar img {

        transform: skew(20deg);
        margin-left: 5px;

        width: 190px;
        height: max-content;
    }

    .navbar-toggle {
        display: none;
    }

    .logo:hover,
    .nav-links:hover {
        color: #e69500;
    }

    #lang_,
    #lang_2 {
        display: none;

    }

    #lang_O,
    #lang_O2 {
        display: none;

    }

    button {
        background: transparent;
        border: none;
        font-size: 180%;
        font-weight: normal;
        transition: all 0.3s ease;
        color: #1A5D3C;
        padding: 0.5rem 1rem;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    button:hover {
        color: #093019;
        transform: translateY(-2px);
    }

    button::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #1A5D3C;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    button:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .dropdown-container {
        max-width: 61%;
        transform: skew(-20deg);
        align-items: center;
        justify-content: center;
        display: flex;
        max-height: max-content;
        background: #62be1f;
        z-index: 3;
    }

    .dropdown {
        transform: skew(20deg);
        position: relative;
        display: inline;
        padding-top: 2px;
    }

    .dropdown>div>a {
        color: black;
        text-decoration: none;
    }

    .dropdown>div>a:hover {
        color: #e69500;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 5rem;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        padding: 0.75rem 0;
        z-index: 4;
        text-align: center;
    }

    .dropdown-content > a {
        padding: 0.5rem 1rem;
        color: #333;
        text-decoration: none;
        display: block;
        transition: background-color 0.3s ease;
        text-align: center;
    }

    .dropdown-content > a:hover {
        background-color: #f1f1f1;
    }

    .dropdown:hover .dropdown-content {
        display: grid;
    }
}

.ht:hover .tooltip {
    display: block;
}


/* sticky menu */

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky+.mainrows {
    padding-top: 60px;
}


/* ToolTip */


/* Tooltip container */

.socialicons>.tooltip {
    position: relative;
    display: inline-block;
    /* z-index: 4; */

}

.tooltip>a>i {
    font-size: 200%;
    color: black;
}


/* Tooltip text */

.tooltip .tooltiptext {
    visibility: hidden;
    width: 125px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 2px 1px 1px 1px;
    border-radius: 6px;
    /* Position the tooltip text */
    position: absolute;
    z-index: 3;
    top: 125%;
    left: 50%;
    margin-left: -60px;
    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.4s;
    font-size: 80%;
}


/* Tooltip arrow */

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}


/* Show the tooltip text when you mouse over the tooltip container */

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 0.9;
}


/* tooltip end */

@media screen and (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        position: relative;
    }

    .logo_img {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 1rem 0;
    }

    .logo_img img {
        max-width: 180px;
        height: auto;
        margin: 0 auto;
    }

    .navbar-toggle {
        display: block !important;
        position: absolute;
        right: 1rem;
        top: 1rem;
        cursor: pointer;
        color: #1A5D3C;
        font-size: 1.5rem;
        z-index: 1000;
        background: none;
        border: none;
        padding: 0.5rem;
    }

    .main-nav {
        display: none;
        width: 100%;
        max-width: 400px;
        flex-direction: column;
        background-color: white;
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        position: relative;
        z-index: 999;
        align-items: center;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(26, 93, 60, 0.1);
        margin: 0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .nav-links {
        display: block;
        padding: 0.8rem 1rem;
        color: #1A5D3C;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .nav-links:hover {
        color: #093019;
        background-color: rgba(26, 93, 60, 0.05);
        border-radius: 6px;
    }

    .dropdown-content_p {
        position: static;
        width: 100%;
        margin: 0;
        box-shadow: none;
        display: none;
        background-color: rgba(26, 93, 60, 0.05);
        border-radius: 8px;
        padding: 0.5rem 0;
        transform: none !important;
        opacity: 1 !important;
    }

    .dropdown_p {
        position: relative;
        width: 100%;
    }

    .dropdown_p:hover .dropdown-content_p {
        display: block;
        position: static;
        margin-top: 0;
        margin-left: 0;
        transform: none !important;
    }

    .dropdown-content_p a {
        padding: 0.6rem 1rem;
        font-size: 1rem;
        color: #1A5D3C;
        text-align: left;
        padding-left: 2rem;
    }

    .dropdown-content_p a:hover {
        background-color: rgba(26, 93, 60, 0.1);
    }
}

.toprow a {
    color: #1A5D3C;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s ease;
}

.navbar-nav .nav-item .nav-link {
    font-weight: normal;
    color: #1A5D3C;
    padding: 0.5rem 1rem;
}

.presence-image img {
    filter: invert(24%) sepia(99%) saturate(1000%) hue-rotate(120deg) brightness(30%) contrast(100%);
}

.gallery img[src$=".svg"] {
    filter: invert(24%) sepia(99%) saturate(1000%) hue-rotate(120deg) brightness(30%) contrast(100%);
}