/* Colors */
/* Fonts */
@font-face {
    font-family: 'Ananda';
    src: url('../../fonts/Ananda-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ananda';
    src: url('../../fonts/Ananda.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* Functions */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDz8V1s.ttf) format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V1s.ttf) format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDD4V1s.ttf) format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5V1s.ttf) format('truetype');
}
body {
    line-height: 1.5;
    --gutter-x: 15px;
    --gutter-x2: -15px;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}
body.modal-opened {
    overflow: hidden !important;
    width: 100%;
}
body main {
    overflow-x: clip;
}
a.mobile-hamburger-menu {
    display: flex;
    z-index: 999999;
    flex-direction: column;
    padding: 10px;
    width: 40px;
    height: 34px;
}
a.mobile-hamburger-menu .hamburger-menu {
    position: relative;
    transform: translateY(6px);
    background: #67523a;
    transition: all 0ms 300ms;
    width: 20px;
    height: 2px;
}
a.mobile-hamburger-menu .hamburger-menu.animate {
    background: rgba(255, 255, 255, 0);
}
a.mobile-hamburger-menu .hamburger-menu.animate.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    background: #67523a;
}
a.mobile-hamburger-menu .hamburger-menu.animate.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    background:#67523a;
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
a.mobile-hamburger-menu .hamburger-menu:after,
a.mobile-hamburger-menu .hamburger-menu:before {
    width: 20px;
    height: 2px;
}
a.mobile-hamburger-menu .hamburger-menu:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    background: #67523a;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
a.mobile-hamburger-menu .hamburger-menu:after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    background: #67523a;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.video-box {
    display: block;
    overflow: hidden;
}
.video-box .video-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.video-box .play-icon {
    width: 80px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.video-box:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2);
}
header{
    position: sticky;
    top:0;
    left:0;
    right:0;
    z-index: 99999;
}

header .h-area{
    padding: 15px 0;
}

.h-area.scrolled {
    background-color:#ffffffbf;
}

header .h-area .h-left {
    padding-right: 20px;
}

header .h-area .h-right {
    padding-left: 20px;
}

header .h-area .top-logo {
    display: block;
}
header .h-area .top-logo img {
    width: auto;
    max-width: 100%;
    height: auto;
}
header .h-area .web-lang {
    margin-left: 20px;
    cursor: pointer;
    z-index: 999;
}
header .h-area .web-lang .current-lang {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
}
header .h-area .web-lang .current-lang img {
    width: 65px;
    height: auto;
    object-fit: cover;
    margin-right: 10px;
}
header .h-area .web-lang .current-lang svg {
    width: 40px;
    height: 40px;
}
header .h-area .web-lang > li {
    position: relative;
    padding: 10px 5px;
}
header .h-area .web-lang > li:hover > ul.sub-menu {
    z-index: 15;
    opacity: 1;
    top: 100%;
    pointer-events: initial;
}
header .h-area .web-lang li ul.sub-menu {
    display: initial;
    opacity: 0;
    position: absolute;
    z-index: 9;
    top: 80%;
    right: 0;
    min-width: 160px;
    background-color: #ffffff;
    border: 1px solid #2b0139;
    pointer-events: none;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
header .h-area .web-lang li ul.sub-menu::after {
    content: '';
    width: 100%;
    height: 40px;
    position: absolute;
    top: -40px;
    background: None;
    left: 0;
    z-index: 0;
}
header .h-area .web-lang li ul.sub-menu:before {
    content: ' ';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
    border: 10px solid;
    border-color: transparent transparent #2b0139 transparent;
}
header .h-area .web-lang li ul.sub-menu li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #2b0139;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
}
header .h-area .web-lang li ul.sub-menu li:last-child {
    border-bottom: 0;
}
header .h-area .web-lang li ul.sub-menu li:hover {
    background-color: #e6e6e6;
}
header .h-area .web-lang li ul.sub-menu li a {
    white-space: nowrap;
    font-size: 18px;
    color: #2b0139;
    font-weight: 500;
    margin: 0;
    padding: 10px 10px 10px 20px;
    display: block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}
header .h-area .web-lang li ul.sub-menu li a img {
    margin-right: 10px;
    width: 24px;
    height: 20px;
}
header .h-area .top-menu {
    display: flex;
}
header .h-area .top-menu > li > a {
    display: block;
    font-size: 20px;
    padding: 20px 15px;
    color: #886D4D;
    font-weight: 700;
    text-align: center;
}
header .h-area .top-menu li {
    position: relative;
}
header .h-area .top-menu li:hover > ul.sub-menu {
    z-index: 15;
    opacity: 1;
    top: 100%;
    pointer-events: initial;
}
header .h-area .top-menu li ul.sub-menu {
    display: initial;
    opacity: 0;
    position: absolute;
    z-index: 9;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 1px solid #2b2b2b;
    pointer-events: none;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
header .h-area .top-menu li ul.sub-menu::after {
    content: '';
    width: 100%;
    height: 30px;
    position: absolute;
    top: -20px;
    background: None;
    left: 0;
    z-index: 0;
}
header .h-area .top-menu li ul.sub-menu:before {
    content: ' ';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
    border: 10px solid;
    border-color: transparent transparent #ffffff transparent;
}
header .h-area .top-menu li ul.sub-menu li {
    padding: 0;
    margin: 0;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
header .h-area .top-menu li ul.sub-menu li:hover {
    background-color: #e6e6e6;
}
header .h-area .top-menu li ul.sub-menu li:hover > ul.sub-menu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
}
header .h-area .top-menu li ul.sub-menu li:after {
    display: none;
}
header .h-area .top-menu li ul.sub-menu li a {
    white-space: nowrap;
    color: #886D4D;
    font-weight: 500;
    margin: 0;
    padding: 10px 40px 10px 20px;
    display: block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}
header .h-area .top-menu li ul.sub-menu li ul.sub-menu {
    left: 100%;
    margin: 0;
    transform: translateX(0);
}
header .h-area .top-menu li ul.sub-menu li ul.sub-menu:before {
    display: none;
}
.wpcf7-spinner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
#home-slider {
    position: relative;
    top: -189px;
    margin-bottom: -189px;
}
#home-slider .owl-nav {
    margin: 0;
}
#home-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #604C34;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-slider .owl-nav button svg {
    width: 30px;
    height: 30px;
    color: #fff;
}
#home-slider .owl-nav button:hover {
    background-color: #fff;
    color: #000;
}

#home-slider .banner-item {
    position: relative;
}

#home-slider .banner-item .banner-text {
    position: absolute;
    bottom: 50%;
    transform: translate(25%, 50%);
}

#home-slider .banner-item .banner-text .banner-title {
    color: #876D50;
    font-weight: bold;
    font-size: 40px;
}

#home-slider .banner-item .banner-text .banner-desc {
    color: #876D50;
    font-size: 20px;
    margin-top: 10px;
}

#home-slider .banner-item .banner-text .banner-link {
    padding: 10px 60px;
    color: #fff;
    background-color: #604C34;
    font-size: 18px;
    display: block;
    width: max-content;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 18px;
}

#home-slider .owl-nav .owl-prev {
    left: 5%;
}
#home-slider .owl-nav .owl-next {
    right: 5%;
}
#home-services {
    padding: 60px 0;
    position: relative;
}
#home-services .area-bg-image {
    position: absolute;
    left: 0;
    top: 20px;
    width: 400px;
    height: auto;
}
#home-services .section-title-area {
    margin-bottom: 60px;
}
#home-services .section-title-area .area-text {
    text-align: center;
    font-size: 22px;
    color: #6D6D6D;
    margin-top: 20px;
}
#home-services .service-slider-area .owl-stage-outer {
    overflow-y: visible;
    overflow-x: clip;
}
#home-services .service-slider-area .owl-stage {
    display: inline-flex;
}
#home-services .service-slider-area .owl-item {
    display: flex;
    justify-content: center;
}
#home-services .service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: max-content;
    height: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-services .service-box .icon-box {
    background:linear-gradient(36deg, #604C34 0%, #998263 100%) 0% 0% no-repeat padding-box;
    padding: 25px 20px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
}
#home-services .service-box .icon-box .icon-image {
    width: 85px;
    height: 85px;
    padding: 5px;
    object-fit: contain;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #fff;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-services .service-box .box-title {
    font-size: 18px;
    color: #9C9C9C;
    margin-top: 15px;
}
#home-services .service-box:hover {
    transform: scale(1.15);
}
#home-services .service-box:hover .icon-box .icon-image {
    border-color: #C7A982;
}
#home-services .service-box:hover .box-title {
    color: #676767;
    font-weight: bold;
}
#home-services .owl-nav {
    margin: 0;
}
#home-services .owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    background-color: #C7A982;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-services .owl-nav button svg {
    width: 50px;
    height: 50px;
    color: #fff;
}
#home-services .owl-nav button:hover {
    background-color: #C7A982;
}
#home-services .owl-nav .owl-prev {
    left: -25px;
}
#home-services .owl-nav .owl-next {
    right: -25px;
}
#home-about-us {
    position: relative;
    padding: 40px 0 160px;
}
#home-about-us .area-bg-image {
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 65vw;
    height: auto;
    z-index: -1;
}
#home-about-us .about-text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#home-about-us .about-text-area .about-logo-image {
    width: 170px;
    height: auto;
    max-width: 100%;
    margin-bottom: 10pxs;
}
#home-about-us .about-text-area .about-title {
    font-size: 30px;
    font-weight: 600;
    color: #6D6D6D;
    line-height: 1.2;
    margin-bottom: 15px;
}
#home-about-us .about-text-area .about-text {
    font-size: 18px;
    color: #6D6D6D;
    margin-bottom: 30px;
}
#home-about-us .about-text-area .about-button {
    padding: 10px 60px;
    color: #fff;
    background-color:#604C34;
    font-size: 18px;
    display: block;
    width: max-content;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-about-us .about-text-area .about-button:hover {
    background-color: #C7A982;
}
#home-form {
    background-position: left center;
    background-size: 80vw 100%;
    background-repeat: no-repeat;
    padding: 120px 0;
    margin-bottom: 120px;
}
#home-form .form-area {
    --gutter-x: 50px;
    --gutter-x2: -50px;
}
#home-form .form-area form .wpcf7-not-valid-tip {
    color: #fff;
    margin-top: 5px;
}
#home-form .form-area form .wpcf7-response-output {
    border-color: #2b0139;
    color: #fff;
    margin: 10px 0;
    padding: 5px 10px;
}
#home-form .form-area .input-area {
    margin-bottom: 45px;
}
#home-form .form-area .input-area .form-in {
    border: none;
    background-color: rgba(237, 237, 237, 0.75);
    width: 100%;
    padding: 20px 25px;
    font-size: 18px;
    color: #000000;
}
#home-form .form-area .input-area .form-in::placeholder {
    font-family: 'Poppins', sans-serif;
    color: #000000;
}
#home-form .form-area .form-button {
    padding: 20px 25px;
    width: 100%;
    background-color: transparent;
    font-size: 18px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid #fff;
    cursor: pointer;
    text-align: start;
    -webkit-appearance: none;
    font-weight: 900;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-form .form-area .form-button:hover {
    color: #fff;
}
#home-sp-services {
    margin-bottom: 30px;
}
#home-sp-services .section-title-area {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#home-sp-services .section-title-area .section-logo {
    width: 130px;
    height: auto;
    margin-bottom: 10px;
}
#home-sp-services .section-title-area .section-title {
    font-size: 30px;
    color: #6D6D6D;
    font-weight: 600;
    line-height: 1.2;
}
#home-sp-services .service-row-area {
    --gutter-x: 40px;
    --gutter-x2: -40px;
}
#home-sp-services .service-row-area .service-card-mb {
    margin-bottom: 80px;
}
#home-sp-services .service-row-area .service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    border-radius: 70px;
}
#home-sp-services .service-row-area .service-card .card-image-box {
    position: relative;
}
#home-sp-services .service-row-area .service-card .card-image-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 0;
    background-color: #a2825a57;
    opacity: 0;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-sp-services .service-row-area .service-card .card-text-area {
    padding: 10px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background-color: #FEFBF4;
}
#home-sp-services .service-row-area .service-card .card-text-area .card-title {
    margin-bottom: 5px;
    line-height: 1.2;
    font-size: 24px;
    color: #6D6D6D;
    font-weight: 600;
}
#home-sp-services .service-row-area .service-card .card-text-area .card-text {
    font-size: 20px;
    color: #000;
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#home-sp-services .service-row-area .service-card .card-text-area .card-button {
    padding: 5px 35px;
    background-color: #C7A982;
    font-size: 20px;
    color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-sp-services .service-row-area .service-card:hover .card-image-box::after {
    opacity: 1;
    height: 100%;
    width: 100%;
}
#home-sp-services .service-row-area .service-card:hover .card-text-area .card-button {
    background-color: #604c33;
}
#home-sp-services .all-services-button {
    padding: 10px 50px;
    background-color:#614c34;
    font-size: 20px;
    color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    width: max-content;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-sp-services .all-services-button:hover {
    background-color: #000;
}
#home-data-area {
    padding: 80px 0;
    position: relative;
}
#home-data-area .area-bg-image {
    position: absolute;
    right: 0;
    bottom: -40px;
    z-index: -1;
    width: 400px;
    height: auto;
}
#home-data-area .data-box-mb {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
#home-data-area .data-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: max-content;
    height: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-data-area .data-box .icon-box {
    background: linear-gradient(0deg, #614C31 0%, #968267 100%) 0% 0% no-repeat padding-box;
    padding: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 10px;
}
#home-data-area .data-box .icon-box .icon-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
}
#home-data-area .data-box .box-value {
    font-size: 40px;
    line-height: 1.2;
    color: #1C102F;
}
#home-data-area .data-box .box-text {
    font-size: 22px;
    line-height: 1.2;
    color: #1C102F;
}
#home-subscribe-form-area {
    padding: 100px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#home-subscribe-form-area .form-area {
    --gutter-x: 30px;
    --gutter-x2: -30px;
}
#home-subscribe-form-area .form-area .form-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 70px;
    color: #fff;
    font-family: 'Ananda', sans-serif;
    font-weight: 900;
}
#home-subscribe-form-area .form-area form .wpcf7-not-valid-tip {
    color: #fff;
    margin-top: 5px;
}
#home-subscribe-form-area .form-area form .wpcf7-response-output {
    border-color: #2b0139;
    color: #fff;
    margin: 10px 0;
    padding: 5px 10px;
}
#home-subscribe-form-area .form-area .input-area {
    margin-bottom: 45px;
}
#home-subscribe-form-area .form-area .input-area .form-in {
    border: none;
    background-color: rgba(237, 237, 237, 0.75);
    width: 100%;
    padding: 20px 25px;
    font-size: 18px;
    color: #000000;
}
#home-subscribe-form-area .form-area .input-area .form-in::placeholder {
    font-family: 'Poppins', sans-serif;
    color: #000000;
}
#home-subscribe-form-area .form-area .form-button {
    padding: 20px 25px;
    width: 100%;
    background-color: #604C33;
    font-size: 18px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.75);
    border: 2px solid #fff;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none;
    font-weight: 900;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-subscribe-form-area .form-area .form-button:hover {
    color: #fff;
}
#home-multi-section {
    padding: 200px 0 400px;
    background: url('../../imgs/multi-section-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: -280px;
}
#home-multi-section #home-instagram-area {
    margin-bottom: 120px;
}
#home-multi-section #home-instagram-area .owl-carousel .owl-stage-outer {
    overflow: visible;
    overflow-x: clip;
}
#home-multi-section #home-instagram-area .owl-carousel .owl-item {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-multi-section #home-instagram-area .owl-carousel .owl-item.firstactiveitem {
    transform: scale(1.1);
}
#home-multi-section #home-instagram-area .instagram-text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#home-multi-section #home-instagram-area .instagram-text-area .section-logo {
    width: 180px;
    height: auto;
    max-width: 100%;
    margin-bottom: 5px;
}
#home-multi-section #home-instagram-area .instagram-text-area .section-title {
    font-size: 30px;
    color: #6D6D6D;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}
#home-multi-section #home-instagram-area .instagram-text-area .section-text {
    font-size: 18px;
    color: #6D6D6D;
    margin-bottom: 20px;
}
#home-multi-section #home-instagram-area .instagram-text-area .instagram-user-button {
    display: flex;
    align-items: center;
    width: max-content;
    font-size: 25px;
    font-weight: bold;
    color: #6D6D6D;
}
#home-multi-section #home-instagram-area .instagram-text-area .instagram-user-button img {
    width: 35px;
    height: 35px;
    margin-right: 4px;
}
#home-multi-section #home-instagram-area .owl-navi {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
#home-multi-section #home-instagram-area .owl-navi .nav-button {
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #876E4F;
    opacity: 0.5;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-multi-section #home-instagram-area .owl-navi .nav-button svg {
    width: 50px;
    height: 50px;
    color: #fff;
}
#home-multi-section #home-instagram-area .owl-navi .nav-button:hover {
    scale: 1.2;
    opacity: 1;
    background-color: #604C33;
}
#home-multi-section #home-comments-area .section-title-area {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#home-multi-section #home-comments-area .section-title-area .section-logo {
    width: 180px;
    height: auto;
    max-width: 100%;
    margin-bottom: 5px;
}
#home-multi-section #home-comments-area .section-title-area .section-title {
    font-size: 30px;
    color: #6D6D6D;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}
#home-multi-section #home-comments-area .owl-stage-outer {
    overflow: visible;
}
#home-multi-section #home-comments-area .owl-stage-outer .owl-stage {
    display: inline-flex;
    align-items: center;
    pointer-events: none;
}
#home-multi-section #home-comments-area .owl-stage-outer .owl-item {
    opacity: 0;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-multi-section #home-comments-area .owl-stage-outer .owl-item.active {
    opacity: 1;
    pointer-events: all;
}
#home-multi-section #home-comments-area .comment-box {
    background-color: #fff;
    -webkit-border-radius: 75px;
    -moz-border-radius: 75px;
    -ms-border-radius: 75px;
    border-radius: 75px;
    box-shadow: 0.03px 2px 6px #2A2A2A2E;
    padding: 40px 200px;
}
#home-multi-section #home-comments-area .comment-box .box-owner {
    font-size: 30px;
    font-weight: 600;
    color: #6D6D6D;
    margin-bottom: 10px;
    line-height: 1.2;
}
#home-multi-section #home-comments-area .comment-box .box-text {
    font-size: 22px;
    color: #6D6D6D;
    text-align: center;
}
#home-multi-section #home-comments-area .comment-box .box-images {
    margin-top: 20px;
    gap: 20px;
}
#home-multi-section #home-comments-area .comment-box .box-images .star-image {
    width: 220px;
    height: auto;
}
#home-multi-section #home-comments-area .comment-box .box-images .google-image {
    width: 60px;
    height: auto;
}
#home-multi-section #home-comments-area .comments-slider-area .owl-nav {
    margin: 0;
}
#home-multi-section #home-comments-area .comments-slider-area .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    background-color: #af9778;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#home-multi-section #home-comments-area .comments-slider-area .owl-nav button svg {
    width: 50px;
    height: 50px;
    color: #fff;
}
#home-multi-section #home-comments-area .comments-slider-area .owl-nav button:hover {
    background-color: #604C33;
}
#home-multi-section #home-comments-area .comments-slider-area .owl-nav .owl-prev {
    left: -7%;
}
#home-multi-section #home-comments-area .comments-slider-area .owl-nav .owl-next {
    right: -7%;
}
footer {
    overflow-x: clip;
}
footer .footer-top {
    padding: 50px 0;
    border-radius: 50%;
    position: relative;
}
footer .footer-top::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    top: 0;
    background-color:#af9778;
    height: 200%;
}
footer .footer-top .footer-logo {
    margin-bottom: 30px;
    display: block;
}
footer .footer-top .footer-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
}
footer .footer-top .footer-text {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}
footer .footer-middle {
    background-color:#af9778;
    padding: 0 0 60px;
    border-bottom: 1px solid #C7A982;
    --gutter-x: 10px;
    --gutter-x2: -10px;
}
footer .footer-middle .footer-col {
    position: relative;
    display: flex;
    justify-content: center;
}
footer .footer-middle .footer-col:nth-child(4)::after,
footer .footer-middle .footer-col:nth-child(3)::after {
    display: none;
}
footer .footer-middle .footer-col::after {
    content: '';
    position: absolute;
    top: 50%;
    background-color: #fff;
    transform: translateY(-50%);
    height: 180px;
    width: 1px;
    left: 100%;
}
footer .footer-middle .footer-contacts .footer-contact {
    display: flex;
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
footer .footer-middle .footer-contacts .footer-contact .icon {
    margin-right: 10px;
}
footer .footer-middle .footer-contacts .footer-contact .icon svg {
    width: 28px;
    height: 28px;
    margin-top: -2px;
}
footer .footer-middle .footer-contacts .footer-contact:last-child {
    margin-bottom: 0;
}
footer .footer-middle .footer-socials {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}
footer .footer-middle .footer-socials li {
    margin: 10px;
}
footer .footer-middle .footer-socials li a {
    display: block;
    padding: 4px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
footer .footer-middle .footer-socials li a svg {
    height: 36px;
    width: 36px;
    color:#604c33;
}
footer .footer-middle .footer-socials li a:hover {
    transform: scale(1.1);
}
footer .footer-middle .footer-map {
    width: 100%;
    overflow: hidden;
}
footer .footer-middle .footer-map iframe {
    height: 300px;
    width: 400%;
    margin-left: -150%;
}
footer .footer-middle .footer-menu {
    margin-left: 20px;
}
footer .footer-middle .footer-menu li {
    list-style: disc;
    color: #fff;
}
footer .footer-middle .footer-menu li a {
    padding: 5px 0;
    display: block;
    font-size: 18px;
    color: #fff;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
footer .footer-middle .footer-menu li a:hover {
    opacity: 0.6;
}
footer .footer-bottom {
    background-color:#af9778;
    padding: 25px 0;
}
footer .footer-bottom .copyright {
    font-size: 14px;
    color: #fff;
}


.legal-notice-cont {
    margin-top: 35px;
}

legal-notice-text {
    text-align: center;
}