.preloader {
    transition: opacity 0.3s ease-in-out;
}
.preloader.hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}
.preloader-warper {
    color: var(--secondary-color);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: 999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--white-color);
}
.preloader-logo {
    width: 130px;
}
.preloader-inner {
    -webkit-animation-name: preloader-img;
    animation-name: preloader-img;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -webkit-animation-timing-function: cubic-bezier(0.73, 0.005, 0.42, 1.005);
    animation-timing-function: cubic-bezier(0.73, 0.005, 0.42, 1.005);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
.preloader-inner h2 {
    font-family: var(--signature-font);
    font-weight: var(--normal);
    font-size: 50px;
}
:root {
    --font-size-7: 7px;
    --font-size-10: 10px;
    --font-size-11: 11px;
    --font-size-12: 12px;
    --font-size-13: 13px;
    --font-size-14: 14px;
    --font-size-15: 15px;
    --font-size-16: 16px;
    --font-size-17: 17px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-25: 25px;
    --font-size-27: 27px;
    --font-size-30: 30px;
    --font-size-35: 35px;
    --font-size-40: 40px;
    --font-size-45: 45px;
    --font-size-50: 50px;
    --font-size-55: 55px;
    --font-size-60: 60px;
    --font-size-80: 80px;
    --h1-font-size: 40px;
    --h2-font-size: 35px;
    --h3-font-size: 30px;
    --h4-font-size: 25px;
    --h5-font-size: 20px;
    --h6-font-size: 16px;
    --main-color: #faf7f5;
    --main-color-med: #e2d4c8;
    --main-color-med-2: #fbf9f9;
    --main-color-light: #faf7f5;
    --main-color-light2: #eee;
    --accordion-border: 1px solid #f7f4f1;
    --secondary-color: #a2783a;
    --main-font-color: #505050;
    --secondary-font-color: #505050;
    --gray-color: #bbb;
    --black-color: #000;
    --white-color: #ffffff;
    --nunito-font: "Nunito", sans-serif;
    --old-Standard-font: "Old Standard TT", serif;
    --signature-font: "Signatie";
    --serif-font: sans-serif;
    --extra-light: 200;
    --light: 300;
    --normal: 400;
    --medium: 500;
    --semi-bold: 600;
    --bold: 700;
    --extra-bold: 800;
    --extra-extra-bold: 900;
    --half-second-transition: all 0.5s;
}
@-webkit-keyframes preloader-img {
    from {
        opacity: 0.2;
    }
    to {
        opacity: 1;
    }
}
@keyframes preloader-img {
    from {
        opacity: 0.2;
    }
    to {
        opacity: 1;
    }
}
body,
html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
body {
    font-family: var(--nunito-font);
    color: var(--main-font-color);
    font-size: var(--font-size-15);
    line-height: 1.75em;
    font-weight: var(--light);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
::selection {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
@media (min-width: 1400px) {
    .container {
        max-width: 1144px;
    }
}
.bg-light {
    background-color: #fff !important;
}
b,
strong {
    font-weight: var(--normal);
    color: var(--secondary-color);
}
a {
    color: var(--black-color);
}
a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}
a:link {
    text-decoration: none;
}
a:focus {
    outline: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    width: 100%;
    height: auto;
}
img {
    -webkit-transition: var(--half-second-transition);
    -o-transition: var(--half-second-transition);
    transition: var(--half-second-transition);
    color: var(--black-color);
}
dl,
ol,
ul {
    padding-inline-start: 20px;
}
ul {
    list-style-type: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: var(--serif-font);
}
input[type="checkbox"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="password"]:focus,
input[type="phone"]:focus,
input[type="radio"]:focus,
input[type="text"]:focus,
textarea:focus {
    outline: 0;
}
input[type="email"],
input[type="file"],
input[type="password"],
input[type="phone"],
input[type="text"],
textarea {
    max-width: 100%;
    margin-bottom: 15px;
    border-color: var(--main-color-light);
    padding: 15px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    font-family: var(--nunito-font);
    line-height: 1.5em;
    font-weight: var(--light);
    color: var(--black-color);
    background-image: none;
    border-bottom: 1px solid var(--main-color-med);
    transition: 0.15s ease-in-out;
}
input:focus,
textarea:focus {
    border-bottom-width: 1px;
    border-color: var(--secondary-color);
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    text-shadow: none;
    padding: 10px 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    font-weight: var(--normal);
    border-style: solid;
    color: var(--white-color);
    border-width: 0;
    -webkit-transition: background-color 0.15s ease-out;
    transition: background-color 0.15s ease-out;
    background-color: transparent;
    margin: 3px 0;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: transparent;
}
select {
    padding: 10px;
    border-radius: 5px;
}
td,
th,
tr {
    padding: 10px 0;
}
input[type="checkbox"],
input[type="radio"] {
    display: inline;
}
hr {
    color: unset;
    background-color: unset;
    border: unset;
    opacity: 1;
}
.section-head {
    margin-bottom: 30px;
}
.section-head > * {
    text-align: center;
}
.bywe-btn {
    position: relative;
    line-height: 1em;
    cursor: pointer;
}
.bywe-btn a {
    font-family: var(--nunito-font);
    background: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
    padding: 12px 30px;
    margin: 0;
    font-weight: var(--normal);
    position: relative;
    font-size: var(--font-size-12);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.bywe-btn a:after {
    cursor: pointer;
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    inset-inline-start: 100%;
    z-index: 1;
    background: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.bywe-btn a span {
    position: relative;
    z-index: 2;
}
.bywe-btn a:hover:after {
    width: 100%;
    inset-inline-start: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.bywe-btn a:hover span {
    color: var(--black-color);
}
.bywe-btn2 {
    cursor: pointer;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: var(--normal);
    position: relative;
    z-index: 1;
    outline: 0;
    width: fit-content;
    background: var(--secondary-color);
    font-family: var(--nunito-font);
    font-size: var(--font-size-12);
    text-transform: uppercase;
    letter-spacing: 2px;
    outline: 0;
}
.bywe-btn2:after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    -webkit-transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
    -o-transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
    transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
}
.bywe-btn2:focus,
.bywe-btn2:hover {
    cursor: pointer;
    border-color: var(--secondary-color);
    color: var(--black-color) !important;
}
.bywe-btn2:focus:after,
.bywe-btn2:hover:after {
    width: 100%;
    color: var(--black-color);
}
.bywe-more {
    color: var(--black-color);
    font-size: var(--font-size-12);
    border-bottom: 1px solid var(--secondary-color);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    font-family: var(--nunito-font);
    font-weight: var(--normal);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.bywe-more:hover {
    cursor: pointer;
    border-color: transparent;
}
p {
    font-family: var(--nunito-font);
    font-weight: var(--light);
    font-size: var(--font-size-15);
    line-height: 1.75em;
    margin: 0 0 15px;
    color: var(--main-font-color);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5em;
    font-weight: var(--normal);
    font-family: var(--old-Standard-font);
    color: var(--black-color);
}
.h1,
h1 {
    font-size: var(--h1-font-size);
}
.h2,
h2 {
    font-size: var(--h2-font-size);
}
.h3,
h3 {
    font-size: var(--h3-font-size);
}
.h4,
h4 {
    font-size: var(--h4-font-size);
}
.h5,
h5 {
    font-size: var(--h5-font-size);
}
.h6,
h6 {
    font-size: var(--h6-font-size);
}
.bg-1 {
    background: var(--main-color);
}
.container {
    padding-right: 30px;
    padding-left: 30px;
}
.full-width {
    width: 100% !important;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.js .animate-box {
    opacity: 0;
}
.section-padding {
    position: relative;
    padding: 120px 0;
}
@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
}
.section-padding--without-topPadding {
    padding-top: 0;
}
.section-padding--small {
    padding: 80px 0;
}
@media (max-width: 767px) {
    .section-padding--small {
        padding: 50px 0;
    }
}
.section-padding h2 {
    position: relative;
    margin-bottom: 5px;
    font-size: 35px;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-60 {
    margin-bottom: 60px;
}
[data-overlay-dark],
[data-overlay-light] {
    position: relative;
}
[data-overlay-dark] .container,
[data-overlay-light] .container {
    position: relative;
    z-index: 2;
}
[data-overlay-dark]:after,
[data-overlay-dark]:before,
[data-overlay-light]:after,
[data-overlay-light]:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: 1;
}
[data-overlay-dark]::before {
    background-color: var(--black-color);
}
[data-overlay-light]::before {
    background-color: var(--white-color);
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] span {
    color: var(--white-color);
}
[data-overlay-dark] p {
    color: var(--gray-color);
}
[data-overlay-dark="0"]::before,
[data-overlay-light="0"]::before {
    opacity: 0;
}
[data-overlay-dark="1"]::before,
[data-overlay-light="1"]::before {
    opacity: 0.1;
}
[data-overlay-dark="2"]::before,
[data-overlay-light="2"]::before {
    opacity: 0.2;
}
[data-overlay-dark="3"]::before,
[data-overlay-light="3"]::before {
    opacity: 0.3;
}
[data-overlay-dark="4"]::before,
[data-overlay-light="4"]::before {
    opacity: 0.4;
}
[data-overlay-dark="5"]::before,
[data-overlay-light="5"]::before {
    opacity: 0.5;
}
[data-overlay-dark="6"]::before,
[data-overlay-light="6"]::before {
    opacity: 0.6;
}
[data-overlay-dark="7"]::before,
[data-overlay-light="7"]::before {
    opacity: 0.7;
}
[data-overlay-dark="8"]::before,
[data-overlay-light="8"]::before {
    opacity: 0.8;
}
[data-overlay-dark="9"]::before,
[data-overlay-light="9"]::before {
    opacity: 0.9;
}
[data-overlay-dark="10"]::before,
[data-overlay-light="10"]::before {
    opacity: 1;
}
header {
    position: relative;
    z-index: 1000;
}
#lang {
    letter-spacing: 0;
    font-size: 16px;
}
.nav-wrapper--start {
    opacity: 1;
    transform: translateY(0);
    padding: 15px 0;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
}
.nav-wrapper.scroll-on {
    padding: 10px 0;
    -webkit-transition: height 0.2s ease-out;
    transition: height 0.2s ease-out;
    position: fixed;
    width: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: 1000;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}
.nav-wrapper.scroll-on .navbar-brand img {
    height: 60px;
}
.nav-wrapper.scroll-on .navbar-collapse {
    top: 70px;
}
.nav-wrapper .navbar {
    padding: 0;
}
.nav-wrapper .navbar-nav {
    margin-inline-start: auto;
}
.nav-wrapper .navbar-brand {
    width: 100px;
    height: 65px;
    padding: 0;
}
.nav-wrapper .navbar-brand img {
    width: 100%;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.nav-wrapper .navbar-brand h1 {
    font-family: var(--signature-font);
    font-size: var(--font-size-25);
    margin: 0;
}
.nav-wrapper .navbar-toggler {
    float: right;
    border: none;
    padding-inline-end: 0;
}
.nav-wrapper .navbar-toggler:hover {
    background-color: transparent;
}
.nav-wrapper .navbar-toggler:active,
.nav-wrapper .navbar-toggler:focus {
    outline: 0;
    box-shadow: none;
}
.nav-wrapper .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}
.nav-wrapper .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}
.nav-wrapper .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(-45deg);
}
.nav-wrapper .navbar-toggler-icon {
    width: 24px;
    height: 16px;
    background-image: none;
    position: relative;
    transition: all 0.3s linear;
    color: none;
}
.nav-wrapper .navbar-toggler-icon::after,
.nav-wrapper .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: var(--black-color);
    top: 1px;
    inset-inline-start: 0;
    content: "";
    z-index: 2;
    transition: all 0.3s linear;
}
.nav-wrapper .navbar-toggler-icon::after {
    top: 9px;
}
@media (max-width: 991px) {
    .nav-wrapper .navbar-collapse .container {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .nav-wrapper .navbar-collapse .container {
        padding: 0 15px;
    }
}
@media (max-width: 991px) {
    .nav-wrapper .navbar-collapse {
        position: absolute;
        top: 80px;
        inset-inline-start: 0;
        background-color: var(--white-color);
        width: 100%;
        z-index: 99999;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    }
}
.nav-wrapper .navbar-collapse ul {
    justify-content: flex-end;
}
.nav-item {
    position: relative;
    transition: all 0.2s linear;
    margin: 5px 12px;
}
.nav-item.active .nav-link,
.nav-item:hover .nav-link {
    color: var(--secondary-color) !important;
}
.nav-item .nav-link {
    position: relative;
    padding: 1px 0 !important;
    display: inline-block;
    color: var(--black-color) !important;
    font-size: var(--font-size-12);
    font-family: var(--nunito-font);
    font-weight: var(--normal);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.nav-item .nav-link:after {
    position: absolute;
    display: block;
    bottom: -5px;
    inset-inline-start: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: #a2783a;
    opacity: 0;
    transition: all 0.2s linear;
}
.nav-item .nav-link:hover::after {
    bottom: 0;
    opacity: 1;
    height: 1px;
}
.main-footer {
    padding: 100px 0 0;
}
.main-footer.dark {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.main-footer p {
    color: var(--white-color);
}
.main-footer .logo h2 {
    font-family: var(--signature-font);
    font-weight: var(--normal);
    font-size: var(--font-size-30);
    color: var(--white-color);
    line-height: 1.25em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.main-footer .footer-about .social-icon {
    margin-top: 20px;
}
.main-footer .footer-about .social-icon a {
    font-size: var(--font-size-15);
    margin-inline-end: 10px;
    color: var(--white-color);
}
.main-footer .footer-about .social-icon a:hover {
    color: var(--white-color);
}
.main-footer .useful-links ul {
    margin: 0;
    padding: 0;
}
.main-footer .useful-links ul li {
    margin-bottom: 5px;
}
.main-footer .useful-links ul li:hover {
    color: var(--secondary-color);
}
.main-footer .useful-links ul li i {
    font-size: var(--font-size-7);
    color: var(--white-color);
    margin-inline-end: 3px;
}
.main-footer .useful-links ul li a {
    color: var(--white-color);
}
.main-footer .fot-head h6 {
    color: var(--white-color);
    font-size: var(--font-size-20);
    position: relative;
    padding-bottom: 5px;
}
.main-footer .fot-head h6:after {
    content: "";
    position: absolute;
    inset-inline-end: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    height: 1px;
}
.main-footer .fot-contact p {
    margin-bottom: 0;
}
.main-footer .fot-contact a {
    direction: ltr !important;
}
.main-footer .fot-contact a:hover {
    color: var(--white-color);
}
.main-footer .sub-footer {
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.main-footer .sub-footer p {
    font-size: var(--font-size-14);
    margin-bottom: 0;
}
.main-footer .sub-footer p a {
    color: var(--white-color);
}
.main-footer .terms {
    text-align: end;
}
@media (max-width: 767px) {
    .main-footer .terms {
        text-align: start;
    }
}
.services {
    padding: 54px 0;
    background-color: #f5f0ec;
}
.services .gallery-img {
    height: 400px;
    overflow: hidden;
}
.services .center .gallery-img {
    height: 450px;;
    overflow: hidden;
}
.services .gallery-img img {
    height: 100%;
    object-fit: cover;
}
.services .row > col {
    margin-bottom: 20px;
}
.services-head {
    text-align: center;
    margin-bottom: 30px;
}
.services-head hr {
    margin: 0 auto;
}
@media (max-width: 991px) {
    .services {
        padding: 30px 0;
    }
}
.services-item {
    position: relative;
    min-height: 380px;
    height: 100%;
}
@media (max-width: 991px) {
    .services-item {
        height: 380px;
        margin-bottom: 10px;
        overflow: hidden;
    }
}
.services-item:hover .services-caption {
    opacity: 1;
}
.services-caption {
    position: absolute;
    inset-inline-start: 50%;
    top: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    background-color: rgba(255, 255, 255, 0.75);
    width: 90%;
    height: 90%;
    opacity: 0;
    padding: 20px;
    z-index: 100;
}
.services-caption a {
    display: flex;
    color: var(--black-color);
    height: 100%;
    flex-direction: column;
    justify-content: center;
}
.services-caption a h4:hover,
.services-caption a h5:hover {
    color: var(--secondary-color);
}
.services-subtitle,
.services-title {
    font-weight: var(--normal);
    color: var(--black-color);
    padding: 0;
    margin-bottom: 10px;
}
.services-title {
    font-size: var(--font-size-27);
    line-height: 1.25em;
    font-family: var(--old-Standard-font);
}
.services-subtitle {
    font-size: var(--font-size-20);
    line-height: 1.5em;
    font-family: var(--signature-font);
}
.services-img {
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}
.services .owl-stage {
    display: flex;
    align-items: center;
}
.services .owl-theme .owl-nav button {
    position: absolute;
    top: 50%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-20);
}
.services .owl-theme .owl-nav button:hover {
    background-color: transparent;
    color: var(--black-color);
}
.services .owl-theme .owl-nav button.owl-next {
    inset-inline-end: 0;
    transform: translate(calc(100% + 5px), -50%);
}
.services .owl-theme .owl-nav button.owl-prev {
    inset-inline-start: 0;
    transform: translate(calc(-100% - 5px), -50%);
}
.services .signature {
    font-family: var(--signature-font);
    font-size: var(--font-size-35);
    font-weight: var(--normal);
    font-style: var(--normal);
    margin-top: -19px;
    text-align: center;
    color: var(--main-font-color);
    position: relative;
    z-index: 999;
    background-color: transparent;
    line-height: 10px;
}
.services-section .row > [class^="col-"] {
    margin-bottom: 20px;
}
.services-section .card {
    margin-bottom: 20px;
    height: 100%;
    border: 0;
    position: relative;
}
.services-section .card-body {
    text-align: center;
    position: relative;
    z-index: 10;
}
.services-section .card-body li {
    list-style: initial;
}
.services-section .card-body p {
    margin-bottom: 0;
}
.services-section .card-icon {
    display: inline-block;
    z-index: 1;
    text-align: center;
}
.services-section .card i {
    font-size: 50px;
    color: var(--secondary-color);
}
hr {
    margin-top: 0;
    margin-bottom: 30px;
}
.line-hr-center,
.line-hr-left,
.line-hr-right {
    width: 60px;
    border-top: 1px solid var(--secondary-color);
}
.line-hr-primary {
    width: 100%;
    border-top: 1px solid var(--secondary-color);
}
.line-hr-left {
    margin: 0 0 30px 0;
}
.line-hr-right {
    margin: 0 0 20px 0;
}
.line-hr-center {
    margin: 0 auto;
}
.line-vr-section {
    position: relative;
    margin: -25px auto;
    border: 0;
    border-inline-start: 1px solid var(--secondary-color);
    width: 1px;
    height: 50px;
    z-index: 10;
}
.about q {
    color: var(--secondary-color);
    font-weight: var(--medium);
}
.about-img {
    position: relative;
}
.about-img .img {
    padding: 0 30px 30px 15px;
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
}
.about-img .img::before {
    content: "";
    position: absolute;
    top: 30px;
    inset-inline-end: 0;
    inset-inline-start: 45px;
    bottom: 0;
    border: 10px solid #f5f0ec;
}
.about-img .img img {
    position: relative;
    z-index: 2;
}
.about-img .img img:hover {
    transform: scale(0.95);
}
.about-img-2 {
    position: relative;
    width: 60% !important;
    position: absolute;
    bottom: 15px;
    inset-inline-end: 15px;
    z-index: 3;
    color: var(--black-color);
    font-family: var(--signature-font);
    font-weight: var(--normal);
    letter-spacing: 1px;
    font-size: var(--font-size-30);
    line-height: 1.5em;
    text-align: center;
    transform: rotate(-30deg);
}
.about-img-col {
    flex-shrink: unset !important;
}
.about-values {
    list-style: initial;
}
.about-values li:not(:last-child) {
    margin-bottom: 10px;
}
.values .value {
    text-align: center;
}
.values .value .icon {
    margin-bottom: 10px;
}
.values .value i {
    font-size: var(--font-size-50);
    color: var(--secondary-color);
}
.values .value p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
    .values .value {
        margin-bottom: 20px;
    }
}
.testimonials {
    position: relative;
    z-index: 3;
    padding: 80px 0 15px 0;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}
.testimonials-header hr {
    margin: 0 auto;
    border-top: 1.5px solid var(--white-color);
}
.testimonials .background {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    bottom: 120px;
    width: 100%;
    z-index: -1;
}
.testimonials .testim {
    position: relative;
}
.testimonials .testim .owl-stage {
    display: flex;
    align-items: stretch;
}
.testimonials .testim .box {
    padding: 15px;
    display: flex;
    flex: 1;
    height: 100%;
}
.testimonials .testim .item {
    width: 100%;
    padding: 30px 30px;
    -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    background: var(--white-color);
}
.testimonials .testim .item .img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: table-cell;
    position: relative;
}
.testimonials .testim .item .img::after {
    content: "";
    position: absolute;
    width: 78px;
    height: 78px;
    top: -4px;
    inset-inline-start: -4px;
    border-radius: 50%;
    border: 2px solid #f8f4f3;
}
.testimonials .testim .item .img img {
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    border-radius: 50%;
}
.testimonials .testim .item p {
    margin-top: 10px;
    color: var(--main-font-color);
    margin-bottom: 0;
}
.testimonials .testim .item .info {
    display: table-cell;
    vertical-align: middle;
    padding-inline-start: 15px;
    padding-top: 15px;
}
.testimonials h2,
.testimonials h6 {
    color: var(--white-color);
}
.testimonials .info h5 {
    font-family: var(--old-Standard-font);
    margin-bottom: 0;
    font-size: var(--font-size-20);
    letter-spacing: 0;
    color: var(--black-color);
    text-transform: none;
    line-height: 1em;
}
.testimonials .info span {
    font-family: var(--nunito-font);
    font-size: 10px;
    color: var(--secondary-color);
    font-weight: var(--light);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.with-dots .owl-dots {
    margin-top: 0 !important;
    padding: 0;
}
.with-dots .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 4px;
    transition: all 0.3s ease-in-out;
    background-color: rgba(162, 120, 58, 0.5);
}
.with-dots .owl-dots .owl-dot.active span,
.with-dots .owl-dots .owl-dot:hover span {
    background-color: var(--secondary-color);
}
.clients {
    padding: 60px 0;
}
.clients .client-logo {
    height: 97px;
    opacity: 1;
    line-height: 0;
}
.clients .client-logo:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.clients img {
    -webkit-filter: none;
    filter: none;
    border: 1px solid var(--main-color-med-2);
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.totop {
    height: 9px;
    opacity: 0;
    position: fixed;
    inset-inline-end: -60px;
    width: 49px;
    z-index: 999;
    display: block;
    top: 85%;
    background-repeat: no-repeat;
    background-position: center 15px;
    background-color: #f5f0ec;
    font-size: var(--font-size-10);
    line-height: 1;
    font-weight: var(--normal);
    letter-spacing: 1px;
    color: var(--main-font-color);
    font-family: var(--nunito-font);
    text-align: center;
    border-radius: 50%;
    padding: 28px 0 21px 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}
.totop-visible {
    inset-inline-end: 10px;
    opacity: 1;
}
.totop:focus,
.totop:hover {
    background-color: rgba(245, 240, 236, 0.8);
}
.totop:before {
    position: absolute;
    content: "\e902";
    top: 10px;
    inset-inline-start: 50%;
    margin-inline-start: -6px;
    font-size: var(--font-size-11);
    display: inline-block;
    font-family: icomoon;
    font-style: normal;
    font-weight: var(--normal);
    line-height: 1;
}
.totop:focus,
.totop:hover {
    color: var(--main-font-color);
}
.whatsapp-contact {
    position: fixed;
    inset-inline-start: 30px;
    top: 90%;
    z-index: 999;
}
.whatsAppChat.whatsAppChat {
    z-index: 100000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    font-size: 30px;
    padding: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}
.whatsAppChat.whatsAppChat a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.whatsAppChat.whatsAppChat:hover i {
    color: var(--white-color);
}
@keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}
.hvr-ripple-out {
    position: relative !important;
}
.hvr-ripple-out::before {
    -webkit-animation-name: hvr-ripple-out;
    animation-name: hvr-ripple-out;
}
.hvr-ripple-out:before {
    content: "";
    position: absolute;
    border: 8px solid #25d366;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    z-index: -1;
}
.banner-header {
    height: 50vh;
    background-position: center;
}
.banner-header h1 {
    font-size: var(--font-size-45);
    font-family: var(--signature-font);
    font-weight: var(--normal);
    color: var(--white-color);
    position: relative;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .banner-header h1 .banner-header {
        height: 50vh;
        margin-top: 105px;
    }
    .banner-header h1 .banner-header h1 {
        font-size: var(--font-size-35);
    }
}
.gallery-item {
    position: relative;
    margin-bottom: 30px;
}
.gallery-box {
    overflow: hidden;
    position: relative;
}

.gallery-box:hover .gallery-img::after,
.center .gallery-img::after {
    background: rgb(162,120,58);
    background: linear-gradient(0deg, rgba(162,120,58,1) 0%, rgba(162,120,58,0) 50%);
}
.gallery-box:hover .gallery-img > img {
    transform: scale(1.05);
}

.gallery-box:hover .gallery-detail,
.center .gallery-box .gallery-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
}
.gallery-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}
.gallery-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    inset-inline-start: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1) 0s;
    background: rgb(162 120 58 / 60%);
}
.gallery-img > img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.gallery-detail {
    opacity: 1;
    color: #fff;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: -150px;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-detail h4 {
    font-size: var(--font-size-17);
}
.gallery-detail h2{
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1;
}
.gallery-detail p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-17);
    margin: 0;
}
.contact-section form > div {
    margin-bottom: 20px !important;
}
.contact-section form input,
.contact-section form textarea {
    margin: 0;
}
.blog-pagination-wrap {
    padding: 0;
    margin: 90px 0 0 0;
    text-align: center;
}
.blog-pagination-wrap li {
    display: inline-block;
    margin: 0 3px;
    border-radius: 100%;
}
.blog-pagination-wrap li a {
    background: var(--main-color-med-2);
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--main-font-color);
    font-weight: var(--normal);
    font-size: var(--font-size-13);
    border-radius: 100%;
    font-family: var(--nunito-font);
}
.blog-pagination-wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.blog-pagination-wrap li a.active {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
}
.blog-pagination-wrap li a i {
    font-size: var(--font-size-10);
}
@media (max-width: 767px) {
    .blog-pagination-wrap {
        padding: 0 0 60px 0;
        margin: 0;
        text-align: center;
    }
}
.services-btn {
    text-decoration: none;
    padding: 10px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 4px;
    margin: 0 auto;
    width: 150px;
    display: block;
    text-align: center;
}
.services-btn:hover {
    color: #fff;
    transform: scale(1.05);
}
