body {
    color: #000000;
    background-color: #f5f5f5;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

html {
    scroll-padding-top: 20%;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}

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

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

h1, h2, h3, h4 {
    font-family: Metrophobic, serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 26px;
    font-weight: 600;
}

h2 {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 30px;
}

h3 {
    font-size: 22px;
}

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

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }
}

* {
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #e9eef1;
    position: relative;
}

.hamburger {
    display: block;
    font-size: 30px;
    padding-right: 10px;
    color: #cb101c;
    z-index: 999;
}

.menu .hamburger {
    width: 0px;
    position: absolute;
    bottom: 50px;
}

nav {
    display: flex;
    position: relative;
    width: 100%;
    top: 0px;
    flex-direction: column;
    height: fit-content;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    background: transparent;
    transition: background-color 0.3s ease 0s;
    margin: 5px 0px;
}

nav.scrolled {
    background-color: #e9eef1;
    box-shadow: #000000 0px 2px 5px;
    position: fixed;
    top: 0px;
    margin: 0px;
    z-index: 999999;
    animation: 0.3s ease 0s 1 normal none running slideDown;
}

nav > div {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    place-content: center space-between;
    align-items: center;
    background: #e9eef1;
    height: auto;
    padding: 5px 0px;
}

.navigation {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    place-content: center space-between;
    align-items: center;
}

nav .menu {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: #e9eef1;
    position: absolute;
    top: -1rem;
    left: -100%;
    z-index: 0;
    transition: all 1s ease 0s;
    place-content: center;
}

nav .menu.active {
    top: -1rem;
    left: 0px;
    right: 0px;
    padding: 0px;
    z-index: 99;
    width: 100%;
}

nav .menu li {
    margin: 0px;
    text-align: center;
    padding: 1rem 0px;
    list-style: none;
    justify-items: center;
}

nav .menu li a {
    font-weight: 500;
    color: #000000;
}

nav .menu li .button {
    color: #eaeaea;
}


.brand {
    width: 85%;
    text-wrap: wrap;
    z-index: 10;
    padding-left: 10px;
    align-items: center;
    display: flex;
    justify-content: flex-start;
}

.brand a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.brand span {
    color: #000000;
    font-size: 25px;
    margin-left: 10px;
    font-family: Metrophobic, serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    bottom: 3px;
}

.brand img {
    width: auto;
    height: 80px;
    align-self: center;
}

.button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 13px 18px;
    border-radius: 15px;
    background: #cb101c;
    color: #eaeaea;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 18px;
    cursor: pointer;
    overflow: hidden;
    letter-spacing: 0.25px;
    border: 0px solid #cb101c;
    font-weight: 500;
    align-self: center;
    justify-content: center;
    width: fit-content;
}

.button::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  background-color: #231f20;
  right: 0;
  transition: width 0.4s ease-in-out;
}

.button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.button span {
    z-index: 1;
    position: relative;
    transition: 0.4s ease-in-out;
}

.button:hover span {
  color: #ffffff;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

nav .menu li:nth-of-type(7) {
    margin-bottom: 20px;
}

.slider-section {
    position: relative;
    width: 100%;
    height: calc(-110px + 100vh);
    align-items: center;
    display: flex;
    z-index: 0;
    justify-content: center;
    flex-direction: column;
    border-radius: 25px;
    min-height: 500px;
    max-height: 700px;
}

.slider-section > img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: 65% center;
    border-radius: 25px;
    top: 0px;
}

.slider-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #00000099;
    z-index: 1;
    border-radius: 25px;
}

.decoration-rectangle {
    max-width: 1280px;
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 0px 10px 10px 0px;
    width: fit-content;
    z-index: 1;
    background: #e9eef1;
    align-self: flex-start;
    border-radius: 0px 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    min-height: 56px;
}

.decoration-rectangle::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -20px;
    width: 20px;
    height: 20px;
    border-radius: 30px 0px 0px;
    border-top: 10px solid #e9eef1;
    border-left: 10px solid #e9eef1;
}

.decoration-rectangle::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: -10px;
    width: 25px;
    height: 25px;
    border-radius: 30px 0px 0px;
    border-top: 10px solid #e9eef1;
    border-left: 10px solid #e9eef1;
}

.decoration-circle {
    position: absolute;
    background-color: #e9eef1;
    width: 190px;
    height: 190px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    bottom: -70px;
    right: 59px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: Metrophobic, serif;
    font-weight: 400;
    font-style: normal;
    z-index: 1;
}

.decoration-circle::before {
    content: "";
    top: 100px;
    left: -20px;
    width: 20px;
    height: 20px;
    border-radius: 0px 0px 30px;
    border-bottom: 10px solid #e9eef1;
    border-right: 10px solid #e9eef1;
    position: absolute;
}

.decoration-circle::after {
    content: "";
    top: 100px;
    right: -20px;
    width: 20px;
    height: 20px;
    border-radius: 0px 0px 0px 30px;
    border-bottom: 10px solid #e9eef1;
    border-left: 10px solid #e9eef1;
    position: absolute;
}

.decoration-circle p {
    margin: 5px 0;
    color: #cb101c;
}

.decoration-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.button-title {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
}

.decoration-circle a {
    font-weight: 600;
    color: #231f20;
    background: #00000000;
    box-shadow: none;
    transition: 0.3s ease-in-out;
    text-shadow: 0 0 5px #fff;
}

.button-subtitle {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
}

.top-decoration-element {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -60px;
}

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

.slider-text {
    color: white;
    text-shadow: #000000 0px 0px 5px;
    justify-items: center;
    display: flex;
    flex-direction: column;
}

.slider-text h1 {
    margin-top: 0px;
}

.slider-text p a {
    color: #fff;
    text-decoration: underline;
    transition: 0.3s ease-in-out;
}

.slider-text p a:hover {
    color: #cb101c;
}

.slider-text p {
    margin-bottom: 20px;
}
.slider-text .button {
    text-decoration: none;
    padding: 12px;
}
.scroll-down {
    position: absolute;
    margin: 20px;
    z-index: 5;
    left: 0;
    bottom: 0;
}
.scroll-down img {
    height: 80px;
    transform: rotate(0deg);
    animation: 1.5s ease 0s infinite normal none running scroll-down-button;
    filter: drop-shadow(#000 0px 0px 6px);
}
@-webkit-keyframes scroll-down-button {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
    }
}
@keyframes scroll-down-button {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
    }
}

.badges-container {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding-bottom: 50px;
    align-items: center;
    width: 100%;
}

.badges-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    flex-flow: wrap;
}

.badge-holder {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 220px;
    padding: 15px 5px 22px;
    margin: 10px 10px 30px;
    border-radius: 15px;
    position: relative;
    text-shadow: #0000000a 0px 15px 15px;
    font-family: Nunito, sans-serif;
    border: 1px solid #ffffff;
}

.badge-holder:hover {
    box-shadow: #fcfffc99 0px 0px 8px 0px;
}

p.badge-content {
    color: #000000;
    text-align: center;
    line-height: 1;
    text-transform: capitalize;
    min-height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.badge-holder img {
    width: 50%;
    padding-bottom: 5px;
}

.badge-title {
    background: #cb101c;
    font-size: 15px;
    width: 85%;
    text-align: center;
    line-height: 1.2;
    padding: 5px;
    position: absolute;
    bottom: -15px;
    color: #ffffff;
    font-weight: bold;
    border-radius: 15px;
    text-transform: capitalize;
}

.badge-title span {
    font-size: 17px;
}

.about-section {
    background: #e9eef1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0px;
}

.about-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    max-width: 1280px;
}

#about {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.about-img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

.about-img img {
    border-radius: 25px;
    width: 100%;
    height: auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 25px;
}

.about-content h2 {
    text-align: center;
}

.about-content p {
    text-align: justify;
    margin: 0 0 15px;
}

.area-served {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
    width: 100%;
}

.area-served li {
    width: 100%;
}

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

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

.features-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 50px 0px;
}

.features-section > div {
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1280px;
}

.features-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #e9eef1;
    border-radius: 25px;
    padding: 15px;
}

.features-content ul {
    padding-left: 20px;
    margin: 0;
}

.features-content li {
    text-align: justify;
}

.features-content li strong {
    color: #000000;
}

.features-content:last-of-type {
    background-color: #feefdc;
}

.features-img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 20px 0px;
    border-radius: 25px;
    padding: 15px;
    min-height: 335px;
    width: 100%;
    min-width: 307px;
}

.features-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
}

.features-img::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #feefdc8a;
    z-index: 1;
    border-radius: 25px;
}

.email-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

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

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

.email-form h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: #000000 0px 0px 5px;
    font-weight: 600;
}

.contact-form .form-row {
    margin-bottom: 15px;
    width: 100%;
}

.contact-form .form-row.submit-btn {
    width: auto;
}

.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: #000000 0px 0px 5px;
    font-family: unset;
}

.contact-form input[type="text"]:focus, .contact-form input[type="tel"]:focus, .contact-form input[type="email"]:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #cb101c;
}

.contact-form textarea {
    resize: none;
}
/* CAPTCHA */

.checkbox-captcha {
    /* position: relative !important; */
    pointer-events: auto !important;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #000 !important;
    padding: 10px 15px !important;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    border: 1px solid #dddddd;
    background: #fff;
    box-shadow: #000000 0px 0px 5px;
    width: 185px !important;
    border-radius: 8px;
}
.form-row.form-row-captcha {
    margin-bottom: 25px;
    margin-top: -5px;
}
.checkbox-captcha input[type="checkbox"] {
    pointer-events: auto;
    position: relative;
    z-index: 11;
    cursor: pointer;
    color: #fff;
    width: 16px;
    height: 16px;
    accent-color: #cb101c;
}



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

.services-section a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.srvBlockTitle {
    line-height: 1.2;
    font-weight: bold;
    font-family: Heebo, sans-serif;
    color: #000000;
    display: inline-block;
    font-size: 26px !important;
    margin-bottom: -30px;
}

.srvBlockTitle {
    text-align: center;
}

.srvBlock {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: wrap;
}

.srvElement {
    margin: 50px auto 0px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.srvElementHeader {
    background: #cb101c;
    border-radius: 25px;
    position: relative;
    bottom: 1px;
    padding: 5px;
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srvElementHeader h2 {
    text-align: center;
    color: #ffffff;
    font-family: Heebo, sans-serif;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0px;
}

.srvElementImg {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.srvElementImg img {
    width: 100%;
    height: 50vw;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px 25px 0px 0px;
}

.srvElementContent {
    text-align: justify;
    color: #fff;
    padding: 0px 20px 10px;
    line-height: 1.2;
}

.srvElementBody {
    background: #231f20;
    border-radius: 25px;
    position: relative;
    bottom: 25px;
}

.srvElement:hover img {
    filter: sepia(0.3);
}

.srvElement:hover h2 {
    /* color: #feefdc; */
    font-weight: 600;
}

.decoration-section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
    background: #231f20;
}

.decoration-section > div {
    display: flex;
    width: 90%;
    max-width: 1280px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.decoration-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 0;
    position: relative;
    width: 100%;
    flex-direction: column;
}

.decoration-main::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #0000003d;
    z-index: 1;
    border-radius: 25px;
}

.decoration-main img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
    z-index: 0;
    position: relative;
}

.decoration-main h2 {
    padding: 0px 10px;
    text-align: left;
    position: absolute;
    z-index: 1;
    font-weight: 600;
    width: 90%;
    text-shadow: #000000 0px 0px 5px;
    color: #ffffff;
}

.decoration-images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 338px;
    flex-direction: row;
    margin: 20px 0px 10px;
}

.decoration-image-1, .decoration-image-2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 0;
    position: relative;
    width: 49%;
    flex-direction: column;
}

.decoration-image-1::before, .decoration-image-2::before {
    content: "";
    position: absolute;
    border: 2px solid #231f20;
    width: 94%;
    height: 96%;
    z-index: 1;
    border-radius: 25px;
    top: 4px;
}

.decoration-image-1::after, .decoration-image-2::after {
    content: "";
    position: absolute;
    border: 2px solid #231f20;
    width: 90%;
    height: 94%;
    z-index: 1;
    border-radius: 25px;
    top: 7px;
}

.decoration-image-1 img {
    width: 100%;
    object-fit: cover;
    object-position: 22% center;
    border-radius: 25px;
    z-index: 0;
    position: relative;
    height: 300px;
}

.decoration-image-2 img {
    width: 100%;
    object-fit: cover;
    object-position: 82% center;
    border-radius: 25px;
    z-index: 0;
    position: relative;
    height: 300px;
}

.gallery-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0px 0px 20px;
    color: #000000;
    text-align: center;
}

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

.lp-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 95%;
    margin: 0px auto;
}

.lp-gallery a {
    width: 40vw;
    height: 40vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 5px;
}

.lp-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
}

.lightboxOverlay, .lightbox {
    z-index: 999999 !important;
}

.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #e9eef1;
}

.testimonial {
    position: relative;
    width: 90%;
    padding-top: 40px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
}

.testimonial .image {
    height: 150px;
    width: 150px;
    position: relative;
    object-fit: cover;
    border-radius: 25px;
    z-index: 1;
    padding: 5px;
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-image: linear-gradient(white, white), linear-gradient(#cb101c, #feefdc);
}

.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
}

.testimonial-content {
    background: #231f20;
    border-radius: 25px;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    z-index: 0;
    bottom: 100px;
    height: fit-content;
    width: 100%;
}

.slide p {
    padding: 0px 60px;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-align: justify;
}

.slide .quote-icon {
    font-size: 30px;
    color: #feefdc;
    margin-bottom: 25px;
    margin-top: 15px;
}

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

.details .name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.slide .details img {
    width: 130px;
    margin-left: 10px;
    border-left: 3px solid #fff;
    padding-left: 10px;
    filter: drop-shadow(1px 1px 6px #111);
}

.swiper-button-prev, .swiper-button-next {
    width: 0px !important;
}

.swiper-button-prev::after, .swiper-button-next::after {
    color: #feefdc;
    font-size: 30px !important;
}

.nav-btn {
    border-radius: 50%;
    transform: translateY(70px);
    transition: all 0.2s ease 0s;
}

.nav-btn::after, .nav-btn::before {
    font-size: 20px;
}

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

.contact-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    text-align: center;
    background: #feefdc;
    border-radius: 25px;
    padding: 10px;
    flex-direction: row;
}

.contact-section p {
    font-size: 28px;
    text-align: justify;
}

.contact-image {
    display: none;
}

.contact-section a {
    color: #cb101c;
    text-decoration: underline;
    transition: 0.3s ease-in-out;
}

.contact-section a:hover {
    color: #231f20;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    background: #e9eef1;
    padding: 20px 0px;
}

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

#callnowbutton {
    display: none;
}

#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    background-color: #cb101c;
    transition: all 0.3s ease 0s;
    border-radius: 0 15px 15px 0;
    width: auto;
    height: auto;
    border: 1px solid #000;
}
#booking-engin .button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

@media (min-width: 600px) {
    .slider-section {
        max-width: 1280px;
        width: 90% !important;
    }

    .scroll-down-section {
        max-width: 1280px;
        width: calc(-260px + 90vw);
        padding: 20px 30px;
        margin: 0px;
        left: 5vw;
    }

    .area-served li {
        width: 50%;
    }
}

@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999999;
        cursor: pointer;
        bottom: 10px;
        background-color: #81d742;
        color: #ffffff;
        text-decoration: none;
        border: none;
        transition: all 0.3s ease 0s;
        border-radius: 15px;
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

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

@media (min-width: 768px) {
    .srvElement {
        width: 48%;
        display: flex;
        flex-direction: column;
        margin: 30px 10px 0px 0px;
    }

    .srvElementImg img {
        height: 200px;
    }

    .srvElementFullWidth .srvElementImg img {
        height: 100%;
    }

    .srvElementBody {
        height: 100%;
    }

    .srvElementContent {
        height: 100%;
    }

    .srvElementFullWidth .srvElementImg {
        width: 32%;
        margin: 0px;
    }

    .srvElementFullWidth .srvElementBody {
        width: 68%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .decoration-section > div {
        flex-direction: row;
    }

    .decoration-images {
        margin: 0px;
    }

    .decoration-main {
        margin-right: 10px;
        width: 50%;
    }

    .decoration-main img {
        height: 300px;
    }
}

@media (min-width: 981px) {
    .email-form {
        align-items: flex-end;
    }

    .lp-gallery a {
        width: calc(31.6667vw);
        max-width: 300px;
        height: calc(31.6667vw);
        max-height: 300px;
    }
    
 .checkbox-captcha {
    width: 185px;
}

}

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

    nav {
        height: 150px;
    }

    nav > div {
        justify-content: center;
    }

    nav .menu {
        height: auto;
        background-color: transparent;
        flex-direction: row;
        justify-content: space-around;
        top: initial;
        left: initial;
        position: relative;
        width: auto;
        align-items: center;
        padding: 0px;
        margin: 5px 0px;
    }

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

    .brand {
        width: 100%;
        justify-content: center;
    }

    .brand a {
        justify-content: center;
    }

    .slider-section {
        padding-top: 4vw;
        height: calc(-181px + 100vh) !important;
    }

    .slider-content {
        bottom: 40px;
    }

    nav .menu li:nth-of-type(7) {
        margin-bottom: 0px;
    }

    nav .menu .button-1 {
        border: 3px solid #cb101c;
        border-radius: 15px;
        padding: 12px;
        background: #cb101c;
        color: #ffffff !important;
    }

    nav .menu .button-1:hover {
        background: #231f20;
        border-color: #231f20;
        text-decoration: none;
    }

    #about {
        flex-direction: row;
        justify-content: space-between;
        align-items: unset;
    }

    .about-img {
        width: 49%;
        padding-top: 0px;
        min-height: 100%;
    }

    .about-img img {
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

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

    .features-content-1 {
        flex-direction: row;
        justify-content: space-between;
        display: flex;
        align-items: stretch;
    }

    .features-content {
        width: 49%;
    }

    .features-img {
        width: 49%;
        margin: 0px;
        min-width: 407px;
        min-height: 390px;
    }

    .features-content:last-of-type {
        margin-top: 20px;
        width: 100%;
    }

    .srvBlock {
        justify-content: center;
    }

    .srvElement {
        width: 31%;
        display: flex;
        flex-direction: column;
        margin: 30px 10px 0px;
    }

    .contact-section {
        margin-bottom: 40px;
    }

    .contact-section > div {
        justify-content: space-between;
        position: relative;
        margin: 50px 0px;
    }

    .contact-image {
        display: block;
        object-fit: cover;
        object-position: center center;
        width: 480px;
        position: absolute;
        height: 325px;
        right: 0px;
        border-radius: 25px;
    }

    .contact-image img {
        width: 100%;
        height: 100%;
        border-radius: 25px;
    }

    .contact-section p {
        width: 41vw;
        padding: 0px 10px;
        max-width: 550px;
    }
}

@media (min-width: 1154px) {
    nav {
        height: 90px;
    }

    nav > div {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1280px;
        width: 100%;
    }

    .navigation {
        width: 42%;
    }

    nav .menu {
        width: 58%;
    }
    .brand {
        justify-content: flex-start;
    }
}

@media (min-width: 2500px) {
    .slider-content {
        margin-bottom: 40px;
    }
}



/* Base label style */
.form-row #captchaLabel{
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
  z-index: 99;
}

/* Base input style (optional) */
.form-row input#captcha{
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

/* When captcha input is focused -> highlight label */
.form-row:focus-within #captchaLabel, .form-row:not(:placeholder-shown) #captchaLabel{
  opacity: 1;
  transform: translateY(-1px);
   /* change if needed */
  z-index: 99;
  top: -7px;
  color: #000;
  background: #EAEAEA;
  font-size: 14px;
  width: 200px;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: #000000 0px 0px 5px;
  font-family: unset;
}

/* Input focus style (optional) */
.form-row input#captcha:focus{/* color: #000 !important; */}

/* Placeholder color (optional) */
.form-row input#captcha::placeholder{
  color: rgb(0 0 0 / 71%);
}

.form-error{
  display:none;
  margin-top: 0px;
  font-size: 9px;
  line-height: 1.3;
  color: #ff4d4f;
  background: #fff;
  padding: 5px 5px 5px 5px;
  width: 83px !important;
  text-align: center;
}

.form-error.is-visible{
  display:block;
}
