body {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

:focus-visible {
    outline: none;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --container-width: 1350px;
    --container-padding: calc((100vw - var(--container-width)) / 2);
}

.container {
    max-width: 1350px;
    padding: 0;
}

#wrap {
    width: 100%;
}

#middle {
    width: 100%;
}

/* wordpress menu */
.menu_sec ul.menu {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-right: 100px;
    display: flex;
    align-items: center;
}

.menu_sec ul.menu li {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin-right: 42px;
    position: relative;
}

.menu_sec ul.menu li:last-child {
    margin-right: 0;
}

.menu_sec ul.menu li a {
    font-family: "Nunito Sans", sans-serif;
    display: block;
    padding: 0px;
    background: transparent;
    text-decoration: none;
    transition: all .3s ease-in-out;
    cursor: pointer;
    font-family: Nunito Sans;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;

}

.menu_sec ul.menu>li>a:hover,
.menu_sec ul.menu>li:hover>a,
.menu_sec ul.menu>li.current_page_item>a,
.menu_sec ul.menu>li.current-menu-parent>a {
    color: #784E32;
}

.menu_sec ul.menu li.menu-item-has-children a {
    padding-right: 14px;
}

.menu_sec ul.menu li.menu-item-has-children>a:after {
    content: "\f104";
    font: normal normal normal 14px/1 Ionicons;
    font-family: Ionicons;
    font-size: 12px;
    position: absolute;
    margin-top: -6px;
    top: 50%;
    right: 0px;
}

.menu_sec ul li a svg {
    display: none;
}

.menu_sec ul.menu>li:hover>ul.sub-menu {
    display: block;
}

.menu_sec ul.menu li ul.sub-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 250px;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    display: none;
}

.menu_sec ul.menu li ul.sub-menu li {
    width: 100%;
    padding: 0 0px;
}

.menu_sec ul.menu li ul.sub-menu li a {
    padding: 10px 12px;
    border-radius: 0px;
    font-size: 16px;
    color: #1a1a1a;
    text-transform: none;
    cursor: pointer;
}

.menu_sec ul.menu li ul.sub-menu li a:hover,
.menu_sec ul.menu li ul.sub-menu li:hover>a,
.menu_sec ul.menu li ul.sub-menu li.current_page_item>a {
    background-color: #e9650d;
    color: #ffffff;
    text-decoration: none;
}

.menu_sec ul.menu li ul.sub-menu li.menu-item-has-children>a:after {
    content: "\f125";
    right: 10px;
}

.menu_sec ul.menu li ul li ul.sub-menu {
    top: 0;
    left: 100%;
    display: none;
}

.menu_sec ul.menu>li>ul>li:hover>ul.sub-menu {
    display: block;
}

header {
    width: 100%;
    position: absolute;
    top: 0px;
    padding: 25px 50px 0px 50px;
    z-index: 2;
    transition: all .2s ease-in-out;

}

header.sticky {
    position: fixed;
    padding: 0px 50px 0px 50px;
    background-color: #ffffff;
    border-bottom: 1px solid #7F5F4B;
}

header .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    padding: 10px 25px;
    border-radius: 50px;
}

header .menu_sec {
    display: flex;
}

header .main-header .menu_sec .get-quote a {
    font-size: 22px;
    font-weight: 500;
    line-height: 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 15px 20px 15px 23px;
    border-radius: 50px;
    background-color: #7F5F4B;
    color: #FFFFFF;
    transition: all .3s ease-in-out;
}

header .main-header .menu_sec .get-quote a:hover {
    background-color: #000000;
}

header .main-header .menu_sec .get-quote a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-left: 10px;
    background-color: #ffffff;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.2s;
    overflow: hidden;
}

header .main-header .menu_sec .get-quote a:hover span img {
    animation: moving-arrow 1.2s forwards;
    animation-delay: 0.4s;
}

@keyframes moving-arrow {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translate(50px, -50px);
    }

    51% {
        transform: translate(-50px, 50px);
    }

    100% {
        transform: translate(0);
    }
}

/* Hamburger Menu */
header .main-header .hamburger {
    display: none;
    position: relative;
    border: 0px solid #fff;
}

header .main-header .hamburger #nav-btn,
header .main-header .hamburger #nav-btn+label {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    z-index: 99;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    justify-content: center;
}

header .main-header .hamburger #nav-btn {
    position: relative;
    opacity: 0;
    z-index: 100;
}

header .main-header .hamburger #nav-btn+label span {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

header .main-header .hamburger #nav-btn+label span::before,
header .main-header .hamburger #nav-btn+label span::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

body.no-scroll header .main-header .hamburger #nav-btn+label span::before {
    background-color: #000;
}

body.no-scroll header .main-header .hamburger #nav-btn+label span {
    background-color: #000;
}

header .main-header .hamburger #nav-btn+label span::before {
    top: -8px;
}

header .main-header .hamburger #nav-btn+label span::after {
    bottom: -8px;
}

header .main-header .hamburger #nav-btn:checked+label span {
    transform: rotate(135deg);
    border-radius: 2px;
    width: 30px;
}

header .main-header .hamburger #nav-btn:checked+label span::before,
header .main-header .hamburger #nav-btn:checked+label span::after {
    width: 30px;
    top: 0;
    max-width: 100%;
    transform: rotate(90deg);
}

header .main-header .hamburger #nav-btn:checked+label span::after {
    opacity: 0;
}

header .main-header .hamburger #nav-btn:checked~nav {
    visibility: visible;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    overflow: hidden;
}

header .main-header .hamburger nav {
    position: fixed;
    top: 0;
    padding: 100px 20px 60px 20px;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    opacity: 1;
    z-index: 98;
    align-items: self-start;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
    transition: transform 0.5s, visibility 0s 0.5s;
    overflow: hidden;
}

header .main-header .hamburger nav ul.menu {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: scroll;
}

header .main-header .hamburger nav ul.menu li {
    width: 100%;
    padding-bottom: 40px;
    margin-right: 0;
    list-style-type: none;
}

header .main-header .hamburger nav ul.menu li:last-child {
    margin-right: 0;
}

header .main-header .hamburger nav ul.menu li a {
    font-family: "Nunito Sans", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    color: #000;
    text-decoration: none;
}

header .main-header .hamburger nav ul.menu>li>a:hover,
header .main-header .hamburger nav ul.menu>li:hover>a,
header .main-header .hamburger nav ul.menu>li.current-menu-item>a,
header .main-header .hamburger nav ul.menu>li.current-menu-parent>a {
    color: #7F5F4B;
}

header .main-header .hamburger nav ul.menu li.menu-item-has-children a {
    padding-right: 14px;
}

header .main-header .hamburger nav ul.menu li.menu-item-has-children>a:after {
    content: "\f104";
    font: normal normal normal 14px/1 Ionicons;
    font-family: Ionicons;
    font-size: 12px;
    position: absolute;
    margin-top: -6px;
    top: 50%;
    right: 0px;
}

header .main-header .hamburger nav ul li a svg {
    display: none;
}

/* Banner Section */
.banner-section {
    position: relative;
    display: flex;
    align-items: center;
    height: 1000px;
    /* background-image: url(../images/banner-img.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    padding-top: 140px;
    background-color: rgb(0 0 0 / 50%);
    z-index: 1;
}

.banner-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(85.59deg, rgba(0, 0, 0, 0.74) 2%, rgba(102, 102, 102, 0.17) 80%);
}

.banner-section video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.banner-section .banner-containe {
    position: relative;
    width: 100%;
    max-width: 807px;
    z-index: 1;
}

.banner-section .banner-containe h6 {
    font-weight: 500;
    font-style: Italic;
    font-size: 25px;
    line-height: 85px;
    color: #FFFFFF;
    margin-bottom: 0px;
}

.banner-section .banner-containe h2 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 85px;
    color: #FFFFFF;
    margin-bottom: 0px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    gap: 20px;
}

.banner-section .banner-containe h2 strong {
    color: #E6B190;
}

.banner-section .banner-containe h2 span {
    color: #DFDFDF;
}

.banner-slider {
    width: 212px;
    border-radius: 60px;
    overflow: hidden;
}

.banner-section .scroll img {
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes bounce {
    50% {
        transform: translateY(-10px);
    }
}

.banner-section .scroll .scroll-btn {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.videoBtnBox {
    position: fixed;
    left: -195px;
    top: 50%;
    display: flex;
    gap: 20px;
    transform: rotate(270deg);
    flex-direction: row-reverse;
    z-index: 1;
}

.brochureBtn {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 0px 0px 20px 20px;
    text-decoration: none;
    background-color: #7F5F4B;
    transition: all .3s ease-in-out;
}

.brochureBtn:hover {
    background-color: #000000;
    color: #ffffff;
}

.videoBtn {
    background-color: #000000;
}

.videoBtn:hover {
    background-color: #7F5F4B;
    color: #ffffff;
}

/* Who We Section */
.who-we-sec {
    position: relative;
    padding: 140px 0px;
}

.who-we-sec::before {
    content: "";
    position: absolute;
    bottom: 35px;
    right: 0;
    background-image: url(../images/who-we-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 724px;
    height: 588px;
    z-index: -1;
}

.who-we-sec h6 {
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    color: #000000;
    margin-bottom: 15px;
}

.who-we-sec h1 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 85px;
    margin-bottom: 52px;
    color: #000000;
    width: 100%;
    max-width: 719px;
}

.who-we-sec h1 strong {
    color: #7F5F4B;
}

.who-we-sec .leftPart .imgBox {
    border-radius: 200px;
    overflow: hidden;
    width: 402px;
}

.who-we-sec .rightPart span {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
    color: #000000;
}

.who-we-sec .rightPart span strong {
    color: #7F5F4B;
}

.who-we-sec .rightPart p {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.who-we-sec .rightPart p strong {
    color: #7F5F4B;
}

.who-we-sec .rightPart .more-about-btn {
    font-family: "Nunito Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background-color: #7F5F4B;
    padding: 8px 8px 8px 25px;
    border-radius: 50px;
    color: #FFFFFF;
    transition: all .3s ease-in-out;
}

.who-we-sec .rightPart .more-about-btn:hover {
    background-color: #000000;
}

.who-we-sec .rightPart .more-about-btn .more-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 100px;
    margin-left: 13px;
    background-color: #ffffff;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.who-we-sec .rightPart .more-about-btn .more-arrow img {
    transition: all .3s ease;
    display: inline-block;
    transform: rotate(0deg);
    transform-origin: center;
}

.who-we-sec .rightPart .more-about-btn:hover .more-arrow img {
    transform: rotate(-45deg);
}

/* Manufacture Section */
.manufacture-sec {
    background-color: #1D1D1D;
    padding: 75px 0px;
    text-align: center;
}

.manufacture-sec h6 {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.manufacture-sec h2 {
    font-family: Nunito Sans;
    font-size: 80px;
    font-weight: 800;
    line-height: 85px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 50px auto;
}

.manufacture-sec h2 strong {
    color: #7F5F4B;
}

.manufacture-sec .marqueeHorizontal {
    position: relative;
    height: 470px;
    margin-bottom: 50px;
    overflow: hidden;
}

.manufacture-sec .marqueeHorizontal .mhTrack {
    display: flex;
    gap: 20px;
    height: 100%;
}

.manufacture-sec .marqueeHorizontal .mhTrack .item {
    user-select: none;
    flex-shrink: 0;
    display: block;
    width: 340px;
    margin-top: 0;
    margin-bottom: auto;
    border-radius: 30px;
    overflow: hidden;
}

.manufacture-sec .marqueeHorizontal .mhTrack .item:nth-child(even) {
    margin-top: auto;
    margin-bottom: 0;
}

.manufacture-sec .marqueeHorizontal .mhTrack .item img {
    display: block;
    width: 100%;
    height: auto;
}

.manufacture-sec .view-our-btn {
    display: inline-flex;
    align-items: center;
    font-family: "Nunito Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    background-color: #ffffff;
    padding: 8px 15px 8px 28px;
    border-radius: 50px;
    color: #7F5F4B;
    transition: all .3s ease-in-out;
}

.manufacture-sec .view-our-btn:hover {
    background-color: #7F5F4B;
    color: #ffffff;
}

.manufacture-sec .view-our-btn .white-arrow {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    background-color: #7F5F4B;
    border-radius: 100px;
    transition: all .3s ease-in-out;
}

.manufacture-sec .view-our-btn .white-arrow img {
    transition: all .3s ease;
    display: inline-block;
    transform: rotate(0deg);
    transform-origin: center;
}

.manufacture-sec .view-our-btn:hover .white-arrow img {
    transform: rotate(-45deg);
}

.manufacture-sec .view-our-btn:hover .white-arrow {
    background-color: #ffffff;
}

.manufacture-sec .view-our-btn:hover .white-arrow img {
    filter: brightness(0) invert(0);
}

.manufacture-sec .view-our-btn .white-arrow img {
    filter: brightness(0) invert(1);
    transition: all .3s ease-in-out;
}

/* Why Us Section */
.why-us-sec {
    padding: 83px 0px 72px 0px;
}

.why-us-sec h6 {
    font-size: 25px;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.why-us-sec h2 {
    font-family: Nunito Sans;
    font-size: 80px;
    font-weight: 800;
    line-height: 85px;
    text-align: center;
    color: #000000;
    text-transform: capitalize;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 55px auto;
}

.why-us-sec h2 strong {
    color: #7F5F4B;
}

.why-us-sec .whyBox {
    background-color: #F3EEEB;
    padding: 50px 32px 50px 19px;
    border-radius: 15px;
    height: 100%;
}

.why-us-sec .whyBox .imgBox {
    margin-bottom: 50px;
}

.why-us-sec .whyBox p {
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    margin-bottom: 0px;
}

.why-us-sec .whyBox p strong {
    font-weight: 700;
}

/* Looking Section */
.looking-sec {
    padding-top: 52px;
    position: relative;
}

.looking-sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/looking-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 450px;
    width: 100%;
    z-index: -1;
}

.looking-sec .title {
    text-align: center;
}

.looking-sec h5 {
    font-family: Nunito Sans;
    font-size: 30px;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
    width: 100%;
    max-width: 870px;
    margin: 0 auto 20px auto;
}

.looking-sec .get-btn {
    display: inline-flex;
    align-items: center;
    font-family: "Nunito Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    background-color: #7F5F4B;
    padding: 9px 16px 9px 27px;
    border-radius: 50px;
    text-transform: capitalize;
    color: #ffffff;
    transition: all .3s ease-in-out;
}

.looking-sec .get-btn:hover {
    background-color: #000000;
}

.looking-sec .get-btn .white-arrow {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    background-color: #ffffff;
    border-radius: 100px;
    transition: all .3s ease-in-out;
}

.looking-sec .get-btn .white-arrow img {
    transition: all .3s ease;
    display: inline-block;
    transform: rotate(0deg);
    transform-origin: center;
}

.looking-sec .get-btn:hover .white-arrow img {
    transform: rotate(-45deg);
}

.looking-sec .get-touch {
    padding: 125px 0px 70px 0px;
}

.looking-sec .get-touch .leftPart iframe {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    vertical-align: bottom;
}

.looking-sec .get-touch .rightPart {
    background-color: #7F5F4B;
    padding: 50px 25px;
    border-radius: 30px;
    height: 100%;
}

.looking-sec .get-touch .rightPart h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.looking-sec .get-touch .rightPart h4 {
    display: inline-block;
    font-family: "Nunito Sans", sans-serif;
    font-size: 65px;
    font-weight: 800;
    line-height: 75px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.looking-sec .get-touch .rightPart ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 0px;
    margin: 0px;
}

.looking-sec .get-touch .rightPart ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.looking-sec .get-touch .rightPart ul li:last-child {
    margin-bottom: 0px;
}

.looking-sec .get-touch .rightPart ul li p {
    position: relative;
    width: 38%;
    margin: 0px;
    padding-left: 80px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 35px;
    color: #FFFFFF;
}

.looking-sec .get-touch .rightPart ul li.call p::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    background-image: url(../images/phone-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 36px;
    background-color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.looking-sec .get-touch .rightPart ul li.mail p::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    background-image: url(../images/mail-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 36px;
    background-color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.looking-sec .get-touch .rightPart ul li a {
    width: 62%;
    font-family: "Nunito Sans", sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 35px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.looking-sec .get-touch .rightPart ul li a:hover {
    color: #000000;
}

/* Footer Section */
footer {
    padding-bottom: 30px;
}

footer .logo {
    align-items: center;
}

footer .footer-menu {
    margin: 0 auto;
    align-items: center;
}

footer .footer-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    text-decoration: none;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0;
}

footer .footer-menu ul li a {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #000000;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}

footer .footer-menu ul li a:hover {
    color: #7F5F4B;
}

footer .footer-menu p {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    color: #000000;
    margin-bottom: 0px;
}

footer .icon {
    align-items: center;
}

footer .icon ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding-left: 0px;
    justify-content: end;
    margin-bottom: 0px;
}

footer .icon ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 43px;
    height: 43px;
    border-radius: 50px;
    background: #7F5F4B;
    transition: all .3s ease-in-out;
}

footer .icon ul li a:hover {
    background-color: #000000;
}

footer .icon ul li a img {
    width: 100%;
    max-width: 23px;
}

/* ---------- Form Pop Up CSs ---------- */
#cboxClose {
    width: 20px;
    height: 20px;
    top: 30px;
    right: 30px;
    background: url(../images/close-icon.png) no-repeat;
    background-position: center;
}

#cboxClose:hover {
    background-position: center;
}

.tempalte-pop h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #000000;
    margin-bottom: 10px;
}

.tempalte-pop h2 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 45px;
    line-height: 50px;
    color: #000000;
    width: 100%;
    max-width: 450px;
    margin-bottom: 25px;
}

.tempalte-pop h2 strong {
    color: #7F5F4B;
}

.tempalte-pop .contact-form {
    text-align: center;
}

.tempalte-pop .contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    color: #606060;
    border-radius: 15px;
    border: 1px solid #7F5F4B;
    height: 55px;
    padding: 15px 10px;
    margin-bottom: 20px;
}

.tempalte-pop .contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.tempalte-pop .contact-form textarea {
    height: 180px !important;
    resize: none;
}

.tempalte-pop .contact-form .submit-btn {
    display: inline-block;
    font-family: 'Nunito Sans';
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    background-color: #7F5F4B;
    border-radius: 15px;
    padding: 15px 15px;
    border: none;
    transition: all .3s ease-in-out;
}

.tempalte-pop .contact-form .submit-btn:hover {
    background-color: #000000;
}

/* Whatsapp Css */
.whatsapp {
    position: fixed;
    z-index: 1;
    right: 10px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.whatsapp img {
    margin-bottom: 15px;
}

.whatsapp .talk-btn {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    background-color: #fff;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    padding: 5px 10px;
}

/*------------- Alignment Css -------------*/
.alignleft,
.alignnone {
    float: left;
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 40px 20px 0;
    border-radius: 20px;
}

.alignright {
    float: right;
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 0 40px 40px;
    border-radius: 20px;
}

.aligncenter {
    float: none;
    display: block;
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 40px auto;
    border-radius: 20px;
}

/* ---------- Inner Banner Css ---------- */
.inner-banner-section {
    position: relative;
    display: flex;
    align-items: center;
    height: 685px;
    background-image: url(../images/inner-banner-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 140px;
    background-color: #000000;
    background-color: rgb(0 0 0 / 50%);
    z-index: 1;
}

.inner-banner-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(85.59deg, rgba(0, 0, 0, 0.74) 2.67%, rgba(102, 102, 102, 0.17) 59.32%);
    z-index: -1;
}

.inner-banner-section h6 {
    font-size: 25px;
    font-style: italic;
    font-weight: 500;
    line-height: 35px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.inner-banner-section h2 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 85px;
    color: #FFFFFF;
    margin-bottom: 0px;
}

/* ---------- About Company Page Css ---------- */
.inner-banner-section.aboutInnerBanner {
    background-image: url(../images/about-banner-img.webp);
}

.who-we-about-sec {
    padding-top: 130px;
}

.who-we-about-sec h6 {
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    color: #000000;
    margin-bottom: 15px;
}

.who-we-about-sec h1 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 85px;
    margin-bottom: 52px;
    color: #000000;
    width: 100%;
    max-width: 719px;
}

.who-we-about-sec h1 strong {
    color: #7F5F4B;
}

.who-we-about-sec .imgBox {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
}

.who-we-about-sec .imgBox img {
    width: 100%;
    height: auto;
}

.who-we-about-sec h5 {
    font-size: 25px;
    font-weight: 700;
    line-height: 36px;
    color: #000000;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto 40px auto;
}

.who-we-about-sec h5 strong {
    color: #7F5F4B;
}

.who-we-about-sec p {
    font-size: 25px;
    font-weight: 400;
    line-height: 36px;
    color: #000000;
    margin-bottom: 0px;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.who-we-about-sec p span {
    color: #7F5F4B;
}

.core-benefits-sec {
    padding: 60px 0px 30px 0px;
}

.core-benefits-sec h6 {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
    color: #000000;
    margin-bottom: 15px;
}

.core-benefits-sec h2 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 80px;
    line-height: 85px;
    text-align: center;
    width: 100%;
    max-width: 590px;
    margin: 0 auto 55px auto;
    color: #000000;
}

.core-benefits-sec h2 strong {
    color: #7F5F4B;
}

.core-benefits-sec .benefitBox {
    display: flex;
    gap: 20px;
    background-color: #F3EEEB;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto 17px auto;
    border-radius: 15px;
    position: sticky;
    top: 130px;
}

.core-benefits-sec .benefitBox:last-child {
    margin: 0 auto;
}

.core-benefits-sec .benefitBox h3 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 130px;
    line-height: 140px;
    color: #0000000D;
    margin-bottom: 0px;
}

.core-benefits-sec .benefitBox h5 {
    width: 100%;
    max-width: 600px;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    color: #000000;
}

.core-benefits-sec .benefitBox h5 strong {
    font-weight: 700;
}

/* ---------- Our Products Page Css ---------- */
.productsInnerBanner {
    background-image: url(../images/products-banner-img.webp);
}

.high-quality-sec {
    padding: 130px 0px 45px 0px;
}

.high-quality-sec h6 {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 15px;
}

.high-quality-sec h1 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 80px;
    line-height: 85px;
    margin-bottom: 50px;
    text-transform: capitalize;
    width: 100%;
    max-width: 700px;
}

.high-quality-sec h1 strong {
    color: #7F5F4B;
}

.high-quality-sec .qualityBox {
    display: flex;
    gap: 23px;
    padding-bottom: 100px;
}

.high-quality-sec .qualityBox:last-child {
    padding-bottom: 0px;
}

.high-quality-sec .qualityBox .leftPart {
    width: 45%;
}

.high-quality-sec .qualityBox .leftPart .product-slider {
    border-radius: 30px;
    max-width: 590px;
    overflow: hidden;
}

.high-quality-sec .qualityBox .leftPart .product-slider .item img {
    width: 100%;
    height: auto;
}

.high-quality-sec .qualityBox .product-slider.owl-theme .owl-nav button.owl-prev {
    left: 10px;
    transform: rotate(180deg);
}

.high-quality-sec .qualityBox .product-slider.owl-theme .owl-nav button.owl-next {
    right: 10px;
}

.high-quality-sec .qualityBox .product-slider.owl-theme .owl-nav button.owl-prev,
.high-quality-sec .qualityBox .product-slider.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all ease-in;
}

.high-quality-sec .qualityBox .product-slider.owl-theme .owl-nav button.owl-prev:hover,
.high-quality-sec .qualityBox .product-slider.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #7F5F4B;
}

.high-quality-sec .qualityBox .product-slider.owl-theme .owl-nav button.owl-prev:hover img,
.high-quality-sec .qualityBox .product-slider.owl-carousel .owl-nav button.owl-next:hover img {
    filter: invert(100%) sepia(0%) saturate(7444%) hue-rotate(147deg) brightness(114%) contrast(91%);
}

.high-quality-sec .qualityBox .rightPart {
    width: 55%;
}

.high-quality-sec .rightPart h3 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 50px;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.high-quality-sec .rightPart h3 strong {
    color: #7F5F4B;
}

.high-quality-sec .rightPart h4 {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    color: #000000;
    margin-bottom: 20px;
}

.high-quality-sec .rightPart h4 strong {
    font-weight: 700;
    color: #7F5F4B;
}

.high-quality-sec .rightPart h5 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 35px;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.high-quality-sec .rightPart .table-responsive {
    background-color: #F3EEEB;
    border-radius: 15px;
    padding: 25px 20px;
}

.high-quality-sec .rightPart .table {
    margin: 0px;
}

.high-quality-sec .rightPart .table tbody td {
    border: none;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    padding: 10px;
}

.high-quality-sec .rightPart .table thead th {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    padding: 10px;
    border: none;
}

.high-quality-sec .rightPart .read-more-btn {
    display: inline-flex;
    align-items: center;
    font-family: "Nunito Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    background-color: #7F5F4B;
    padding: 9px 16px 9px 27px;
    border-radius: 50px;
    text-transform: capitalize;
    color: #ffffff;
    transition: all .3s ease-in-out;
}

.high-quality-sec .rightPart .read-more-btn .white-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-left: 15px;
    background-color: #ffffff;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.2s;
    overflow: hidden;
}

.high-quality-sec .rightPart .read-more-btn .white-arrow img {
    transition: all .3s ease;
    display: inline-block;
    transform: rotate(0deg);
    transform-origin: center;
}

.high-quality-sec .rightPart .read-more-btn:hover {
    background-color: #000000;
}

.high-quality-sec .rightPart .read-more-btn:hover .white-arrow img {
    transform: rotate(-45deg);
}

/* ---------- Product Inner Page Css ---------- */
.product-inner-sec {
    display: flex;
    padding: 130px 0px 45px 0px;
}

.product-inner-sec h1 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 60px;
    line-height: 75px;
    margin-bottom: 0px;
    text-transform: capitalize;
    width: 100%;
    max-width: 900px;
}

.product-inner-sec h1 strong {
    color: #7F5F4B;
}

.product-inner-sec h6 {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 15px;
}

.product-inner-sec .containe-box {
    padding: 50px 0 100px 0;
}

.product-inner-sec .containe-box p {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.product-inner-sec .containe-box p:last-child {
    margin-bottom: 0px;
}

.product-inner-sec .containe-box p strong {
    color: #7F5F4B;
}

.product-inner-sec .containe-box p span {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
    color: #000000;
}

.product-inner-sec .containe-box p a {
    color: #7F5F4B;
    transition: all .3s ease-in-out;
}

.product-inner-sec .containe-box p a:hover {
    text-decoration: none;
}

/* ---------- Gallery Page Css ---------- */
.inner-banner-section.galleryInnerBanner {
    background-image: url(../images/gallery-banner-img.webp);
}

.gallerySec {
    padding: 130px 0px 45px 0px;
}

.gallerySec h6 {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 15px;
}

.gallerySec h1 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 80px;
    line-height: 85px;
    margin-bottom: 50px;
    text-transform: capitalize;
}

.gallerySec h1 strong {
    color: #7F5F4B;
}

.gallerySec ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.gallerySec ul li {
    width: calc(25% - 12px);
    border-radius: 10px;
    overflow: hidden;
}

.gallerySec ul li img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease-in-out;
}

.gallerySec ul li a {
    transition: all 0.5s ease-in-out;
}

.gallerySec ul li a:hover img {
    transform: scale(1.1);
}

.gallerySec ul li:last-child {
    margin-right: 0px;
}

.gallerySec ul li:nth-child(4) {
    margin-right: 0px;
}

/* ---------- Contact Page Css ---------- */
.inner-banner-section.contactInnerBanner {
    background-image: url(../images/contact-us-banner-img.webp);
}

.contact-sec {
    padding: 130px 0px 40px 0px;
}

.contact-sec h6 {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    color: #000000;
    margin-bottom: 15px;
}

.contact-sec h1 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 80px;
    line-height: 85px;
    color: #000000;
    width: 100%;
    max-width: 700px;
    margin-bottom: 50px;
}

.contact-sec h1 strong {
    color: #7F5F4B;
}

.contact-sec .contactBox {
    display: flex;
    gap: 13px;
}

.contact-sec .contactBox .leftPart {
    width: 50%;
    background-color: #F3EEEB;
    padding: 30px 20px 50px 20px;
    border-radius: 30px;
}

.contact-sec .contactBox .leftPart h5 {
    font-family: 'Nunito Sans';
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    text-align: center;
    color: #7F5F4B;
    margin-bottom: 20px;
}

.contact-sec .contactBox .leftPart .contact-form {
    text-align: center;
}

.contact-sec .contactBox .leftPart .contact-form .form-control {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #606060;
    border-radius: 15px;
    border: 1px solid #7F5F4B;
    height: 66px;
    padding: 23px 19px;
    margin-bottom: 20px;
}

.contact-sec .contactBox .leftPart .contact-form .form-control::placeholder {
    text-transform: uppercase;
}

.contact-sec .contactBox .leftPart .contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.contact-sec .contactBox .leftPart .contact-form textarea {
    height: 200px !important;
    resize: none;
}

.contact-sec .contactBox .leftPart .contact-form .submit-btn {
    display: inline-block;
    font-family: 'Nunito Sans';
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    background-color: #7F5F4B;
    border-radius: 15px;
    padding: 17px 21px;
    border: none;
    transition: all .3s ease-in-out;
}

.contact-sec .contactBox .leftPart .contact-form .submit-btn:hover {
    background-color: #000000;
}

.contact-sec .contactBox .rightPart {
    width: 50%;
    background-color: #7F5F4B;
    padding: 50px 25px;
    border-radius: 30px;
}

.contact-sec .contactBox .rightPart h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.contact-sec .contactBox .rightPart h4 {
    display: inline-block;
    font-family: "Nunito Sans", sans-serif;
    font-size: 65px;
    font-weight: 800;
    line-height: 75px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.contact-sec .contactBox .rightPart ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 0px;
    margin: 0px;
}

.contact-sec .contactBox .rightPart ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-sec .contactBox .rightPart ul li.location {
    align-items: flex-start;
}

.contact-sec .contactBox .rightPart ul li.location a {
    padding-top: 0px;
}

.contact-sec .contactBox .rightPart ul li:last-child {
    margin-bottom: 0px;
}

.contact-sec .contactBox .rightPart ul li p {
    position: relative;
    width: 38%;
    margin: 0px;
    padding-left: 80px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 35px;
    color: #FFFFFF;
}

.contact-sec .contactBox .rightPart ul li.location p::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    background-image: url(../images/location-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 36px;
    background-color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.contact-sec .contactBox .rightPart ul li.call p::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    background-image: url(../images/phone-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 36px;
    background-color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.contact-sec .contactBox .rightPart ul li.mail p::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    background-image: url(../images/mail-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 36px;
    background-color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.contact-sec .contactBox .rightPart ul li a {
    width: 62%;
    font-family: "Nunito Sans", sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 35px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.contact-sec .contactBox .rightPart ul li a:hover {
    color: #000000;
}

.map-sec {
    position: relative;
    padding-bottom: 80px;
}

.map-sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/looking-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 450px;
    z-index: -1;
}

.map-sec h5 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: #000000;
}

.map-sec h5 strong {
    color: #7F5F4B;
}

.map-sec iframe {
    width: 100%;
    max-width: 1360px;
    height: 433px;
    border-radius: 30px;
}

/* ---------- Thank You Page Css ---------- */
.thanks-page footer {
    padding-top: 30px;
}

/* ---------- Modal Watch Video ---------- */
.modalVideo {
    /* width: auto; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    padding: 20px;
    background-color: rgb(0 0 0 / 60%);
}

.modalVideo .modal-dialog {
    max-width: max-content;
    margin: 0;
    height: 100%;
    margin: 0 auto;
}

.modalVideo .modal-dialog .modal-content {
    border: solid 2px #ffffff;
    border-radius: 0;
}

.modalVideo .modal-dialog .modal-content .modal-header {
    padding: 0;
    height: 100%;
}

.modalVideo .modal-dialog .modal-content .modal-header .btn-close {
    position: absolute;
    right: 30px;
    top: 30px;
    padding: 0;
    box-shadow: none;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.modalVideo .modal-dialog .modal-content .modal-header iframe {
    width: 1211px;
    height: 681px;
}