body {
    color: #000;
    background: #fff;
    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: 12%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
a[href^="tel:"] {
  white-space: nowrap;
}
p,
li {
    color: #000;
}
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;
}
/*NAVIGATION STYLE*/
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: all 0.2s ease 0s;
    position: relative;
    background: #363f4f;
    padding: 0px 5px;
    border-radius: 10px;
}
.line {
    transition: all 0.5s ease 0s;
    stroke-width: 6px;
    stroke: #fff;
}
.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: #ffffff;
}
nav.scrolled {
    position: fixed;
    top: 0px;
    margin: 0px;
    z-index: 9999;
    animation: 0.3s ease 0s 1 normal none running slideDown;
    box-shadow: 0 0 5px 0 #000;
}
.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: 430px;
    max-height: 430px;
    height: 72vh;
    background: #ffffff;
    position: absolute;
    top: -100%;
    left: -4vw;
    z-index: 9998;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out 0s;
}
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%;
    padding: 0px;
}
nav .menu li {
    margin: 0px;
    text-align: center;
    padding: 13px 0px;
    list-style: none;
}
nav .menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #000000;
}
.brand,
.brand-logo {
    width: 85%;
    text-wrap: wrap;
    z-index: 3;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
    flex-direction: row;
}
.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: #363F4F;
    border-radius: 10px;
    width: 37px;
    /* max-width: 34px; */
    height: 37px;
    display: flex;
    padding: 10px 0px;
    align-items: center;
    justify-content: center;
}
.brand a span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
}
.brand span:last-of-type {
    font-size: 25px;
    font-family: "Lexend", serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
    color: #000000;
    text-align: left;
    margin-left: 10px;
    width: 84%;
}
.brand-logo img {
    width: 120px;
    height: auto;
}
.navigation-buttons {
    width: 14%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}
/*END OF NAVIGATION STYLE*/
/*SLIDER STYLE*/
.slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    align-items: center;
    display: flex;
    z-index: 0;
    flex-direction: column;
    justify-content: center;
    min-height: 530px;
    max-height: 600px;
}
.slider-section::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to bottom, #161d2970 0%, #161d292e 100%);
    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: #fff;
    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: #fff;
    z-index: 3;
    text-shadow: #000 0px 0px 5px;
    text-align: center;
    width: 100%;
    letter-spacing: -1px;
}
.slider-text > p {
    margin: 10px 0px;
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-shadow: #000 0px 0px 5px;
    width: 100%;
    text-transform: capitalize;
}
.badges-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.badge-holder {
    background: #4B5563;
    margin: 5px;
    padding: 10px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    box-shadow: 0 0 10px 0 #00000021;
}
.badge-holder span {
    text-align: center;
    color: #fff;
    text-transform: capitalize;
}
.slider-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    width: 100%;
}
.slider-cta a {
    text-align: center;
    font-size: 24px;
    color: #fff;
    text-shadow: 0 0 5px #000;
    position: relative;
}
.slider-cta a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.slider-cta a:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.headers-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin: 5px 0;
    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;
    font-weight: 400 !important;
    background: #6C7280;
    color: #fff !important;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    margin: 7px;
    text-transform: capitalize;
}
.button .gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0.6em;
    margin-top: -0.25em;
    background-image: linear-gradient(#00000000, #00000000, #0000004d);
}
.button .label {
    position: relative;
    top: -1px;
    z-index: 1;
}
.button .transition {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: #161D2999;
    border-radius: 50%;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.button:hover .transition {
    width: 20em;
    height: 20em;
}
.button:active {
    transform: scale(0.97);
}
.menu-section .button {
    margin: 0;
}
.button-1 {
    font-size: 17px;
    padding: 13px 25px;
    font-weight: 400 !important;
    background: #6c728000;
    color: #fff !important;
    backdrop-filter: blur(10px);
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    margin: 7px;
    text-transform: capitalize;
}
.button-1 .gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0.6em;
    margin-top: -0.25em;
    background-image: linear-gradient(#00000000, #00000000, #00000000);
}
.button-1 .label {
    position: relative;
    top: -1px;
    z-index: 1;
}
.button-1 .transition {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: #4B5563;
    border-radius: 50%;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.button-1:hover {
    border-color: #4B5563;
}
.button-1:hover .transition {
    width: 21em;
    height: 21em;
}
.button-1:hover .gradient {
    background-image: linear-gradient(#00000000, #00000000, #0000004d);
}
.button-1:active {
    transform: scale(0.97);
}
.button-2 {
    font-size: 17px;
    padding: 15px 25px;
    font-weight: 400 !important;
    background: #363F4F;
    color: #fff !important;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    margin: 7px;
    text-transform: capitalize;
}
.button-2 .gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0.6em;
    margin-top: -0.25em;
    background-image: linear-gradient(#00000000, #00000000, #0000004d);
}
.button-2 .label {
    position: relative;
    top: -1px;
    z-index: 1;
}
.button-2 .transition {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: #6C728099;
    border-radius: 50%;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.button-2:hover .transition {
    width: 20em;
    height: 20em;
}
.button-2:active {
    transform: scale(0.97);
}
.menu-section .button-2 {
    margin: 0;
}
/*END OF SLIDER STYLE*/
/*END OF BENEFITS STYLE*/
.benefits-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0;
}
.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 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.benefits-section h2 {
    text-align: center;
    color: #000;
    margin-bottom: 30px;
}
.benefits-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}
.benefit-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 90%;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 5px 0 #0000001c;
    max-width: 320px;
    overflow: hidden;
}
.benefit-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #363F4F;
    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: #363f4f;
    border-radius: 50%;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: 0.5s;
}
.benefit-element:hover .benefit-image::before {
    width: 25em;
    height: 25em;
}
.benefit-image img {
    object-fit: contain;
    width: 25px;
    height: 25px;
    object-position: center;
}
.benefit-element:hover .benefit-image img {
    filter: drop-shadow(0 0 2px #000);
}
.benefit-text {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.benefit-text p {
    min-height: auto;
    text-align: center;
    font-weight: 500;
    transition: 0.5s;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    color: #000000;
    text-shadow: 0 0 5px #ffffff;
}
.benefit-element:hover .benefit-text p {
    color: #ffffff;
    text-shadow: 0 0 5px #000000;
}
/*END OF BENEFITS STYLE*/
/*END OF SERVICES STYLE*/
.services-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0;
    background: #FAF9F9;
}
.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: #000;
}
.service-subtitle {
    text-align: center;
    color: #363F4F;
    margin-bottom: 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 0;
    text-align: center;
}
.service-text {
    color: #363F4F;
    text-align: center;
    margin: 0;
}
.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    max-height: 250px;
}
div.services-swiper-button-next {
    top: auto;
    bottom: 0;
    right: calc(50% - 70px);
    background: #363F4F;
    border-radius: 10px;
    width: 40px;
    transition: 0.5s;
}
div.services-swiper-button-prev {
    top: auto;
    bottom: 0;
    left: calc(50% - 70px);
    background: #363F4F;
    border-radius: 10px;
    width: 40px;
    transition: 0.5s;
}
div.services-swiper-button-next:hover, div.services-swiper-button-prev:hover {
    background: #6C7280;
}
div.services-swiper-button-next::after, div.services-swiper-button-prev::after {
    position: relative;
    color: #ffffff;
    font-size: 25px;
}
div.services-swiper-button-next:hover::after, div.services-swiper-button-prev:hover::after {
    color: #ffffff;
}
/*END OF SERVICES STYLE*/
/*SOCIAL PROOF STYLE*/
.review-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0;
}
.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: #000;
    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: 0 3px 7px 0 #00000054;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    max-width: 400px;
}
.review-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.review-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
    height: 100%;
}
.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;
}
.review-text {
    text-align: left;
}
.review-details {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}
.review-details > div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.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;
}
.review-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 15px;
    justify-content: center;
}
.review-name {
    margin: 0;
    text-align: left;
}
.review-area {
    margin: 0;
    color: #363F4F;
    text-align: left;
}
.review-details > img {
    width: 130px;
    height: auto;
    margin-top: 10px;
}
.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: #000;
}
.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: #FAF9F9;
    border-radius: 10px;
    padding: 15px;
}
.trust-statement-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.trust-statement-image span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
    padding: 1px 2px;
    margin-right: 10px;
    text-align: left;
}
.trust-statement-image img {
    object-fit: contain;
    object-position: center;
    width: 15px;
    height: 15px;
}
.trust-statement-text {
    color: #363F4F;
    text-align: center;
    text-transform: capitalize;
}
/*END OF SOCIAL PROOF STYLE*/
/*SIMPLE PROCESS SECTION STYLE*/
.simple-process-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0;
    background: #FAF9F9;
}
.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: #000;
    margin-bottom: 30px;
}
.simple-process-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    align-content: center;
}
.simple-process-element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
}
.simple-process-number {
    background: #363F4F;
    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: #363F4F;
    border-radius: 50%;
    width: 0;
    height: 0;
    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: #fff;
    font-size: 22px;
    transition: 0.5s;
    z-index: 1;
}
.simple-process-element:hover .simple-process-number span {
    color: #ffffff;
    text-shadow: 0 0 5px #000000;
}
.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;
    transition: 0.5s;
    color: #000000;
    text-shadow: 0 0 5px #ffffff;
}
.simple-process-element:hover .simple-process-content h3 {
    color: #ffffff;
    text-shadow: 0 0 5px #000000;
}
.simple-process-content p {
    color: #363F4F;
    text-align: center;
    margin: 0;
    transition: 0.5s;
    text-shadow: 0 0 5px #ffffff;
}
.simple-process-element:hover .simple-process-content p {
    color: #ffffff;
    text-shadow: 0 0 5px #000000;
}
/*END OF SIMPLE PROCESS SECTION STYLE*/
/*GALLERY SECTION STYLE*/
.gallery-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0;
}
.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: #000;
    margin-bottom: 30px;
}
.GallerySwiper {
    width: 100%;
    padding-bottom: 0 !important;
}
.GallerySwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}
.GallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.GallerySwiper .swiper-slide-shadow-left {
    background-image: linear-gradient(to right, #ffffffc7, #ffffff4a) !important;
}
.GallerySwiper .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #ffffff4a, #ffffffc7) !important;
}
.gallery-swiper-pagination {
    bottom: 0 !important;
}
.gallery-swiper-pagination .swiper-pagination-bullet {
    background: #000;
}
/*END OF GALLERY SECTION STYLE*/
/*CONTACT FORM STYLE*/
.contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0;
    z-index: 1;
}
.contact-form-section::before {
    z-index: 3;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #161d295e;
}
.contact-form-section > picture {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.contact-form-section > picture img {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.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: #fff;
    margin-bottom: 30px;
    text-shadow: 0 0 5px #000;
}
.contact-form-subtitle {
    margin: 0;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 5px #000;
}
.contact-form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: 30px;
}
.contact-form-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.contact-form-benefits > div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #6C7280;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
}
.contact-form-benefits h3 {
    margin-top: 0;
    color: #fff;
    text-align: left;
    text-shadow: 0 0 5px #161d2996;
}
.contact-form-benefits ul {
    margin: 0;
    padding-left: 20px;
    color: #fff;
}
.contact-form-benefits li {
    text-align: left;
    color: #fff;
    text-shadow: 0 0 5px #161d29ba;
}
.contact-form-benefits p {
    color: #fff;
    text-align: left;
    text-shadow: 0 0 5px #000;
}
.contact-form-buttons {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
}
.email-form {
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.email-form h3 {
    text-align: center;
    margin: 0 0 10px;
}
.email-form > p {
    text-align: center;
    margin: 0 0 20px;
}
.email-form form {
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #6c728057;
    padding-bottom: 20px;
}
.email-form .form-row {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}
/* CAPTCHA */
.contact-form .form-row-captcha {
    width: 100%;
    /* align-items: center; */
}
.checkbox-captcha {
    pointer-events: auto !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #000 !important;
    box-sizing: border-box;
    transition: 0.5s;
    background: #fff;
    border: 1px solid #6C7280;
    border-radius: 5px;
    background: #fff;
    accent-color: #4b5563 !important;
    padding: 8px 12px !important;
    font-size: 14px;
    height: 37px;
    left: 0 !important;
    transform: unset !important;
    width: 100% !important;
}
.checkbox-captcha input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.email-form .form-row.submit-btn {
    width: auto;
    margin: 0px;
}
.email-form .form-row.submit-btn .button-1 {
    margin: 0px;
    cursor: pointer;
    background: #4B5563;
    border-color: #4B5563;
}
.email-form .form-row.submit-btn .button-1:hover {
    background: #6C7280;
    border-color: #6C7280;
}
.email-form input, 
.email-form textarea,
.email-form select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    background: #fff;
    border: 1px solid #6C7280;
    border-radius: 5px;
    transition: 0.5s;
}
.email-form input:focus,
.email-form textarea:focus,
.email-form select:focus {
    outline: 0px;
    background: #6C7280;
    color: #fff;
    text-shadow: 0 0 5px #161d29a3;
}
.email-form textarea:focus::placeholder {
    color: #fff;
}
.email-form textarea {
    resize: none;
}
.email-form .form-row label {
    color: #000;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
.email-form input:focus,
.email-form textarea:focus,
.email-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: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.contact-form-ctas p:last-of-type {
    margin: 10px 0;
    font-size: 18px;
    text-align: center;
}
.contact-form-ctas p a {
    color: #000;
}
.contact-form-ctas p .contact-form-ctas-phone {
    position: relative;
}
.contact-form-ctas p .contact-form-ctas-phone::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #000;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.contact-form-ctas p .contact-form-ctas-phone:hover::after {
    transform: translateX(-50%) scaleX(1);
}
/*END OF CONTACT FORM STYLE*/
/*AREA SERVED STYLE*/
.area-served-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0;
}
.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: #000;
    margin-bottom: 30px;
}
.area-served-subtitle {
    margin: 0;
    text-align: center;
}
.area-served-cities {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 10px;
}
.area-served-city {
    background: #FAF9F9;
    padding: 10px 15px;
    margin: 10px;
    border-radius: 25px;
    transition: 0.5s;
}
.area-served-city:hover {
    background: #6C7280
}
.area-served-city p {
    margin: 0;
    transition: 0.5s;
}
.area-served-city:hover p {
    color: #ffffff;
    text-shadow: 0 0 5px #000000;
}
.area-served-text {
    text-align: center;
    margin: 0;
}
/*END OF AREA SERVED STYLE*/

/*FAQ STYLE*/
.faq-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0;
    background: #FAF9F9;
}
.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: #000;
    margin-bottom: 30px;
}
.faq-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 #0000001a;
}
.faq-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 20px;
}
.faq-row:nth-of-type(odd) {
    background: #fff;
}
.faq-row:nth-of-type(even) {
    background: #FAF9F9;
    border-top: 1px solid #00000030;
    border-bottom: 1px solid #00000030;
}
.faq-row:first-of-type {
    border-radius: 10px 10px 0 0;
}
.faq-row:last-of-type {
    border-radius: 0 0 10px 10px;
}
.faq-row h3 {
    margin-top: 0;
    text-align: left;
}
.faq-row p {
    margin: 0;
    text-align: left;
}
/*END OF FAQ STYLE*/
/*CLOSING SECTION STYLE*/
.closing-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 50px 0;
}
.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: #000;
    margin-bottom: 30px;
}
.closing-section-subtitle {
    text-align: center;
    margin: 0;
}
.closing-section-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}
.closing-section-element {
    background: #FAF9F9;
    padding: 10px 15px;
    margin: 10px;
    border-radius: 25px;
    transition: 0.5s;
}
.closing-section-element:hover {
    background: #6C7280;
}
.closing-section-element img {
    width: 20px;
    height: auto;
    transition: 0.5s;
    filter: invert(0) drop-shadow(0 0 0 #ffffff00);
}
.closing-section-element:hover img {
    filter: invert(1) drop-shadow(0 0 2px #000000);
}
.closing-section-element span {
    margin-left: 5px;
    transition: 0.5s;
    color: #000000;
    text-shadow: 0 0 5px #ffffff;
}
.closing-section-element:hover span {
    color: #ffffff;
    text-shadow: 0 0 5px #000000;
}
.closing-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    text-align: center;
    font-size: 24px;
}
.closing-section-number a {
    color: #000;
    position: relative;
}
.closing-section-number a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #000;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.closing-section-number a:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.closing-section-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}
.closing-section-buttons .button-1 {
    background: #363F4F;
    border-color: #363F4F;
}
.closing-section-buttons .button-1 .gradient {
    background-image: linear-gradient(#00000000, #00000000, #0000004d);
}
/*END OF CLOSING SECTION STYLE*/
/*FOOTER STYLE*/
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 30px 0;
    background: #FAF9F9;
}
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;
    margin-bottom: 0;
}
.footer-copyright {
    text-align: center;
    margin-bottom: 0;
}
/*END OF FOOTER STYLE*/
#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;
}
#booking-engin .button-2 {
    margin: 0;
    border-radius: 0 10px 10px 0;
}
#booking-engin .button-2 .gradient {
    border-radius: 0 0.6em 0.6em 0;
}
@media (min-width: 600px) {
    /*SLIDER TABLET*/
    .slider-section {
        height: calc(100vh - 65px);
    }
    .slider-text > p {
        font-size: 20px;
    }
    .slider-cta a {
        font-size: 28px;
    }
    /*END OF SLIDER TABLET*/
    /*REVIEWS TABLET*/
    .ReviewSwiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }
    .ReviewSwiper .swiper-slide-active {
        padding-right: 0;
    }
    .ReviewSwiper .swiper-slide-next {
        padding-left: 0;
    }
    .review-image img {
        height: 200px;
    }
    .review-text {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        height: 100%;
    }
    /*SIMPLE PROCESS DESKTOP*/
    .simple-process-content p {
        font-size: 18px;
    }
    /*END OF SIMPLE PROCESS DESKTOP*/

    /*CONTACT FORM DESKTOP*/
    .contact-form .form-row.submit-btn {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .contact-form .form-row-captcha {
        margin: 0;
        width: calc(100% - 255px);
    }
    .contact-form-ctas p:last-of-type {
        font-size: 20px;
    }
    /*END OF CONTACT FORM DESKTOP*/

    /*CLOSIN SECTION DESKTOP*/
    .closing-section-number {
        font-size: 28px;
    }
    /*END OF CLOSIN SECTION DESKTOP*/
}
@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999999;
        cursor: pointer;
        bottom: 10px;
        background-color: #363f4f;
        color: #fff;
        text-decoration: none;
        border: none;
        transition: all 0.3s ease 0s;
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        border-radius: 10px;
    }
    #callnowbutton a img {
        height: 32px;
    }
}
@media (min-width: 981px) {
    /*NAVIGATION TABLET*/
    .hamburger {
        display: none;
    }
    nav {
        align-items: center;
    }
    .navigation-section {
        position: relative;
    }
    nav .menu-section {
        justify-content: center;
        left: auto;
        position: relative;
        width: 100%;
        align-items: center;
        padding: 0px;
        margin: 0px;
        transform: none;
        top: auto;
        height: auto;
        z-index: 3;
        min-height: auto;
        max-height: none;
    }
    nav .menu {
        height: auto;
        flex-direction: row;
        margin: 0px;
        width: 100%;
        background: #ffffff;
    }
    nav .menu li {
        margin: 10px;
        padding: 0px;
        width: auto;
    }
    .navigation {
        justify-content: center;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        flex-direction: column;
    }
    .brand, .brand-logo {
        width: 100%;
    }
    .brand a, .brand-logo a {
        justify-content: center;
    }
    .brand span:last-of-type {
        width: auto;
    }
    .brand span {
        font-size: 30px;
    }
    .navigation-buttons {
        display: none;
    }
    /*END OF NAVIGATION TABLET*/
    /*SLIDER DESKTOP*/
    .slider-text h1 {
        font-weight: 400;
        margin-bottom: 15px;
    }
    .slider-text > p {
        font-size: 22px;
        margin: 10px 0 20px;
    }
    .slider-cta {
        margin: 20px 0;
    }
    .slider-cta a {
        font-size: 32px;
    }
    .headers-buttons > div {
        flex-direction: row;
    }
    /*END OF SLIDER DESKTOP*/
    /*SERVICES DESKTOP*/
    .service-element {
        max-width: none;
        justify-content: space-between;
        align-items: stretch;
    }
    .ServicesSwiper .swiper-slide:nth-of-type(odd) .service-element {
        flex-direction: row-reverse;
    }
    .ServicesSwiper .swiper-slide:nth-of-type(even) .service-element {
        flex-direction: row;
    }
    /* .service-element:nth-of-type(odd) {
        flex-direction: row;
    }
    .service-element:nth-of-type(even) {
        flex-direction: row-reverse;
    } */
    .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;
    }
    /*END OF SERVICES DESKTOP*/
    /*CONTACT FORM DESKTOP*/
    .contact-form-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .contact-form-benefits {
        width: 49%;
        align-items: flex-start;
    }
    .email-form {
        width: 49%;
        margin: 0;
    }
    .contact-form-ctas p:last-of-type {
        font-size: 22px;
    }
    /*END OF CONTACT FORM DESKTOP*/
    /*REVIEWS DESKTOP*/
    .ReviewSwiper .swiper-slide-next {
        padding-right: 0;
    }
    .ReviewSwiper .swiper-slide-duplicate-prev {
        padding-left: 0;
    }
    .review-image img {
        height: 250px;
    }
    .trust-statement {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .trust-statement-image {
        margin: 0 10px 0 0;
        width: 26%;
        justify-content: flex-start;
    }
    .trust-statement-text {
        text-align: left;
        width: 73%;
    }
    /*END OF REVIEWS DESKTOP*/
    /*SIMPLE PROCESS DESKTOP*/
    .simple-process-container {
        align-items: stretch;
    }
    .simple-process-element {
        width: 21%;
        justify-content: flex-start;
    }
    .simple-process-content h3 {
        min-height: 77px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .simple-process-content p {
        font-size: 18px;
    }
    /*END OF SIMPLE PROCESS DESKTOP*/

    /*CONTACT FORM DESKTOP*/
    .contact-form-buttons {
        justify-content: flex-start;
    }
    /*END OF CONTACT FORM DESKTOP*/

    

    /*CLOSIN SECTION DESKTOP*/
    .closing-section-number {
        font-size: 32px;
    }
    /*END OF CLOSIN SECTION DESKTOP*/
}
@media (min-width: 1200px) {
    .navigation {
        flex-direction: row;
        justify-content: space-between;
    }
    .brand, .brand-logo {
        width: 33%;
    }
    .brand a, .brand-logo a {
        justify-content: flex-start;
    }
    nav .menu-section {
        width: 67%;
        align-items: flex-end;
    }
    .review-details {
        flex-direction: row;
        align-items: flex-end;
    }
    .review-details > div {
        align-items: flex-end;
    }
    .review-details > img {
        margin-top: 0;
    }
}