:root {
    --font: "Quicksand", sans-serif;
    --color-yellow: #f4ae2b;
    --color-text: #000;
    --color-text2: #333333;
    --color-text3: #212529;
    --color-main: #294F2E;
    --color-text-hover: #000500;
}

.hedef50 {
    background-color: red;
    color: #62fb62;
    padding: 5px;
    font-weight: bold
}

.header--top {
    background: var(--color-main);
}

body {
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
}

button {
    background: transparent;
    border: none;
    outline: none;
}

.header--section ul {
    padding: 0;
    margin: 0;
}

.search--button {
    position: absolute;
    right: 0;
    top: 50%;
    height: 47px;
    transform: translateY(-50%);
    width: 50px;
}

.search--button button {
    font-size: 16px;
}

.header--search input {
    border: 2px solid rgba(129, 129, 129, .20);
    font-size: 14px;
}

.header--rdr ul li {
    list-style: none;
    position: relative;
}

.header--rdr ul li a {
    padding: 5px 15px;
    font-size: 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 5px;
}

.header--rdr ul li a i {
    font-size: 20px;
    margin-right: 5px;
}

.w-auto {
    width: auto !important;
}

.fz-15 {
    font-size: 15px !important;
}


.nav--menu ul.first--ul > li {
    display: inline-block;
    list-style-type: none;
    position: relative;
}

.nav--menu ul.first--ul > li > a {
    display: block;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-main);
    letter-spacing: 0.3px;
}

.nav--menu ul.first--ul > li:first-child > a {
    padding-left: 0;
}

.nav--menu ul.first--ul > li > ul {
    min-width: 200px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 8px;
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
}

.nav--menu ul.first--ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 15px;
    transition: .3s ease-in-out;
}

.nav--menu ul.first--ul > li:hover > a {
    color: #4F738F;
    transition: .3s ease-in-out;
}

.nav--menu ul.first--ul > li > ul::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 15px;
    height: 15px;
    background: white;
    top: -8px;
    border: 1px solid transparent;
    border-top-color: #EDEDED;
    border-left-color: #EDEDED;
}

.nav--menu ul.first--ul > li > ul::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
    top: -15px;

}

.nav--menu ul.first--ul > li > ul > li {
    display: block;
    list-style-type: none;
}

.nav--menu ul.first--ul > li > ul > li > a {
    display: block;
    padding: 10px;
    position: relative;
    z-index: 8;
    transition: .3s ease-in-out;
    font-size: 15px;
    font-weight: 500;
}

.nav--menu ul.first--ul > li > ul > li:hover > a {
    background: #EDEDED;
    transition: .3s ease-in-out;
}

.nav--menu ul.first--ul > li > ul > li:first-child:hover > a {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.nav--menu ul.first--ul > li > ul > li:last-child:hover > a {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.hero--slider-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    transition: .3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.hero--slider:hover .hero--slider-arrows {
    transition: .3s ease-in-out;
    visibility: visible;
    opacity: 1;
}

.hero--slider-arrows .hero-swiper-button-prev {
    position: absolute;
    left: 30px;
}

.hero--slider-arrows .hero-swiper-button-next {
    position: absolute;
    right: 30px;
}

.hero-swiper-button-prev,
.hero-swiper-button-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e1e1;
    line-height: 15px;
    cursor: pointer;
    border-radius: 8px;
    background: #F1F1F1;
    font-size: 20px;

}

.hero--slider-content {
    position: absolute;
    z-index: 9;
    width: 100%;
}

.hero--slider-content-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
    color: #fff;
    position: relative;
    z-index: 9;
    background: var(--color-main);
    padding: 8px;

}

.hero--slider-content-title-o {
    position: absolute;
    font-size: 75px;
    color: #ededed;
    top: -45px;
}

.hero--slider-content-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;

}

.hero--slider-content-buttons {
    margin-top: 20px;

}

.buttons--first {
    background: #333;
    color: white;
    padding: 12px 20px;
    font-size: 13px;
    line-height: 18px;
}

.buttons--first:hover {
    color: white;
}

.buttons--last {
    padding: 10px 20px;
    font-size: 13px;
    line-height: 18px;
    color: #333;
    font-weight: 600;

}

.category--banner-box {
    overflow: hidden;
    position: relative;
}

.category--banner-box img {
    transition: .3s ease-in-out;
}

.category--banner-box:hover img {
    transform: scale(1.1);
    transition: .3s ease-in-out;
}

.box--content {
    position: absolute;
    top: 25px;
    left: 25px;
}

.box--content-text {
    font-weight: 600;
    font-size: 15px;
    color: #1e272e;
    
}

.box--content-title {
    font-weight: 600;
    font-size: 36px;
    color: #242424;
    
}

.button-primary2 {
    
    font-size: 13px;
    color: white;
    font-weight: 600;
    background: #1E272E;
    padding: 10px 20px;
    border-radius: 7px;
    transition: .3s ease-in-out;
}

.button-primary2:hover {
    background: #4F738F;
    transition: .3s ease-in-out;
}

.category--banner2-box {
    overflow: hidden;
    cursor: pointer;
    /*background: var(--color-main);
    padding: 10px;*/
    cursor: pointer;
}

/*.category--banner2-box img {
    transition: .3s ease-in-out;
}

.category--banner2-box:hover img {
    transform: scale(1.2);
    transition: .3s ease-in-out;
}*/

.category--banner2-content {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.banner2--content-text {
    
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.banner2--content-title {
    
    font-size: 25px;
    color: white;
    font-weight: 600;
}

.banner2--content-more a {
    display: block;
    
    font-weight: 600;
    font-size: 13px;
    color: white;
    text-decoration: white !important;
    cursor: pointer;
}

#countdown div {
    margin-right: 10px;
    width: 75px;
    height: 75px;
    padding: 5px;
    border: 1px solid #b1b1b1;
    background: white;
}

#countdown div:last-child {
    margin-right: 0;
}

#countdown span {
    display: block;
    text-align: center;
    color: white;

}

#countdown span:first-child {
    font-weight: 700;
    font-size: 28px;
    color: #333;

}

#countdown span:last-child {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.campaning--title {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    line-height: 56px;
    text-align: center;
    

}

.campaning--text {
    
    font-weight: 400;
    font-size: 15px;
    color: #777777;
}

.promotion--area-title {
    
    font-size: 22px;
    color: #242424;
    font-weight: 600;
}

.promotion--area-list ul {
    padding: 0;
    margin: 0;
}

.promotion--area-list ul li {
    list-style-type: none;
    
    font-size: 14px;
    color: #777777;
    font-weight: 400;
}

.promotion--area-text {
    
    font-size: 14px;
    color: #777777;
    font-weight: 400;
}

.video--area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background: #EAF9EE;
}

.z-9 {
    z-index: 9;
}

.video--button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translate(-50%, -50%);
    font-size: 35px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video--button i {
    line-height: 20px;
    transition: .3s ease-in-out;
    color: white;
}

.video--box:hover img {
    transition: .3s ease-in-out;
    transform: scale(1.1);
}

.video--box:hover i {
    transition: .3s ease-in-out;
    transform: scale(0.9);
}

.video--box img {
    transition: .3s ease-in-out;
}

.information--area-title {
    text-align: center;
    
    font-weight: 600;
    font-size: 22px;
    color: #242424;
}

.information--box .information--box-icon {
    font-size: 50px;
    text-align: center;
}

.information--box .information--box-title {
    
    font-size: 14px;
    color: #83b735;
    font-weight: 600;
    text-align: center;
}

.information--box .information--box-text {
    
    font-size: 14px;
    color: #777777;
    font-weight: 400;
    text-align: center;
}

.information--area {
    background: #EAF9EE;
}

.information--area2 {
    background: #db3340;
}

.information--area2 .information--content {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
}

.information--area2 .col-md-3:last-child .information--content {
    border-right: none;
}

.information--area2 .information--content-icon {
    font-size: 35px;
    color: white;
}

.information--area2 .information--content-title {
    
    font-weight: 600;
    font-size: 16px;
    color: white;
}

.information--area2 .information--content-ex {
    
    font-weight: 400;
    font-size: 14px;
    color: white;
}

.reviews--title {
    font-size: 36px;
    color: white;
    font-weight: 600;
}

.reviews--box-img {
    width: 75px;
    height: 75px;
    margin: 0 auto;
}

.reviews--box-img img {
    width: 100%;
    border-radius: 50%;
}

.reviews--box-message {
    
    font-size: 14px;
    color: white;
    font-weight: 400;
}

.reviews--box-name {
    font-size: 14px;
    font-weight: 600;
    
    color: white;
}

.reviews--box-name span {
    font-weight: 400;
}

.reviews--arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
}

.reviews-button-prev, .reviews-button-next {
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.reviews-button-prev {
    position: absolute;
    left: -30px;
}

.reviews-button-next {
    position: absolute;
    right: -30px;
}

.blog--area .blog--box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.blog--area .blog--box:hover img {
    transform: scale(1.2);
    transition: .3s ease-in-out;
}

.blog--area .blog--box img {
    transition: .3s ease-in-out;
}

.blog--area .blog--box-date {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: white;
    text-align: center;

}

.blog--area .blog--box-date span:first-child {
    
    font-size: 24px;
    font-weight: 400;
    color: #333333;
}

.blog--area .blog--box-date span:last-child {
    
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    position: relative;
    top: -10px;

}

.blog--box-content-title {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    
    font-size: 22px;
    font-weight: 500;
    color: white;
}

.footer--title {
    font-size: 14px;
    color: white;
    font-weight: 600;
    
}

.footer--list ul {
    padding: 0;
    margin: 0;
}

.footer--list ul li {
    list-style: none;
    display: block;
    position: relative;
}

.footer--list ul li a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    font-weight: 400;
    
    transition: .3s ease-in-out;
    margin-bottom: 5px;
}

.footer--list ul li:last-child a {
    margin-bottom: 0;
}

.footer--list ul li a:hover {
    transition: .3s ease-in-out;
    color: rgba(255, 255, 255, 1);
}

.footer--list .primary--button {
    margin-top: 10px;
}

.footer--top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.footer--social ul {
    display: flex;
}

.footer--social ul li {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: block;
}

.footer--social ul li a {
    color: white;
    padding: 10px;
    text-decoration: none;
    font-size: 24px;
}

.language--box {
    position: relative;
    z-index: 99;
}

.language--box > a {
    display: block;
    font-size: 15px !important;
    font-weight: 500;
    color: white;
}

.language--box a {
    width: initial !important;
    height: initial !important;
    margin-left: 0 !important;
}

.language--box img {
    width: 30px;
    object-fit: cover;
}

.language--box ul {
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
    position: absolute;
    min-width: 70px;
    background: white;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
}

.language--box:hover ul {
    overflow: visible;
    opacity: 1;
    transition: .3s ease-in-out;
    margin-top: 10px;
}

.language--box ul::after {
    content: '';
    position: absolute;
    top: -10px;
    background: transparent;
    width: 100%;
    height: 10px;
    left: 0;
}

.language--box ul li {
    padding: 0;
    margin: 0;
    display: block;
}

.language--box ul li a {
    display: block;
    padding: 10px;
    font-size: 12px;
    font-weight: 500;
    color: black;
}


.userr--box {
    position: relative;
    z-index: 99;
}

.userr--box > a {
    display: block;
    font-size: 15px !important;
    font-weight: 500;
    color: white;
}

.userr--box a {
    width: initial !important;
    height: initial !important;
    margin-left: 0 !important;
}

.userr--box img {
    width: 40px;
    height: 25px;
    object-fit: cover;
}

.userr--box ul {
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
    position: absolute;
    min-width: 150px;
    background: white;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
}

.userr--box:hover ul {
    overflow: visible;
    opacity: 1;
    transition: .3s ease-in-out;
    margin-top: 10px;
}

.userr--box ul::after {
    content: '';
    position: absolute;
    top: -10px;
    background: transparent;
    width: 100%;
    height: 10px;
    left: 0;
}

.userr--box ul li {
    padding: 0;
    margin: 0;
    display: block;
    text-align: left;
}

.userr--box ul li a {
    display: block;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.lh-15 {
    line-height: 15px;
}


.product--box {
    overflow: hidden;
    border: 1px solid #eae7e8;
    border-radius: 6px;
    background: white;
    height: 100%;
    display: flex;
    align-content: space-between;
    justify-content: center;
    flex-wrap: wrap;
}

.product--box-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-main);
    transition: .3s ease-in-out;
    transform: scaleY(0);
    transform-origin: bottom center;
    z-index: 9;
}

.product--box:hover .product--box-detail-bg {
    transform: scaleY(1);
    transition: .3s ease-in-out;
}

.product--box:hover .product--box-detail-category a,
.product--box:hover .product--box-detail-title a,
.product--box:hover .product--box-detail-price span,
.product--box:hover .product--box-detail-price strike {
    color: white;
}

.product--box:hover .product--box-detail-button button {
    color: black;
    background: white;
}

.product--box-detail-category,
.product--box-detail-title,
.product--box-detail-price,
.product--box-detail-button {
    position: relative;
    z-index: 99;
}

.product--box-detail {
    text-align: center;
    position: relative;
    width: 100%;
}

.product--box-detail-category a {
    font-size: 14px;
    font-weight: 400;
    color: #757575;
}

.product--box-detail-title a {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-hover);
    height: 78px;
    display: block;
}

.product--box-detail-price {
    font-weight: 600;
}

.product--box-detail-price span {
    font-size: 16px;
    color: #757575;

}

.product--box-detail-price strike {
    font-size: 14px;
    color: #9A9A9A;
}

.product--slide-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.product-swiper-button-prev {
    position: absolute;
    left: -50px;
    cursor: pointer;
    outline: none;
}

.product-swiper-button-next {
    position: absolute;
    right: -50px;
    cursor: pointer;
    outline: none;
}

.button--primary {
    background: var(--color-main);
    color: white;
    height: 50px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    outline: none !important;
    font-size: 13px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.button--primary:hover {
    transition: .3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .box--content-title {
        font-size: 22px;
    }

    .mobile--bar {
        width: 100%;
        position: fixed;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        z-index: 99;
        border: 1px solid #e1e1e1;
        padding: 5px;
    }

    .mobile--bar ul {
        padding: 0;
        margin: 0;
        display: flex;
    }

    .mobile--bar ul li {
        list-style-type: none;
        padding: 0;
        margin: 0;
        width: calc(100% / 5);
        position: relative;
    }

    .mobile--bar ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        padding: 12px;
        line-height: 20px;
        color: var(--color-text-hover);
        transition: .3s ease-in-out;
    }

    .mobile--bar ul li a span {
        display: none;
    }

    .mobile--bar ul li a.active span {
        display: block;
        font-size: 11px;
        font-weight: 300;
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile--bar ul li a.active {
        color: var(--color-main);
        transition: .3s ease-in-out;

    }

    .mobile--bar ul li a b {
        position: absolute;
        width: 18px;
        height: 18px;
        top: 5px;
        right: 16px;
        border: 1px solid white;
        background: var(--color-text-hover);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 8px;
        font-weight: 400;
        line-height: 15px;
        transition: .3s ease-in-out;
    }

    .mobile--bar ul li a.active b {
        background: var(--color-main);
        transition: .3s ease-in-out;
    }

    .active--menu {
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        background: var(--color-main);
        color: white !important;
        width: 80%;
        border-radius: 8px;
    }


}
