* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Rubik", sans-serif;
}

body {
    background-color: #fff;
    position: relative;
    color: #141414;
}
body main {
    display: block;
    width: 100%;
}
body main content {
    display: block;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    display: inline-block;
}

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

p {
    margin-bottom: 0px;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(28, 112, 0, 0.766);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes animateTop {
    25% {
        width: 100%;
        opacity: 1;
    }
    30%, 100% {
        opacity: 0;
    }
}
@keyframes animateBottom {
    0%, 50% {
        opacity: 0;
        width: 0;
    }
    75% {
        opacity: 1;
        width: 100%;
    }
    76%, 100% {
        opacity: 0;
    }
}
@keyframes animateRight {
    0%, 25% {
        opacity: 0;
        height: 0;
    }
    50% {
        opacity: 1;
        height: 100%;
    }
    55%, 100% {
        height: 100%;
        opacity: 0;
    }
}
@keyframes animateLeft {
    0%, 75% {
        opacity: 0;
        bottom: 0;
        height: 0;
    }
    100% {
        opacity: 1;
        height: 100%;
    }
}
#whatsapp-msg-btn {
    position: fixed;
    bottom: -100%;
    left: 30px;
    z-index: 25;
    transition: bottom 0.6s ease-in-out;
    position: fixed;
    bottom: -100%;
    z-index: 25;
    transition: bottom 0.6s ease-in-out;
}
#whatsapp-msg-btn .green {
    background: #069e39;
}
#whatsapp-msg-btn .circle {
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1019607843);
}
#whatsapp-msg-btn .pulse {
    animation: pulse-animation 2s infinite;
}
#whatsapp-msg-btn svg {
    padding: 1px;
}

#scroll-up {
    position: fixed;
    bottom: -100%;
    z-index: 25;
    transition: bottom 0.6s ease-in-out;
    right: 30px;
}
#scroll-up .button {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #141414;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: relative;
}
#scroll-up .button:hover {
    background-color: #2eb049;
}
#scroll-up .button:hover .svgIcon {
    transition-duration: 0.3s;
    transform: translateY(-20%);
}
#scroll-up .svgIcon {
    width: 12px;
    transition-duration: 0.3s;
}
#scroll-up .svgIcon path {
    fill: white;
}

#close-toggle {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.097);
    transition: all 0.3s ease-in;
}

.pages-bg {
    position: relative;
    z-index: 1;
    width: 100%;
}
.pages-bg .pages-title {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #2eb049;
    font-weight: 800;
}
.pages-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.7215686275);
}

.fixed .submenu {
    top: 70% !important;
    left: 31% !important;
}
.fixed .submenu-2 {
    top: 135% !important;
}

.title {
    position: relative;
    width: 100%;
}
.title h4 {
    font-size: 30px;
    margin-bottom: 25px;
}
.title .back-title {
    position: absolute;
    left: 0px;
    top: -45px;
    color: #141414;
    font-weight: 800;
    font-size: 60px;
    opacity: 0.06;
}

header {
    position: absolute;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 100;
    transition: all 0.5s ease;
}
header .menu .menu-item {
    display: block;
    position: relative;
    margin-right: 30px;
    white-space: nowrap;
}
header .menu .menu-item .menu-link {
    font-size: 14px;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
header .menu .menu-item .menu-link::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #046323;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    border-radius: 10px;
}
header .menu .menu-item .menu-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
header .menu .menu-item .menu-link i {
    transition: transform 0.3s ease-in-out;
}
header .menu .menu-item .submenu {
    visibility: hidden;
    position: fixed;
    top: 80px;
    left: 25%;
    opacity: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 50%;
    transition: 0.4s ease-in;
}
header .menu .menu-item .submenu li {
    background-color: transparent;
    width: 100%;
    border-radius: 10px;
    background-color: #2eb049;
    color: #fff;
}
header .menu .menu-item .submenu li:hover {
    background-color: #046323;
}
header .menu .menu-item .submenu li a {
    color: #fff;
    font-size: 14px;
}
header .menu .menu-item .submenu #back-btn {
    position: relative;
    z-index: 10;
    margin-bottom: 10px;
    font-size: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #fff;
    padding-left: 10px;
    width: 100%;
}
header .menu .menu-item .submenu #back-btn span {
    margin-left: 10px;
}
header .menu .menu-item .submenu .menu-link::after {
    display: none;
}
header .menu .menu-item:hover .submenu {
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 1;
}
header .menu .menu-item:hover .fa-angle-down {
    transform: rotate(180deg);
}
header .menu .menu-item .drop-down-menu-2 .submenu-2 {
    visibility: hidden;
    position: fixed;
    top: 16%;
    left: 0;
    opacity: 1;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: 0.4s ease-in;
}
header .menu .menu-item .drop-down-menu-2 .submenu-2 .product-item {
    background-color: transparent;
    transition: 0.3s ease-in;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}
header .menu .menu-item .drop-down-menu-2 .submenu-2 .product-item p {
    font-size: 16px;
    color: #141414;
}
header .menu .menu-item .drop-down-menu-2 .submenu-2 .product-item:hover {
    background-color: rgba(4, 99, 36, 0.4039215686);
}
header .menu .menu-item .drop-down-menu-2 .submenu-2 .product-item:hover p {
    color: #fff;
}
header .menu .menu-item .drop-down-menu-2:hover .submenu-2 {
    visibility: visible;
    opacity: 1;
}
header .menu .menu-item .drop-down-menu-2:hover .fa-angle-up {
    transform: rotate(180deg);
}
header .menu .drop-down-menu-3 .submenu-3 {
    text-align: left;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    background-color: #2eb049;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
    width: 250px;
    transition: 0.4s ease-in;
}
header .menu .drop-down-menu-3 .submenu-3:hover p {
    color: #fff;
}
header .menu .drop-down-menu-3 .submenu-3 .menu-item {
    margin-right: 0px;
}
header .menu .drop-down-menu-3 .submenu-3 .menu-item .menu-link {
    display: block;
    width: 100%;
    transition: 0.3s ease-in;
    color: #fff !important;
}
header .menu .drop-down-menu-3 .submenu-3 .menu-item .menu-link:hover {
    background-color: rgba(4, 99, 36, 0.4039215686);
}
header .menu .drop-down-menu-3 .submenu-3 .menu-item .menu-link::after {
    display: none;
}
header .menu .drop-down-menu-3:hover .submenu-3 {
    visibility: visible;
    opacity: 1;
}
header .menu .drop-down-menu-3:hover .fa-angle-up {
    transform: rotate(180deg);
}

.social-media {
    margin-left: 10px;
    color: #111;
}
.social-media i {
    transform: scale(1);
    transition: 0.3s ease-in;
}
.social-media i:hover {
    transform: scale(1.2);
}

#menu-close-btn {
    display: none !important;
}

#headline {
    position: relative;
}
#headline .headline-swiper .swiper-slide {
    position: relative;
    z-index: 3;
    border-bottom: 10px solid #2eb049;
}
#headline .headline-swiper .swiper-slide .headline-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}
#headline .headline-swiper .swiper-slide .headline-content h3 {
    font-size: 60px;
}
#headline .headline-swiper .swiper-slide .headline-content p {
    font-size: 20px;
}
#headline .headline-swiper .swiper-slide .headline-content a {
    background-color: #fff;
    border: 2px solid transparent;
    width: 100px;
    border-radius: 10px;
    padding: 3px;
    color: #111;
    transition: 0.3s ease-in;
}
#headline .headline-swiper .swiper-slide .headline-content a:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #2eb049;
}
#headline .headline-swiper .swiper-slide:after {
    position: absolute;
    z-index: 1;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.687);
}
#headline .headline-swiper .swiper-button-next,
#headline .headline-swiper .swiper-button-prev {
    background-color: #2eb049;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
}
#headline .headline-swiper .swiper-button-next::after,
#headline .headline-swiper .swiper-button-prev::after {
    font-size: 16px;
}
#headline .headline-swiper .swiper-button-disabled {
    background-color: #046323;
}

#corporate {
    padding: 80px 100px 80px 100px;
}
#corporate img {
    border-radius: 10px;
}

#select-products {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}
#select-products .products-card {
    cursor: pointer;
    z-index: 1;
    transform: scale(1);
    transition: 0.3s ease-in;
    color: #141414;
    border: 1px solid rgba(0, 0, 0, 0.095);
    background-color: #fff;
    padding: 30px;
}
#select-products .products-card article {
    padding: 30px;
}
#select-products .products-card article p {
    opacity: 0.7;
    font-size: 16px;
}
#select-products .products-card .fake-button {
    transition: 0.5s;
    opacity: 0;
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 0;
    display: table;
    margin: auto;
    width: 100%;
}
#select-products .products-card .fake-button a {
    backdrop-filter: blur(5.9px);
    -webkit-backdrop-filter: blur(5.9px);
    border-radius: 10px;
    padding: 0px 25px;
    line-height: 45px;
    background-color: #2eb049;
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: 0.3s ease-in;
}
#select-products .products-card .fake-button a:hover {
    background-color: #939598;
}
#select-products .products-card:hover {
    transform: scale(1.1);
}
#select-products .products-card:hover .fake-button {
    opacity: 1;
    bottom: 10px;
}
#select-products:after {
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../img/home-world.webp");
}

#blog,
#blog-preview {
    padding: 80px 100px 80px 100px;
}

.blog-card {
    background-color: #fff;
    color: #141414 !important;
    border-radius: 10px;
}
.blog-card .post-img {
    overflow: hidden;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.blog-card .post-img img {
    display: table;
    margin: auto;
    width: 100%;
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transform: scale(1);
    transition: 0.4s;
}
.blog-card .article-details {
    padding: 10px;
}
.blog-card .article-details h4 {
    font-size: 30px;
}
.blog-card .article-details h3 {
    font-size: 16px;
}
.blog-card .article-details p {
    font-size: 16px;
}
.blog-card .article-details .read-more {
    font-size: 16px;
    background-color: #2eb049;
    border-radius: 10px;
    color: #fff;
    padding: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.3s ease-in;
}
.blog-card .article-details .read-more:hover {
    background-color: #939598;
}
.blog-card:hover img {
    transform: scale(1.3);
}

.bg-video {
    position: relative;
    z-index: 1;
    border-top: 10px solid #2eb049;
    border-bottom: 10px solid #2eb049;
}
.bg-video article {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #2eb049;
}
.bg-video article h4 {
    font-size: 30px;
}
.bg-video article p {
    font-size: 18px;
    opacity: 0.7;
}
.bg-video article a {
    margin-top: 20px;
    backdrop-filter: blur(5.9px);
    -webkit-backdrop-filter: blur(5.9px);
    border-radius: 10px;
    padding: 0px 25px;
    line-height: 45px;
    background-color: #2eb049;
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: 0.3s ease-in;
}
.bg-video article a:hover {
    background-color: #939598;
}
.bg-video::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    background-image: radial-gradient(rgba(0, 0, 0, 0.282) 10px, transparent 0);
    background-size: 5px 5px;
    z-index: 0;
}

#motto {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}
#motto .motto-desc {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#motto .motto-desc .icon-div {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.9px);
    -webkit-backdrop-filter: blur(6.9px);
}
#motto .motto-desc .icon-div img {
    display: table;
    margin: auto;
    width: 100px;
    height: 100px;
}
#motto .motto-desc .motto-text {
    font-size: 24px;
    color: #fff;
    margin-top: 6px;
}

footer {
    background-color: #47494b;
}
footer .footer-section {
    position: relative;
}
footer .footer-cta {
    border-bottom: 1px solid #2eb049;
}
footer .single-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .single-cta i {
    color: #2eb049;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}
footer .cta-text {
    padding-left: 15px;
    display: inline-block;
}
footer .cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}
footer .cta-text span {
    color: #757575;
    font-size: 15px;
}
footer .footer-content {
    position: relative;
    z-index: 2;
}
footer .footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}
footer .footer-logo {
    margin-bottom: 30px;
}
footer .footer-logo img {
    max-width: 200px;
}
footer .footer-text p {
    margin-bottom: 14px;
    font-size: 18px;
    color: #fff;
    line-height: 28px;
}
footer .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 22px;
    margin-bottom: 20px;
}
footer .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
    transform: scale(1);
    transition: 0.3s ease-in;
}
footer .footer-social-icon a:hover {
    transform: scale(1.1);
}
footer .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}
footer .facebook-bg {
    background: #3b5998;
}
footer .twitter-bg {
    background: #111;
}
footer .instagram-bg {
    border: 1px solid transparent;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}
footer .linkedin-bg {
    background: #0077b5;
}
footer .footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}
footer .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #2eb049;
}
footer .footer-widget ul li {
    margin-bottom: 12px;
}
footer .footer-widget ul li a {
    color: #fff;
    opacity: 0.7;
    text-transform: capitalize;
    transition: 0.3s ease-in;
}
footer .footer-widget ul li a:hover {
    opacity: 1;
    color: #2eb049;
}
footer .hide-part {
    display: none;
}
footer .show-part {
    display: block;
}
footer .show-more {
    background-color: transparent;
    border: 1px solid #2eb049;
    color: #2eb049;
    border-radius: 10px;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
}
footer .show-more:hover {
    color: #fff;
    background-color: #2eb049;
    border: 1px solid transparent;
}
footer .copyright {
    background-color: #161616;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
}
footer .footer-menu li {
    display: inline-block;
    margin-left: 20px;
}
footer .footer-menu li:hover a {
    color: #2eb049;
}
footer .footer-menu li a {
    font-size: 14px;
    color: #878787;
}

#about {
    padding: 80px 100px 80px 100px;
}
#about .icon-div {
    padding: 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    border-radius: 10px;
    cursor: pointer;
}
#about .icon-div:nth-child(even) {
    border-right: 0px;
}
#about .icon-div:hover {
    box-shadow: 42px 68px 72px -38px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}
#about .icon-div span {
    color: #2eb049;
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
}
#about .icon-div img {
    display: table;
    margin: auto;
    margin-top: 15px;
    height: 100px;
}

.references-swiper .swiper-slide img {
    width: 200px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    display: table;
    margin: auto;
}
.references-swiper .swiper-slide img:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
}

#about {
    padding: 80px 100px 80px 100px;
}

#products {
    padding: 80px 100px 80px 100px;
}
#products .product-card {
    border: 0.5px solid rgba(0, 0, 0, 0.175);
    border-radius: 15px;
    width: 100%;
    height: 100% !important;
    color: #141414;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
}
#products .product-card .product-img {
    height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#products .product-card .product-img img {
    display: table;
    margin: auto;
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease-out;
}
#products .product-card .product-img img.active {
    transform: scale(1.5);
}
#products .product-card .product-name {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: 0.3s ease-in;
}
#products .product-card .product-name p {
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px;
}
#products .product-card .product-name a {
    backdrop-filter: blur(5.9px);
    -webkit-backdrop-filter: blur(5.9px);
    border-radius: 10px;
    padding: 0px 25px;
    line-height: 45px;
    background-color: #2eb049;
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: 0.3s ease-in;
}
#products .product-card .product-name a:hover {
    background-color: #939598;
}
#products .product-card:after {
    content: "";
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    border-radius: 10px;
    transition: 0.3s ease-in;
}
#products .product-card:hover::after {
    opacity: 1;
}
#products .product-card:hover .product-name {
    opacity: 1;
}

#product-detail {
    padding: 80px 100px 80px 100px;
}
#product-detail .breadcrumb {
    width: 100%;
    height: 30px;
    border-radius: 10px;
    
}
#product-detail .breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}
#product-detail .breadcrumb ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}
#product-detail .breadcrumb ul li a {
    color: #141414;
    transition: 0.3s ease-in;
}
#product-detail .breadcrumb ul li a:hover {
    color: #141414;
}
#product-detail .breadcrumb ul li i {
    color: #141414;
}
#product-detail .breadcrumb ul .current a {
    color: #2eb049;
}
#product-detail .product-img {
    border: 0.5px solid rgba(0, 0, 0, 0.175);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#product-detail .product-img img {
    display: table;
    margin: auto;
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease-out;
}
#product-detail .product-img img.active {
    transform: scale(1.5);
}
#product-detail .image-gallery {
    overflow-x: auto !important;
    width: 100%;
    height: 600px;
}
#product-detail .image-gallery #media-gallery .gallery-li {
    padding-left: 2px;
    padding-right: 2px;
    margin-bottom: 10px;
    width: 100%;
    height: 100px;
    border: 0.5px solid rgba(0, 0, 0, 0.175);
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#product-detail .image-gallery #media-gallery .gallery-li .thumbnail {
    display: table;
    margin: auto;
    width: 90px;
    height: 90px;
}
#product-detail .image-gallery #media-gallery .gallery-li.video {
    position: relative;
}
#product-detail .image-gallery #media-gallery .gallery-li.video video {
    width: 100px;
    height: 100px;
}
#product-detail .image-gallery #media-gallery .gallery-li.active {
    border: 1px #2eb049 solid;
}
#product-detail .details-table {
    border-collapse: collapse;
    max-width: 100%;
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow-x: auto;
}
#product-detail .details-table td {
    border: 1px solid #e6e6e6;
    padding: 6px 2px;
    font-weight: 300;
}
#product-detail .details-table td:first-child {
    width: 25%;
    margin-left: 20px;
}
#product-detail .details-table .product-models {
    background-color: #2eb049;
    color: #fff;
}
#product-detail .details-table .model-item {
    display: inline-block;
    margin-left: 20px;
    font-size: 14px;
}
#product-detail .details-table tr td:not(:first-child) {
    text-align: center;
}
#product-detail .tables .table-btn ul li {
    cursor: pointer;
    width: 150px;
    border: 1px solid #2eb049;
    border-radius: 10px;
    background-color: transparent;
    padding: 5px;
    text-align: center;
    font-size: 13px;
}
#product-detail .tables .table-btn ul li.active {
    border: 1px solid transparent;
    background-color: #2eb049;
    color: #fff;
}
#product-detail .tables .mm {
    display: table;
}
#product-detail .tables .inch {
    display: none;
}
#product-detail .video-text a {
    background-color: #2eb049;
    border-radius: 10px;
    padding: 5px;
    color: #fff;
    transition: 0.3s ease-in;
}
#product-detail .video-text a:hover {
    background-color: transparent;
    background-color: #07711d;
}
#product-detail .video-text a:hover i {
    background-color: #2eb049;
}
#product-detail .video-text a p {
    font-size: 15px;
}
#product-detail .video-text a i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #07711d;
    transition: 0.3s ease-in;
}
#product-detail .side-menu .accordion-button {
    font-size: 18px;
    padding: 10px;
}
#product-detail .side-menu .accordion-button:after {
    display: none !important;
}
#product-detail .side-menu .accordion-button:focus {
    outline: none;
    box-shadow: none;
}
#product-detail .side-menu .accordion-button:not(.collapsed) {
    background-color: #2eb049;
    color: #fff;
}
#product-detail .side-menu .accordion-body {
    padding: 5px;
}
#product-detail .side-menu .accordion-body a {
    display: block;
    font-size: 15px;
    color: #141414;
    padding: 5px;
    transition: 0.3s ease-in;
}
#product-detail .side-menu .accordion-body a.active {
    color: #2eb049;
}
#product-detail .side-menu .accordion-body a:hover {
    color: #2eb049;
}
#product-detail .side-menu .accordion-body a:nth-child(odd) {
    border-top: 1px solid rgba(0, 0, 0, 0.335);
}
#product-detail .side-menu .accordion-body a:nth-child(even) {
    border-top: 1px solid rgba(0, 0, 0, 0.335);
}

.play-btn {
    position: absolute;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 176, 72, 0.4588235294);
    border-radius: 50%;
}
.play-btn i {
    color: #fff;
}

#gallery {
    padding: 80px 100px 80px 100px;
}
#gallery .gallery-div {
    text-align: center;
    margin-bottom: 20px;
    background: #f5f5f7;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transform: scale(1);
    transition: 0.3s ease-in;
}
#gallery .gallery-div .gallery-info {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
}
#gallery .gallery-div .gallery-info .content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
#gallery .gallery-div:hover {
    transform: scale(1.1);
}
#gallery .gallery-div img {
    width: 300px;
    height: 300px;
}

#references {
    padding: 80px 100px 80px 100px;
}
#references .ref-div {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border-radius: 10px;
}
#references .ref-div img {
    padding-left: 10px;
    padding-right: 10px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    display: table;
    margin: auto;
}
#references .ref-div:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
}

#fairs {
    padding: 80px 100px 80px 100px;
}
#fairs .row {
    margin-top: 20px;
}
#fairs .row img {
    border-radius: 10px;
}

#services {
    padding: 80px 100px 80px 100px;
}
#services .services-box {
    padding: 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    border-radius: 10px;
    cursor: pointer;
}
#services .services-box:nth-child(even) {
    border-right: 0px;
}
#services .services-box:hover {
    box-shadow: 42px 68px 72px -38px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

#contact {
    padding: 80px 100px 80px 100px;
}
#contact .map-mask {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    border-radius: 10px;
}
#contact .map-mask:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
}
#contact .contact-info .title {
    font-size: 20px;
    position: relative;
}
#contact .contact-info .title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 25%;
    height: 2px;
    background-color: #2eb049;
}
#contact .contact-info i {
    color: #2eb049;
    font-size: 25px;
}
#contact .contact-info .contact-text {
    margin-left: 20px;
    font-size: 15px;
    color: #141414;
    opacity: 0.7;
    transition: 0.3s ease-in;
}
#contact .contact-info .contact-text:hover {
    opacity: 1;
}

form input,
form textarea {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
}
form input:focus,
form textarea:focus {
    border: 1px solid rgba(0, 0, 0, 0.758) !important;
    outline: none !important;
    box-shadow: none !important;
}
form label {
    font-size: 14px;
}
form .division .country-div {
    width: 50%;
    float: left;
    padding-right: 10px;
}
form .division .city-div {
    width: 50%;
    float: right;
}
form .division .phone-div {
    width: 50%;
    float: left;
    padding-right: 10px;
}
form .division .phone-div input {
    width: 120%;
}
form .division .email-div {
    width: 50%;
    float: right;
}

.submit-btn {
    background-color: #2eb049;
    color: #fff !important;
    display: table;
    margin: auto;
    width: 200px;
    font-size: 18px;
    border-radius: 10px;
}
.submit-btn:hover {
    background-color: #079938;
}

#corporate-identity {
    padding: 80px 100px 80px 100px;
}
#corporate-identity .identity-div {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border-radius: 10px;
}
#corporate-identity .identity-div a {
    color: #141414;
}
#corporate-identity .identity-div a img {
    padding-left: 10px;
    padding-right: 10px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    display: table;
    margin: auto;
}
#corporate-identity .identity-div a p {
    font-size: 15px;
}
#corporate-identity .identity-div:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
}

.map .svg-turkiye-haritasi {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}
.map .svg-turkiye-haritasi svg {
    width: 100%;
    height: auto;
}
.map .svg-turkiye-haritasi svg path {
    cursor: pointer;
    fill: #cccccc;
}
.map .svg-turkiye-haritasi svg path:hover {
    fill: #2eb049;
}
.map .svg-turkiye-haritasi svg path.active {
    fill: #2eb049;
}
.map .il-isimleri {
    position: absolute;
    z-index: 2;
    background-color: #2eb049;
}
.map .il-isimleri div {
    display: inline-block;
    background: #2eb049;
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
}
.map .title {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}
@media only screen and (max-width: 991px) {
    .map .title {
        margin: 10px 0 40px;
    }
}
.map .title > div {
    background-color: #7e1f46;
    padding: 6px 12px;
}
@media only screen and (max-width: 991px) {
    .map .title > div {
        background-color: unset;
    }
}
.map .title > div span {
    font-family: "Sansita Swashed", cursive;
    color: white;
    font-size: 23px;
}
@media only screen and (max-width: 991px) {
    .map .title > div span {
        color: #7e1f46;
        font-size: 18px;
    }
}
.svg-turkiye-haritasi {
    position: relative;
}

.modal {
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in;
}
.modal:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.295);
    z-index: -1;
}
.modal .modal-content {
    width: 50%;
    height: 50%;
    display: table;
    margin: auto;
}
.modal .modal-content article {
    padding: 20px;
}
.modal .modal-content article p {
    font-size: 22px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.362);
    width: 100%;
    color: #2eb049;
}
.modal .modal-content article .modal-ul .reference-item {
    font-size: 20px;
    border-radius: 10px;
    padding: 3px;
}
.modal .modal-content article .modal-ul .reference-item:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.044);
}
.modal .modal-content article .modal-ul .reference-item .fa-location-dot {
    color: #2eb049;
}
.modal .show-more {
    background-color: transparent;
    border: 1px solid #2eb049;
    color: #2eb049;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}
.modal .show-more:hover {
    color: #fff;
    background-color: #2eb049;
    border: 1px solid transparent;
}
.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.loader-container {
    display: block;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
}
.loader-container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.7215686275);
    z-index: -1;
}
.loader-container .loader-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-container .loader-box .img-div {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
}
.loader-container .loader-box .img-div .top {
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(26, 161, 75), rgba(57, 255, 20, 0.5), transparent 50%);
    animation: animateTop 3s ease-in-out infinite;
}
.loader-container .loader-box .img-div .right {
    top: 0;
    right: 0;
    width: 5px;
    float: right;
    height: 0;
    background: linear-gradient(90deg, rgb(26, 161, 75), rgba(57, 255, 20, 0.5), transparent 50%);
    animation: animateRight 3s ease-in-out infinite;
}
.loader-container .loader-box .img-div .bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(26, 161, 75), rgba(57, 255, 20, 0.5), transparent 50%);
    animation: animateBottom 3s ease-in-out infinite;
}
.loader-container .loader-box .img-div .left {
    bottom: 0;
    left: 0;
    width: 5px;
    float: left;
    height: 0;
    background: linear-gradient(90deg, rgb(26, 161, 75), rgba(57, 255, 20, 0.5), transparent 50%);
    animation: animateRight 3s ease-in-out infinite;
}

.tables {
overflow-x:auto;
}

video{
width:100%;
}


@media screen and (max-width: 992px) {
    .fixed #menu-toggler {
        color: #fff;
    }
    .pages-title {
        font-size: 16px !important;
    }
    .title h4 {
        font-size: 20px;
    }
    .title .back-title {
        left: -15px;
        top: -30px;
        font-size: 40px;
    }
    header {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        position: relative;
    }
    header .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        z-index: 100;
        background-color: #fff;
        transition: all 0.3s ease-in;
    }
    header .menu nav {
        padding-top: 40px ul;
        padding-top-justify-content: end;
    }
    header .menu nav .menu-item {
        width: 100%;
        margin-top: 10px;
        padding-left: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.097);
    }
    header .menu nav .menu-item .menu-link {
        color: #141414;
        justify-content: start;
    }
    header .menu .corporate-description {
        margin-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
    header .menu .corporate-description .desc i {
        font-size: 14px;
    }
    header .menu .corporate-description .desc a {
        margin-top: 10px;
        font-size: 14px;
        margin-left: 10px;
    }
    header .menu .corporate-description ul {
        justify-content: end;
    }
    header .menu .menu-item .submenu {
        top: 0;
        left: 0;
        width: 100%;
        padding: 3px;
        height: 100vh;
        background-color: #fff;
    }
    header .menu .menu-item .submenu .menu-link {
        margin-top: 5px;
    }
    header .menu .menu-item:hover .submenu {
        display: block;
        opacity: 1;
    }
    header .menu .submenu-2 {
        overflow-y: auto;
        padding-bottom: 100px;
        top: 20% !important;
        height: 100vh !important;
        overflow-y: auto;
    }
    header .menu .submenu-2 .product-item p {
        white-space: normal;
        font-size: 14px !important;
    }
    header .menu .submenu-2 .product-item:hover p {
        color: #2eb049 !important;
    }
    header .menu .submenu-3 {
        width: 100% !important;
        color: #fff !important;
    }
    header .menu .submenu-3 .menu-item {
        margin-top: 0px;
    }
    header .menu #menu-close-btn {
        text-align: right;
        display: block !important;
    }
    footer .single-cta {
        justify-content: start;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    footer .copyright {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    #headline video {
        width: 100%;
        height: 100%;
    }
    #headline .headline-content h3 {
        font-size: 20px !important;
    }
    #headline .headline-content p {
        font-size: 12px !important;
    }
    #headline .headline-content a {
        font-size: 12px !important;
    }
    #headline .swiper-button-next,
    #headline .swiper-button-prev {
        width: 25px !important;
        height: 25px !important;
    }
    #headline .swiper-button-next::after,
    #headline .swiper-button-prev::after {
        font-size: 10px !important;
    }
    #corporate,
    #blog-preview,
    #gallery,
    #blog,
    #services {
        padding: 10px 10px 10px 10px;
    }
    #select-products {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    #select-products .fake-button {
        bottom: 20px !important;
        opacity: 1 !important;
    }
    #motto video {
        width: 100% !important;
    }
    #motto .motto-desc {
        left: 53% !important;
    }
    #motto .motto-desc .icon-div {
        width: 60px !important;
        height: 60px !important;
    }
    #motto .motto-desc .icon-div img {
        display: table;
        margin: auto;
        width: 30px !important;
        height: 30px !important;
    }
    #motto .motto-desc .motto-text {
        font-size: 14px !important;
    }
    #products {
        padding: 10px 10px 10px 10px;
    }
    #products .col-6 {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #products .col-6 .product-card {
        margin-top: 20px !important;
    }
    #products .col-6 .product-card .product-img {
        height: 200px !important;
    }
    #products .col-6 .product-card .product-name p {
        font-size: 20px;
    }
    #product-detail {
        padding: 10px 10px 10px 10px;
    }
    #product-detail .product-img {
        height: 300px !important;
    }
    #product-detail .image-gallery {
        height: 100% !important;
    }
    #product-detail .image-gallery .gallery-li {
        width: 100px;
        height: 100px;
        margin-right: 15px;
    }
    #product-detail .image-gallery .gallery-li .thumbnail {
        width: 50px;
        height: 50px;
    }
    #product-detail .breadcrumb {
        font-size: 12px;
    }
    #product-detail .tables-content {
        overflow-x: auto !important;
        width: 100%;
    }
    #product-detail .details-table .model-item {
        font-size: 13px;
        margin-left: 10px !important;
    }
    #product-detail .details-table td {
        font-size: 12px;
        padding: 12px 18px;
        font-weight: 300;
    }
    #about {
        padding: 10px 10px 10px 10px;
    }
    .bg-video article h4 {
        font-size: 18px;
    }
    .about-video {
        width: 100%;
    }
    #references {
        padding: 10px 10px 10px 10px;
    }
    #references .ref-div {
        width: 100%;
        height: 100px;
    }
    #fairs {
        padding: 10px 10px 10px 10px;
    }
    #contact {
        padding: 10px 10px 10px 10px;
    }
    form input,
    form textarea {
        border: 1px solid rgba(0, 0, 0, 0.2);
        margin-bottom: 12px;
    }
    form input:focus,
    form textarea:focus {
        border: 1px solid rgba(0, 0, 0, 0.758) !important;
        outline: none !important;
        box-shadow: none !important;
    }
    form label {
        font-size: 14px;
    }
    form .division .phone-div {
        width: 50%;
        float: left;
        padding-right: 10px;
    }
    form .division .phone-div input {
        width: 100%;
    }
    form .division .email-div {
        width: 50%;
        float: right;
    }
    #corporate-identity {
        padding: 10px 10px 10px 10px;
    }
    #corporate-identity .identity-div {
        width: 100%;
        height: 200px;
    }
    #blog-preview .article-details h4,
    #blog .article-details h4 {
        font-size: 20px;
    }
    #blog-preview .article-details h3,
    #blog .article-details h3 {
        font-size: 13px;
    }
    #blog-preview .article-details p,
    #blog .article-details p {
        font-size: 14px;
    }
    #blog-preview .article-details .read-more,
    #blog .article-details .read-more {
        padding: 4px;
        font-size: 13px;
    }
    #gallery {
        padding: 10px 10px 10px 10px;
    }
    #gallery .gallery-div img {
        width: 100%;
        height: 200px;
    }
    .modal {
        width: 100%;
    }
    .modal .modal-content {
        width: 100%;
    }
}/*# sourceMappingURL=main.css.map */
