/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/

html {
    cursor: url('https://cdn.custom-cursor.com/db/18291/32/luxury_arrow.cur'), auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #b5b5b5 transparent;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #b5b5b5;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

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

header, nav, section, article, aside, footer, hgroup {
    display: block;
}

* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #fff;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 0px;
}

ul {
    margin-bottom: 0px;
}

p {
    font-size: 14px;
    line-height: 25px;
    color: #2a2a2a;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

::selection {
    background: #2a2a2a;
    color: #fff;
}

::-moz-selection {
    background: #2a2a2a;
    color: #fff;
}

@media (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }

    .mobile-top-fix {
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .mobile-bottom-fix {
        margin-bottom: 30px;
    }

    .mobile-bottom-fix-big {
        margin-bottom: 60px;
    }
}

.main-border-button a {
    font-size: 13px;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 25px;
    display: inline-block;
    font-weight: 500;
    transition: all .3s;
}

    .main-border-button a:hover {
        background-color: #fff;
        color: #22521b;
    }

.main-white-button a {
    font-size: 13px;
    color: #2a2a2a;
    background-color: #fff;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 600;
    transition: all .3s;
}

    .main-white-button a:hover {
        opacity: 0.9;
    }

.main-text-button a {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    transition: all .3s;
}

    .main-text-button a:hover {
        opacity: 0.9;
    }

.section-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #22521B;
}

.section-heading span {
    font-size: 14px;
    color: #2a2a2a;
    font-style: italic;
    font-weight: 400;
}



/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
    border-bottom: none !important;
    background-color: #fff;
    height: 80px !important;
    position: fixed !important;
    top: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15) !important;
}

    .background-header .logo,
    .background-header .main-nav .nav li a {
        color: #1e1e1e !important;
    }

    .background-header .main-nav .nav li:hover a {
        color: #2a2a2a !important;
    }

    .background-header .nav li a.active {
        color: #2a2a2a !important;
    }

.header-area {
    border-bottom: 3px solid #22521b;
    box-shadow: none;
    background-color: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 100px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

    .header-area .main-nav {
        min-height: 80px;
        background: transparent;
    }

        .header-area .main-nav .logo {
            line-height: 100px;
            color: #fff;
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            float: left;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
        }

            .header-area .main-nav .logo img {
                max-width: 195px;
            }

.background-header .main-nav .logo {
    line-height: 75px;
}

.background-header .nav {
    margin-top: 20px !important;
}

.header-area .main-nav .nav {
    float: right;
    margin-top: 30px;
    margin-right: 0px;
    background-color: transparent;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 999;
}

    .header-area .main-nav .nav li {
        padding-left: 15px;
        padding-right: 15px;
    }

        .header-area .main-nav .nav li:last-child {
            padding-right: 0px;
        }

        .header-area .main-nav .nav li a {
            display: block;
            font-weight: 500;
            font-size: 15px;
            color: #2a2a2a;
            text-transform: capitalize;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            height: 40px;
            line-height: 40px;
            border: transparent;
            letter-spacing: 1px;
        }

        .header-area .main-nav .nav li a {
            color: #2a2a2a;
        }

            .header-area .main-nav .nav li:hover a,
            .header-area .main-nav .nav li a.active {
                color: #22521b !important;
            }

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
    color: #22521b !important;
    opacity: 1;
}

.header-area .main-nav .nav li.submenu {
    position: relative;
    padding-right: 30px;
}

    .header-area .main-nav .nav li.submenu:after {
        font-family: FontAwesome;
        content: "\f107";
        font-size: 12px;
        color: #2a2a2a;
        position: absolute;
        right: 18px;
        top: 12px;
    }

.background-header .main-nav .nav li.submenu:after {
    color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
    position: absolute;
    width: 200px;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
    top: 50px;
    opacity: 0;
    transform: translateY(+2em);
    visibility: hidden;
    z-index: -1;
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

    .header-area .main-nav .nav li.submenu ul li {
        margin-left: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

        .header-area .main-nav .nav li.submenu ul li a {
            opacity: 1;
            display: block;
            background: #f7f7f7;
            color: #2a2a2a !important;
            padding-left: 20px;
            height: 40px;
            line-height: 40px;
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            position: relative;
            font-size: 13px;
            font-weight: 400;
            border-bottom: 1px solid #eee;
        }

            .header-area .main-nav .nav li.submenu ul li a:hover {
                background: #fff;
                color: #aaa !important;
                padding-left: 25px;
            }

                .header-area .main-nav .nav li.submenu ul li a:hover:before {
                    width: 3px;
                }

.header-area .main-nav .nav li.submenu:hover ul {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 33px;
    width: 32px;
    height: 40px;
    text-indent: -9999em;
    z-index: 99;
    right: 40px;
    display: none;
}

.background-header .main-nav .menu-trigger {
    top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
    background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
    background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    content: "";
}

.header-area .main-nav .menu-trigger span {
    top: 16px;
}

    .header-area .main-nav .menu-trigger span:before {
        -moz-transform-origin: 33% 100%;
        -ms-transform-origin: 33% 100%;
        -webkit-transform-origin: 33% 100%;
        transform-origin: 33% 100%;
        top: -10px;
        z-index: 10;
    }

    .header-area .main-nav .menu-trigger span:after {
        -moz-transform-origin: 33% 0;
        -ms-transform-origin: 33% 0;
        -webkit-transform-origin: 33% 0;
        transform-origin: 33% 0;
        top: 10px;
    }

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
    background-color: transparent;
    width: 100%;
}

    .header-area .main-nav .menu-trigger.active span:before {
        -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
        -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
        -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
        transform: translateY(6px) translateX(1px) rotate(45deg);
        background-color: #1e1e1e;
    }

.background-header .main-nav .menu-trigger.active span:before {
    background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
    -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    transform: translateY(-6px) translateX(1px) rotate(-45deg);
    background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
    background-color: #1e1e1e;
}

.header-area.header-sticky {
    min-height: 80px;
}

.header-area .nav {
    margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
    color: #aaa;
}

@media (max-width: 1200px) {
    .header-area .main-nav .nav li {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-area .main-nav:before {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-area .main-nav .logo {
        color: #1e1e1e;
    }

    .header-area.header-sticky .nav li a:hover,
    .header-area.header-sticky .nav li a.active {
        color: #aaa !important;
        opacity: 1;
    }

    .header-area.header-sticky .nav li.search-icon a {
        width: 100%;
    }

    .header-area {
        background-color: #f7f7f7;
        padding: 0px 15px;
        height: 100px;
        box-shadow: none;
        text-align: center;
    }

        .header-area .container {
            padding: 0px;
        }

        .header-area .logo {
            margin-left: 30px;
        }

        .header-area .menu-trigger {
            display: block !important;
        }

        .header-area .main-nav {
            overflow: hidden;
        }

            .header-area .main-nav .nav {
                float: none;
                width: 100%;
                display: none;
                -webkit-transition: all 0s ease 0s;
                -moz-transition: all 0s ease 0s;
                -o-transition: all 0s ease 0s;
                transition: all 0s ease 0s;
                margin-left: 0px;
            }

                .header-area .main-nav .nav li:first-child {
                    border-top: 1px solid #eee;
                }

        .header-area.header-sticky .nav {
            margin-top: 100px !important;
        }

        .header-area .main-nav .nav li {
            width: 100%;
            background: #fff;
            border-bottom: 1px solid #eee;
            padding-left: 0px !important;
            padding-right: 0px !important;
        }

            .header-area .main-nav .nav li a {
                height: 50px !important;
                line-height: 50px !important;
                padding: 0px !important;
                border: none !important;
                background: #f7f7f7 !important;
                color: #191a20 !important;
            }

                .header-area .main-nav .nav li a:hover {
                    background: #eee !important;
                    color: #aaa !important;
                }

            .header-area .main-nav .nav li.submenu ul {
                position: relative;
                visibility: inherit;
                opacity: 1;
                z-index: 1;
                transform: translateY(0%);
                transition-delay: 0s, 0s, 0.3s;
                top: 0px;
                width: 100%;
                box-shadow: none;
                height: 0px;
            }

                .header-area .main-nav .nav li.submenu ul li a {
                    font-size: 12px;
                    font-weight: 400;
                }

                    .header-area .main-nav .nav li.submenu ul li a:hover:before {
                        width: 0px;
                    }

                .header-area .main-nav .nav li.submenu ul.active {
                    height: auto !important;
                }

            .header-area .main-nav .nav li.submenu:after {
                color: #3B566E;
                right: 25px;
                font-size: 14px;
                top: 15px;
            }

            .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
                height: 0px;
            }
}

@media (min-width: 767px) {
    .header-area .main-nav .nav {
        display: flex !important;
    }
}


/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
    padding-top: 160px;
    padding-bottom: 30px;
}

    .main-banner .left-content .thumb img {
        width: 100%;
        overflow: hidden;
        border-radius: 10px;
    }

    .main-banner .left-content .inner-content {
        position: absolute;
        left: 100px;
        top: 50%;
        transform: translateY(-50%);
    }

        .main-banner .left-content .inner-content h4 {
            color: #fff;
            margin-top: -10px;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .main-banner .left-content .inner-content span {
            font-size: 16px;
            color: #fff;
            font-weight: 400;
            font-style: italic;
            display: block;
            margin-bottom: 30px;
        }

    .main-banner .right-content .right-first-image {
        margin-bottom: 28.5px;
        opacity: 0;
        animation: fadeSlideUp 1s ease forwards;
    }

        .main-banner .right-content .right-first-image .thumb {
            position: relative;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

            .main-banner .right-content .right-first-image .thumb img {
                width: 100%;
                overflow: hidden;
            }

            .main-banner .right-content .right-first-image .thumb .inner-content {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 100%;
                text-align: center;
            }

                .main-banner .right-content .right-first-image .thumb .inner-content h4 {
                    color: #fff;
                    font-size: 15px;
                    font-weight: 400;
                    margin-bottom: 15px;
                }

                .main-banner .right-content .right-first-image .thumb .inner-content span {
                    font-size: 16px;
                    color: #fff;
                    font-style: italic;
                }

            .main-banner .right-content .right-first-image .thumb .hover-content {
                position: absolute;
                top: 15px;
                right: 15px;
                left: 15px;
                bottom: 15px;
                text-align: center;
                background-color: rgba(42,42,42,.97);
                opacity: 0;
                visibility: hidden;
                transition: all 0.5s;
            }

            .main-banner .right-content .right-first-image .thumb:hover .hover-content {
                opacity: 1;
                visibility: visible;
            }

            .main-banner .right-content .right-first-image .thumb .hover-content .inner {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 100%;
            }

            .main-banner .right-content .right-first-image .thumb .hover-content h4 {
                color: #fff;
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 15px;
            }

            .main-banner .right-content .right-first-image .thumb .hover-content p {
                color: #fff;
                padding: 0px 20px;
                margin-bottom: 20px;
            }

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/*
---------------------------------------------
Section01
---------------------------------------------
*/

#section01 {
    padding-top: 90px;
    padding-bottom: 90px;
}

    #section01 .section-heading {
        margin-bottom: 60px;
    }

    #section01 .item .down-content {
        padding-top: 30px;
        position: relative;
        z-index: 3;
        background-color: #fff;
    }

        #section01 .item .down-content h4 {
            font-size: 20px;
            color: #22521b;
            font-weight: 500;
            margin-bottom: 8px;
        }

        #section01 .item .down-content span {
            font-size: 18px;
            color: #2a2a2a;
            font-weight: 500;
            display: block;
        }

        #section01 .item .down-content ul.stars {
            position: absolute;
            right: 0;
            top: 30px;
        }

            #section01 .item .down-content ul.stars li {
                display: inline;
                font-size: 13px;
            }

    #section01 .item .thumb .hover-content {
        position: absolute;
        bottom: 10px;
        right: 10px;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    #section01 .item .thumb:hover .hover-content {
        opacity: 1;
    }

    #section01 .item .thumb {
        position: relative;
    }

        #section01 .item .thumb .hover-content ul li {
            display: inline-block;
        }

            #section01 .item .thumb .hover-content ul li a {
                background: #25D366;
                color: #fff;
                width: 38px;
                height: 38px;
                border-radius: 50%;
                text-align: center;
                line-height: 38px;
                font-size: 18px;
                display: inline-block;
                box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            }


    #section01 .owl-nav {
        text-align: center;
        position: absolute;
        width: 100%;
        top: 40%;
        transform: translateY(-25px);
    }

    #section01 .owl-dots {
        display: none;
    }

    #section01 .owl-nav .owl-prev {
        position: absolute;
        left: -80px;
        outline: none;
    }

        #section01 .owl-nav .owl-prev span,
        #section01 .owl-nav .owl-next span {
            opacity: 0;
        }

        #section01 .owl-nav .owl-prev:before {
            display: inline-block;
            font-family: 'FontAwesome';
            color: #22521b;
            font-size: 25px;
            font-weight: 700;
            content: '\f104';
            width: 50px;
            height: 50px;
            background-color: transparent;
            line-height: 48px;
            border: 1px solid #22521b;
            border-radius: 10px;
        }

    #section01 .owl-nav .owl-prev {
        opacity: 0.75;
        transition: all .5s;
    }

        #section01 .owl-nav .owl-prev:hover {
            opacity: 1;
        }

    #section01 .owl-nav .owl-next {
        opacity: 0.75;
        transition: all .5s;
    }

        #section01 .owl-nav .owl-next:hover {
            opacity: 1;
        }

    #section01 .owl-nav .owl-next {
        outline: none;
        position: absolute;
        right: -85px;
    }

        #section01 .owl-nav .owl-next:before {
            display: inline-block;
            font-family: 'FontAwesome';
            color: #22521b;
            font-size: 25px;
            font-weight: 700;
            content: '\f105';
            width: 50px;
            height: 50px;
            background-color: transparent;
            line-height: 48px;
            border: 1px solid #22521b;
            border-radius: 10px;
        }


    #section01 .item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 12px;
        overflow: hidden;
        background-color: #fff;
        padding: 15px;
    }

        #section01 .item:hover {
            transform: translateY(-10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.11);
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;
        }

/*
---------------------------------------------
Section02
---------------------------------------------
*/

#section02 {
    background-color: #f9fdf9;
    padding-top: 90px;
    padding-bottom: 90px;
}

    #section02 .section-heading {
        margin-bottom: 60px;
    }

    #section02 .item .down-content {
        padding-top: 30px;
        position: relative;
        z-index: 3;
        background-color: #fff;
    }

        #section02 .item .down-content h4 {
            font-size: 20px;
            color: #22521b;
            font-weight: 500;
            margin-bottom: 8px;
        }

        #section02 .item .down-content span {
            font-size: 18px;
            color: #2a2a2a;
            font-weight: 500;
            display: block;
        }

        #section02 .item .down-content ul.stars {
            position: absolute;
            right: 0;
            top: 30px;
        }

            #section02 .item .down-content ul.stars li {
                display: inline;
                font-size: 13px;
            }

    #section02 .item .thumb .hover-content {
        position: absolute;
        z-index: 2;
        text-align: center;
        bottom: -60px;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all .5s;
    }

    #section02 .item .thumb:hover .hover-content {
        bottom: 30px;
        opacity: 1;
        visibility: visible;
    }

    #section02 .item .thumb {
        position: relative;
    }

        #section02 .item .thumb .hover-content ul li {
            display: inline;
            margin: 0px 10px;
        }

            #section02 .item .thumb .hover-content ul li a {
                width: 50px;
                height: 50px;
                text-align: center;
                line-height: 50px;
                display: inline-block;
                color: #22521b;
                background-color: #fff;
            }


    #section02 .owl-nav {
        text-align: center;
        position: absolute;
        width: 100%;
        top: 40%;
        transform: translateY(-25px);
    }

    #section02 .owl-dots {
        display: none;
    }

    #section02 .owl-nav .owl-prev {
        position: absolute;
        left: -80px;
        outline: none;
    }

        #section02 .owl-nav .owl-prev span,
        #section02 .owl-nav .owl-next span {
            opacity: 0;
        }

        #section02 .owl-nav .owl-prev:before {
            display: inline-block;
            font-family: 'FontAwesome';
            color: #22521b;
            font-size: 25px;
            font-weight: 700;
            content: '\f104';
            width: 50px;
            height: 50px;
            background-color: transparent;
            line-height: 48px;
            border: 1px solid #22521b;
            border-radius: 10px;
        }

    #section02 .owl-nav .owl-prev {
        opacity: 0.75;
        transition: all .5s;
    }

        #section02 .owl-nav .owl-prev:hover {
            opacity: 1;
        }

    #section02 .owl-nav .owl-next {
        opacity: 0.75;
        transition: all .5s;
    }

        #section02 .owl-nav .owl-next:hover {
            opacity: 1;
        }

    #section02 .owl-nav .owl-next {
        outline: none;
        position: absolute;
        right: -85px;
    }

        #section02 .owl-nav .owl-next:before {
            display: inline-block;
            font-family: 'FontAwesome';
            color: #22521b;
            font-size: 25px;
            font-weight: 700;
            content: '\f105';
            width: 50px;
            height: 50px;
            background-color: transparent;
            line-height: 48px;
            border: 1px solid #22521b;
            border-radius: 10px;
        }

    #section02 .item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 12px;
        overflow: hidden;
        background-color: #fff;
        padding: 15px;
    }

        #section02 .item:hover {
            transform: translateY(-10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.11);
        }

/*
---------------------------------------------
Kids
---------------------------------------------
*/

#kids {
    padding-top: 90px;
    padding-bottom: 90px;
}

    #kids .section-heading {
        margin-bottom: 60px;
    }

    #kids .item .down-content {
        padding-top: 30px;
        position: relative;
        z-index: 3;
        background-color: #fff;
    }

        #kids .item .down-content h4 {
            font-size: 20px;
            color: #22521b;
            font-weight: 500;
            margin-bottom: 8px;
        }

        #kids .item .down-content span {
            font-size: 18px;
            color: #a1a1a1;
            font-weight: 500;
            display: block;
        }

        #kids .item .down-content ul.stars {
            position: absolute;
            right: 0;
            top: 30px;
        }

            #kids .item .down-content ul.stars li {
                display: inline;
                font-size: 13px;
            }

    #kids .item .thumb .hover-content {
        position: absolute;
        z-index: 2;
        text-align: center;
        bottom: -60px;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all .5s;
    }

    #kids .item .thumb:hover .hover-content {
        bottom: 30px;
        opacity: 1;
        visibility: visible;
    }

    #kids .item .thumb {
        position: relative;
    }

        #kids .item .thumb .hover-content ul li {
            display: inline;
            margin: 0px 10px;
        }

            #kids .item .thumb .hover-content ul li a {
                width: 50px;
                height: 50px;
                text-align: center;
                line-height: 50px;
                display: inline-block;
                color: #2a2a2a;
                background-color: #fff;
            }


    #kids .owl-nav {
        text-align: center;
        position: absolute;
        width: 100%;
        top: 40%;
        transform: translateY(-25px);
    }

    #kids .owl-dots {
        display: none;
    }

    #kids .owl-nav .owl-prev {
        position: absolute;
        left: -80px;
        outline: none;
    }

        #kids .owl-nav .owl-prev span,
        #kids .owl-nav .owl-next span {
            opacity: 0;
        }

        #kids .owl-nav .owl-prev:before {
            display: inline-block;
            font-family: 'FontAwesome';
            color: #2a2a2a;
            font-size: 25px;
            font-weight: 700;
            content: '\f104';
            width: 50px;
            height: 50px;
            background-color: transparent;
            line-height: 48px;
            border: 1px solid #2a2a2a;
        }

    #kids .owl-nav .owl-prev {
        opacity: 0.75;
        transition: all .5s;
    }

        #kids .owl-nav .owl-prev:hover {
            opacity: 1;
        }

    #kids .owl-nav .owl-next {
        opacity: 0.75;
        transition: all .5s;
    }

        #kids .owl-nav .owl-next:hover {
            opacity: 1;
        }

    #kids .owl-nav .owl-next {
        outline: none;
        position: absolute;
        right: -85px;
    }

        #kids .owl-nav .owl-next:before {
            display: inline-block;
            font-family: 'FontAwesome';
            color: #2a2a2a;
            font-size: 25px;
            font-weight: 700;
            content: '\f105';
            width: 50px;
            height: 50px;
            background-color: transparent;
            line-height: 48px;
            border: 1px solid #2a2a2a;
        }


/*
---------------------------------------------
Section03
---------------------------------------------
*/

#section03 {
    padding-top: 90px;
    padding-bottom: 90px;
}

    #section03 .left-content {
        margin-right: 30px;
    }

        #section03 .left-content h2 {
            font-size: 34px;
            font-weight: 700;
            color: #22521b;
        }

        #section03 .left-content span {
            font-size: 14px;
            color: #2a2a2a;
            font-weight: 500;
            display: block;
            margin-top: 25px;
        }

        #section03 .left-content .quote {
            margin-top: 25px;
        }

            #section03 .left-content .quote i {
                float: left;
                font-size: 32px;
                margin-right: 15px;
                margin-top: 10px;
                color: #22521b;
            }

            #section03 .left-content .quote p {
                font-style: italic;
                color: #22521b;
                font-weight: 500;
            }

        #section03 .left-content p {
            font-size: 14px;
            color: #2a2a2a;
            font-weight: 500;
            display: block;
            margin-top: 25px;
        }

        #section03 .left-content .main-border-button a {
            color: #22521b;
            border-color: #22521b;
            margin-top: 35px;
            border-radius: 10px;
        }

            #section03 .left-content .main-border-button a:hover {
                background-color: #22521b;
                color: #fff;
            }

    #section03 img {
        width: 100%;
        overflow: hidden;
    }

    #section03 .leather {
        margin-bottom: 30px;
    }

    #section03 .first-image {
        margin-bottom: 30px;
    }

    #section03 .leather,
    #section03 .types {
        min-height: 255px;
        background-color: #f7fff6;
        text-align: center;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        #section03 .leather:hover,
        #section03 .types:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }

    #section03 .first-image img,
    #section03 .second-image img {
        border-radius: 10px;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

        #section03 .first-image img:hover,
        #section03 .second-image img:hover {
            transform: scale(1.03);
            filter: brightness(1.05);
        }

    #section03 .leather h4,
    #section03 .types h4 {
        font-size: 24px;
        font-weight: 700;
        color: #22521B;
        padding-top: 90px;
        margin-bottom: 5px;
    }

    #section03 .leather span,
    #section03 .types span {
        font-size: 14px;
        font-style: italic;
        color: #2a2a2a;
        font-weight: 500;
    }

/* 
---------------------------------------------
Instagram
--------------------------------------------- 
*/

#instagram-area {
    padding: 90px 0;
    background-color: #f9fdf9;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #22521b;
}

.section-subtitle {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    padding: 0 15px;
}

.instagram-box-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.iframe-scroll-wrapper {
    width: 100%;
    max-width: 850px;
    height: 520px;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

    .iframe-scroll-wrapper iframe {
        width: 100%;
        height: 800px;
        border: none;
        border-radius: 16px;
    }

.btn-instagram {
    display: inline-block;
    background-color: #22521b;
    color: #fff;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-instagram:hover {
        background-color: #1a3e14;
        color: #fff;
    }

/* Mobil uyum için medya sorgusu */
@media screen and (max-width: 768px) {

    .section-heading h2, .section-title {
        font-size: 24px;
    }

    .section-heading span, .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .btn-instagram {
        font-size: 14px;
        padding: 10px 20px;
    }

    .iframe-scroll-wrapper {
        height: 400px;
        padding: 0 10px;
    }

    .main-banner .left-content .inner-content h4,
    #section03 .left-content h2 {
        font-size: 24px !important;
    }

    #section03 .left-content span,
    #section03 .left-content p {
        font-size: 14px !important;
        padding-right: 0;
    }

    #section03 .leather,
    #section03 .types {
        min-height: auto;
        padding: 40px 10px;
    }

        #section03 .leather h4,
        #section03 .types h4 {
            font-size: 20px;
            padding-top: 0;
        }

    .main-banner .left-content .inner-content {
        left: 30px;
        top: 40%;
        transform: translateY(-40%);
    }

    .main-banner .right-content .thumb .inner-content h4 {
        font-size: 20px;
    }

    .main-banner .right-content .thumb .inner-content span {
        font-size: 14px;
    }

    #section01 .item .down-content h4,
    #section02 .item .down-content h4 {
        font-size: 18px;
    }

    #section01 .item .down-content span,
    #section02 .item .down-content span {
        font-size: 14px;
    }

    #section01 .owl-nav .owl-prev,
    #section01 .owl-nav .owl-next,
    #section02 .owl-nav .owl-prev,
    #section02 .owl-nav .owl-next {
        display: none !important;
    }


    .iframe-scroll-wrapper {
        height: 400px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .btn-instagram {
        font-size: 14px;
        padding: 10px 20px;
    }

    .iframe-scroll-wrapper iframe {
        height: 450px;
        border: none;
        border-radius: 16px;
    }
}




/* 
---------------------------------------------
Section04
--------------------------------------------- 
*/

.section04 {
    background-color: #ffffff;
    padding: 60px 0;
}

    .section04 .section-heading {
        margin-bottom: 20px;
    }

        .section04 .section-heading h2 {
            line-height: 42px;
            font-size: 28px;
            font-weight: 700;
            color: #22521b;
        }

        .section04 .section-heading span {
            font-size: 16px;
            font-style: italic;
            color: #555;
        }

    .section04 .info-text {
        font-size: 15px;
        font-weight: 400;
        color: #2a2a2a;
        margin-top: 20px;
        line-height: 1.7;
    }

.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-whatsapp:hover {
        background-color: #1ebe5d;
        color: white;
    }

.section04 ul li {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #22521b;
}

    .section04 ul li span,
    .section04 ul li span a {
        font-size: 14px;
        font-weight: 400;
        color: #2a2a2a;
    }

@media screen and (max-width: 768px) {
    .section04 .section-heading h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .section04 .info-text {
        font-size: 14px;
    }

    .btn-whatsapp {
        font-size: 14px;
        padding: 10px 20px;
    }

    .section04 ul li {
        font-size: 15px;
    }

        .section04 ul li span {
            font-size: 13px;
        }
}


/* ---------------------------------------------
   Usage Section Styles
--------------------------------------------- */

.usage-section {
    padding: 90px 0;
    background-color: #f9fdf9;
}

.usage-title {
    font-size: 28px;
    font-weight: 700;
    color: #22521b;
    margin-bottom: 20px;
}

.usage-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 0 15px;
}

.usage-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #2a2a2a;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .usage-item i {
        font-size: 20px;
        color: #22521b;
        flex-shrink: 0;
    }

    .usage-item:hover {
        background-color: #e8f7e7;
        transform: translateY(-4px);
    }

@media screen and (max-width: 768px) {
    .usage-title {
        font-size: 22px;
    }

    .usage-subtitle {
        font-size: 14px;
    }

    .usage-item {
        font-size: 15px;
        padding: 16px;
    }

        .usage-item i {
            font-size: 18px;
        }
}



/* Referanslar Bölümü */


.client-logos {
    padding: 60px 0;
    background-color: #f9fdf9;
}

    .client-logos .section-title {
        font-size: 24px;
        font-weight: 700;
        color: #22521b;
        margin-bottom: 30px;
    }

.logo-marquee {
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.logo-track {
    display: flex;
    width: fit-content;
    animation: scroll-logos 70s linear infinite;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-loop {
    display: flex;
    gap: 60px;
    align-items: center;
}

.logo-track img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1) invert(0.9);
    transition: filter 0.3s ease;
}

    .logo-track img:hover {
        filter: grayscale(0%) brightness(1) invert(0);
    }

.white-logo:hover {
    filter: brightness(0%) grayscale(100%);
}

.logo-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
}

.logo-fade-left {
    left: 0;
    background: linear-gradient(to right, #f9fdf9 0%, transparent 100%);
}

.logo-fade-right {
    right: 0;
    background: linear-gradient(to left, #f9fdf9 0%, transparent 100%);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .logo-loop {
        gap: 40px;
    }

    .logo-track img {
        height: 30px;
    }

    .logo-fade {
        width: 40px;
    }

    .logo-marquee {
        max-width: 250px;
    }
}






/* 
---------------------------------------------
footer
--------------------------------------------- 
*/

footer {
    background-color: #22521B;
    padding: 60px 0 30px;
}

    footer h5 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    footer ul li a {
        font-size: 14px;
        color: #eee;
        transition: all .3s;
        display: block;
        margin-bottom: 8px;
    }

        footer ul li a:hover {
            color: #d4d4d4;
        }

    footer .fa-brands {
        font-size: 20px;
        transition: color 0.3s;
    }

        footer .fa-brands:hover {
            color: #ccc;
        }


/* 
---------------------------------------------
Single Product Page
--------------------------------------------- 
*/

#product {
    margin-top: 80px;
}

    #product .left-images img {
        width: 100%;
        overflow: hidden;
        margin-bottom: 30px;
    }

    #product .right-content {
        position: relative;
        z-index: 3;
        background-color: #fff;
    }

        #product .right-content h4 {
            font-size: 22px;
            color: #2a2a2a;
            font-weight: 700;
            margin-bottom: 0px;
        }

        #product .right-content span.price {
            font-size: 18px;
            color: #a1a1a1;
            font-weight: 500;
            display: block;
            margin-top: 5px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        #product .right-content ul.stars {
            position: absolute;
            right: 0;
            top: 0;
        }

            #product .right-content ul.stars li {
                display: inline;
                font-size: 13px;
            }

        #product .right-content span {
            font-size: 14px;
            color: #aaaaaa;
            font-weight: 500;
            display: block;
            margin-top: 25px;
        }

        #product .right-content .quote {
            margin-top: 25px;
        }

            #product .right-content .quote i {
                float: left;
                font-size: 32px;
                margin-right: 15px;
                margin-top: 10px;
            }

            #product .right-content .quote p {
                font-style: italic;
                color: #2a2a2a;
                font-weight: 500;
            }

        #product .right-content p {
            font-size: 14px;
            color: #aaaaaa;
            font-weight: 500;
            display: block;
            margin-top: 25px;
        }

.quantity-content {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .quantity-content .left-content {
        float: left;
        margin-right: 30px;
    }

    .quantity-content .right-content {
        text-align: right;
    }

    .quantity-content .left-content h6 {
        padding-top: 7px;
        font-size: 20px;
        font-weight: 700;
        color: #aaa;
        position: relative;
        z-index: 11;
    }

.total h4 {
    float: left;
    font-size: 20px;
    margin-top: 10px;
    color: #aaa !important;
}

.total .main-border-button {
    text-align: right;
}

    .total .main-border-button a {
        border-color: #2a2a2a;
        color: #2a2a2a;
    }

        .total .main-border-button a:hover {
            color: #fff;
            background-color: #22521b;
        }

.quantity {
    display: inline-block;
}

    .quantity .input-text.qty {
        width: 35px;
        height: 39px;
        padding: 0 5px;
        text-align: center;
        background-color: transparent;
        border: 1px solid #efefef;
    }

    .quantity.buttons_added {
        text-align: left;
        position: relative;
        white-space: nowrap;
        vertical-align: top;
    }

        .quantity.buttons_added input {
            display: inline-block;
            margin: 0;
            vertical-align: top;
            box-shadow: none;
        }

        .quantity.buttons_added .minus,
        .quantity.buttons_added .plus {
            padding: 7px 10px 8px;
            height: 39px;
            background-color: #ffffff;
            border: 1px solid #efefef;
            cursor: pointer;
        }

        .quantity.buttons_added .minus {
            border-right: 0;
        }

        .quantity.buttons_added .plus {
            border-left: 0;
        }

            .quantity.buttons_added .minus:hover,
            .quantity.buttons_added .plus:hover {
                background: #eeeeee;
            }

    .quantity input::-webkit-outer-spin-button,
    .quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
    }

    .quantity.buttons_added .minus:focus,
    .quantity.buttons_added .plus:focus {
        outline: none;
    }


/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1200px) {
    .main-banner .right-content .right-first-image .thumb .hover-content p {
        display: none;
    }
}

@media (max-width: 992px) {
    .main-banner .right-content .right-first-image .thumb .hover-content p {
        display: block;
    }

    .header-area .main-nav .nav li.submenu:after {
        right: 3px;
    }

    .header-area .main-nav .nav li.submenu {
        padding-right: 15px;
    }

    .header-area .main-nav .nav li {
        padding-right: 5px;
        padding-left: 5px;
    }

        .header-area .main-nav .nav li a {
            font-size: 14px;
            letter-spacing: 0px;
        }

    .main-banner .left-content {
        margin-bottom: 30px;
    }

    #section03 .left-content {
        margin-bottom: 30px;
    }

    #section03 .right-content .types {
        margin-top: 30px;
    }

    .section04 input {
        margin-bottom: 15px;
    }

    .section04 form {
        text-align: center;
        margin-bottom: 30px;
    }

    .about-us .right-content {
        margin-left: 0px;
        margin-top: 30px;
    }

    .our-team .team-item {
        margin-bottom: 30px;
    }

    .our-services .service-item {
        margin-bottom: 30px;
    }

    .contact-us #map {
        margin-right: 0px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .main-banner .left-content .thumb .inner-content {
        left: 50%;
        top: 47.5%;
        transform: translate(-50%,-50%);
        text-align: center;
    }

    .section04 form button {
        width: 100%;
    }

    footer {
        text-align: center;
    }

        footer h4 {
            margin-top: 30px;
        }
}





#preloader {
    position: fixed;
    z-index: 99999;
    background-color: #f9fdf9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #e5f2e5;
    border-top: 6px solid #22521b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

