@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --mainFont: 'Poppins', sans-serif;
    --accent-color: #479138;
}

body {
    font-family: var(--mainFont) !important;
}

.tooltip,
.tooltip_type_2.top {
    bottom: auto !important;
    top: 120%;
}

.tooltip:after {
    transform: rotate(180deg);
    top: -5px;
    bottom: auto;
}

.header_bottom_part.fixed,
.sticky_part.fixed {
    width: 100%;
    left: 0;
}

.header_bottom_part.fixed .navlinks-items {
    margin-top: 20px;
}



.social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--accent-color);
    font-size: 24px;
    text-decoration: none;
    border-radius: 50%;
    transition: 0.3s ease;
    border: 2px solid var(--accent-color);
}

.social-icons a:hover {
    background: var(--accent-color);
    color: #fff;
    z-index: 1000;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--accent-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border: 2px solid var(--accent-color);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: #fff !important;
}

.r_slider .caption-layer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.486);
    z-index: -1;
    padding: 10px;
}
.Banner2{
    z-index: 2;
    position: relative;
}