/* variables */
:root {
    --primary-color: #66b749;
    --primary-color-light: #71aa5c;
    --secondary-color: #62290a;
    --secondary-color-light: #ba9162;
}

body{font-family: "Rubik", sans-serif !important;font-size:15px;font-weight:normal;color:#000;overflow-x: hidden;}
.container {max-width: 1366px;}
.carousel-item {z-index: 1;}
html {scroll-behavior: smooth;}
a:focus, a:hover{text-decoration:none;}
p{font-family:"Rubik", sans-serif;letter-spacing: 0.5px;}
.btn-default:focus, .btn-secondary:focus, .btn-primary:focus {box-shadow: none !important;}
.navbar-toggler-icon {background-image: url(../images/menu_icon.png);}
.navbar-toggler:focus{box-shadow: none;}

/* common */
.btn-default {
    text-decoration: none;
    padding: 12px 35px;
    text-align: center;
    display: inline-block;
    border: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}
.btn-default.btn-primary {background: url(../images/bg_green.png);background-size: 100% 100%;}
.btn-default.btn-primary:hover {background: url(../images/bg_brown.png);background-size: 100% 100%;}
.btn-default.btn-secondary {background: url(../images/bg_brown.png);background-size: 100% 100%;}
.btn-default.btn-secondary:hover {background: url(../images/bg_green.png);background-size: 100% 100%;}
.btn-outlined {border-color: var(--primary-color); color: var(--primary-color);}
.btn-outlined:hover {color: #fff; background: var(--primary-color);}
.heading h2 {font-size: 60px;font-weight: 700;line-height: normal;text-transform: uppercase;color: #512c24;}
.heading.center {position: relative; text-align: center;}
.heading.center img {position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 0);}
.default-padding {padding: 90px 0;}

.input-group .form-control {border: 2px solid var(--primary-color);border-radius: 50px !important;padding: 14px 30px;}
.input-group .form-control:focus, .input-group .btn-default:focus {box-shadow: none; outline: none;}

/* navbar section */
.navbar {border-bottom: 2px solid var(--primary-color-light);}
.navbar-nav {width: 100%; justify-content: space-between;}
.nav-link, .nav-link:focus {font-size: 16px; font-weight: 400; text-transform: uppercase;color: #000;}
.nav-link:hover {color: var(--primary-color) !important;}
.nav-link.active{color: var(--primary-color) !important;font-weight: 500;}
.main_menu .dropdown-menu {padding: 0px;}
.main_menu .dropdown-menu li a{padding: 8px 15px;font-size: 16px;font-weight: 400;text-transform: uppercase;color: #000;}
.main_menu .dropdown-menu li:hover a{background: #66b749;color: #fff;}
.main_menu .dropdown-menu .dropdown-item img{max-width: 30px;margin-right: 15px;transition: all 0.4s ease;max-height: 45px;}
.main_menu .dropdown-menu li:hover .dropdown-item img{transform: rotate(15deg);}
.navbar-brand img{width: 120px;}

/* .navbar_right{flex-direction: column;align-items: end;} */
.navbar_right .top_header{gap: 40px;}
.above-link {text-decoration: none;color: var(--secondary-color-light);margin: 0 14px;font-size: 16px;font-weight: 400;}
.above-link:hover, .above-link.active {color: var(--primary-color);}
.above-link.icons {margin: 0 10px;}

/* slider section */
.slider-wrapper {border-bottom: 2px solid var(--primary-color-light);}
.slider-wrapper h1 {font-size: 90px; font-weight: 700; color: var(--secondary-color); line-height: 1;}
.slider-wrapper h4 {font-size: 43px; color: #000;margin: 20px 0px;}
.carousel-caption {right: unset; left: 0; top: 0; text-align: left; padding: 60px 0 20px; width: 100%; height: 100%;}
.carousel-control-prev, .carousel-control-next {display: none;}
.carousel-indicators {margin: 0 !important; justify-content: left !important; bottom: 8%;left: 48%;}
.carousel-indicators button {width: 12px !important; height: 12px !important; border-radius: 50%; background: white !important; border: none !important;}
.carousel-indicators button.active {width: 50px !important; border-radius: 8px; background: green !important;}
.carousel-control-prev, .carousel-control-next {display: block; opacity: 1;}
/* product section */
.product {
    position: relative;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    text-align: center;
    overflow: hidden;
    height: 420px;
    width: 90%;
    margin: 0 auto;
}
.product::after {content: ""; position: absolute; width: 100%; height: 250px; border-radius: 10px; top: 60px; left: 0; z-index: -1;}
.product img {width: 240px;margin: 0 auto;transform: rotate(10deg); filter: drop-shadow(4px 2px 4px rgba(0, 0, 0, 0.5)); transition: all 0.4s ease-in-out}
.product:hover img{width: 150px; transition: all 0.4s ease-in-out;}
.product .details {position: absolute;padding: 30px 20px;z-index: 2;height: 120px;width: 100%;}
.product .details h4 a {color: #000;font-weight: 500;text-decoration: none;font-size: 22px;display: inline-block;margin-bottom: 15px !important;}
.product .details p {color: #000; font-family: "Rubik", sans-serif; visibility: hidden;height: 50px;}
.product .btn-default{font-size: 15px; margin-top: 10px; visibility: hidden;}

.product::before {content: ""; position: absolute; width: 150%; height: 100%; background: #fff; top: 100%; left:-42%; transform: rotate(10deg); z-index: 1;}
.product:hover::before {top:40%;}
.product:hover .details {
    bottom: 0px;
    height: 283px;
    padding: 90px 20px 30px;
    transition: all 0.4s ease;
    color: #fff;
    border-width: 2px;
    border-style: solid;
    border-top: none;
    border-bottom: none;
}
.product:hover .details h4 a{color: #66b749;}
.product:hover .details p {visibility: visible; transition: all 0.4s ease;color: #000;}
.product:hover .btn-default{visibility: visible;}
.product.one::after {background: #ecbda7;}
.product.two::after {background: #f3dfc0;}
.product.three::after {background: #f2dfce;}
.product.four::after {background: #e2d6a3;}
.product.five::after {background: #eee4d6;}
.product.six::after {background: #cad1b0;}
.product.seven::after {background: #e1c2b9;}
.product.eight::after {background: #e1c2b9;}

/* hello section */
.hello-section, .find-us, .specialist {padding: 80px 0px; background: var(--secondary-color-light);background-size: 7%;}

/* customer review section */
.customer-review {background-image: url(../images/review_bg.png); background-position:top right; background-repeat: no-repeat;padding: 6% 0px;}
.review-card {border-left: 2px solid transparent; border-right: 2px solid transparent; padding: 40px 30px; opacity: 0.3;}
.customer-review .owl-item.center .review-card {
    opacity: 1;
    background: #d7eae9;
    border: none;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}
.customer-review .owl-item.center .review-card h4{font-size: 30px;}
.customer-review .owl-nav {text-align: end;margin-top: 0;position: absolute;right: 0px;bottom: -84px;font-size: 18px;}
.customer-review .owl-nav .owl-prev {margin-right: 50px; position: relative;}
.customer-review .owl-nav .owl-prev::after {content: ""; position: absolute; top: -1px; right: -25px; width: 2px; height: 110%; transform: rotate(20deg); background: #000;}
.customer-review .btn-outlined {position: absolute; left: 0; bottom: calc(100% - 18px); z-index: 1;}

/* find us section */
.find-us marquee img {height: 150px; padding-bottom: 20px; margin: 0 50px; filter: brightness(100); border-bottom: 2px solid var(--secondary-color-light);}

/* inspiration section */
.inspiration-card {display: block; color: unset; text-decoration: none;}

/* specialist section */
.specialist {background-image: url(../images/bg-specialist.png); background-size: cover; background-position: center right; margin-bottom: 100px;}
.specialist-card {background: #fff; padding: 40px 35px; border: 2px solid #cdd9dd;border-radius: 15px;margin-bottom: -120px;}

/* footer section */
.footer {border-top: 1px solid var(--primary-color);padding: 40px 20px;}

.shape_1{width: 200px;position: absolute;left: -10%;}
.shape_2 {width: 200px;position: absolute;right: -10%;bottom: -10%;}
.shape_3{position: absolute;width: 150px;left: -30%;top: 100px;}
.partner_images.owl-carousel .owl-dots{text-align: center;}
.partner_images.owl-carousel button.owl-dot{
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background: #fff !important;
    border: none !important;
    margin: 0 5px;
}
.partner_images.owl-carousel button.owl-dot.active{ width: 30px !important; border-radius: 8px; background:#62290a !important;}
.qty-container{display: flex;align-items: center;justify-content: center;}
.qty-container .input-qty{text-align: center;padding: 7px 10px;border: 1px solid #d4d4d4;max-width: 80px;}
.qty-container .qty-btn-minus, .qty-container .qty-btn-plus
{border: 1px solid #d4d4d4;padding: 10px 13px;font-size: 10px;height: 38.5px;width: 38px;transition: 0.3s;}
.qty-container .qty-btn-plus{margin-left: -1px;}
.qty-container .qty-btn-minus{margin-right: -1px;}

/* breadcrumb */
.breadcrumb {padding: 60px 0 60px;margin: 0;background: var(--secondary-color-light);font-size: 40px;color: #fff;text-align: center;}
.breadcrumb .shape_4{position: absolute;right: 7%;bottom: -20%;}

/* about us page */
.values-card:hover img {margin-top: -60px; transition: all 0.4s ease;}

/* product page */
.product-page .nav-link, .product-page .tab-content {border: 1px solid #dfdfdf; padding: 12px 17px !important; border-radius: 0 !important;}
.product-page .tab-content {padding: 40px 30px !important;}
.product-page .nav-link.active {background: transparent !important; border-color: var(--primary-color); border-width: 2px;}
.qty-container .qty-btn-minus, .qty-container .qty-btn-plus, .qty-container .input-qty {border: 1px solid #dfdfdf !important; width: unset; height: unset; padding: 8px 16px !important; font-size: unset !important; background: transparent;color:black;}
.qty-container .qty-btn-minus:focus, .qty-container .qty-btn-plus:focus, .qty-container .input-qty:focus {box-shadow: none; border-color: var(--primary-color) !important;}
.size-box div {padding: 8px 20px; border: 1px solid #dfdfdf; cursor: pointer;}
.size-box input:checked + div {background: var(--primary-color); color: #fff;}

/* checkout page */
.checkout-page .user-info .form-control, .payment-info .form-control {border: 1px solid #dfdfdf; border-radius: 0;}
.checkout-page .user-info .form-control:focus, .payment-info .form-control {box-shadow: none !important; border-color: var(--primary-color);}
.checkout-page .user-info [type='checkbox'] {filter: hue-rotate(180deg);}

/* contact us page */
.contact-section .form-control {border: 1px solid var(--primary-color);border-radius: 10px !important;padding: 14px 15px;}
.contact-section .form-control:focus, .input-group .btn-default:focus {box-shadow: none !important; border-color: var(--primary-color); outline: none;}
.gooogle-map::after {position: absolute; content: ""; left: 0; bottom: 0; width: 100%; height: calc(100% + 2px); background: linear-gradient(11deg, rgba(355, 355, 355, 0), rgba(355, 355, 355, 0.1), rgba(355, 355, 355, 0.95), rgba(355, 355, 355, 1)); pointer-events: none;}

.form-control::placeholder {color: rgba(0, 0, 0, 0.4) !important;}
.owl-carousel .owl-item img{width: auto !important;}
