/* Start Global Rules */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Start Variables */

:root {
    --main-color: #8CC63F;
    --back-color: #fff;
    --main-transition: 0.5s;
    --sec-color: #75AC42;
    --padding-top: 50px;
    --padding-bottom: 50px;
    --background-linear: linear-gradient(to left, #3E5E46, #88B395);
}

/* End Variables */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
}

/* Start contanier */

.contanier {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .contanier {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .contanier {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .contanier {
        width: 1170px;
    }
}

/* End contanier */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 50px;
    height: 50px;
}

.main-title {
    margin: 25px auto;
    display: flex;
    width: fit-content;
    flex-direction: column;
    position: relative;
    margin-bottom: 10px;
    text-align: center;
    align-items: center;
}

.main-title .top {
    display: flex;
    gap: 10px;
    font-size: 31px;
    text-transform: uppercase;
    color: #75AC42;
    font-weight: bold;
}

@media (max-width: 768px) {
    .main-title .top{
        font-size: 24px;
    }
}

.main-title .bottom {
    font-size: 32px;
    text-transform: capitalize;
}

/* ****************************** */

.menu {
    display: none;
    flex-direction: column;
    position: relative;
    height: 80px;
    width: 35px;
    border: none;
    outline: none;
    background-color: transparent;
    margin-right: 30px;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 768px) {
    .menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-right:0px;
    }
}

.menu span {
    display: block;
    width: 35px;
    height: 2px;
    margin: 6px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

.menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 12px);
    background-color: red;
}

.menu.active span:nth-child(2) {
    opacity: 0;
}

.menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -12px);
    background-color: red;
}

/* **************************** */

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    /* position: fixed; */
    top: 10px;
    left: 10px;
    z-index: 2;
}

.close-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.close-icon {
    display: none;
}

.menu-items {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.menu-items ul {
    list-style: none;
    padding: 0;
    margin: 20% 0 0 0;
    text-align: center;
}

.menu-items ul li {
    margin-bottom: 20px;
}

.menu-items ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.menu-items ul li a:hover {
    color: #00bcd4;
}

.close-icon {
    color: white;
}

/* End Mage Menu */

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 40;
    width: 100%;
    height: 100%;
    background-color: var(--main-blue-color);
    animation: hide 400ms ease 2500ms forwards;
}

.loader img:nth-child(2) {
    width: 280px;
    margin-left: 25px;
    transform: translateY(-20px);
}

@keyframes hide {
    100% {
        top: 100%;
    }
}

.loaderLogo {
    opacity: 0;
    animation: loader 1.5s linear 0s infinite forwards;
}

.loaderLogo img {
    width: 280px;
    height: 280px;
}

@keyframes loader {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.goTop {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 10px;
    z-index: 5;
}


.goTop span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #8CD06B, #476A37);
    box-shadow: 0px 0px 10px var(--main-blue-color);
    cursor: pointer;
    transition: 0.2s;
}

.goTop span:hover {
    background-color: #476A37;
}

.goTop span:hover i {
    color: #fff;
}

.goTop span i {
    color: #fff;
    font-size: 1.5em;
}

.btn {
    text-transform: uppercase;
    font-weight: bold;
    width: fit-content;
    padding: 15px 35px;
    transition: var(--main-transition);
    color: white;
    position: relative;
    background-color: #8CC63F;
    border-radius: 4px;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0px 0px 10px #0000003d;
}

.btn span {
    position: relative;
    z-index: 10;
    transition: 0.5s;
}


.btn span:hover {
    color: #8CC63F;
}

.btn::before {
    content: "";
    position: absolute;
    top: -3px;
    transition: var(--main-transition);
    width: 20px;
    background-color: white;
    height: 20px;
    left: -3px;
    border-radius: 50%;
}

.btn::after {
    content: "";
    position: absolute;
    bottom: -3px;
    transition: var(--main-transition);
    width: 20px;
    background-color: white;
    height: 20px;
    right: -3px;
    border-radius: 50%;
}

.btn:hover::before {
    top: -5px;
    width: 320px;
    background-color: white;
    height: 40px;
    left: -47px;
}

.btn:hover::after {
    bottom: -5px;
    width: 320px;
    background-color: white;
    height: 40px;
    right: -47px;
}


/* End Global Rules */

/* Start Header */

.header {
    box-shadow: 0px 0px 10px #6a6a6a;
    width: 100%;
    background-color: #fff;
    top: 0;
    transition:0.3s; /* Transition for smooth animation */
    z-index: 1000;
}

/* .header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    transition: 0.3s;
} */

.header .contanier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

@media (max-width: 768px) {
    .header .contanier{
        padding:15px;
    }
}

.header .contanier .logo {
    width: 130px;
    height: 74px;
}


.header .contanier .logo img {
    width: 130px;
    height: 74px;
}

.header .contanier .nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .header .contanier .nav {
        display: none;
        position: fixed;
        top: 100px;
        left: -400px;
        width: 100%;
        display: flex;
        transition: 0.5s;
        z-index: 5;
        flex-direction: column;
        background-color: white;
        height: 100%;
        z-index: 110;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .header .contanier .nav ul {
        display: flex;
        gap: 20px;
        flex-direction: column;
        align-items: self-start !important;
        padding-left: 20px;
        padding-top: 20px;
    }
}

.header .contanier .nav ul li a {
    color: var(--sec-color);
    font-weight: bold;
    text-transform: uppercase;
    color: black;
}

.header .contanier .nav ul li .active {
    color: var(--sec-color);
}

/* End Header */

/* Start Landing */

.landing {
    background-image: url(../media/icons/landing-page.png);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: right;
}

@media (max-width: 768px) {
    .landing {
        background-position: 85% 100%;
    }
}

.landing .contanier {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing .contanier .text {
    display: flex;
    flex-direction: column;
    color: white;
    gap: 13px;
}


.landing .contanier .title {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .landing .contanier .title {
        font-size: 30px;
    }
}

.landing .contanier p {
    font-size: 20px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .landing .contanier p {
        font-size: 15px;
    }
}

.landing .contanier .text .top-big {
    font-size: 105px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .landing .contanier .text .top-big{
        font-size: 60px;
    }
}

/* End Landing */



/* Start Bar */

.bar {
    width: 100%;
    height: 10px;
    background-color: var(--main-color);
    display:flex !important;
}

/* End Bar */

/* Start About */

.about {
    position: relative;
    padding: 40px 0;
}

.about .contanier {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 40px 0;
    justify-content: space-between;
}

.about .contanier .image {
    width: 35%;
    height: 350px;
}

@media (max-width: 768px) {
    .about .contanier .image{
        display: none;
    }
}


.about .contanier .image img {
    width: 350px;
    height: 350px;
}

.about .contanier .text {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .about .contanier .text{
        width: 94%;
    }
}

/* End About */

/* Start importance */

.importance {
    background-color: #AECE99;
    padding: 40px;
    position: relative;
}

.importance .contanier {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.importance .contanier .title {
    font-size: 30px;
    color: white;
    text-transform: capitalize;
    font-weight: bold;
}

@media (max-width: 768px) {
    .importance .contanier .title{
        text-align: center;
        font-size: 23px;
    }
}

.importance .contanier .cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    gap: 20px;
}

@media (max-width: 768px) {
    .importance .contanier .cards{
        flex-wrap: wrap;
    }
}

.importance .contanier .cards .card {
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 285px;
    height: 285px;
}

.importance .contanier .cards .card .first {
    width: 75px;
    height: 75px;
}

.importance .contanier .cards .card span {
    font-size: 19px;
    font-weight: bold;
    text-transform: capitalize;
}

.importance .contanier .cards .card .animation {
    position: absolute;
    top: 0;
    left: 0;
}

/* End importance */

/* Start Style Image */

.style-image {
    position: relative;
}

.style-image img {
    width: 1900px;
    height: 300px;
    position: absolute;
    top: -70px;
    left: 0;
}

.style-image video {
    position: relative;
    width: 100%;
}

/* End Style Image */

/* Start Products */

.products {
    position: relative;
    padding: 40px 0;
}

.products .contanier {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 40px 0;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .products .contanier{
        flex-direction: column;
        gap: 12px;
    }
}

.products .contanier .prod {
    width: 350px;
    height: 350px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0px 0px 10px #0000003b;
    padding: 12px;
    text-align: center;
}

.products .contanier .prod img {
    width: 100px;
    height: 100px;
}

.products .contanier .prod span {
    font-size: 19px;
    font-weight: bold;
    text-transform: capitalize;
}

.products .contanier .btn {
    padding: 10px 35px;
}

.products .contanier .btn span {
    font-size: 15px;
}

.products .contanier .btn::before {
    display: none;
}

.products .contanier .btn::after {
    display: none;
}

.products .contanier .btn:hover span {
    color: white;
}

.products .btn {
    margin: 0 auto;
    display: flex;
}

.products .contanier iframe{
    width: 100%;
    height: 850px;
}

@media (max-width: 768px) {
    .products .contanier iframe{
        width: 65%;
        height: 350px;
    }
}

/* End Products */

/* Start Footer */

.footer {
    background-image: linear-gradient(45deg, #8CD06B, #476A37);
    position: relative;
    display: flex;
    flex-direction: column;
}

.footer .contanier {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid white;
}

@media (max-width: 768px) {
    .footer .contanier{
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
}

.footer .contanier .left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .contanier .left .logo {
    width: 230px;
    height: 111px;
}

.footer .contanier .left .logo img {
    width: 230px;
    height: 111px;
}

.footer .contanier .left .social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .contanier .left .social a {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .contanier .left .social a img {
    width: 25px;
    height: 25px;
}

.footer .contanier .rigth {
    display: flex;
    width: 40%;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .footer .contanier .rigth{
        flex-direction: column;
        gap: 20px;    
        width: auto;
    }
}

.footer .contanier .rigth .list-1 {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer .contanier .rigth .list-2 {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer .contanier .rigth .title {
    font-size: 19px;
    color: white;
    text-transform: capitalize;
    font-weight: bold;
}

.footer .contanier .rigth ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .contanier .rigth .list-1 ul li a {
    color: white;
}

.footer .contanier .rigth .list-2 ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer .contanier .rigth .list-2 ul li img {
    width: 20px;
    height: 20px;
}

.footer .contanier .rigth .list-2 ul li a {
    color: white;
}

.developed{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.developed img{
    width: 200px;
}

/* End Footer */

/* Start Landing Page */

.landing-pages {
    background-image: url(../media/icons/landing-page.png);
    height: 40vh;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    /* top: 100px; */
}

.landing-pages .contanier {
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.landing-pages .contanier .text h1 {
    font-size: 50px;
    margin: 0;
    text-transform: capitalize;
}

.landing-pages .contanier .text span {
    text-transform: capitalize;
    font-weight: bold;
    font-size: 20px;
}

.landing-pages .contanier .text span.green {
    color: #8CC63F;
}

/* End Landing Page */

/* Start About Section */

.about-section {
    position: relative;
    padding: 40px 0;
}

.about-section .contanier {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.about-section .contanier .text {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    .about-section .contanier .text{
        width: auto;
    }
}

.about-section .contanier .text .title {
    display: flex;
    flex-direction: column;
}

.about-section .contanier .text .title span {
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
}

.about-section .contanier .text .title span.sp {
    color: #75AC42;
}

.about-section .contanier .logo {
    width: 45%;
}

@media (max-width: 768px) {
    .about-section .contanier .logo{
        display: none;
    }
}

.about-section .contanier .logo img {
    width: 350px;
    height: 350px;
}

/* End About Section */

/* Start Team */

.team {
    position: relative;
    padding: 40px 0;
}

.head-title {
    width: fit-content;
    margin: 0 auto;
    padding: 2px;
    border-bottom: 5px solid #75AC42;
    margin-bottom: 30px;
    font-size: 30px;
    color: #75AC42;
    text-transform: uppercase;
    font-weight: bold;
}

.team .contanier {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .team .contanier{
        flex-direction: column;
    }
}

.team .contanier .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: white;
    padding: 30px;
    width: 250px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #0000003d;
}

.team .contanier .card img {
    width: 125px;
    height: 125px;
}

.team .contanier .card .name {
    font-weight: bold;
    font-size: 24px;
}

.team .contanier .card .posation {
    color: #979797;
    text-transform: capitalize;
}

/* End Team */

/* Start Way */

.way {
    padding: 40px 0;
    position: relative;
}

.way .contanier {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 768px) {
    .way .contanier{
        flex-direction: column;
        gap: 12px;
    }
}


.way .contanier a {
    width: 275px;
    height: 225px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #0000003d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.way .contanier a span {
    font-size: 22px;
    color: black;
    font-weight: bold;
}

/* End Way */

/* Start Form Section */

.form-section {
    position: relative;
    padding: 40px 0;
}

.form-section .contanier .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .form-section .contanier .text{
        text-align: center;
    }
}

.form-section .contanier .text h1 {
    margin: 0;
    font-size: 40px;
}

.form-section .contanier form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-section .contanier form .i {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .form-section .contanier form .i {
        flex-direction: column;
    }
}

.form-section .contanier form .i .in {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-section .contanier form .i .in .inp {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-section .contanier form .i .in .inp label {
    font-size: 18px;
    font-weight: bold;
}

.form-section .contanier form .i .in .inp input {
    padding: 10px;
    width: 400px;
    border-radius: 8px;
    border: 2px solid #8CC63F;
}

@media (max-width: 768px) {
    .form-section .contanier form .i .in .inp input{
        width: 100%;
    }
}

.form-section .contanier form .i .in .inp input:focus {
    outline: none;
}

.form-section .contanier form .i .in label {
    font-size: 18px;
    font-weight: bold;
}

.form-section .contanier form .i .in textarea {
    padding: 10px;
    width: 400px;
    height: 100%;
    max-width: 400px;
    max-height: 231px;
    border-radius: 8px;
    border: 2px solid #8CC63F;
}

@media (max-width: 768px) {
    .form-section .contanier form .i .in textarea{
        width: 100%;
        height: 250px;
    }
}

.form-section .contanier form .i .in textarea:focus {
    outline: none;
}

button {
    background-color: #8CC63F;
    color: white;
    font-weight: bold;
    border: 0;
    padding: 10px 50px;
    border-radius: 4px;
    width: fit-content;
    cursor: pointer;
}

/* End Form Section */

/* Start Products */

.product-page {
    position: relative;
    padding: 40px 0;
}

.product-page .contanier {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.product-page .contanier .sections {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-page .contanier .sections a.active {
    padding: 10px 50px;
    background-color: #8CC63F;
    border-radius: 4px;
    color: white;
    font-weight: bold;
}

.product-page .contanier .sections a {
    padding: 10px 50px;
    background-color: white;
    border-radius: 4px;
    color: black;
    font-weight: bold;
    text-transform: capitalize;
    box-shadow: 0px 0px 10px #0000003d;
}

.product {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

@media (max-width: 768px) {
    .product{
        flex-direction: column;
    }
}

.swiper-wrapper{
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .swiper-wrapper{
        flex-wrap: wrap;
    }
}


.product a {
    width: 275px;
    height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    box-shadow: 0px 0px 10px #0000003d;
    border-radius: 10px;
    flex-direction: column;
    gap: 7px;
}

.product a img {
    width: 125px;
    height: 125px;
}

.product a span {
    color: black;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
}

/* End Products */

/* Start Loader */

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.loaded {
    overflow-y: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
    background: #3e5e4680;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.overlay.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spinInner 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

.overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.overlayContent .skip {
    display: block;
    width: 130px;
    text-align: center;
    margin: 50px auto 0;
    cursor: pointer;
    color: #fff;
    font-family: "Nunito";
    font-weight: 700;
    padding: 12px 0;
    border-radius: 3px;
    transition: 0.2s ease;
    font-size: 25px;
}

.overlayContent .skip:hover {
    background: #ddd;
    color: #444;
    border-color: #ddd;
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spinInner 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

/* End Loader */

.hidden {
    display: none;
}

.poductDet{
    position: relative;
    padding: 40px 0;
}

.poductDet .contanier .text{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.poductDet .contanier .text .title{
    font-size: 30px;
    font-weight: bold;
    color: var(--main-color);
    text-transform: capitalize;
}

.table{
    padding: 40px 0;
}

@media (max-width: 768px) {
    .table{
        overflow: auto;
    }
}

.table .contanier{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


@media (max-width: 768px) {
    .table .contanier{
        flex-direction: column;
    }
}

.table .contanier .image-table{
    width: 45%;
    height: 250px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}
th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #007bff;
    color: #ffffff;
    font-weight: bold;
}
tr:hover {
    background-color: #f1f1f1;
}
thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}
tfoot td {
    font-weight: bold;
    background-color: #f9f9f9;
}
.pdf img{
    width: 25px;
    height: 25px;
}

.tab{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: bold;
    font-size: 25px;
}

.tab .green{
    color: var(--main-color);
}

.tab .green span{
    color: black;
}


/* Start Category */

.category{
    padding: 40px;
    position: relative;
}

.category .contanier{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.category .contanier .cat{
    width: 320px;
    height: 280px;
}

.category .contanier .cat .image{
    width: 100%;
    height: 90%;
}
.category .contanier .cat .image img{
    width: 100%;
    height: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.category .contanier .cat .name{
    padding: 10px;
    background-image: linear-gradient(45deg, #8CD06B, #476A37);
    color: white;
    font-weight: bold;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* End Category */


.det{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .det {
        flex-direction: column;
        gap: 20px;
    }
}

.det .text{
    width: 65%;
}

@media (max-width: 768px) {
    .det .text {
        width: 100%;
    }
}

.det .image{
    width: 35%;
}

@media (max-width: 768px) {
    .det .image img {
        width: 100%;
    }
}

.det .image img{
    width: 100%;
    height: 250px;
}


.drop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: -moz-fit-content;
    width: 60px;
}

.drop .dropMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    height: 43px;
    padding: 0 20px;
    position: absolute;
    top: calc(100% + 10px);
    background-color: var(--main-color);
    border-radius: 5px;
    border-right: none;
    animation: none;
    box-shadow: var(--bx-sh);
}

.drop a {
    color: black;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

span.dropMenu a {
    color: white;
}

.drop a .lang {
    width: 0;
    -o-object-fit: contain;
    object-fit: contain;
    display: none;
}

.drop a .drop-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    transform: translateX(-5px);
    transition: 0.2s;
}

.drop.active .dropMenu {
    display: flex;
    z-index: 10;
}

.drop.active .drop-icon {
    transform: translateX(-5px) rotate(-90deg);
}