body {
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    font-family: Poppins, Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.4;
}

html {
    scroll-padding-top: 13%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a[href^="tel:"] {
    white-space: nowrap;
}

p, li {
    color: rgb(0, 0, 0);
}

h1, h2, h3, h4 {
    font-family: Lexend, serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0px;
    text-align: center;
}

h3 {
    font-size: 21px;
}

@media (min-width: 600px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }
}

@media (min-width: 981px) {
    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 32px;
    }
}

* {
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: auto;
}

.hamburger {
    display: flex;
    z-index: 99999;
    align-items: center;
    justify-content: flex-end;
    height: 45px;
    width: 45px;
    transition: 0.2s;
    position: relative;
    background: rgb(227, 218, 203);
    padding: 0px 5px;
    border-radius: 10px;
}

.line {
    transition: 0.5s;
    stroke-width: 6px;
    stroke: rgb(255, 255, 255);
}

.lineTop {
    stroke-dasharray: 40, 40;
    stroke-dashoffset: 25;
}

.lineBottom {
    stroke-dasharray: 40, 40;
    stroke-dashoffset: 60;
}

.lineMid {
    stroke-dasharray: 40, 40;
}

.hamburger.open .lineTop {
    stroke-dashoffset: 0;
    transform-origin: left center;
    transform: rotateZ(45deg) translate(-7px, -5px);
}

.hamburger.open .lineMid {
    stroke-dashoffset: 40;
}

.hamburger.open .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left center;
    transform: rotateZ(-45deg) translate(-5px, 5px);
}

nav {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    background: rgb(227, 218, 203);
    border-bottom: 2px solid rgb(201, 140, 97);
}

nav.scrolled {
    position: fixed;
    top: 0px;
    margin: 0px;
    z-index: 9999;
    animation: 0.3s ease 0s 1 normal none running slideDown;
    box-shadow: rgb(0, 0, 0) 0px 0px 5px 0px;
}

.navigation-section {
    width: 95%;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    height: auto;
    max-width: 1280px;
    justify-content: center;
}

.navigation {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    height: 100%;
}

nav .menu-section {
    flex-direction: column;
    display: flex;
    width: 102vw;
    min-height: 380px;
    max-height: 380px;
    height: 72vh;
    background: rgb(227, 218, 203);
    position: absolute;
    top: -100%;
    left: -3vw;
    z-index: 9998;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}

nav .menu-section.active {
    transform: translateY(0px);
    z-index: 9998;
    overflow: hidden;
    top: 100%;
}

nav .menu {
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0px;
    padding: 15px 0px;
}

nav .menu li {
    margin: 0px;
    text-align: center;
    padding: 10px 0px;
    list-style: none;
}

nav .menu li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-size: 14px;
}

nav .menu li:hover a {
    /* color: #c07f5c; */
}

nav .button-1 {
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0) !important;
}

nav .button-1 .label {
    text-shadow: none !important;
}

.brand, .brand-logo {
    width: 85%;
    text-wrap: wrap;
    z-index: 3;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.brand a, .brand-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    width: 100%;
}

.brand a span:first-of-type {
    background: rgb(201, 140, 97);
    width: 11%;
    max-width: 40px;
    height: 40px;
    display: flex;
    padding: 10px 0px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.brand a span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    position: relative;
}

.brand span:last-of-type {
    font-size: 25px;
    font-family: Lexend, serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
    color: rgb(255, 255, 255);
    text-align: left;
    margin-left: 10px;
    width: 86%;
}

.brand-logo img {
    width: 250px;
    height: auto;
}

.navigation-buttons {
    width: 14%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    align-items: center;
    display: flex;
    z-index: 0;
    flex-direction: column;
    justify-content: center;
    min-height: 650px;
    max-height: 850px;
}

.slider-section::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slider-section > picture {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.slider-section > picture > img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.slider {
    display: flex;
    flex-direction: column;
    width: 95%;
    position: relative;
    max-width: 1280px;
    z-index: 4;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-text {
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 2;
}

.slider-text h1 {
    margin: 0px;
    position: relative;
    font-weight: 500;
    color: rgb(255, 255, 255);
    z-index: 3;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    text-align: center;
    width: 100%;
    letter-spacing: -1px;
}

.slider-text > p {
    margin: 10px 0px;
    position: relative;
    z-index: 3;
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-align: center;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    width: 100%;
}

.badges-container {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: center;
    width: 100%;
}

.badge-holder {
    background: rgb(201, 140, 97);
    margin: 5px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 0px 10px 0px;
    border-radius: 30px;
}

.badge-holder span {
    text-align: center;
    color: rgb(0, 0, 0);
    text-transform: capitalize;
}

.slider-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
    width: 100%;
}

.slider-cta a {
    text-align: center;
    font-size: 24px;
    color: rgb(255, 255, 255);
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
}

.headers-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin: 5px 0px;
    width: 100%;
}

.headers-buttons > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.button {
    font-size: 17px;
    padding: 15px 25px;
    background: rgb(201, 140, 97);
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    border-radius: 10px;
    font-weight: 400 !important;
    color: rgb(0, 0, 0) !important;
}

.button .gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    margin-top: -0.25em;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    border-radius: 0.6em;
}

.headers-buttons > div .button {
    margin: 15px 0px;
}

.button .label {
    position: relative;
    top: -1px;
    z-index: 1;
}

.button:hover .label {
    color: rgb(0, 0, 0);
}

.button .transition {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: rgb(192, 127, 92);
    border-radius: 50%;
    width: 0px;
    height: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.button:hover .transition {
    width: 20em;
    height: 20em;
}

.button:active {
    transform: scale(0.97);
}

.button-1 {
    font-size: 17px;
    padding: 13px 17px;
    background: rgba(108, 114, 128, 0);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    border-radius: 10px;
    transition-duration: 500ms;
    font-weight: 400 !important;
    color: rgb(255 255 255) !important;
}

.button-1 .gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 0.6em;
    margin-top: -0.25em;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}

.button-1 .label {
    position: relative;
    top: -1px;
    z-index: 1;
}

.button-1:hover {
    color: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
}

.button-1:hover .label {
    color: rgb(0, 0, 0);
}

.button-1 .transition {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: #c07f5c;
    border-radius: 50%;
    width: 0px;
    height: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.button-1:hover .transition {
    width: 18em;
    height: 18em;
}

.button-1:hover .gradient {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.button-1:active {
    transform: scale(0.97);
}

.headers-buttons > div .button-1:nth-child(2) {
    margin: 0px 0px 15px;
}

.benefits-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
}

.benefits-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
}

.benefits-section > div a, .services-section > div a {
    display: flex;
    width: 100%;
}

.benefits-section h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    margin: 0px 0px 30px;
}

.benefits-section > div > p {
    color: rgb(201, 140, 97);
    margin: 30px 0px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.benefits-content {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: stretch;
    width: 100%;
}

.benefit-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 15px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px 0px;
    max-width: 320px;
    overflow: hidden;
    border-radius: 10px;
}

.benefit-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(201, 140, 97);
    border-radius: 50%;
    padding: 15px;
    position: relative;
}

.benefit-image::before {
    content: "";
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: rgb(192, 127, 92);
    border-radius: 50%;
    width: 0px;
    height: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.benefit-element:hover .benefit-image::before {
    width: 25em;
    height: 25em;
}

.benefit-image img {
    object-fit: contain;
    width: 25px;
    height: 25px;
    object-position: center center;
    z-index: 1;
    transition: 0.5s;
}

.benefit-element:hover .benefit-image img {
    /* filter: invert(1) drop-shadow(rgb(0, 0, 0) 0px 0px 2px); */
}

.benefit-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
    min-height: 77px;
}

.benefit-text p {
    text-align: center;
    font-weight: 500;
    transition: 0.5s;
    text-transform: capitalize;
}

.benefit-element:hover .benefit-text p {
    color: rgb(0 0 0);
    /* text-shadow: rgb(0, 0, 0) 0px 0px 5px; */
}

.services-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
    background: #c98c61;
}

.services-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
}

.services-title {
    text-align: center;
    color: rgb(0, 0, 0);
    margin: 0px 0px 30px;
}

.service-subtitle {
    text-align: center;
    color: rgb(0, 0, 0);
    margin: 0px 0px 30px;
}

.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ServicesSwiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px !important;
}

.ServicesSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.ServicesSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ServicesSwiper .swiper-slide > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
}

.service-element {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin: 15px;
    max-width: 500px;
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-weight: 400;
    margin: 15px 0px;
    text-align: center;
    color: rgb(0, 0, 0);
}

.service-text {
    color: rgb(0, 0, 0);
    text-align: center;
    margin: 0px;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    filter: drop-shadow(black -2px 4px 6px);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    max-height: 250px;
    border-radius: 10px;
}

.services-swiper-button-next {
    bottom: 0px;
    background: rgb(201, 140, 97);
    border-radius: 10px;
    transition: 0.5s;
    top: auto !important;
    right: calc(50% - 50px) !important;
    width: 40px !important;
}

.services-swiper-button-prev {
    bottom: 0px;
    background: rgb(201, 140, 97);
    border-radius: 10px;
    transition: 0.5s;
    top: auto !important;
    left: calc(50% - 50px) !important;
    width: 40px !important;
}

.services-swiper-button-next:hover, .services-swiper-button-prev:hover {
    background: rgb(192, 127, 92);
}

.services-swiper-button-next::after, .services-swiper-button-prev::after {
    position: relative;
    color: rgb(0, 0, 0);
    font-size: 25px !important;
}

.services-swiper-button-next:hover::after, .services-swiper-button-prev:hover::after {
    color: rgb(255, 255, 255);
}

.review-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
}

.review-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
}

.review-section h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
}

.ReviewSwiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.ReviewSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 25px;
    height: auto;
}

.ReviewSwiper .swiper-slide > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.33) 0px 0px 9px 0px;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}

.review-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.review-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}

.review-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    height: 100%;
    justify-content: space-around;
}

.review-stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.review-stars span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.review-stars img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.review-text {
    text-align: left;
}

.review-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

.review-avatar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: invert(1);
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 15px;
    justify-content: center;
}

.review-name {
    margin: 0px;
    text-align: left;
}

.review-area {
    margin: 0px;
    color: rgb(54, 63, 79);
    text-align: left;
}

.review-swiper-button-next {
    right: -19px !important;
    width: auto !important;
}

.review-swiper-button-next::after, .review-swiper-button-prev::after {
    font-size: 30px !important;
    color: rgb(0, 0, 0);
}

.review-swiper-button-prev {
    left: -19px !important;
    width: auto !important;
}

.trust-statement {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-top: 20px;
    background: rgb(201, 140, 97);
    padding: 15px;
    border-radius: 10px;
}

.trust-statement-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}

.trust-statement-image span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgb(0, 0, 0);
    border-left: 2px solid rgb(0, 0, 0);
    padding: 1px 2px;
    margin-right: 10px;
    text-align: left;
}

.trust-statement-image img {
    object-fit: contain;
    object-position: center center;
    width: 15px;
    height: 15px;
    filter: invert(1);
}

.trust-statement-text {
    color: rgb(0, 0, 0);
    text-align: center;
}

.simple-process-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
    background: rgb(227, 218, 203);
}

.simple-process-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
}

.simple-process-section h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
}

.simple-process-container {
    display: flex;
    flex-flow: wrap;
    align-items: stretch;
    place-content: center;
    width: 100%;
}

.simple-process-element {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 15px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
}

.simple-process-number {
    background: rgb(201, 140, 97);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.simple-process-number::before {
    content: "";
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: rgb(192, 127, 92);
    border-radius: 50%;
    width: 0px;
    height: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.simple-process-element:hover .simple-process-number::before {
    width: 80em;
    height: 80em;
}

.simple-process-number span {
    color: rgb(0, 0, 0);
    font-size: 22px;
    z-index: 1;
    transition: 0.5s;
}

.simple-process-element:hover .simple-process-number span {
    color: rgb(0 0 0);
    /* text-shadow: rgb(0, 0, 0) 0px 0px 5px; */
}

.simple-process-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
}

.simple-process-content h3 {
    font-weight: 400;
    text-align: center;
    color: rgb(0, 0, 0);
    transition: 0.5s;
}

.simple-process-element:hover .simple-process-content h3 {
    color: rgb(0 0 0);
    /* text-shadow: rgb(0, 0, 0) 0px 0px 5px; */
}

.simple-process-content p {
    color: rgb(0, 0, 0);
    text-align: center;
    margin: 0px;
    transition: 0.5s;
}

.simple-process-element:hover .simple-process-content p {
    color: rgb(0 0 0);
    /* text-shadow: rgb(0, 0, 0) 0px 0px 5px; */
}

.gallery-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
}

.gallery-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
}

.gallery-title {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
}

.GallerySwiper {
    width: 100%;
    padding-bottom: 0px !important;
}

.GallerySwiper .swiper-slide {
    background-position: center center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.GallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}

.GallerySwiper .swiper-slide-shadow-left {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.29)) !important;
}

.GallerySwiper .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.29), rgba(255, 255, 255, 0.78)) !important;
}

.gallery-swiper-pagination {
    bottom: 0px !important;
}

.gallery-swiper-pagination .swiper-pagination-bullet {
    background: rgb(0, 0, 0);
}

.contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
    z-index: 1;
}

.contact-form-section::before {
    z-index: 3;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(227 218 203 / 69%);
}

.contact-form-section > picture {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.contact-form-section > picture > img {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.contact-form-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
    z-index: 4;
}

.contact-form-title {
    text-align: center;
    color: rgb(0 0 0);
    margin: 0px 0px 30px;
    /* text-shadow: rgb(0, 0, 0) 0px 0px 5px; */
}

.contact-form-subtitle {
    color: rgb(255, 255, 255);
    text-align: center;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    margin: 0px 0px 30px;
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.contact-form-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-form-benefits div p {
    color: rgb(0, 0, 0);
    text-shadow: none;
}

.contact-form-benefits > div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: rgb(227, 218, 203);
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgb(0, 0, 0);
}

.contact-form-benefits h3 {
    margin-top: 0px;
    color: rgb(255, 255, 255);
    text-align: left;
    text-shadow: rgba(22, 29, 41, 0.59) 0px 0px 5px;
}

.contact-form-benefits ul {
    margin: 0px;
    padding-left: 20px;
    color: rgb(255, 255, 255);
}

.contact-form-benefits li {
    text-align: left;
    color: rgb(255, 255, 255);
    text-shadow: rgba(22, 29, 41, 0.73) 0px 0px 5px;
}

.contact-form-benefits p {
    color: rgb(0 0 0);
    text-align: left;
    /* text-shadow: rgb(0, 0, 0) 0px 0px 5px; */
}

.contact-form-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-form-buttons .button {
    margin-bottom: 15px;
}

.contact-form-buttons .button-1 {
    color: #000 !important;
    border-color: #000;
}

.contact-form {
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
    background: rgb(227, 218, 203);
    padding: 20px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
}

.contact-form h3 {
    text-align: center;
    margin: 0px 0px 10px;
}

.contact-form > p {
    text-align: center;
    margin: 0px 0px 20px;
}

.contact-form form {
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(108, 114, 128, 0.34);
    padding-bottom: 20px;
}

.contact-form .form-row {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}

.contact-form .form-row.submit-btn {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    flex-direction: row;
}


@media screen and (max-width:450px) {
	.contact-form .form-row.submit-btn {
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-direction: column;
	}
}

.contact-form .form-row.submit-btn .button-1 {
    margin: 0px;
    cursor: pointer;
    background: rgb(227, 218, 203);
    border-color: rgb(227, 218, 203);
    transition: 0.5s;
}

.contact-form .form-row.submit-btn .button-1:hover {
    background: #c98c61;
    border-color: #c98c61;
    color: rgb(0, 0, 0) !important;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    background: rgb(192, 127, 92);
    border: 1px solid rgb(227, 218, 203);
    transition: 0.5s;
    border-radius: 10px;
    color: rgb(0 0 0);
}

.captcha{
width: 200px;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    background: rgb(192, 127, 92);
    border: 1px solid rgb(227, 218, 203);
    transition: 0.5s;
    border-radius: 10px;
    color: rgb(0 0 0);
    
}
#captcha_check {
	width: fit-content;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: 0px;
    background: rgb(201, 140, 97);
    color: rgb(0, 0, 0);
}

.contact-form textarea::placeholder {
    color: rgb(214, 214, 214);
}

.contact-form textarea:focus::placeholder {
    color: rgb(44, 44, 44);
}

.contact-form textarea {
    resize: none;
}

.contact-form .form-row label {
    color: rgb(0, 0, 0);
    /* margin-bottom: 5px; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none;
}

.contact-form-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.contact-form-ctas p:first-of-type {
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-form-ctas p:last-of-type {
    margin: 10px 0px;
    font-size: 18px;
    text-align: center;
}

.contact-form-ctas p a {
    color: rgb(0, 0, 0);
}

.area-served-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
}

.area-served-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
}

.area-served-title {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
}

.area-served-subtitle {
    margin: 0px;
    text-align: center;
}

.area-served-cities {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: center;
    margin: 0px 0px 15px;
}

.area-served-city {
    background: rgb(201, 140, 97);
    padding: 10px 15px;
    margin: 10px;
    transition: 0.5s;
    border-radius: 25px;
}

.area-served-city:hover {
    background: rgb(192, 127, 92);
}

.area-served-city p {
    margin: 0px;
    color: rgb(0, 0, 0);
    transition: 0.5s;
}

.area-served-city:hover p {
    color: rgb(0 0 0);
    /* text-shadow: rgb(0, 0, 0) 0px 0px 5px; */
}

.area-served-text {
    text-align: center;
    margin: 0px;
}

.faq-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
    background: rgb(227, 218, 203);
}

.faq-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
}

.faq-section h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    margin: 0px 0px 30px;
}

.faq-section > div > p {
    text-align: center;
    margin-bottom: 30px;
    color: rgb(224, 224, 224);
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    border-width: 3px 3px 0px;
    border-top-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-color: rgb(201, 140, 97);
    border-right-color: rgb(201, 140, 97);
    border-left-color: rgb(201, 140, 97);
    border-image: initial;
    border-bottom-style: initial;
    border-bottom-color: initial;
    border-radius: 13px;
}

.faq-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.faq-row:first-of-type {
    border-radius: 10px 10px 0px 0px;
}

.faq-row:last-of-type {
    border-radius: 0px 0px 10px 10px;
}

.faq-row:nth-of-type(2n+1) {
    background: rgb(192, 127, 92);
}

.faq-row:nth-of-type(2n) {
    background: #e3dacb;
    border-top: 3px solid #c98c61;
    border-bottom: 3px solid rgb(201, 140, 97);
}

.faq-row h3 {
    margin: 10px 0;
    text-align: left;
    font-size: 26px;
}

.faq-row:nth-of-type(2n) h3 {
    color: rgb(0, 0, 0);
}

.faq-row:nth-of-type(2n+1) h3 {
    color: rgb(0, 0, 0);
}

.faq-row p {
    margin: 0px;
    text-align: left;
}

.faq-row:nth-of-type(2n) p {
    color: rgb(255, 255, 255);
}

.faq-row:nth-of-type(2n+1) p {
    color: rgb(255, 255, 255);
}

.closing-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0px;
}

.closing-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
}

.closing-section-title {
    text-align: center;
    color: rgb(0, 0, 0);
    margin: 0px 0px 30px;
}

.closing-section-subtitle {
    text-align: center;
    margin: 0px;
}

.closing-section-container {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.closing-section-element {
    background: rgb(201, 140, 97);
    padding: 10px 15px;
    margin: 10px;
    transition: 0.5s;
    border-radius: 25px;
}

.closing-section-element:hover {
    background: rgb(192, 127, 92);
}

.closing-section-element img {
    width: 20px;
    height: auto;
    transition: 0.5s;
}

.closing-section-element:hover img {
    /* filter: invert(1) drop-shadow(rgb(0, 0, 0) 0px 0px 2px); */
}

.closing-section-element span {
    margin-left: 5px;
    transition: 0.5s;
    text-transform: capitalize;
}

.closing-section-element:hover span {
    color: rgb(0 0 0);
    /* text-shadow: rgb(0, 0, 0) 0px 0px 5px; */
}

.closing-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0px;
    text-align: center;
    font-size: 24px;
}

.closing-section-number a {
    color: rgb(0, 0, 0);
}

.closing-section-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.closing-section-buttons .button-1 {
    margin-top: 15px;
    border-color: #000;
    color: #000 !important;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 30px 0px;
    background: rgb(227, 218, 203);
}

footer > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
}

.footer-content {
    text-align: center;
    color: rgb(0, 0, 0);
}

.footer-contact-info {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: center;
    line-height: 1.4;
    color: rgb(0, 0, 0);
}

.footer-contact-info img {
    width: 18px;
    height: 18px;
    margin: 0px 0px 0px 10px;
    object-fit: contain;
    object-position: center center;
}

.footer-contact-info a {
    color: rgb(0, 0, 0);
    padding: 10px;
}

#callnowbutton {
    display: none;
}

#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: none;
    box-shadow: none;
    margin: 0px;
    padding: 0px;
}

.button-2 {
    font-size: 16px;
    border-top: 1px solid rgb(0, 0, 0);
    border-right: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    border-image: initial;
    border-left: none;
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    background: rgb(201, 140, 97);
    transition: 0.5s;
    border-radius: 0px 5px 5px 0px;
    color: rgb(0, 0, 0) !important;
    text-shadow: none !important;
    font-weight: 500 !important;
}

.button-2:hover {
    background: rgb(192, 127, 92);
}

@media (min-width: 600px) {
    .slider-section {
        height: calc(-65px + 100vh);
    }

    .slider-text > p {
        font-size: 20px;
    }

    .slider-cta a {
        font-size: 28px;
    }

    .benefits-section > div > p {
        font-size: 23px;
    }

    .ReviewSwiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
        flex-direction: row;
    }

    .ReviewSwiper .swiper-slide {
        width: 33%;
    }

    .ReviewSwiper .swiper-slide-active {
        padding-right: 0px;
    }

    .ReviewSwiper .swiper-slide-next {
        padding-left: 0px;
    }

    .review-image img {
        height: 250px;
    }

    .review-text {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        height: 100%;
    }

    .simple-process-content p {
        font-size: 18px;
    }

    .contact-form-buttons {
        flex-direction: row;
    }

    .contact-form-buttons .button {
        margin: 0px 15px 0px 0px;
    }

    .contact-form-ctas p:last-of-type {
        font-size: 20px;
    }

    .closing-section-number {
        font-size: 28px;
    }

    .closing-section-buttons {
        flex-direction: row;
    }

    .closing-section-buttons .button-1 {
        margin: 0px 0px 0px 15px;
    }
}

@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999999;
        cursor: pointer;
        bottom: 10px;
        background-color: rgb(201, 140, 97);
        color: rgb(255, 255, 255);
        text-decoration: none;
        border: none;
        transition: 0.3s;
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        border-radius: 10px;
    }

    #callnowbutton a img {
        height: 2em;
    }
}

@media (min-width: 981px) {
    .hamburger {
        display: none;
    }

    nav {
        align-items: center;
    }

    .navigation-section {
        position: relative;
    }

    nav .menu-section {
        justify-content: center;
        left: auto;
        position: relative;
        width: 100%;
        max-width: 705px;
        align-items: center;
        padding: 0px;
        margin: 0px;
        transform: none;
        top: auto;
        height: auto;
        z-index: 3;
        min-height: auto;
        max-height: max-content;
    }

    .brand, .brand-logo {
        width: 35%;
    }

    nav .menu {
        height: auto;
        flex-direction: row;
        margin: 0px;
        width: 100%;
        background: rgb(227, 218, 203);
        justify-content: flex-end;
    }

    nav .menu li {
        margin: 10px 8px;
        padding: 0px;
        width: auto;
    }

    .navigation {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .brand {
        width: 50%;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
    }

    .brand span {
        font-size: 30px;
    }

    .navigation-buttons {
        display: none;
    }

    .slider-text h1 {
        font-weight: 400;
        margin: 0px 0px 25px;
    }

    .slider-text > p {
        font-size: 22px;
        margin: 0px 0px 30px;
    }

    .slider-cta {
        margin: 20px 0px;
    }

    .slider-cta a {
        font-size: 32px;
    }

    .headers-buttons > div {
        flex-direction: row;
    }

    .headers-buttons > div .button {
        margin: 0px 15px;
    }

    .benefits-section > div > p {
        font-size: 26px;
    }

    .service-element {
        max-width: none;
        justify-content: space-between;
        align-items: stretch;
    }

    .ServicesSwiper .swiper-slide:nth-of-type(2n+1) .service-element {
        flex-direction: row-reverse;
    }

    .ServicesSwiper .swiper-slide:nth-of-type(2n) .service-element {
        flex-direction: row;
    }

    .service-content {
        width: 49%;
        align-items: flex-start;
    }

    .service-element .service-title {
        text-align: left;
    }

    .service-element .service-text {
        text-align: left;
    }

    .service-image {
        width: 49%;
    }

    .service-image img {
        max-height: 350px;
    }

    .contact-form-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .contact-form-benefits {
        width: 49%;
        align-items: flex-start;
    }

    .contact-form {
        width: 49%;
        margin: 0px;
    }

    .contact-form-ctas p:last-of-type {
        font-size: 22px;
    }

    .swiper-slide.swiper-slide-prev {
        padding-right: 0px;
    }

    .swiper-slide.swiper-slide-active {
        padding-left: 0px;
    }

    .ReviewSwiper .swiper-slide-next {
        padding-right: 0px;
    }

    .swiper-slide.swiper-slide-next {
        padding-right: 25px;
    }

    .ReviewSwiper .swiper-slide-duplicate-prev {
        padding-left: 0px;
    }

    .review-image img {
        height: 250px;
    }

    .trust-statement {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .trust-statement-image {
        margin: 0px 10px 0px 0px;
        width: 26%;
        justify-content: flex-start;
    }

    .trust-statement-text {
        text-align: left;
        width: 73%;
    }

    .ReviewSwiper .swiper-slide {
        width: 33%;
    }

    .ReviewSwiper .swiper-slide > div {
        padding: 20px 35px;
    }

    .review-text {
        padding: 0px 15px;
    }

    .simple-process-container {
        align-items: stretch;
    }

    .simple-process-element {
        width: 46%;
        justify-content: flex-start;
    }

    .simple-process-content h3 {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 116px;
    }

    .simple-process-content p {
        font-size: 18px;
    }

    .contact-form-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-buttons .button {
        margin: 0px 0px 15px;
    }

    .closing-section-number {
        font-size: 32px;
    }
}

@media (min-width: 1200px) {
    .simple-process-element {
        width: 21%;
    }
}
