/* Webfont include */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
}

/* Color */

:root {
    --border-light: #bfc1bf;
    --button-border: #6b6a68;
    --gradient-bg: linear-gradient(234.96deg, #0D1E20 -21.43%, #35463D 48.09%, #262D20 101.25%);
    --dark-text: #282B27;
    --grey-dark-text: #2D2926;
    --primary-dark-bg:#35463D;
    --grey-border: #C1C5BF;
    --light-grey-200:#F9F9F9;
    --pink-light-200: #f2eefb;
    --pink-light-100: #f7f5fa;
    --inner-shadow: 4px 4px 30px 0px #D1D9E6 inset;
    --error: #ff0000;
    --white: #ffffff;
    --black: #000000;
}




body {
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0;
    margin: 0;
    background-color: var(--light-grey-200);
    overflow-x: hidden;
    font-size: 18px;
    font-weight: 400;
}


a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
    transition: all .6s;
    text-decoration: none;
}

h1 {
    font-weight: 500;
    font-size: 64px;
    line-height: 105%;
}

h2 {
    font-weight: 500;
    font-size: 46px;
    line-height: 100%;
    text-transform: capitalize;
}
h3{
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
}
h4{
    font-weight: 700;
    font-size: 24px;
    line-height: 128%;
}

h1,
h2,
h3,
h4 {
    font-style: normal;
    font-family: "Playfair Display", serif;
}

h4,
h5,
h6 {
    margin: 0;
    font-optical-sizing: auto;
}

ul,
li {
    margin: 0px;
    font-weight: 500;
    list-style-type: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

p {
    margin: 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

a {
    margin: 0px;
    font-size: 18px;
    font-weight: 400;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}

textarea {
    resize: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--button-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--button-border);
    border-radius: 10px;
}


input,
button,
input:focus,
button:focus,
textarea,
textarea:focus,
select,
select:focus {
    outline: none !important;
    box-shadow: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus {
    outline: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--Primary-dark-800);
}

.tnp-subscription input.tnp-email {
    background: transparent;
    border-bottom: 1px solid #ffffff54;
    color: #fff;
}


/* buttons add */
.globalBtnDark {
    padding: 10px 35px;
    color: var(--black);
    background-color: #E0E0E0;
    border-radius: 40px;
    display: inline-flex;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease-in-out;
    min-height: 52px;
    position: relative;
    overflow: hidden;
}

.globalBtnDark:hover:before {
    transform: translateX(0);
}

.globalBtnDark:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--black);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnDark span {
    position: relative;
    z-index: 9;
    color: var(--black);
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.globalBtnDark:hover span {
    color: var(--white);
}

.globalBtnOutline {
    padding: 10px 35px;
    color: var(--white);
    background-color: transparent;
    border-radius: 40px;
    border: 1px solid var(--button-border);
    display: inline-flex;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    align-items: center;
    transition: all 0.4s ease-in-out;
    min-height: 52px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.globalBtnOutline:hover:before {
    transform: translateX(0);
}

.globalBtnOutline:hover,
.globalBtnOutline:hover span {
    color: var(--white);
}

.globalBtnOutline:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--button-border);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnOutline span {
    position: relative;
    z-index: 9;
}

/* Slider navbar */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-pills .nav-link {
    background-color: transparent;
}

.owl-nav {
    color: #fff;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
}

.owl-nav button.owl-prev span {
    left: -40px;
}

.owl-nav button.owl-next span {
    right: -40px;
}

.owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    color: var(--white);
    border-radius: 50%;
    position: relative;
}

.owl-dots button.owl-dot span {
    background: var(--white);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 5px;
}

.owl-dots button.owl-dot.active span {
    background: var(--white);
    display: inline-block;
    width: 15px;
    height: 6px;
    border-radius: 5px;
    margin: 5px;
}

.owl-dots {
    margin-top: 35px;
    text-align: center;
}

/* global header start */
.global-header {
    margin-bottom: 30px;
}

.global-header h2 {
    font-size: 45px;
}

.global-header h2 span {
    font-weight: 700;
}

/* global header end */

/* top navbar start */
.top-navbar li.nav-item.dropdown {
    display: flex;
}
.top-navbar a.nav-link.dropdown-toggle {
    padding-left: 0px !important;
}
.top-navbar a.nav-link.dropdown-toggle::after {
    display: none;
}
.top-navbar li.nav-item.dropdown a.dropdown-toggle i{
    transition: all 0.4s ease-in-out;
}
.top-navbar li.nav-item.dropdown:hover a.dropdown-toggle i {
    transform: rotate(180deg);
}
.top-navbar a.nav-link {
    font-size: 16px;
    line-height: 17.58px;
    color: var(--dark-green-800);
    padding-top: 0px;
    padding-bottom: 0px;
    transform: all 0.4s ease-in-out;
}

.top-navbar a.nav-link:hover,
header.sticky a.nav-link:hover {
    transform: all 0.4s ease-in-out;
}

header.sticky .top-logo-part img {
    -moz-transition: height 1s ease;
    -webkit-transition: height 1s ease;
    -o-transition: height 1s ease;
}

header.sticky .top-logo-part img {
    height: 70px;
}

.top-logo-part {
    font-size: 28px;
}

header.sticky .top-logo-part {
    color: var(--white);
}

header.sticky a.nav-link {
    color: var(--white);
}

header.sticky .loginBtn-cntn .globalBtnOutline {
    color: var(--white);
}

.loginBtn-cntn a.globalBtnOutline {
    padding: 0px 14px;
    min-height: 37px;
    font-size: 16px;
}

header.top-navbar .loginBtn-cntn {
    display: flex;
    gap: 16px;
}

/* Circle flag button */
.loginBtn-cntn .flag-btn {
    height: 30px;
    overflow: hidden;
    cursor: pointer;
/*     border: 1px solid #555; */
    display: flex;
    align-items: center;
    justify-content: center;
	color: #ffffff;
/*     background: #fff; */
}
.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1px; 
}
.language-switch::after {
  content: "▼"; /* down arrow */
  font-size: 10px;
  margin-left: 6px;
}
.loginBtn-cntn .flag-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.loginBtn-cntn .dropdown-menu {
    display: none;
    position: absolute;
    top: 10px;
    right: 0;
    background: #fff;
    color: #000;
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.loginBtn-cntn .dropdown-menu a {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loginBtn-cntn .dropdown-menu a img {
    height: 24px;
    object-fit: cover;
}

.loginBtn-cntn .dropdown-menu a:hover {
    background: #f0f0f0;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile_logo a {
    font-size: 25px;
}

.dropdown-menu {
    -webkit-animation: fadeIn 0.3s alternate;
    animation: fadeIn 0.3s alternate;
    padding: 0px;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item {
    padding: 10px 19px;
}

li.nav-item.dropdown .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 90%;
    top: auto;
    left: 5%;
}

li.nav-item.dropdown:hover .dropdown-menu:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 14px solid #ffffff;
    top: -12px;
    left: 24px;
}

li.nav-item.dropdown:hover .dropdown-menu:before {
    content: '';
    position: absolute;
    width: calc(100% - 50px);
    height: 14px;
    top: -14px;
    left: 0px;
}

.dropdown-item.active,
.dropdown-item:active {
    /* color: var(--blue-dark-bg); */
    text-decoration: none;
    background-color: var(--border-light);
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}
.only-mobile-order-btn{
    display: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item:hover {
    background-color: transparent;
}

.navbar-toggler .hamburger-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 11;
    right: 0px;
}

.only_mobile_view {
    display: none;
}

.navbar-toggler .hamburger-toggle .hamburger {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
    width: 100%;
    height: 2px;
    position: absolute;
    background: #333;
    border-radius: 1px;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
    left: 0px;
}

header.sticky .navbar-toggler .hamburger-toggle .hamburger span {
    background-color: var(--white);
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
    right: 0px;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
}

.top-navbar {
    background-color: var(--light-grey);
}

.top-navbar li.nav-item {
    padding: 0px 16px;
    color: var(--white);
}

.top-navbar {
    padding: 15px 0px;
    position: fixed;
    top: 0;
    z-index: 9;
    background-color: transparent;
    width: 100%;
    transition: 0.6s;
    z-index: 99999;
}

.top-navbar.sticky {
    padding: 8px 0px;
    background: var(--gradient-bg);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.top-navbar ul.navbar-nav {
    margin-left: auto;
}
.navbar-nav .nav-link, .navbar-nav .nav-link, .navbar-expand-lg .navbar-nav .nav-link{
    position: relative;
}
.navbar-nav .nav-link::before, .navbar-nav .nav-link::before, .navbar-expand-lg .navbar-nav .nav-link::before{
    content: '';
    position: absolute;
    height: 1px;
    background-color: var(--white);
    width: 0%;
    max-width: calc(100% - 12px);
    margin: auto;
    bottom: -6px;
    left: 0px;
    right: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link{
    color: var(--white) !important;
}
.navbar-nav .nav-link.active::before, .navbar-nav .show>.nav-link::before, .navbar-expand-lg .navbar-nav .nav-link:hover::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}
.navbar-nav .nav-link.active{
    font-weight: 700;
}
.dropdown-toggle::after {
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    border-top: .0em solid !important;
    vertical-align: 0em;
    transition: all 0.4s ease-in-out;
}

.dropdown-toggle.show::after,
li.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: all 0.4s ease-in-out;
}

li.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    top: 30px;
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
    box-shadow: 1px -4px 20px 0px #4a4a4a6e !important;
    transition: all 0.4s ease-in-out;
}

.dropdown-menu {
    border: none;
}

.navbar .custom-container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar .dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent !important;
}

/* top navbar end */

/* hero banner start */
.hero-banner {
    background: var(--gradient-bg);
    color: var(--black);
}

.hero-banner .owl-dots button.owl-dot span {
    background: #222629;
}

.hero-banner-main {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--white);
    min-height: 100vh;
    padding-top: 96px;
}

.hero-banner-cntn {
    align-self: center;
    padding: 80px 0px;
    max-width: 500px;
    width: 100%;
}

.hero-banner-thumb {
    flex: 1;
}

.hero-banner-thumb img {
    width: 100% !important;
    margin: 0 auto;
}

.hero-banner-cntn h1 {
    text-transform: capitalize;
}

.hero-banner-cntn p {
    line-height: 36px;
    margin: 35px 0px;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
}

.hero-banner-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-banner-btns .globalBtnDark i {
    font-size: 25px;
}

/* hero banner end */

 /* premium quality icon box start */
.premium-quality-wrap{
    padding: 70px 0px 50px;
    background-color: var(--light-grey-200);
}
.premium-quality-wrap .icon-box {
    border-top: 1px solid var(--grey-border);
    padding: 80px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.premium-quality-wrap .icon-box h4{
    font-weight: 700;
    font-style: Italic;
}
.premium-quality-wrap .icon-box span, .process-item span {
    background: #fff;
    width: 100px;
    height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--inner-shadow);
}

 /* premium quality icon box end */



/* customer review start */
.customer-review-main {
    padding: 30px 0px;
}

.custom-review-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-item-cntn h5 {
    font-size: 24px;
    margin-bottom: 4px;
}

.review-item-cntn p {
    color: #494949;
}

/* customer review end */

/* why choose us start */
.why-choose-us {
    padding: 60px 0px;
    background-color: var(--light-grey-200);
}
.why-choose-box {
    position: relative;
    height: 100%;
    padding: 30px 60px 30px 30px;
    border: 1px solid var(--button-border);
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--white);
}
.why-choose-box h4 {
    font-weight: 500;
}
.why-choose-box .globalBtnOutline{
    color: var(--black);
}
.why-choose-box p {
    margin: 30px 0px;
}
.why-choose-us .row {
    row-gap: 30px;
}
.why-choose-box ul {
    margin-bottom: 20px;
    margin-top: 10px;
    margin-left: 25px;
}
.why-choose-box ul li {
    list-style-type: disc;
}

/* why choose us end */

/* process start */
.process-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.process-item {
    max-width: calc(33% - 10px);
    width: 100%;
    text-align: center;
    padding: 20px 70px;
    position: relative;
}
.process-wrapper .process-item::before {
    content: '';
    height: 50px;
    max-width: 248px;
    top: 0%;
    position: absolute;
    width: 100%;
    transform: translate(40%, 60px);
}
.process-wrapper .process-item:first-child::before {
    background: url(../images/circle-arrow-up.png) no-repeat center / contain;
    transform: translate(40%, 0px);
}
.process-wrapper .process-item:nth-child(2)::before {
    background: url(../images/circle-arrow-down.png) no-repeat center / contain;
    transform: translate(40%, 75px);
}
.process-wrapper .process-item:nth-child(3)::before {
    background: url(../images/circle-arrow.png) no-repeat center / contain;
    top: 50%;
    height: 149px;
    max-width: 182px;
}
.process-wrapper .process-item:nth-child(4)::before {
    background: url(../images/circle-arrow-up-four.png) no-repeat center / contain;
    left: -55%;
    right: auto;
    transform: translate(40%, 75px);
}
.process-wrapper .process-item:nth-child(5)::before {
    background: url(../images/circle-arrow-up-three.png) no-repeat center / contain;
    left: -55%;
    right: auto;
    transform: translate(40%, 0px);
}

.process-item h4{
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    margin:30px 0px 10px;
    color: var(--grey-dark-text);
}
.process-wrapper .process-item:last-child{
    max-width: 100%;
    order: 7;
}
.process-wrapper .process-item:last-child h4{
    font-weight: 600;
    font-style: Italic;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;
}
.process-wrapper .process-item:last-child p{
    font-weight: 400;
    font-size: 25px;
    line-height: 20px;
    text-align: center;
    margin-top: 15px;
}
.our-process-main{
    padding: 80px 0px;
    background-color:var(--light-grey-200);
}
.our-process-main .global-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-wrapper .process-item:nth-child(4) {
    order: 6;
}
.process-wrapper .process-item:nth-child(5) {
    order: 5;
}
.process-wrapper .process-item:nth-child(6) {
    order: 4;
}

/* process end */
/* why doors matter start */
.why-doors-matter{
    background: var(--gradient-bg);
    padding: 80px 0px;
    color: var(--white);
}
.why-doors-matter .content-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: start;
}
/* why doors matter end */
/* range we offer start */
.range-we-offer {
    padding: 80px 0px;
    background-color: var(--light-grey-200);
}
.range-we-offer .why-choose-box ul li {
    margin: 11px 0px;
    font-size: 18px;
}
.range-we-offer .why-choose-box ul {
    margin-top: 30px;
}
.range-we-offer .why-choose-box .image-box {
    width: 60%;
}
.range-we-offer .why-choose-box .image-box img {
    width: 100%;
}

.range-we-offer .why-choose-box .content-box {
    width: 50%;
    padding-right: 80px;
}
/* range we offer end */

/* client testimonial start */
.client-testimonial .global-header {
    max-width: 800px;
    margin: 0px auto 60px;
    text-align: center;
}
.client-testimonial .global-header h2{
    margin-bottom: 30px;
}

.client-testimonial {
    padding: 100px 0px;
    position: relative;
    background-color: var(--light-grey-200);
}

.client-Item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border: 1px solid #a1a1a1;
    border-radius: 10px;
    padding: 0px 30px 35px;
    margin-top: 50px;
    margin-bottom: 20px;
}
.client-Item .client-info .info-head {
    margin-top: 50px;
}
.client-Item img {
    width: 88px;
    height: 88px;
    max-width: 88px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.client-testimonial .container-fluid {
    padding: 0px;
}

img.testimonial-icon {
    margin-top: -50px;
    z-index: 2;
    position: relative;
}

.client-info p {
    margin: 20px 0px;
    color: #222629;
}

.info-head h4 {
    font-size: 28px;
}

.client-info h6 {
    font-size: 20px;
    font-weight: 500;
}

.client-info h6 span {
    font-size: 16px;
    font-weight: 400;
}

.client-testimonial .owl-dots button.owl-dot span {
    background-color: #D9D9D9;
}

.client-testimonial .owl-dots button.owl-dot.active span {
    background-color: #474A4F;
}

.user-info {
    padding: 16px 0px;
}

.client-Item .client-info {
    text-align: center;
    max-width: 500px;
}

.blog-Item h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222629;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-Item p {
    color: #474A4F;
    margin: 10px 0px 20px;
}

.blog-thumbnail img {
    width: 100%;
    aspect-ratio: 2 / 3;
}

.user-info p.user-lft-pera {
    color: #474A4F;
    margin: 0px;
}
/* client testimonial end */

/* our blog start */
.our-blog {
    padding: 80px 0px;
    background-color: var(--light-grey-200);
}

.our-blog .global-header h2 {
    text-align: center;
    margin-bottom: 30px;
}

.our-blog .owl-nav button span {
    display: none;
}

.our-blog .owl-carousel .owl-nav button {
    height: 35px;
    width: 35px;
    position: relative;
}

.our-blog .owl-carousel .owl-nav button.owl-prev {
    left: -60px;
    background: url('../images/left-arrow.png')no-repeat;
    background-position: center;
    background-size: contain;
}

.our-blog .owl-carousel .owl-nav button.owl-next {
    right: -60px;
    background: url('../images/right-arrow.png')no-repeat;
    background-position: center;
    background-size: contain;
}
.info-head h6 {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    margin-top: 10px;
}
.our-blog .global-header {
    text-align: center;
}
.blog-biew-button-wrap {
    text-align: right;
    margin: 20px 0px 40px;
}
.blog-biew-button-wrap a{
    color: var(--dark-text);
}
.our-blog .global-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 50px;
}

/* our blog end */
/* our partner start */
.our-partner-main{
    background-color: var(--light-grey-200);
    padding: 80px 0px;
    text-align: center;
}
.our-partner-main .logo-box {
    max-width: 320px;
    margin: auto;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-partner-main .global-header {
    max-width: 440px;
    margin: 0 auto 50px;
}
.our-partner-main .global-header h2{
    margin-bottom: 20px;
}
/* our partner end */
/* map start */
.our-map {
    position: relative;
    background: url('../images/map-gradient-bg.png')no-repeat;
    background-position: center;
    background-size: contain;
}
.our-map img {
    width: 100%;
}
.map-wrapper {
    position: absolute;
    top: 100px;
    width: calc(100% - 120px);
    margin: auto;
    display: flex;
    color: #fff;
    justify-content: space-between;
}
.map-wrapper h2 {
    max-width: 675px;
}
.location-track.ind {
    text-align: right;
}

/* map end */

/* footer start */
footer.footer {
    padding: 80px 0px 50px;
    color: var(--white);
    background: var(--gradient-bg);
}
.footer-left {
    padding-right: 25px;
}

.footer-right {
    display: flex;
    gap: 30px;
    margin-top: 0px;
    margin-left: 20px;
}

.footer-right h5 {
    margin-bottom: 30PX;
    font-size: 18px;
    font-weight: 700;
}
.footer-right h5 a{
    font-weight: 700;
}
.footer-right a:hover, .copy-right-btns a:hover{
    color: #e3bc63;
}
.footer-right .footer-nav {
    flex: 1;
}
.footer-right .footer-nav:last-child {
    flex: auto;
    max-width: 200px;
}
.ftr-right-nav .footer-nav {
    width: 46%;
}

.ftr-logo-cntn iframe {
    width: 300px;
    height: 150px;
    border-radius: 15px;
}

.ftr-up-social-logo {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #ffffff36;
    padding-bottom: 25px;
    margin-bottom: 45px;
}

.footer-right li,
.footer-right li a {
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
}

.ftr-social {
    color: #fff;
    display: inline-flex;
    gap: 40px;
}

p.copyright-text {
    font-size: 18px;
    line-height: 48px;
}

.copy-right {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-right-btns a.review-cluth-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    color: #000;
    border-radius: 30px;
    gap: 20px;
}

.copy-right-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

form.ftr-form {
    margin-top: 40px;
    padding-bottom: 10px;
    display: flex;
}

form.ftr-form input {
    flex: 1;
    background-color: transparent;
    box-shadow: none;
    border: 0px;
    border-bottom: 1px solid #757575;
    padding: 20px 10px;
    color: var(--white);
}

form.ftr-form button {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    box-shadow: 1px 1px 8px 1px #fff;
    border: none;
}

/* footer end */

/* faq page start */
.stikcy-inner-banner{
    padding-top: 250px;
    background: var(--gradient-bg);
}
.stikcy-inner-banner img{
    width: 100%;
}
.stikcy-inner-banner img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.faq{
    padding: 80px 0px;
}
.accordion-button::after {
    background-image: url(../images/plus.png);
    width: 40px;
    height: 40px;
    background-size: 15px;
    padding: 20px;
    background-position: center;
    background-color: #ffffff;
    border-radius: 50%;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/cross.png);
    background-color:var(--grey-dark-text);
    background-size: 15px;
    padding: 20px;
    width: 40px;
    height: 40px;
}
.faq .accordion-item .accordion-body {
    padding-top: 0px;
    padding-left: 100px;
}
.faq .accordion-body p {
    margin: 10px 0px;
    font-size: 20px;
    line-height: 30px;
    color:#5A5365;
}
.faq .accordion-item {
    margin: 0px 0px;
    border: none;
    border-radius: 0px;
    overflow: hidden;
    padding:35px 20px;
    background: #f7f5fa;
}
.faq .accordion-item:has(button.accordion-button[aria-expanded="true"]) {
    background:#f2eefb;
}
.faq button.accordion-button {
    background-color: transparent;
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 18px 15px;
    color: var(--dark-text);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    align-items: anchor-center;
}
.faq .accordion-item button span{
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.25px;
    color: #9D96A8;
}
.accordion-button:focus, .accordion-button {
    border:none;
    border-color: transparent;
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    box-shadow:none;
}
.faq .global-header {
    text-align: center;
    margin-bottom: 60px;
}

/* faq page end */
/* custom cabinetry start */
.product-category, .product-listing{
    padding: 80px 0px;
}
.product-category .global-header,  .product-listing .global-header{
    max-width: 768px;
    margin: 0 auto 60px;
    text-align: center;
}
.product-listing-box h4{
    font-weight: 700;
    font-size: 24px;
    line-height: 38.02px;
    margin: 20px 0px; 
}
.product-listing-box .image-box img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.product-listing-box {
    padding-bottom: 30px;
    display: block;
    position: relative;
}
.product-listing-box:hover .image-box img {
    transform: scale(1.1);
}
.product-listing-box .image-box {
    height: 560px;
    overflow: hidden;
}
.product-listing .product-listing-box:hover img {
    transform: scale(1);
}

 .product-listing .product-listing-box .image-box::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #00000094;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    font-size: 29px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\2b";
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.product-listing .product-listing-box .image-box::before{
    content: '';
    width: 100%;
    height:calc(100% - 30px);
    z-index: 1;
    background-color: #00000080;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

 .product-listing .product-listing-box:hover .image-box::after, .product-listing .product-listing-box:hover .image-box::before {
    opacity: 1;
    visibility: visible;
 }

/* custom cabinetry end */

/* about us page start */
.passign-precision-main {
    padding: 80px 0px;
}
.passign-precision-main .dwn-cntn-wrapper .row:nth-child(even) {
    flex-direction: row-reverse;
}
.passign-precision-main iframe {
    height: 550px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.passign-precision-main .dwn-cntn-wrapper .cntn-box {
    box-shadow: inset 0 4px 20px rgb(183 183 183 / 17%);
    padding: 35px;
    border-radius: 15px;
}
.passign-precision-main .dwn-cntn-wrapper .row{
    margin:60px 0px;
    align-items: center;
}

.what-set-apart {
    background-color: var(--primary-dark-bg);
    padding: 20px;
}
.what-set-apart .container-fluid{
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
}
.what-set-apart .cntn-left ul {
    margin-top: auto;
}
.what-set-apart .cntn-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 400px;
}
.what-set-apart ul.set-list-cntn li {
    font-size: 20px;
    line-height: 32px;
    border-top: 1px solid #C1C5BF66;
    padding: 25px 0px;
}
.what-set-apart ul.set-list-cntn li:last-child{
    border-bottom: 1px solid #C1C5BF66;
}
.what-set-apart .cntn-left li {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}
.what-set-apart .cntn-left h2{
    margin-bottom: 30px;
}
.what-set-apart ul.set-list-cntn li:first-child {
    border-color: #8b8b8b;
}
.abt-product-main h2.top-header {
    text-align: center;
}
.abt-product-main {
    padding: 80px 0px;
}
.abt-product-main .premium-quality-wrap{
    padding-bottom: 0px;
}


.our-approach .main-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.our-approach .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.our-approach .thumb-carousel {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 6px;
    padding: 20px;
    box-shadow: inset 4px 4px 8px #d6d6d6, inset 2px 0px 8px #ffffff;
    margin-top: 18px;
}

.our-approach .thumb-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.our-approach .thumb-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s;
}

.our-approach .thumb-item:hover img {
    transform: scale(1.05);
}

.our-approach .thumb-item.active {
    border-radius: 20px;
}

.our-approach .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.our-approach {
    padding: 80px 0px;
}
.our-approach .content-left p {
    margin: 20px 0px;
}
.our-approach .content-left ul li {
    list-style-type: disc;
    margin-left: 20px;
}
.simple-image-content-wrap{
    background-color: var(--primary-dark-bg);
    padding: 20px 0px;
}
.simple-image-content-wrap .container-fluid{
    background-color:var(--white);
    padding: 40px;
    max-width:calc(100% - 40px);
    border-radius: 30px;
}
.simple-image-content-wrap .content-box {
    max-width: 570px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 24px;
}
.simple-image-content-wrap .image-box {
    overflow: hidden;
    border-radius: 16px;
}
.simple-image-content-wrap .image-box img{
    max-width: 100%;
}
.simple-image-content-wrap .globalBtnOutline {
    color:var(--button-border);
}
.what-happen-main {
    padding: 70px 0px;
}

/* about us page end */
/* contact us page start */
.contact-us-form {
    padding: 80px 0px;
}
.contact-us-form .form-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.contact-us-form .form-header .header-left {
    max-width: 740px;
}
.contact-us-form .form-header .header-left h2 {
    margin: 50px 0px 20px;
}
.contact-us-form .form-header .form-social ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-us-form .form-header .form-social ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border: 1px solid #B7B7B7;
    border-radius: 50%;
}
.contact-us-form .form-body .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.contact-us-form .form-body .form-group input{
    display: flex;
    flex-direction: column;
}
.contact-us-form .form-body form {
    margin-bottom: 60px;
}
.contact-us-form .form-body .form-group .form-control {
    border: 0px;
    border-bottom: 1px solid #CACACA;
    border-radius: 0px;
    background: transparent;
    height: 40px;
    padding-left: 0px;
    padding-right: 0px;
    appearance: auto;
    -moz-appearance: auto;
}
.contact-us-form .form-body .form-group .form-control.note-textarea{
    height: 150px;
}
.form-body button.globalBtnOutline {
    color:var(--black);
}
.form-body .why-choose-box h2 {
    margin-bottom: 30px;
}
.what-happen-main .global-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.what-happen-main .row {
    row-gap: 30px;
}
.talk-to-our-team ul li {
    display: flex;
    gap: 20px;
    margin: 18px 0px;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    text-transform: uppercase;
}
.talk-to-our-team ul li a, .talk-to-our-team ul li p{
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    text-transform: uppercase;
}
.talk-to-our-team ul li a {
    border: 1px solid;
    padding: 2px 15px;
    display: inline-flex;
    border-radius: 20px;
    min-width: 230px;
}
.talk-to-our-team ul li p span {
    display: block;
}
.talk-to-our-team .image-box {
    text-align: right;
}

/* contact us page end */

.tnp-subscription input.tnp-submit{
    background-color:#fff !important;
    color: var(--black) !important;
    border-radius: 30px;
    padding: 12px 30px;
}
.tnp-subscription form{
    margin-top: 30px;
}
.tnp-subscription .tnp-field.tnp-privacy-field{
    margin: 20px 0px 40px !important;
}
