@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* font-family: 'Poppins', sans-serif; */
:root {
    --primary-color: #237246;
    --secondary-color: #f0b52d;
}


* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Manrope", sans-serif;
}

a {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none !important;
    outline: none !important;
    color: var(--primary-color);
}

a:active {
    background-color: transparent;
}

ul {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style-type: none;
}

img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

p {
    color: #444;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.auto-container {
    position: static;
    max-width: 1700px !important;
    padding: 0px 15px;
    margin: 0 auto;
}

.sec-title {
    text-align: center;
    margin-bottom: 20px;
}
.sec-title.left {
    text-align: left
}

.sec-title h2 {
    font-weight: 800;
    font-size: 42px;
    letter-spacing: 0;
    color: var(--primary-color);
    text-transform: none;
    font-style: normal;
}
.sec-title span {
    margin-bottom: 10px;
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 4.3px;
    color: #2b2a29;
    text-transform: capitalize;
    font-style: normal;
}

.sec-title p {
    font-size: 18px;
    color: #6d7a8c;
    font-weight: 400;
}




.readon-btn {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 13px;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.readon-btn:hover {
    color: var(--primary-color);
}
.readon-btn span {
    position: relative;
}
.readon-btn span::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    z-index: 1;
}
.readon-btn:hover span:before {
    width: 100%;
}
.readon-btn span:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #000;
}

.readon-btn.arrow-right::after {
    content: "\f061";
    font-family: FontAwesome;
    margin-left: 10px;
    font-size: 14px;
    vertical-align: middle;
}



.header {
    /* position: absolute; */
    width: 100%;
    z-index: 9;
}




/* -----------------
Navbar
--------------------*/

.navbar {
    padding: 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: #fff;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 17px 0 #00000024;
}

.main-header .navbar {
    background: rgb(0 0 0 / 68%);
}

.fixed-header {
    background-color: #fff !important;
    width: 100%;
    z-index: 999;
    position: fixed;
    top: -1px;
    -webkit-box-shadow: 0 -2px 18px 0 #0000001c;
            box-shadow: 0 -2px 18px 0 #0000001c;
}

.navbar-brand {
    width: 260px;
}

.navbar-brand.dark {
    display: none;
}

.fixed-header .navbar-brand.dark {
    display: block;
}
.fixed-header .navbar-brand.light {
    display: none;
}


/* Reset Navbar */
.sm-clean {
    background: transparent !important;
}
.navbar .navbar-collapse {
    justify-content: space-between;
}

.navbar .contact-info .call-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 25px 0;
    z-index: 5;
}
.navbar .contact-info .call-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #F7F9FA;
    border-radius: 50%;
    font-size: 15px;
    color: var(--primary-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .contact-info .call-box .content {
    margin-left: 10px;
    top: 3px;
    position: relative;
}
.navbar .contact-info .call-box .content p {
    font-size: 12px;
    line-height: 12px;
    color: #000;
    margin-bottom: 4px;
}
.main-header .navbar .contact-info .call-box .content p {
    color: #fff;
}
.main-header .fixed-header .contact-info .call-box .content p {
    color: #000;
}
.navbar .contact-info .call-box .content h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
}
.navbar .contact-info .call-box .content h5 a {
    font-size: 20px;
    font-weight: 600;
}
.navbar .contact-info .btn-box {
    position: relative;
    display: block;
    margin-left: 30px;
    padding: 19px 0;
}
.navbar .contact-info .btn-box .theme-btn {
    background-color: #fff;
    color: var(--primary-color);
}
.theme-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 33px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.5s linear;
    z-index: 1;
}







/* New Navbar */
#main-nav {
    margin-left: auto;
}

.navbar .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

#main-nav #main-menu>li {

    padding: 0 20px 0 0;

    position: relative;

}

#main-nav #main-menu>li.dropdown>a {

    margin: 0 10px 0 0;

}

#main-nav #main-menu>li>a {

    color: #000;

    font-size: 16px;

    font-weight: 500;

    line-height: 22px;

    padding: 40px 0;

    position: relative;

}

.main-header #main-nav #main-menu>li>a {
    color: #fff;
}


#main-nav #main-menu > li > a.active, 
#main-nav #main-menu > li:hover > a, 
#main-nav #main-menu > .dropdown.active > a {
    color: var(--primary-color);
}
#main-nav #main-menu > .dropdown.active > a .sub-arrow,
#main-nav #main-menu > .dropdown:hover > a .sub-arrow {
    border-color: var(--primary-color) transparent transparent transparent;
}

.main-header #main-nav #main-menu > li > a.active, 
.main-header #main-nav #main-menu > li > a:hover, 
.main-header #main-nav #main-menu > .dropdown.active > a {
    color: #47d9d4;
}

.fixed-header #main-nav #main-menu>li>a {
    color: #000;
}


.fixed-header #main-nav #main-menu > li > a.active, 
.fixed-header #main-nav #main-menu > li > a:hover, 
.fixed-header #main-nav #main-menu > .dropdown.active > a {
    color: var(--primary-color);
}
.main-header .fixed-header #main-nav #main-menu > li > a .sub-arrow {
    border-color: #000 transparent transparent transparent;
}

#main-nav #main-menu>li>a.active:after {

    transform: scale(1);

}

#main-nav #main-menu>li>a span {

    position: relative;

}

#main-nav #main-menu>li>a span::after {

    content: "";

    display: block;

    position: absolute;

    left: 0;

    width: 100%;

    bottom: 0;

    height: 1px;

    background-color: var(--secondary-color);

    transform: scaleX(0);

    transform-origin: right;

    transition: 300ms ease transform;

}

#main-nav #main-menu>li>a.active span:after,

#main-nav #main-menu>li>a span:hover:after {

    transform: scaleX(1);

    transform-origin: left;

}

#main-nav #main-menu>li:hover>a.active:after {

    transform: scale(0);

    opacity: 0;

}

#main-nav #main-menu>li>a .sub-arrow {

    border-color: #5e5e5e transparent transparent transparent;

    right: -5px;

    display: inline-block;

}


/* #main-nav #main-menu .dropdown > a::after {
    content: "";
    border-width: 4px;

    border-style: solid dashed dashed dashed;

    border-color: #5e5e5e transparent transparent transparent;

    right: -5px;

    display: inline-block;

    position: relative;

} */



#main-nav #main-menu>li>ul>li>ul {

    border-radius: 0 !important;

    border: none;

    left: 6px !important;

}

@media screen and (min-width: 768px) {

    #main-nav #main-menu>li>ul::before,

    #main-nav #main-menu>li>ul::after {

        display: none;

    }

    #main-nav #main-menu>li>ul {

        left: 0px !important;

        margin-top: 0 !important;

        width: 280px;

        opacity: 0;

        transform: translateY(50px);

        transition: all 300ms ease;

        display: block !important;

        visibility: hidden;

        padding: 0;

        border: none;

        box-shadow: 0 3px 30px rgba(0, 0, 0, .08);

        border-radius: 0px !important;

    }



    #main-nav #main-menu>li>ul li ul {
        width: 300px;
        box-shadow: 0 3px 30px rgba(0, 0, 0, .08);

        border-radius: 0px !important;

        padding: 0;

    }

}

#main-nav #main-menu>li:hover>ul {

    opacity: 1;

    visibility: visible;

    transform: translateY(0px);

}

#main-nav #main-menu>li>ul li a {

    color: #000;

    transition: 300ms ease color;

    position: relative;

    margin: 0 0px;

    padding: 15px 30px;

    font-size: 16px;

    font-weight: 500;

    display: block;
    border-radius: 0px !important;
    border-bottom: 1px solid rgba(0, 0, 0, .10) !important;

    background-color: transparent;

    -ms-transition: all .45s ease;

    -o-transition: all .45s ease;

    -moz-transition: all .45s ease;

    -webkit-transition: all .45s ease;

    transition: all .45s ease;

}
#main-nav #main-menu>li>ul li a:before {
    position: absolute;
    content: '';
    left: 18px;
    top: 24px;
    width: 0;
    height: 2px;
    background-color: transparent;
    -webkit-transition: all .500s ease-in-out;
    -o-transition: all .500s ease-in-out;
    transition: all .500s ease-in-out;
}
#main-nav #main-menu>li>ul li:hover a:before {
    background-color: rgba(255, 255, 255, .50);
    width: 10px;
}

#main-nav #main-menu>li>ul li a:hover {
    color: #fff;
    padding-left: 40px;
    background-color: var(--primary-color);
}

#main-nav #main-menu > li > a .sub-arrow {
    border-color: #000 transparent transparent transparent;
    right: -5px;
    display: inline-block;
}

.main-header #main-nav #main-menu > li > a .sub-arrow {
    border-color: #fff transparent transparent transparent;
}

/* #main-nav #main-menu>li>ul li a::before {

    content: "";

    position: absolute;

    left: 0px;

    top: 50%;

    transform: translateY(-50%);

    width: 10px;

    height: 2px;

    opacity: 0;

    visibility: hidden;

    background: rgb(0, 93, 224);

    transition: 0.3s linear;

}

#main-nav #main-menu>li>ul li:hover a::before {

    opacity: 1;

    visibility: visible;

    left: 15px;

} */






/* -----------------
Banner Area
--------------------*/

.banner-slider {
    position: relative;
    z-index: 2;
}
.gallery-slider {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
    position: relative;
}
.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
}
.banner-slider .swiper-slide {
    width: auto;
    display: -ms-grid;
    display: grid;
    position: relative;
}

.banner-slider .swiper-slide .slider-image {
    position: relative;
    z-index: -1;
    -webkit-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear;
}
.banner-slider .swiper-slide-active .slider-image {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}
/* .banner-slider .swiper-slide .slider-image::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #00000078;
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 2;
} */
.banner-slider .swiper-slide .slider-info {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    /* left: 0; */
    width: 100%;
    /* max-width: 50%; */
    /* height: 100%; */
    /* display: flex; */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 150px;
    padding-bottom: 100px;
    margin: auto 0 auto auto;
}

.banner-slider .swiper-slide .slider-info .icon-wrapper {
    position: relative;
    bottom: -180px;
    left: -20px;
    -webkit-transform: scaleX(-1) rotate(30deg);
    -ms-transform: scaleX(-1) rotate(30deg);
        transform: scaleX(-1) rotate(30deg);
    margin-bottom: 15px;
}

.banner-slider .swiper-slide .slider-info .icon-wrapper .icon > i {
    font-size: clamp(31.25rem, 27.9141rem + 18.4049vw, 50rem);
    line-height: 0;
    color: #fff;
}
.banner-slider .swiper-slide .slider-info .icon-wrapper .icon > i svg path {
    color: var(--secondary-color);
    -webkit-animation: mouse-move-anim 0.6s linear infinite alternate;
            animation: mouse-move-anim 0.6s linear infinite alternate;
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
}

@-webkit-keyframes mouse-move-anim {
    100% {
        -webkit-transform: translate(5px);
                transform: translate(5px);
        -webkit-transform-origin: center center;
                transform-origin: center center;
    }
}

@keyframes mouse-move-anim {
    100% {
        -webkit-transform: translate(5px);
                transform: translate(5px);
        -webkit-transform-origin: center center;
                transform-origin: center center;
    }
}

.banner-slider .swiper-slide .slider-info .icon-wrapper .icon > i svg g path.icon-move {
    -webkit-animation: move-anim 2s linear infinite alternate;
            animation: move-anim 2s linear infinite alternate;
    color: #fff;
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
}

@-webkit-keyframes move-anim {
    100% {
        -webkit-transform: rotate(2deg);
                transform: rotate(2deg);
    }
}

@keyframes move-anim {
    100% {
        -webkit-transform: rotate(2deg);
                transform: rotate(2deg);
    }
}
.banner-slider .swiper-slide .slider-info .icon-wrapper .icon > i svg g path {
    color: var(--wdtAccentTxtColor);
    -webkit-animation: none;
            animation: none;
}

svg {
    height: 1em;
    width: 1em;
}
svg:not(:root) {
    overflow: hidden;
}
svg:not([fill]) {
    fill: currentColor;
}
svg:not(:root) {
    overflow: hidden;
}
svg:not([fill]) {
    fill: currentColor;
}

.banner-slider .swiper-slide .slider-info .text .sub-title h6 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    letter-spacing: 4.3px;
    text-transform: capitalize;
    text-align: left;
}
.banner-slider .swiper-slide .slider-info .text .title h5 {
    font-size: clamp(36px, 2.0387rem + 1.1656vw, 55px);
    color: #000;
    font-weight: 700;
    text-transform: capitalize;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.banner-slider .swiper-slide.slide-2 .slider-info .text .sub-title h6,
.banner-slider .swiper-slide.slide-2 .slider-info .text .title h5,
.banner-slider .swiper-slide.slide-3 .slider-info .text .sub-title h6,
.banner-slider .swiper-slide.slide-3 .slider-info .text .title h5 {
    color: #fff;
}

.banner-slider .swiper-slide .slider-info .text .btn-holder {
    margin-top: 40px;
}

.gallery-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.gallery-thumbs .swiper-slide {
    width: 100px;
    height: 100px;
    text-align: center;
    overflow: hidden;
    opacity: 0.1;
}
.gallery-thumbs .swiper-slide-active {
    opacity: 1;
}
.gallery-thumbs .swiper-slide img {
    width: auto;
}

.banner-slider .swiper-slide .slider-info .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.banner-slider .thumbnail-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 1660px;
    margin-left: auto;
    position: absolute;
    right: 0;
    bottom: -2px;
    z-index: 1;
    background-color: #ffffff;
}
.banner-slider .thumbnail-slider .thumbnail-title {
    width: 30%;
    padding: 30px 40px 20px;
}
.banner-slider .thumb-slider-content {
    text-align: left;
}
.banner-slider .thumb-slider-content p {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.banner-slider .thumbnail-carousel {
    width: 50%;
    margin: -90px 0 20px;
    position: relative;
}

.banner-slider .thumbnail-carousel .swiper-slide {
    border: 10px solid #fff;
    width: 100%;
    height: 100%;
    opacity: 1;
    cursor: pointer;
}

.banner-slider .thumbnail-carousel .swiper-slide-active {
    border-color: var(--secondary-color);
}

.banner-slider .slider-arrows {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.banner-slider .slider-arrows .swiper-button-next, 
.banner-slider .slider-arrows .swiper-button-prev {
    position: relative;
}

.banner-slider .slider-arrows > div {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 20px;
    color: #fff;
    width: 50px;
    height: 50px;
    padding: 10px;
    margin: 0 15px;
    background: var(--primary-color);
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    background-size: auto 200%;
    overflow: hidden;
}
.banner-slider .slider-arrows > div:hover {
    background-color: #0e4828;
}
.banner-slider .slider-arrows > div i {
    line-height: 0.8;
}
.banner-slider .slider-arrows > div i svg {
    fill: #fff;
    font-size: 20px;
    width: 20px;
    height: 20px;
}
.banner-slider .slider-arrows > div:after {
    content: "";
}


.banner-slider .slide-1 {
    background: url("../images/banners/n-slider-01.jpg");
}
.banner-slider .slide-2 {
    background: url("../images/banners/n-slider-02.jpg");
}
.banner-slider .slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.banner-slider .slide-content {
    position: relative;
    z-index: 2;
    height: 100vh;
}
.banner-slider .slide-content .content {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.banner-slider .slide-content .content .sub-heading h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.banner-slider .slide-content .content .heading h2 {
    font-size: 55px;
    line-height: 65px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.banner-slider .slide-content .content .heading h2 span {
    color: var(--primary-color);
}
.banner-slider .slide-content .content .button a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    border-radius: 6px;
    padding: 16px 32px;
    border: 2px solid #fff;
    text-transform: uppercase;
    display: inline-block;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.banner-slider .slide-content .content .button a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.banner-slider .owl-nav button {
    position: absolute;
    top: 55%;
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    background-color: #00000080 !important;
    border-radius: 50px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}

.banner-slider .owl-nav button i {
    color: #fff;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.banner-slider:hover .owl-nav button {
    opacity: 1;
    visibility: visible;
}
.banner-slider .owl-nav .owl-prev {
    left: 0px;
}
.banner-slider .owl-nav .owl-next {
    right: 0px;
}
.banner-slider:hover .owl-nav .owl-prev {
    left: 50px;
}
.banner-slider:hover .owl-nav .owl-next {
    right: 50px;
}



/* welcome-section */
.welcome-section {
    padding: 120px 0;
}
.welcome-section .img-box {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.welcome-section .text-box {
    padding-left: 70px;
}
.welcome-section .nav-tabs {
    border: none;
}
.welcome-section .nav-tabs::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #c8c8c8;
}
.welcome-section .nav-tabs .nav-link {
    border: none;
    padding: 20px 0px;
    margin-right: 40px;
    isolation: auto;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.welcome-section .nav-tabs .nav-link::before {
    content: "\f058";
    font-family: FontAwesome;
    margin-right: 10px;
    color: #000;
}

.welcome-section .nav-tabs .nav-link.active::before {
    color: var(--secondary-color);
}
.welcome-section .tab-content {
    margin-top: 30px;
}

.welcome-section .tab-content .img-box:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.welcome-section .tab-content .img-box:hover::after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.welcome-section .tab-content .img-box img {
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.welcome-section .tab-content .img-box:hover img {
    transform: scale(1.1);
}
.welcome-section .tab-content .tab-pane ul li {
    margin-bottom: 20px;
}
.welcome-section .tab-content .tab-pane ul li .icon {
    margin-right: 5px;
}
.welcome-section .tab-content .tab-pane ul li .icon svg {
    fill: var(--primary-color);
    width: 14px;
    height: 14px;
}
.welcome-section .tab-content .tab-pane .btn-holder {
    margin-top: 50px;
}

.testimonials-box {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 30px;
    width: calc(100% - 60px);
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}
.testimonials-box .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 40px;
}
.testimonials-box .item .img img {
    width: 200px;
    border-radius: 100px;
}
.testimonials-box .item .text p {
    color: #fff;
    font-size: 16px;
}
.testimonials-box .item .text h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.testimonials-box .item .text h4 span {
    text-transform: capitalize;
    font-weight: 400;
    color: var(--secondary-color);
}


.btn-holder .theme-btn {
    font-size: 18px;
    text-transform: capitalize;
    padding: 0.7em 2em;
    background: var(--primary-color);
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    background-size: auto 200%;
    overflow: hidden;
    position: relative;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.btn-holder .theme-btn .theme-btn-text {
    display: -ms-inline-grid;
    display: inline-grid;
    -ms-flex-line-pack: center;
        align-content: center;
    vertical-align: top;
}
.btn-holder .theme-btn .theme-btn-icon {
    margin-left: 8px;
}
.btn-holder .theme-btn .theme-btn-icon span {
    display: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    font-size: 18px;
}
.btn-holder .theme-btn .theme-btn-icon span i svg {
    height: 1em;
    width: 1em;
    fill: #fff;
}
.btn-holder .theme-btn::before,
.btn-holder .theme-btn:after {
    content: "";
    display: inline !important;
    height: auto;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: auto;
    z-index: -1;
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}
.btn-holder .theme-btn:hover {
    background-position: bottom center;
    background: var(--secondary-color);
}





/* wpc-section */

.wpc-section {
    position: relative;
    overflow: hidden;
}

.wpc-section .box-list {
    display: block;
    position: absolute;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    background-color: #000000a3;
    z-index: 5;
    padding: 30px;
    top: 60px;
    right: 60px;
}
.wpc-section .box-list ul li {
    font-size: 29px;
    font-weight: 500;
    color: #fff;
    padding: 5px 0px;
    cursor: pointer;
}

.wpc-section .box-content .content-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    max-width: 750px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.wpc-section .box-content .content-detail .wrapper {
    padding: 90px 80px 90px 80px;
    background-color: #00000000;
    width: 100%;
    position: relative;
    z-index: 0;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.wpc-section .box-content .content-detail .wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/pattern-white.png);
    background-position: center center;
    opacity: 0.09;
    width: 100%;
    height: 100%;
}
.wpc-section .box-content .content-detail .wrapper .item {
    background-color: #fff;
    padding: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.wpc-section .box-content .content-detail .wrapper .item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -150%;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(2);
    background-color: var(--secondary-color);
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.wpc-section .box-content .content-detail .wrapper .item:hover::after {
    bottom: 0;
}
.wpc-section .box-content .content-detail .wrapper .item .img-box {
    overflow: hidden;
}
.wpc-section .box-content .content-detail .wrapper .item .img-box img {
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.wpc-section .box-content .content-detail .wrapper .item:hover .img-box img {
    transform: scale(1.1);
}
.wpc-section .box-content .content-detail .wrapper .item .text {
    margin-top: 15px;
}
.wpc-section .box-content .content-detail .wrapper .item .text h3 {
    text-align: center;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}
.wpc-section .box-content .content-detail .wrapper .subtitle {
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: #fff;
}
.wpc-section .box-content .content-detail .wrapper h5 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}
.wpc-section .box-content .content-detail .wrapper p {
    font-size: 18px;
    color: #fff;
}
.wpc-section .box-content .content-detail .wrapper .content-btn a {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    padding: 10px 25px;
    background: #000;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid transparent;
    text-align: center;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.wpc-section .box-content .content-detail .wrapper .content-btn a .btn-text::after {
    content: '';
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 10px;
    -webkit-mask-image: url("../images/Button-Arrow.svg");
    mask-image: url("../images/Button-Arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-transition: 0.5s cubic-bezier(.79,.14,.15,.86);
    transition: 0.5s cubic-bezier(.79,.14,.15,.86);
    -webkit-transition: 0.5s cubic-bezier(.79,.14,.15,.86);
    -ms-transform: rotate(0);
        transform: rotate(0);
    -webkit-transform: rotate(0);
    margin: auto auto auto 5px;
}
.wpc-section .box-content .content-detail .wrapper .content-btn a:hover {
    background-color: var(--primary-color);
}
.wpc-section .box-content .content-detail .wrapper .content-btn a:hover .btn-text::after {
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.wpc-section .box-list h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.wpc-section .box-list ul li.active {
    color: #1ebd64;
}
.wpc-section .content {
    display: none;
}
.wpc-section .content.show {
    display: block;
}




/* ----------- */

/* plywood-section */

.plywood-section {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.plywood-section .box-list {
    display: block;
    position: absolute;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    background-color: #000000a3;
    z-index: 5;
    padding: 30px;
    top: 60px;
    left: 60px;
}
.plywood-section .box-list ul li {
    font-size: 29px;
    font-weight: 500;
    color: #fff;
    padding: 5px 0px;
    cursor: pointer;
}

.plywood-section .box-content .content-detail {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #d99b0c;
    max-width: 750px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.plywood-section .box-content .content-detail .wrapper {
    padding: 90px 80px 90px 80px;
    background-color: #00000000;
    width: 100%;
    position: relative;
    z-index: 0;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.plywood-section .box-content .content-detail .wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/pattern-white.png);
    background-position: center center;
    opacity: 0.2;
    width: 100%;
    height: 100%;
}
.plywood-section .box-content .content-detail .wrapper .item {
    background-color: #fff;
    padding: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.plywood-section .box-content .content-detail .wrapper .item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -150%;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(2);
    background-color: var(--primary-color);
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.plywood-section .box-content .content-detail .wrapper .item:hover::after {
    bottom: 0;
}
.plywood-section .box-content .content-detail .wrapper .item .img-box {
    overflow: hidden;
}
.plywood-section .box-content .content-detail .wrapper .item .img-box img {
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.plywood-section .box-content .content-detail .wrapper .item:hover .img-box img {
    transform: scale(1.1);
}

.plywood-section .box-content .content-detail .wrapper .item .text {
    margin-top: 15px;
}
.plywood-section .box-content .content-detail .wrapper .item .text h3 {
    text-align: center;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.plywood-section .box-content .content-detail .wrapper .item:hover .text h3 {
    color: #fff;
}
.plywood-section .box-content .content-detail .wrapper .subtitle {
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: #fff;
}
.plywood-section .box-content .content-detail .wrapper h5 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}
.plywood-section .box-content .content-detail .wrapper p {
    font-size: 18px;
    color: #fff;
}
.plywood-section .box-content .content-detail .wrapper .content-btn a {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    padding: 10px 25px;
    background: #000;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid transparent;
    text-align: center;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.plywood-section .box-content .content-detail .wrapper .content-btn a .btn-text::after {
    content: '';
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 10px;
    -webkit-mask-image: url("../images/Button-Arrow.svg");
    mask-image: url("../images/Button-Arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-transition: 0.5s cubic-bezier(.79,.14,.15,.86);
    transition: 0.5s cubic-bezier(.79,.14,.15,.86);
    -webkit-transition: 0.5s cubic-bezier(.79,.14,.15,.86);
    -ms-transform: rotate(0);
        transform: rotate(0);
    -webkit-transform: rotate(0);
    margin: auto auto auto 5px;
}
.plywood-section .box-content .content-detail .wrapper .content-btn a:hover {
    background-color: var(--primary-color);
}
.plywood-section .box-content .content-detail .wrapper .content-btn a:hover .btn-text::after {
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.plywood-section .box-list h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.plywood-section .box-list ul li.active {
    color: var(--secondary-color);
}
.plywood-section .content {
    display: none;
}
.plywood-section .content.show {
    display: block;
}




.portfolio-section {
    padding: 100px 0;
}

.portfolio-section .inner .img-box {
    position: relative;
}
.portfolio-section .inner .img-box:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(5.24%, rgba(0, 0, 0, 0)), color-stop(130.62%, #000000));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 5.24%, #000000 130.62%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 5.24%, #000000 130.62%);
    /* clip-path: inset(100% 0 0 0); */
    -o-transition: 0.5s cubic-bezier(.65,.05,.36,1);
    transition: 0.5s cubic-bezier(.65,.05,.36,1);
    -webkit-transition: 0.5s cubic-bezier(.65,.05,.36,1);
}

.portfolio-section .inner .img-box img {
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.portfolio-section .inner:hover .img-box img {
    transform: scale(1.1);
}

.portfolio-section .inner {
    position: relative;
    overflow: hidden;
}
.portfolio-section .inner .info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
}
.portfolio-section .inner .info .list {
    position: relative;
    -webkit-transition: 500ms cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition: 500ms cubic-bezier(0.7, 0, 0.3, 1);
    transition: 500ms cubic-bezier(0.7, 0, 0.3, 1);
}
.portfolio-section .inner .info .list li {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.portfolio-section .inner .info h5 {
    display: inline-block;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    -webkit-transition: 500ms cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition: 500ms cubic-bezier(0.7, 0, 0.3, 1);
    transition: 500ms cubic-bezier(0.7, 0, 0.3, 1);
}
.portfolio-section .inner .info .view-details {
    margin: 0;
    display: none;
    font-size: 14px;
    background: var(--primary-color);
    letter-spacing: 2.64px;
    color: #fff;
    font-weight: 600;
    padding: 6px 18px;
    text-transform: uppercase;
    position: absolute;
    right: -140%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(100%);
        -ms-transform: translateY(-50%) translateX(100%);
            transform: translateY(-50%) translateX(100%);
    border-radius: 0;
    -o-transition: 0.5s cubic-bezier(.65,.05,.36,1);
    transition: 0.5s cubic-bezier(.65,.05,.36,1);
    -webkit-transition: 0.5s cubic-bezier(.65,.05,.36,1);
    border: 0;
}
.portfolio-section .inner .info .view-details:hover {
    background: #000;
    color: #fff;
}
.portfolio-section .inner:hover .info .view-details {
    right: -25%;
}
.portfolio-section .top {
    margin-bottom: 25px;
}





.home-contact-section {
    background-image: url("../images/bg-1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    margin-bottom: 0px;
    padding: 125px 0px 125px 0px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.home-contact-section::before {
    content: "";
    background-color: #000;
    opacity: 0.7;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}
.home-contact-section .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* gap: 20px; */
}

@media (min-width: 480px) {
    .home-contact-section .wrapper .colm:nth-child(1) {
        width: 31.8%;
    }
    .home-contact-section .wrapper .colm:nth-child(2) {
        width: 25.2%;
    }
    .home-contact-section .wrapper .colm:nth-child(3) {
        width: 42.666%;
    }
}

.home-contact-section .sec-title h2 {
    color: var(--secondary-color);
}
.home-contact-section .text p {
    color: #ffffffd9;
    font-weight: 400;
}
.home-contact-section .text {
    padding-right: 130px;
}
.home-contact-section .text .btn-holder {
    margin-top: 50px;
}
.home-contact-section .colm {
    position: relative;
    min-height: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.home-contact-section .form-inner {
    background-color: transparent;
    background: #135832;
    padding: 30px 60px 30px 60px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
}
.home-contact-section .form-inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/pattern-white.png);
    background-position: center center;
    opacity: 0.1;
    width: 100%;
    height: 100%;
}
.home-contact-section .form-inner .personal h6 {
    letter-spacing: 4.54px;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin: 0;
    margin-bottom: 30px;
}
.home-contact-section .form-inner .personal.info {
    margin-bottom: 20px;
}
.home-contact-section .form-inner .form-group {
    margin-bottom: 15px;
}
.home-contact-section .form-inner input[type="text"], 
.home-contact-section .form-inner input[type="tel"], 
.home-contact-section .form-inner input[type="number"], 
.home-contact-section .form-inner input[type="email"],
.home-contact-section .form-inner textarea,
.home-contact-section .form-inner .form-dropdown {
    padding: 10px;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #ffffff4d;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
}
.home-contact-section .form-inner .form-dropdown option {
    color: #000;
    padding: 5px;
    font-weight: 500;
}

.home-contact-section .form-inner .form-group label {
    color: #fff;
    font-size: 14px;
    margin-left: 5px;
}

.home-contact-section .form-inner input::-webkit-input-placeholder {
    color: #0000008a;
}

.home-contact-section .form-inner input::-moz-placeholder {
    color: #0000008a;
}

.home-contact-section .form-inner input:-ms-input-placeholder {
    color: #0000008a;
}

.home-contact-section .form-inner input::-ms-input-placeholder {
    color: #0000008a;
}

.home-contact-section .form-inner input::placeholder {
    color: #0000008a;
}
.home-contact-section .form-inner .form-input:focus,
.home-contact-section .form-inner .form-dropdown:focus {
    outline: none;
}

.home-contact-section .form-inner .submit-btn {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 25px;
    background: var(--secondary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid transparent;
    text-align: center;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.home-contact-section .form-inner .submit-box {
    text-align: center;
}
.home-contact-section .form-inner .submit-btn:hover {
    background-color: #cf940c;
}








/* team-section */
.team-section {
    padding: 100px 0;
}

.team-section .team-box .team-wrap {
    position: relative;
}
.team-section .team-box .team-wrap .social-icons-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    padding: 18px 20px;
    margin: 0;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    opacity: 0;
    visibility: hidden;
}
.team-section .team-box:hover .team-wrap .social-icons-wrap {
    opacity: 1;
    visibility: visible;
}
.team-section .team-box .team-wrap .social-icons-wrap ul li {
    display: inline-block;
    margin: 0 15px;
}
.team-section .team-box .team-wrap .social-icons-wrap ul li a {
    padding: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    font-size: 14px;
    width: 1em;
    height: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
}
.team-section .team-box .team-content {
    padding: 20px 0;
}
.team-section .team-box .team-content h5 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}
.team-section .team-box .team-content h6 {
    color: #000;
    opacity: 0.8;
    font-size: 18px;
    font-weight: 500;
}
.team-section .team-box .team-content p a i {
    color: var(--primary-color);
}
.team-section .team-box .team-content p a {
    color: #000;
}





/* partners-section */

.partners-section {
    padding: 70px 0;
    background-color: #F8F8F8;
}
.partners-section img {
    width: 170px;
}
.partners-section .slick {
    margin-bottom: 0px;
    margin-top: 40px;
}
.partners-section .slick-slide {
    display: flex;
}
.partners-section .slick-slide img {
    width: 100%;
}
.partners-section .btn-holder {
    text-align: center;
}




/* call-to-action */
.call-to-action {
    padding: 60px 0;
}
.call-to-action .sec-title {
    margin-bottom: 0;
}
.call-to-action .btn-holder .theme-btn {
    font-size: 16px;
    padding: 0.6em 1.75em;
}

.call-to-action .buttons-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 50px;
}
.call-to-action .buttons-wrap .contact-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
}
.call-to-action .buttons-wrap .contact-wrap .icon {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #000;
}
.call-to-action .buttons-wrap .contact-wrap .info h5 {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0;
}
.call-to-action .buttons-wrap .contact-wrap .info a {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}












.inner-banner {
    position: relative;
    z-index: 2;
}
.inner-banner .container {
    max-width: 1300px;
}
.inner-banner img {
    /* height: 500px; */
}
.inner-banner .inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.inner-banner .content-box {
    position: absolute;
    left: 0;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
}
.inner-banner .content-box .caption-title {
    color: #fff;
    font-weight: 600;
    font-size: 2.5vw;
}
.inner-banner .content-box h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.5vw;
}






/* cp-section */
.cp-section {
    padding: 120px 0;
    overflow: hidden;
}
.cp-section .img-box {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.cp-section .text-box {
    padding-right: 70px;
}
.cp-section .nav-tabs {
    border: none;
}
.cp-section .nav-tabs::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #c8c8c8;
}
.cp-section .nav-tabs .nav-link {
    border: none;
    padding: 20px 0px;
    margin-right: 40px;
    isolation: auto;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.cp-section .nav-tabs .nav-link::before {
    content: "\f058";
    font-family: FontAwesome;
    margin-right: 10px;
    color: #000;
}

.cp-section .nav-tabs .nav-link.active::before {
    color: var(--primary-color);
}
.cp-section .tab-content {
    margin-top: 30px;
}
.cp-section .tab-content .tab-pane ul li {
    margin-bottom: 20px;
}
.cp-section .tab-content .tab-pane ul li .icon {
    margin-right: 5px;
}
.cp-section .tab-content .tab-pane ul li .icon svg {
    fill: var(--primary-color);
    width: 14px;
    height: 14px;
}
.cp-section .tab-content .tab-pane .btn-holder {
    margin-top: 50px;
}




/* .vision-mission-section */
.vision-mission-section {
    margin-bottom: 100px;
}
.vision-mission-section .inner {
    padding: 100px;
    background-color: #eeeeee;
    position: relative;
    z-index: 2;
}
.vision-mission-section .inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/pattern-black.png);
    background-position: center center;
    opacity: 0.1;
    width: 100%;
    height: 100%;
}

.vision-mission-section .inner .content .box {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
}
.vision-mission-section .inner .content .box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.vision-mission-section .inner .content .box .icon {
    width: 80px;
    flex: 0 0 auto;
}
.vision-mission-section .inner .content .box h3 {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 700;
}










/* certifications-section */
.certifications-section {
    padding: 100px 0;
    background-color: #eeeeee;
}
.certifications-section .certifications-item {
    overflow: hidden;
    border-radius: 0px;
    position: relative;
    z-index: 2;
    cursor: pointer;    
    box-shadow: 0 0 14px 0 #00000024;
}
.certifications-section .certifications-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000e0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.certifications-section .certifications-item a:hover::before {
    opacity: 1;
    visibility: visible;
}
.certifications-section .certifications-item a::after {
    content: "\2b";
    font-family: FontAwesome;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.certifications-section .certifications-item a:hover::after{
    opacity: 1;
    visibility: visible;
}
.certifications-section .certifications-item img {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.certifications-section .certifications-item:hover img {
    transform: scale(1.1);
}







/* quality-supply-section */
.quality-supply-section {
    padding: 120px 0;
}
.quality-supply-section .img-box {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.quality-supply-section .text-box {
    padding-right: 70px;
}
.quality-supply-section .nav-tabs {
    border: none;
}
.quality-supply-section .nav-tabs::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #c8c8c8;
}
.quality-supply-section .nav-tabs .nav-link {
    border: none;
    padding: 20px 0px;
    margin-right: 40px;
    isolation: auto;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.quality-supply-section .nav-tabs .nav-link::before {
    content: "\f058";
    font-family: FontAwesome;
    margin-right: 10px;
    color: #000;
}

.quality-supply-section .nav-tabs .nav-link.active::before {
    color: var(--primary-color);
}
.quality-supply-section .tab-content {
    margin-top: 30px;
}
.quality-supply-section .tab-content .tab-pane ul li {
    margin-bottom: 20px;
}
.quality-supply-section .tab-content .tab-pane ul li .icon {
    margin-right: 5px;
}
.quality-supply-section .tab-content .tab-pane ul li .icon svg {
    fill: var(--primary-color);
    width: 14px;
    height: 14px;
}
.quality-supply-section .tab-content .tab-pane .btn-holder {
    margin-top: 50px;
}





/* careers-section */
.careers-section {
    position: relative;
    display: block;
    padding: 80px 0;
    z-index: 2;
}
.careers-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/pattern-black.png);
    background-position: center center;
    opacity: 0.05;
    width: 100%;
    height: 100%;
}
.careers-section .sec-title {
    margin-bottom: 30px;
}
.careers-section .img-box {
    border-radius: 20px;
    overflow: hidden;
    margin-right: 40px;
}
.careers-section .inner {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    margin: 0 auto;
    border-bottom: 0;
    background-color: #f1e6d1;
    border-radius: 0px;
    padding: 60px 60px;
    /* box-shadow: 0 0 20px 0 #00000038; */
}
.careers-section .left {
    position: relative;
    display: block;
    margin-right: 58px;
}
.careers-section .left h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    color: var(--black);
}
.careers-section .left p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 30px;
}
.careers-section .form-box fieldset {
    margin-bottom: 20px;
}
.careers-section .form-box label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.careers-section .form-box input[type="text"], 
.careers-section .form-box input[type="email"], 
.careers-section .form-box select, 
.careers-section .form-box textarea {
    height: 38px;
    width: 100%;
    border: none;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    padding: 10px;
    color: #414651;
    display: block;
    font-weight: 500;
    background-color: #fff;
    /* border-bottom: 1px solid #D0D5DD; */
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.careers-section .form-box input[type="file"] {
    border: 1px solid #ccc;
    width: 100%;
    padding: 6px;
}
.careers-section .form-box textarea {
    height: 100px;
}
.careers-section .form-box button {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    padding: 10px 25px;
    background: var(--primary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid transparent;
    text-align: center;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.careers-section .form-box button:hover {
    background-color: var(--secondary-color);
}







/* wpc-product-section */
.wpc-product-section {
    padding: 100px 0;
}
.wpc-product-section .content {
    margin-left: 30px;
}
.wpc-product-section .content .title span {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.wpc-product-section .content .title h2 {
    color: #000;
    font-size: 35px;
    font-weight: 800;
}
.wpc-product-section .content h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.wpc-product-section .content ul li {
    display: inline-block;
    background-color: #eee;
    border: 1px solid #cecece;
    margin: 0 2px 8px;
    border-radius: 5px;
    padding: 1px 10px;
    font-weight: 600;
}
.wpc-product-section .content .btn-wrap {
    margin-top: 40px;
}
.wpc-product-section .content .btn-wrap a {
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-right: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.wpc-product-section .content .btn-wrap .btn-1 {
    background-color: #2b2a29;
}
.wpc-product-section .content .btn-wrap .btn-1:hover {
    background-color: var(--primary-color);
}
.wpc-product-section .content .btn-wrap .btn-2 {
    background-color: #2bb640;
}
.wpc-product-section .content .btn-wrap .btn-2:hover {
    background-color: #117520;
}
.wpc-product-section .content .btn-wrap a i {
    vertical-align: middle;
    margin-right: 6px;
}
.wpc-product-section .content .btn-wrap .btn-2 i {
    font-size: 25px;
}



.ply-product-section .content h4 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
}
.ply-product-section .content .sizes {
    margin-bottom: 20px;
}
.ply-product-section .content .sizes li {
    display: inline-block;
    margin-right: 6px;
    background-color: var(--secondary-color);
    padding: 4px 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
.ply-product-section .content .benefits-group {
    margin-bottom: 20px;
}
.ply-product-section .content .benefits-group .item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #efefef;
    padding: 10px 15px;
    border-radius: 5px;
}
.ply-product-section .content .benefits-group .item .icon {
    flex: 0 0 auto;
    width: 50px;
    filter: invert(37%) sepia(6%) saturate(3729%) hue-rotate(94deg) brightness(96%) contrast(94%);
}

.ply-product-section .content .benefits-group .item h3 {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.ply-product-section .content .features-group .item {
    padding-right: 20px;
    border-right: 1px solid #ddd;
}
.ply-product-section .content .features-group .item h5 {
    text-align: left;
}
.ply-product-section .content .features-group .item h5 span {
    display: block;
}
.ply-product-section .content .features-group .item h5 .top {
    color: var(--primary-color);
    font-size: 16px;
    font-style: italic;
}
.ply-product-section .content .features-group .item h5 .mid {
    color: #d79600;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.ply-product-section .content .features-group .item h5 .bot {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.benefits-section {
    padding: 60px 0 50px;
    background-color: #eaf1eb;
}
.benefits-section .item {
    margin-bottom: 20px;
}
.benefits-section .item .icon {
    width: 60px;
    height: 60px;
    padding: 12px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.benefits-section .item:hover .icon {
    background-color: var(--primary-color);
}
.benefits-section .item .icon img {
    filter: invert(35%) sepia(27%) saturate(1019%) hue-rotate(94deg) brightness(96%) contrast(87%);
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.benefits-section .item:hover .icon img {
    filter: invert(1);
}
.benefits-section .item h3 {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}


.specifications-section {
    padding: 80px 0;
}

.specifications-section .inner {
    padding: 70px;
    background-color: #eeeeee;
    position: relative;
    z-index: 2;
}
.specifications-section .inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/pattern-black.png);
    background-position: center center;
    opacity: 0.08;
    width: 100%;
    height: 100%;
}
.specifications-section .item {
    margin-bottom: 30px;
}
.specifications-section .item .img-box {
    margin-bottom: 15px;
}
.specifications-section .item h3 {
    color: var(--primary-color);
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}
.specifications-section .item p {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}
.specifications-section .item ul {
    text-align: center;
}
.specifications-section .item ul li {
    display: inline-block;
    background-color: #eee;
    border: 1px solid #cecece;
    margin: 0 2px 5px;
    border-radius: 5px;
    padding: 1px 10px;
    font-weight: 600;
}


.technical-specifications {
    padding: 0 0 80px 0;
}
.technical-specifications .img-box {
    border: 10px solid #ddd;
}
.technical-specifications .content .item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.technical-specifications .content .item h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}
.technical-specifications .content .item p {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}



/* product-table-section */
.product-table-section {
    padding: 0 0 100px 0;
}
.product-table-section .table>thead {
    background-color: var(--primary-color);
}
.product-table-section .table>thead tr th {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    vertical-align: middle;
    padding: 12px 25px;
}
.product-table-section .table>tbody {
    border-top: none !important;
}
.product-table-section .table tbody td {
    color: #000;
    font-size: 18px;
    font-weight: 500;
}


/* advantages-section */
.advantages-section {
    background-color: #eeeeee;
    position: relative;
    z-index: 2;
    padding: 100px 0;
}
.advantages-section .img-box {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 10px solid #ddd
}
.advantages-section .content .points li {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}
.advantages-section .content .points li span {
    font-weight: 700;
    color: #004e23;
}
.advantages-section .content .points li::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 10px;
    position: absolute;
    left: 0;
}



.wpc-product-details {
    margin-bottom: 100px;
}

.wpc-product-details .nav-tabs {
    position: relative;
    top: 20px;
    justify-content: center;
    border-bottom: none;
}
.wpc-product-details .nav-tabs .nav-item {
    background-color: #fff;
    color: #000;
    margin: 0 5px;
    border-radius: 0;
}
.wpc-product-details .nav-tabs .nav-item button {
    border-radius: 0;
    border: 1px solid var(--secondary-color);
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
}
.wpc-product-details .nav-tabs .nav-item .active,
.wpc-product-details .nav-tabs .nav-item button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.wpc-product-details .tab-content {
    background-color: var(--secondary-color);
    padding: 70px 50px 50px 50px;
}

.wpc-product-details .tab-content .content p {
    color: #fff;
}








/* dealership-page-section */
.dealership-page-section {
    position: relative;
    display: block;
    padding: 80px 0;
    z-index: 2;
}
.dealership-page-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/pattern-black.png);
    background-position: center center;
    opacity: 0.05;
    width: 100%;
    height: 100%;
}
.dealership-page-section .sec-title {
    margin-bottom: 30px;
}
.dealership-page-section .img-box {
    border-radius: 20px;
    overflow: hidden;
    margin-right: 40px;
}
.dealership-page-section .inner {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    margin: 0 auto;
    border-bottom: 0;
    background-color: #f1e6d1;
    border-radius: 0px;
    padding: 60px 60px;
    /* box-shadow: 0 0 20px 0 #00000038; */
}
.dealership-page-section .left {
    position: relative;
    display: block;
    margin-right: 58px;
}
.dealership-page-section .left h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    color: var(--black);
}
.dealership-page-section .left p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 30px;
}
.dealership-page-section .form-group {
    margin-bottom: 20px;
}
.dealership-page-section .form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 2px;
}
.dealership-page-section .form-box fieldset {
    margin-bottom: 20px;
}

.dealership-page-section .form-box input[type="text"], 
.dealership-page-section .form-box input[type="email"], 
.dealership-page-section .form-box select, 
.dealership-page-section .form-box textarea {
    height: 38px;
    width: 100%;
    border: none;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    padding: 10px;
    color: #414651;
    display: block;
    font-weight: 500;
    background-color: #fff;
    /* border-bottom: 1px solid #D0D5DD; */
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.dealership-page-section .form-box input[type="file"] {
    border: 1px solid #ccc;
    width: 100%;
    padding: 6px;
}
.dealership-page-section .form-box textarea {
    height: 100px;
}
.dealership-page-section .submit-box .submit-btn {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    padding: 10px 25px;
    background: var(--primary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid transparent;
    text-align: center;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.dealership-page-section .form-box button:hover {
    background-color: var(--secondary-color);
}








.map-section {
    padding: 100px 0;
}
.map-section .map-box {
    margin-bottom: 30px;
}
.map-section .map-box h3 {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}


/* ----------------------
Contact Section
------------------------*/
.contact-section {
    padding: 100px 0;
    background-color: #eeeeee;
    position: relative;
    /* top: -7px; */
}

.contact-section .contact-col {
    display: flex;
}

.contact-form {
    background-color: var(--primary-color);
    padding: 50px;
    border-radius: 0px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    border-bottom: 1px solid #dddddd00;
    background-color: #fff;
    width: 100%;
    border-radius: 0px;
    outline: none;
    padding: 10px 15px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.contact-form fieldset {
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
}

.contact-form button {
    margin-top: 0px;
    font-size: 16px;
    color: #000;
    background-color: var(--secondary-color);
    padding: 12px 40px;
    box-shadow: none;
    border: none;
    display: inline-block;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-form button:hover {
    opacity: 0.8;
}

.contact-form textarea {
    padding: 20px;
}

.contact-form ::-webkit-input-placeholder {
    /* Edge */
    color: #7c7c7c;
}

.contact-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #7c7c7c;
}

.contact-form ::placeholder {
    color: #7c7c7c;
}

.contact-section .contact-box {
    padding: 0 30px;
    width: 100%;
}

.contact-section .contact-box .contact-info h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-section .contact-box .contact-info ul li {
    padding: 20px 0px 20px 70px;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1.7;
    color: #fff;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 14px 0 #00000024;
}

.contact-section .contact-box .contact-info ul li i {
    color: var(--primary-color);
    position: absolute;
    text-align: center;
    box-shadow: none;
    margin-right: 20px;
    font-size: 25px;
    left: 30px;
}
.contact-section .contact-box .contact-info ul li .info {
    border-left: 1px solid #ccc;
    padding-left: 25px;
}
.contact-section .contact-box .contact-info ul li p {
    color: #000 !important;
    font-size: 18px;
    margin: 0 !important;
    font-weight: 600;
}

.contact-section .contact-box .contact-info ul li span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
}

.contact-section .contact-box .contact-info ul li a {
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

.contact-section .contact-box .contact-info h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

form fieldset .radio {
    margin-top: 10px;
    position: relative;
}

form fieldset .radio li {
    margin: 0 10px;
}

.contact-form input[type="radio"] {
    width: auto;
    margin-bottom: 0;
}

form fieldset .radio li label {
    width: auto;
}










/* -----------------
Footer Section
--------------------*/
footer {
    background: #0a2215;
    padding-bottom: 0px;
    position: relative;
    z-index: 2;
}
footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url(../images/pattern-white.png);
    background-position: center center;
    opacity: 0.05;
    width: 100%;
    height: 100%;
}

footer .footer-content {
    padding: 70px 0;
}

footer .widget h2 {
    color: var(--secondary-color);
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
    margin-right: 15px;
    padding-bottom: 10px;
    position: relative;
}
/* footer .widget h2::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: var(--primary-color);
    width: 100px;
    height: 2px;
    z-index: 1;
} */
/* footer .widget h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: rgb(0 0 0 / 10%);
    width: 100%;
    height: 1px;
} */

footer .widget p {
    color: #fff;
    margin: 0;
    font-weight: 300;
}
footer .widget-about .logo-box {
    width: 300px;
    margin-bottom: 20px;
}
footer .widget-about p {
    text-align: justify;
    font-weight: 400;
    font-size: 16px;
    color: #ffffffcc;
}


footer .widget-links .nav-links ul {
    padding: 0;
    list-style-type: none;
}

footer .widget-links .nav-links ul li {
    margin-bottom: 0;
}

footer .widget-links .nav-links ul li a {
    color: #fff;
    font-size: 18px;
    padding: 8px 0;
    font-weight: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

/* footer .widget-links .nav-links ul li a:before {
    content: "\f105";
    font-family: "FontAwesome";
    padding-right: 15px;
    color: var(--secondary-color);
    font-size: 12px;
} */

footer .widget-links .nav-links ul li:hover a,
footer .widget-links .nav-links ul li:hover a:before {
    color: var(--primary-color);
    background-color: transparent;
}

footer .widget-contact .contact-info ul {
    padding: 0;
}

footer .widget-contact .contact-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    color: #fff;
    padding-bottom: 20px;
    padding-left: 35px;
}
footer .widget-contact .contact-info ul li.address {
    align-items: flex-start;
}
footer .widget-contact .contact-info ul li i {
    position: absolute;
    left: 0;
    width: 20px;
    height: 40px;
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 10px;
    text-align: center;
    border-radius: 60px;
    line-height: 37px;
}

footer .widget-contact .contact-info ul li p {
    display: -ms-grid;
    display: grid;
    text-align: left;
    color: #ffffffcc;
    font-size: 18px;
    font-weight: 400;
}
footer .widget-contact .contact-info ul li p span {
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
footer .widget-contact .contact-info ul li a {
    color: #ffffffcc;
    font-size: 18px;
    font-weight: 400;
}

footer .widget-contact .contact-info ul li a.email {
    margin-top: 10px;
}

/* footer .widget-contact .contact-info h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
} */

/* ----------------------
Footer Bottom Section
------------------------*/
.footer-bottom {
    padding: 36px 0px;
    border-top: 1px solid #ffffff34;
    /* box-shadow: 0 0 30px 0 #0000000d; */
    position: relative;
}

.footer-bottom p,
.footer-bottom p a {
    margin: 0;
    color: #ffffff;
    font-weight: 400;
}

.footer-bottom .copyrights {
    float: left;
}

.footer-bottom .design {
    float: right;
}

.social-icons {
    margin-top: 20px;
    margin-bottom: 0px;
}

.social-icons li {
    display: inline-block;
    margin: 0 5px;
}

.social-icons li a {
    width: 45px;
    height: 45px;
    display: block;
    color: #000;
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 0px;
    text-align: center;
    line-height: 45px;
    -webkit-transition: 600ms ease all;
    -o-transition: 600ms ease all;
    transition: 600ms ease all;
}
.social-icons li a:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--primary-color);
}


/* ----------------------
Go To Top
------------------------*/
.scroll-top {
    width: 45px;
    height: 45px;
    line-height: 40px;
    border: none;
    position: fixed;
    bottom: 10px;
    right: 0;
    font-size: 22px;
    border-radius: 0px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    background-size: auto 200%;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.scroll-top .fa {
    color: #fff;
}

.scroll-top:hover {
    background: #000;
}

.scroll-top.show {
    bottom: 65px;
}

.scroll-top span {
    color: #fff;
}

/* .scroll-top:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: -o-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  } */


.whatsapp-chat-icon {
    border: none;
    position: fixed;
    bottom: 105px;
    right: 20px;
    z-index: 99;
    /* opacity: 0;
    visibility: hidden; */
    cursor: pointer;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.whatsapp-chat-icon.show {
    bottom: 105px;
    opacity: 1;
    visibility: visible;
}





.captcha-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.captcha-img img {
    width: 200px;
}

#captcha_reload i {
    color: #000000;
    font-size: 22px;
    line-height: 40px;
    padding-left: 10px;
}

#captcha-field {
    margin: 0;
}

#captcha-error {
    text-align: center;
}

#captcha-error p {
    margin: 0;
}

#captcha_reload i {
    color: #000;
    font-size: 20px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#captcha-field {
    margin-top: 0px;
}

#captcha_image {
    width: 80%;
    height: 100%;
    margin: 0 0px 0 0;
    text-align: center;
}

#success_message {
    text-align: center;
    background-color: #dff2d5;
    padding: 5px 10px;
    border: 1px solid #399d04;
    margin-top: 20px;
}

#success_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.help-block.error,
#file-error p {
    color: #f00 !important;
    font-size: 16px !important;
}
.home-contact-section .form-inner .form-group .help-block.error {
    color: #fff !important;
}

#employment_type-error {
    position: absolute;
    top: 100%;
}

#error_message {
    text-align: center;
    background-color: #f2d5d5;
    padding: 5px 10px;
    border: 1px solid #9d0404;
    margin-top: 20px;
}

#error_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}



@media only screen and (max-width: 1540px) {
    .banner-slider .swiper-slide .slider-info .icon-wrapper {
        bottom: -110px;
    }
    .banner-slider .swiper-slide .slider-info {
        gap: 80px;
    }
    .banner-slider .swiper-slide .slider-info .text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 200px 40px 100px;
    }
    .banner-slider .thumbnail-slider {
        position: relative;
    }
    .banner-slider .thumbnail-carousel {
       margin-top: 0;
    }
    .banner-slider .thumbnail-slider .thumbnail-title {
        padding: 10px 40px 20px;
    }
    .testimonials-box .item .img {
        width: 50%;
    }
    .testimonials-box .item .text {
        width: 80%;
    }
    .portfolio-section .inner .info .view-details {
        position: relative;
        display: block;
        right: 0;
        left: 0;
        bottom: -70px;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
    .portfolio-section .inner .info .list {
        bottom: -40px;
    }
    .portfolio-section .inner .info h5 {
        bottom: -40px;
    }
    .portfolio-section .inner:hover .info .list {
        bottom: 0;
    }
    .portfolio-section .inner:hover .info h5 {
        bottom: 0;
        -webkit-transition-delay: 100ms;
             -o-transition-delay: 100ms;
                transition-delay: 100ms;
    }
    .portfolio-section .inner:hover .info .view-details {
        bottom: 0px;
        -webkit-transition-delay: 250ms;
             -o-transition-delay: 250ms;
                transition-delay: 250ms;
    }
    /* .home-contact-section .wrapper {
        width: 100%;
        max-width: 100%;
        flex-flow: row wrap;
    } */
    .home-contact-section .sec-title h2 br {
        display: none;
    }
    .home-contact-section .wrapper .colm:nth-child(1) {
        width: 50%;
    }
    .home-contact-section .wrapper .colm:nth-child(2) {
        padding: 0px 20px 0px 0px;
        width: 45%;
    }
    .home-contact-section .wrapper .colm:nth-child(3) {
        width: 55%;
    }
    .home-contact-section .text {
        margin-bottom: 40px;
        padding-right: 30px;
    }
    .home-contact-section .wrapper .colm .img-wrap,
    .home-contact-section .wrapper .colm .img-wrap img {
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 1366px) {
    .banner-slider .swiper-slide .slider-info {
        gap: 0px;
    }
    .welcome-section .nav-tabs .nav-link {
        margin-right: 0px;
    }
    .welcome-section .nav-tabs {
        gap: 10px;
    }
    .wpc-section .box-content .content-detail,
    .plywood-section .box-content .content-detail {
        max-width: 560px;
    }
    .wpc-section .box-content .content-detail .wrapper,
    .plywood-section .box-content .content-detail .wrapper {
        padding: 50px;
    }
    .cp-section {
        padding: 120px 100px;
    }
}
@media only screen and (max-width: 1280px) {
    #main-nav {
        padding-top: 30px;
    }
    #main-nav #main-menu>li>a {
        padding: 10px 0;
    }
    .banner-slider .swiper-slide .slider-info .text {
        padding: 200px 0px 100px;
    }
    .banner-slider .swiper-slide .slider-info .icon-wrapper .icon > i {
        font-size: 550px;
    }
    .wpc-section .box-content .content-detail .wrapper,
    .plywood-section .box-content .content-detail .wrapper {
        padding: 30px 30px 30px 30px;
    }
    .wpc-section .box-content .content-detail,
    .plywood-section .box-content .content-detail {
        max-width: 520px;
    }
    .quality-supply-section .text-box {
        padding-right: 0px;
        margin-bottom: 40px;
    }

}

@media only screen and (max-width: 1199px) {
    .navbar .contact-info {
        display: none;
    }
    .wpc-section .box-list h2,
    .plywood-section .box-list h2 {
        font-size: 30px;
    }
    .wpc-section .box-list ul li,
    .plywood-section .box-list ul li {
        font-size: 22px;
    }
    .cp-section {
        padding: 120px 0px;
    }
    .vision-mission-section .img-box {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar {
        padding: 20px 20px;
    }
    .navbar-nav {
        margin-top: 30px;
        margin-left: 0;
    }
    .navbar-nav li .nav-link {
        padding: 10px 0px !important;
        color: var(--black) !important;
    }
    .navbar .navbar-toggler-icon {
        border-top: 2px solid #000;
    }
    .navbar .navbar-toggler-icon::before, 
    .navbar .navbar-toggler-icon::after {
        border-top: 2px solid #000;
    }
    .menu-opened .navbar-toggler-icon,
    .menu-opened .navbar-toggler-icon::before, 
    .menu-opened .navbar-toggler-icon::after {
        border-top: 2px solid #000;
    }
    .menu-opened .navbar-brand.dark {
        display: block;
    }
    .menu-opened .navbar-brand.light {
        display: none;
    }
    /* .banner-slider .swiper-slide .slider-image {
        height: 60vw;
    } */
    .banner-slider .swiper-slide .slider-info {
        padding: 150px 40px 200px;
    }
    .banner-slider .swiper-slide .slider-info .icon-wrapper {
        display: none;
    }
    .banner-slider .swiper-slide .slider-info .text {
        padding: 0;
    }
    .banner-slider .thumbnail-slider {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 0 20px;
    }
    .banner-slider .swiper-slide .slider-info .text .title h5 {
        font-size: 4vw;
    }
    .banner-slider .swiper-slide .slider-info .text .btn-holder {
        margin-top: 20px;
    }
    .banner-slider .swiper-slide .slider-info .text .btn-holder .theme-btn {
        font-size: 13px;
        padding: 6px 20px;
    }
    .banner-slider .thumbnail-slider .thumbnail-title {
        width: 60%;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        padding: 16px;
    }
    .banner-slider .thumbnail-carousel {
        width: 100%;
        margin: 0;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-top: -50px;
        margin-bottom: 20px;
    }
    .banner-slider .slider-arrows {
        width: 40%;
        position: relative;
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
    .welcome-section .text-box {
        padding-left: 0;
        margin-top: 50px;
    }
    .welcome-section .nav-tabs {
        gap: 30px;
        margin-top: 40px;
    }
    .welcome-section .nav-tabs .nav-link {
        padding: 0;
    }
    .wpc-section .box-list,
    .plywood-section .box-list {
        position: relative;
        width: 100%;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        right: 0;
        background-color: #1d1d1d;
    }
    .wpc-section .box-content .content-detail .wrapper, 
    .plywood-section .box-content .content-detail .wrapper {
        padding: 60px;
    }
    .wpc-section .box-list h2,
    .plywood-section .box-list h2 {
        text-align: center;
    }
    .wpc-section .box-list ul,
    .plywood-section .box-list ul {
        text-align: center;
    }
    .wpc-section .box-list ul li,
    .plywood-section .box-list ul li {
        font-size: 20px;
        display: inline-block;
        margin: 0 10px;
    }
    .wpc-section .box-content .content-detail,
    .plywood-section .box-content .content-detail {
        max-width: 100%;
        width: 100%;
        position: relative;
    }
    .wpc-section .box-content .content-detail .wrapper .item,
    .plywood-section .box-content .content-detail .wrapper .item {
        margin-bottom: 30px;
    }
    .portfolio-section .inner {
        margin-bottom: 40px;
    }
    .home-contact-section .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .home-contact-section .wrapper .colm:nth-child(1),
    .home-contact-section .wrapper .colm:nth-child(2),
    .home-contact-section .wrapper .colm:nth-child(3) {
        width: 100%;
    }
    .home-contact-section .wrapper .colm:nth-child(2) {
        margin-bottom: 40px;
        padding-right: 0;
    }
    .home-contact-section .wrapper .colm .img-wrap img {
        width: 100%;
        max-width: 100%;
        height: 400px;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .call-to-action .sec-title {
        text-align: center;
    }
    .call-to-action .buttons-wrap {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-top: 40px;
    }

    .cp-section .text-box {
        padding-right: 0px;
    }
    .cp-section .img-box {
        margin-top: 40px;
    }
    .certifications-section .certifications-item {
        margin-bottom: 30px;
    }
    .quality-supply-section .img-box {
        margin-bottom: 30px;
    }
    .wpc-product-section .content {
        margin-left: 0px;
        margin-top: 30px;
    }
    .technical-specifications .img-box {
        margin-bottom: 30px;
    }
    .advantages-section .content {
        margin-bottom: 30px;
    }
    .ply-product-section .content .benefits-group .item {
        margin-bottom: 10px;
    }
    .ply-product-section .content .features-group .item {
        border-right: none;
    }
    .contact-section .contact-box {
        padding: 0;
        margin-bottom: 30px;
    }


    .scroll-top.show {
        bottom: 105px;
    }
    footer .widget {
        margin-bottom: 40px;
    }
    .footer-bottom .copyrights,
    .footer-bottom .design {
        float: none;
    }
    .footer-bottom .copyrights p,
    .footer-bottom .design p {
        text-align: center;
    }
}


@media only screen and (max-width: 767px) {
    #main-nav #main-menu > li > a .sub-arrow {
        top: 10px;
        background-color: #efefef;
        float: right;
    }
    .sec-title h2 {
        font-size: 32px;
    }
    .banner-slider .swiper-slide .slider-info {
        left: 0;
        padding: 100px 40px 120px;
    }
    /* .banner-slider .swiper-slide .slider-image {
        height: 80vw;
    } */
    .banner-slider .thumbnail-carousel .swiper-slide {
        border-width: 5px;
    }
    .btn-holder .theme-btn {
        font-size: 16px;
        padding: 0.5em 1.5em;
    }
    .banner-slider .swiper-slide .slider-info .text .btn-holder {
        margin-top: 20px;
    }
    .banner-slider .thumbnail-carousel {
        margin-top: 0px;
    }
    .banner-slider .swiper-slide .slider-info .text .sub-title h6 {
        font-size: 2vw;
    }
    .banner-slider .swiper-slide .slider-info .text .title h5 {
        font-size: 4vw;
    }
    .testimonials-box {
        position: relative;
        width: 100%;
        bottom: 0;
        background: #1d1d1d;
    }
    .testimonials-box .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 30px;
    }
    .testimonials-box .item .text p {
        text-align: justify;
    }
    .testimonials-box .item .text h4 {
        text-align: center;
    }
    .testimonials-box .item .img {
        width: auto;
    }
    .welcome-section .img-box {
        margin-bottom: 30px;
    }
    .wpc-section .box-list ul,
    .plywood-section .box-list ul {
        text-align: center;
    }
    .wpc-section .box-list,
    .plywood-section .box-list {
        top: 0px;
    }
    .wpc-section .box-content .img-wrap,
    .plywood-section .box-content .img-wrap {
        display: none;
    }
    .wpc-section .box-content .content-detail,
    .plywood-section .box-content .content-detail {
        position: relative;
    }
    .wpc-section .box-content .content-detail .wrapper .subtitle,
    .plywood-section .box-content .content-detail .wrapper .subtitle {
        text-align: center;
    }
    .wpc-section .box-content .content-detail .wrapper h5,
    .plywood-section .box-content .content-detail .wrapper h5 {
        text-align: center;
    }
    .wpc-section .box-content .content-detail .wrapper p,
    .plywood-section .box-content .content-detail .wrapper p {
        text-align: center;
    }
    .wpc-section .box-content .content-detail .wrapper .content-btn,
    .plywood-section .box-content .content-detail .wrapper .content-btn {
        text-align: center;
    }
    .home-contact-section {
        margin-top: 0;
    }
    .partners-section {
        padding: 40px 0;
    }
    .vision-mission-section .inner {
        padding: 50px;
    }
    .ply-product-section .content .sizes li {
        margin-bottom: 10px;
    }
    .contact-section .contact-box .contact-info ul li p {
        font-size: 15px;
    }
    .contact-section .contact-box .contact-info ul li p br {
        display: none;
    }
    .dealership-page-section .inner {
        padding: 30px;
    }
}


@media only screen and (max-width: 575px) {
    .navbar {
        padding: 20px 10px;
    }
    .navbar-brand {
        width: 200px;
    }
    .banner-slider .thumb-slider-content {
        padding: 10px 0 25px;
    }
    .banner-slider .slider-arrows {
        justify-content: center;
        width: 100%;
    }
    .banner-slider .slider-arrows > div {
        margin: 0 30px 0 0;
    }
    .banner-slider .thumbnail-slider .thumbnail-title {
        width: 100%;
        padding: 0;
    }
    .banner-slider .thumbnail-carousel {
        margin-top: 0px;
    }
    .banner-slider .thumb-slider-content p {
        font-size: 17px;
        text-align: center;
    }
    .testimonials-box .item .img img {
        width: 120px;
    }
    .home-contact-section .form-inner {
        width: 100%;
    }
    .call-to-action .buttons-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .vision-mission-section .inner {
        padding: 20px;
    }
    .vision-mission-section .inner .content .box .icon {
        width: 50px;
    }
    .vision-mission-section .inner .content .box {
        flex-direction: column;
    }
    .careers-section .inner {
        padding: 30px;
    }
    .wpc-product-section .content .btn-wrap a {
        display: inline-block;
        margin-bottom: 10px;
    }
    .specifications-section .inner {
        padding: 50px 30px;
    }
    .contact-form {
        padding: 20px;
    }
}

@media only screen and (max-width: 425px) {
    .sec-title h2 {
        font-size: 25px;
    }
    .banner-slider .swiper-slide .slider-info .text .btn-holder {
        margin-top: 5px;
    }
    .banner-slider .swiper-slide .slider-info .text .btn-holder .theme-btn {
        font-size: 10px;
        padding: 0px 10px;
    }
    .banner-slider .slider-arrows {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        gap: 10px;
        margin-top: 10px;
    }
    .banner-slider .slider-arrows > div {
        margin: 5px 0;
        left: 0;
    }
    .testimonials-box .item {
        padding: 30px 10px;
    }
    .home-contact-section .form-inner {
        padding: 30px 20px 30px 20px;
    }
}
