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: 1rem 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;
}
.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: 11%;
    max-width: 34px;
    height: 37px;
    display: flex;
    padding: 3px;
    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: 86%;
}
.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 > 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%;
}
.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;
}
.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;
}
.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;
}
.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);
}
.headers-buttons > div .button {
    margin-bottom: 15px;
}
.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);
}
.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;
}
.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: 18em;
    height: 18em;
}
.button-1:hover .gradient {
    background-image: linear-gradient(#00000000, #00000000, #0000004d);
}
.button-1:active {
    transform: scale(0.97);
}
/*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 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: center;
}
.benefit-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 5px 0 #0000001c;
    max-width: 320px;
}
.benefit-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #363F4F;
    border-radius: 50%;
    padding: 15px;
    position: relative;
}
.benefit-image img {
    object-fit: contain;
    width: 25px;
    height: 25px;
    object-position: center;
}
.benefit-text {
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-text p {
    text-align: center;
    font-weight: 500;
}
/*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-section > div > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.services-title {
    text-align: center;
    color: #000;
    text-shadow: 0 0 5px #fff;
}
.service-subtitle {
    text-align: center;
    color: #000;
    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: 55px !important;
}
.ServicesSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.ServicesSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}
.ServicesSwiper .swiper-slide > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
}
.service-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    max-width: 500px;
    background: #E7E7E7;
    padding: 20px;
    border-radius: 20px;
    transition: 0.5s;
    height: 100%;
    box-shadow: 0 3px 7px 0 #00000054;
}
.service-element:hover {
    background: #363F4F;
}
.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    height: 100%;
}
.service-title {
    font-weight: 400;
    margin: 0 0 15px;
    text-align: center;
    transition: 0.5s;
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-element:hover .service-title {
    color: #fff;
}
.service-text {
    color: #000;
    text-align: center;
    margin: 0;
    transition: 0.5s;
    height: 100%;
    min-height: 157px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.service-element:hover .service-text {
    color: #fff;
}
.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    height: auto;
}
.service-image::before {
    content: '';
    border-top: 10px solid #E7E7E7;
    border-right: 10px solid #E7E7E7;
    border-top-right-radius: 25px;
    position: absolute;
    top: -10px;
    right: 50px;
    width: 30px;
    height: 30px;
    transition: 0.5s;
}
.service-element:hover .service-image::before {
    border-color: #363F4F;
}
.service-image::after {
    content: '';
    border-top: 10px solid #E7E7E7;
    border-right: 10px solid #E7E7E7;
    border-top-right-radius: 25px;
    position: absolute;
    top: 50px;
    right: -10px;
    width: 30px;
    height: 30px;
    transition: 0.5s;
}
.service-element:hover .service-image::after {
    border-color: #363F4F;
}
.service-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
    background: #E7E7E7;
    width: 60px;
    height: 60px;
    padding: 5px;
    border-bottom-left-radius: 10px;
    z-index: 1;
    transition: 0.5s;
}
.service-element:hover .service-icon {
    background: #363F4F;
}
.service-icon div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #363F4F;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    padding: 5px;
    transition: 0.5s;
}
.service-element:hover .service-icon div  {
    background: #E7E7E7;
}
.service-icon img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    filter: invert(0);
    transition: 0.5s;
}
.service-element:hover .service-icon img {
    filter: invert(1);
}
.service-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    max-height: 250px;
}
.services-swiper-button-next {
    top: auto !important;
    bottom: 0;
    right: calc(50% - 50px) !important;
    background: #363F4F;
    border-radius: 10px;
    width: 40px !important;
    transition: 0.5s;
}
.services-swiper-button-prev {
    top: auto !important;
    bottom: 0;
    left: calc(50% - 50px) !important;
    background: #363F4F;
    border-radius: 10px;
    width: 40px !important;
    transition: 0.5s;
}
.services-swiper-button-next:hover, .services-swiper-button-prev:hover {
    background: #6C7280;
}
.services-swiper-button-next::after, .services-swiper-button-prev::after {
    position: relative;
    color: #fff;
    font-size: 25px !important;
}
/*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%;
}
.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: 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;
}
.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-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;
}
.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;
}
/*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;
}
.simple-process-number {
    background: #363F4F;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.simple-process-number span {
    color: #fff;
    font-size: 22px;
}
.simple-process-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.simple-process-content h3 {
    font-weight: 400;
    text-align: center;
}
.simple-process-content p {
    color: #363F4F;
    text-align: center;
    margin: 0;
}
/*END OF SIMPLE PROCESS 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: #161d2970;
}
.contact-form-section > 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-benefits .about-content {
    text-align: justify;
    text-shadow: 0 0 5px #161d29ba;
    margin: 0;
}
.contact-form-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-form-buttons .button {
    margin-bottom: 15px;
}
.contact-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;
}
.contact-form h3 {
    text-align: center;
    margin: 0 0 10px;
}
.contact-form > p {
    text-align: center;
    margin: 0 0 20px;
}
.contact-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;
}
.contact-form .form-row {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}
.captcha{
        width:calc(100% - 116px);
        padding: 10px;
        border: 1px solid #505050;
        border-radius: 5px;
        box-sizing: border-box;
        /* box-shadow: #000000 0px 0px 5px; */
        transition: all 0.3s ease 0s;
        background:#fff;
}

.captcha label{
    display: inline-block;
    width: 100%;
    pointer-events: auto !important;
    position: relative !important;
    transform: none !important;
}

.captcha label input{
    width: auto;
}

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


@media screen and (max-width:450px) {
	.contact-form .form-row.submit-btn {
	align-items: center;
    justify-content: center;
    flex-direction: column;
	}
}
.contact-form .form-row.submit-btn .button-1 {
    margin: 0px;
    cursor: pointer;
    background: #4B5563;
    border-color: #4B5563;
}
.contact-form .form-row.submit-btn .button-1:hover {
    background: #6C7280;
    border-color: #6C7280;
}
.contact-form input, 
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    background: #fff;
    border: 1px solid #6C7280;
    border-radius: 5px;
    transition: 0.5s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 0px;
    background: #6C7280;
    color: #fff;
    text-shadow: 0 0 5px #161d29a3;
}
.contact-form textarea:focus::placeholder {
    color: #fff;
}
.contact-form textarea {
    resize: none;
}
.contact-form .form-row label {
    color: #000;
    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: 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;
}
/*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;
}
.area-served-city p {
    margin: 0;
}
.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;
}
.closing-section-element img {
    width: 20px;
    height: auto;
}
.closing-section-element span {
    margin-left: 5px;
}
.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;
}
.closing-section-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.closing-section-buttons .button-1 {
    margin-top: 15px;
    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;
}
.footer-contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
}
.footer-contact-info img {
    width: 18px;
    height: 18px;
    margin: 0 5px;
    object-fit: contain;
    object-position: center;
}
.footer-contact-info a {
    margin: 0 5px 0 0;
    color: #000;
}
/*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;
}
.button-2 {
    font-size: 16px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-image: initial;
    border-left: none;
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    background: #ff6600;
    transition: all 0.5s ease 0s;
    color: #fff !important;
    text-shadow: none !important;
    font-weight: 500 !important;
}
.button-2:hover {
    background: #2d2d2d;
    color: #fff !important;
}
@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-buttons {
        flex-direction: row;
    }
    .contact-form-buttons .button {
        margin: 0 15px 0 0;
    }
    .contact-form-ctas p:last-of-type {
        font-size: 20px;
    }
    /*END OF CONTACT FORM DESKTOP*/

    /*CLOSIN SECTION DESKTOP*/
    .closing-section-number {
        font-size: 28px;
    }
    .closing-section-buttons {
        flex-direction: row;
    }
    .closing-section-buttons .button-1 {
        margin: 0 0 0 15px;
    }
    /*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: 2em;
    }
}
@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: 68%;
        max-width: 630px;
        align-items: center;
        padding: 0px;
        margin: 0px;
        transform: none;
        top: auto;
        height: auto;
        z-index: 3;
        min-height: auto;
        max-height: max-content;
    }
    nav .menu {
        height: auto;
        flex-direction: row;
        margin: 0px;
        width: 100%;
        background: #ffffff;
        justify-content: flex-end;
    }
    nav .menu li {
        margin: 10px;
        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;
    }
    /*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;
    }
    .headers-buttons > div .button {
        margin: 0 15px 0 0;
    }
    /*END OF SLIDER DESKTOP*/
    /*SERVICES DESKTOP*/
    .ServicesSwiper .swiper-slide {
        align-items: stretch;
    }
    .services-container {
        flex-direction: row;
        align-items: stretch;
        flex-wrap: wrap;
        align-content: center;
    }
    .service-element {
        max-width: none;
    }
    .service-content {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .service-element .service-title {
        text-align: left;
        min-height: 77px;
    }
    .service-element .service-text {
        text-align: left;
        min-height: auto;
    }
    .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;
    }
    .contact-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 {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-form-buttons .button {
        margin: 0 0 15px;
    }
    /*END OF CONTACT FORM DESKTOP*/

    /*CLOSIN SECTION DESKTOP*/
    .closing-section-number {
        font-size: 32px;
    }
    /*END OF CLOSIN SECTION DESKTOP*/
}