body {
    color: #000000;
    background-color: #ffffff;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.2;
}
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;
    line-height: 1.4;
}
h1 {
    font-size: 26px;
    font-weight: 600;
}
h2 {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 20px;
}
h3 {
    font-size: 22px;
}
@media (min-width: 600px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 24px;
    }
}
@media (min-width: 981px) {
    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: #f5f5f5;
    position: relative;
    z-index: 9999999;
}
.hamburger {
    display: block;
    font-size: 30px;
    padding-right: 10px;
    color: #000;
    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: #f5f5f5;
    box-shadow: #000000 0px 2px 5px;
    position: fixed;
    top: 0px;
    margin: 0px;
    z-index: 9999999;
    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: #f5f5f5;
    height: auto;
    padding: 5px 0px;
}
.navigation {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    place-content: center space-between;
    align-items: center;
    justify-content: center;
}
nav .menu {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: #f5f5f5;
    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;
}
nav .menu .button {
    margin: 0;
}
.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: 230px;
    height: auto;
    align-self: center;
    object-fit: contain;
    object-position: center;
}
.button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 15px;
    background: #bc1824;
    color: #eaeaea;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 18px;
    cursor: pointer;
    overflow: hidden;
    letter-spacing: 0.25px;
    border: 0px solid #bc1824;
    font-weight: 500;
    justify-content: center;
    width: fit-content;
    margin: 7px 5px;
    white-space: initial !important;
}
.button::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background-color: #e11e2c;
    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;
    text-align: center;
}
.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #f5f5f5;
    position: relative;
    z-index: 0;
}
.slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh + 130px);
    align-items: center;
    display: flex;
    z-index: 0;
    justify-content: center;
    flex-direction: column;
    border-radius: 25px;
    min-height: 675px;
    max-height: 680px;
}
.slider-section > picture {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: 65% center;
    border-radius: 25px;
    top: 0px;
}
.slider-section > picture 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: #f5f5f5;
    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 #f5f5f5;
    border-left: 10px solid #f5f5f5;
}
.decoration-rectangle::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: -10px;
    width: 25px;
    height: 25px;
    border-radius: 30px 0px 0px;
    border-top: 10px solid #f5f5f5;
    border-left: 10px solid #f5f5f5;
}
.decoration-circle {
    position: absolute;
    background-color: #f5f5f5;
    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 #f5f5f5;
    border-right: 10px solid #f5f5f5;
    position: absolute;
}
.decoration-circle::after {
    content: "";
    top: 100px;
    right: -20px;
    width: 20px;
    height: 20px;
    border-radius: 0px 0px 0px 30px;
    border-bottom: 10px solid #f5f5f5;
    border-left: 10px solid #f5f5f5;
    position: absolute;
}
.decoration-circle p {
    margin: 5px 0;
    color: #e11e2c;
    font-size: 22px;
}
.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: #e11e2c;
    background: #00000000;
    box-shadow: none;
    text-shadow: 0 0 5px #fff;
}
.area-served-title {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}
.area-served-subtitle {
    margin: 0;
    text-align: center;
    color: #fff;
}
.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: #f5f5f5;
    padding: 10px 15px;
    margin: 7px;
    border-radius: 15px;
}
.area-served-city p {
    margin: 0;
}
.area-served-text {
    text-align: center;
    margin: 0;
    color: #fff;
}
.button-subtitle {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
}
.slider-badges-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 3;
    margin-top: 10px;
    flex-wrap: wrap;
    align-content: center;
}
.slider-badge-holder {
    background: transparent;
    margin: 5px;
    backdrop-filter: blur(4px);
    padding: 10px 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    border: 2px solid #f5f5f5;
    text-shadow: 0 0 5px #000;
    transition: 0.5s;
}
.slider-badge-holder:hover {
    background: #f5f5f5;
}
.slider-badge-holder span {
    text-align: center;
    color: #f5f5f5;
    transition: 0.5s;
    text-transform: capitalize;
}
.slider-badge-holder:hover span {
    color: #000;
    text-shadow: 0 0 5px #fff;
}
.top-decoration-element {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}
.slider-content {
    position: relative;
    z-index: 3;
    width: 90%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 18%;
}
.slider-text {
    color: white;
    text-shadow: #000000 0px 0px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.slider-text h1 {
    margin-top: 0px;
    text-align: center;
}
.slider-text p a {
    color: #fedcdc;
    transition: 0.3s ease-in-out;
}
.slider-text p a:hover {
    color: #e11e2c;
}
.slider-text p {
    margin: 0;
    text-align: center;
}
.slider-buttons {display: flex;flex-direction: column;align-items: center;justify-content: center;width: 100%;margin-top: 15px;}
.button-1 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 15px;
    backdrop-filter: blur(4px);
    background: transparent;
    color: #bc1824;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 18px;
    cursor: pointer;
    overflow: hidden;
    letter-spacing: 0.25px;
    border: 2px solid #bc1824;
    font-weight: 500;
    justify-content: center;
    width: auto;
    margin: 7px 5px;
    white-space: initial !important;
}
.button-1::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background-color: #bc1824;
    right: 0;
    transition: width 0.4s ease-in-out;
}
.slider-buttons .button-1 {
    color: #f5f5f5;
    border: 2px solid #f5f5f5;
}
.slider-buttons .button-1::after {
    background-color: #f5f5f5;
}
.button-1:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}
.button-1 span {
    z-index: 1;
    position: relative;
    transition: 0.4s ease-in-out;
    text-align: center;
}
.button-1:hover span {
    color: #fff;
    text-shadow: 0 0 0 transparent;
    animation: scaleUp 0.3s ease-in-out;
}
.slider-buttons .button-1:hover span {
    color: #000;
}
.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: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: calc(75% - 10px);
    max-width: 235px;
    padding: 15px 5px 22px;
    margin: 15px 15px 35px;
    border-radius: 15px;
    position: relative;
    text-shadow: #0000000a 0px 15px 15px;
    font-family: Nunito, sans-serif;
    border: 1px solid #ffffff;
    flex-wrap: wrap;
    align-content: center;
}
.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: 85px;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin-bottom: 10px;
}
.badge-title {
    background: #bc1824;
    font-size: 15px;
    width: 85%;
    text-align: center;
    line-height: 1.2;
    padding: 10px;
    color: #ffffff;
    font-weight: bold;
    border-radius: 15px;
    text-transform: capitalize;
    min-height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -50px;
    box-shadow: 5px 5px 10px 0 #00000030, -5px 5px 10px 0 #00000026;
}
.badge-title span {
    font-size: 17px;
}
.about-section {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0px;
    z-index: 1;
    position: relative;
}
.about-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    max-width: 1280px;
}
.badges-title {
    text-align: center;
}
#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;
    object-fit: cover;
    object-position: center;
    max-width: 600px;
    max-height: 400px;
}
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 25px;
}
.about-content h2 {
    text-align: center;
}
.about-content p {
    text-align: justify;
    margin: 0 0 15px;
}
.about-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}
.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%;
}
div.area-served-section {
    display: flex;
    width: 90%;
    max-width: 1280px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 30px;
}
.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: #f5f5f5;
    border-radius: 25px;
    padding: 15px;
}
.features-content ul {
    padding-left: 20px;
    margin: 0;
}
.features-content li {
    text-align: justify;
    margin: 10px 0;
}
.features-content li strong {
    color: #000000;
}
.features-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.working-process-section {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #241E1E;
    border-radius: 25px;
}
.working-process-section h2 {
    margin: 20px 0;
    color: #fff;
}
.working-process-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    padding-left: 0;
    list-style-type: none;
    margin: 0;
}
.working-process-content li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 10px;
}
.working-process-content li span {
    margin-right: 5px;
    background: #bc1824;
    color: #fff;
    width: 45px;
    height: 45px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 15px;
    margin-bottom: -22px;
    z-index: 1;
    box-shadow: 5px 5px 10px 0 #00000030, -5px 5px 10px 0 #00000026;
}
.working-process-content li p {
    margin: 5px 0 20px;
    text-align: justify;
    background: #f5f5f5;
    padding: 20px 15px;
    border-radius: 25px;
    z-index: 0;
    height: 100%;
}
.working-process-content li p strong {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
}
.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;
    z-index: 0;
}
.features-img picture {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
}
.features-img picture 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: #241e1ec7;
    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: #bc1824;
}
.contact-form textarea {
    resize: none;
}
.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;
}
.srvBlockTitle {
    text-align: center;
}
.srvBlock {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}
.srvBlock .srvSwiper {
    padding: 10px 0 50px;
    width: 100%;
}
div.srvBlock div.srvSwiper div.swiper-wrapper {
    /* display: flex; */
    align-items: stretch;
}
.srvBlock .srvSwiper .swiper-wrapper .swiper-slide {
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.srvElement {
    /* margin: 50px auto 0px; */
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    height: 100%;
}
.srvElementHeader {
    background: #bc1824;
    border-radius: 25px;
    position: relative;
    bottom: 1px;
    padding: 5px;
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 10px 0 #0000004d, -5px 5px 10px 0 #0000004d;
}
.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;
    transition: 0.5s;
}
.srvElementImg {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    position: relative;
}
.srvElementImg::before {
    content: '';
    background: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: 0.5s;
    border-radius: 25px 25px 0px 0px;
}
.srvElementImg img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px 25px 0px 0px;
    z-index: 1;
}
.srvElementContent {
    text-align: justify;
    color: #ffffff;
    padding: 0px 20px 10px;
    line-height: 1.2;
}
.srvElementBody {
    background: #241E1E;
    border-radius: 25px;
    position: relative;
    margin-top: -25px;
    height: 100%;
    z-index: 3;
}
.srvElement:hover .srvElementImg::before {
    background: #f5f5f573;
}
.srvElement:hover h2 {
    color: #ffffff;
    font-weight: 600;
}
.srv-swiper-button-prev::after, .srv-swiper-button-next::after {
    color: #ffffff;
    font-size: 23px !important;
}
.srv-swiper-button-prev:hover::after, .srv-swiper-button-next:hover::after {
    color: #ffffff;
}
div.srv-swiper-button-prev {
    border-radius: 10px;
    transition: all 0.5s;
    top: auto;
    bottom: 0;
    border: 1px solid #af2d2e;
    padding: 0px;
    width: 40px;
    height: 40px;
    background: #af2d2e;
    left: calc(50% - 50px);
}
.srv-swiper-button-prev:hover {
    background: #241E1E;
    border-color: #241E1E;
}
div.srv-swiper-button-next {
    border-radius: 10px;
    transition: all 0.5s;
    top: auto;
    bottom: 0;
    border: 1px solid #bc1824;
    padding: 0px;
    width: 40px;
    height: 40px;
    background: #bc1824;
    right: calc(50% - 50px);
}
.srv-swiper-button-next:hover {
    background: #241E1E;
    border-color: #241E1E;
}
.decoration-section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
    background: #241E1E;
    flex-direction: column-reverse;
}
.decoration-section > div:first-of-type {
    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;
    max-width: 600px;
}
.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;
    height: auto;
    max-width: 600px;
}
.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 #241E1E;
    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 #241E1E;
    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%;
}
.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: 20px;
}
.GallerySwiper .swiper-slide-shadow-left {
    background-image: linear-gradient(to right, #ffffffc7, #ffffff4a) !important;
    border-radius: 20px;
}
.GallerySwiper .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #ffffff4a, #ffffffc7) !important;
    border-radius: 20px;
}
.gallery-swiper-pagination {
    bottom: 0 !important;
}
.gallery-swiper-pagination .swiper-pagination-bullet {
    background: #000;
}
.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #f5f5f5;
}
.testimonial {
    position: relative;
    width: 90%;
    padding: 40px 0;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
}
.testimonial .image {
    height: 125px;
    width: 125px;
    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(#241E1E, #fff);
    box-shadow: 5px 5px 10px 0 #0000004d, -5px 5px 10px 0 #0000004d;
}
div.testi-content {
    align-items: stretch;
}
.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    flex-direction: column;
}
.testimonial .slide > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 500px;
}
.testimonial-content {
    display: flex;
    background: #241E1E;
    border-radius: 25px;
    padding: 5% 0 30px;
    position: relative;
    z-index: 0;
    margin-top: -65px;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.review-image {
    width: 90%;
    object-fit: cover;
    object-position: center;
    height: auto;
    max-height: 250px;
    border-radius: 25px;
}
.slide p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-align: justify;
    width: 80%;
    margin: 20px 0 0;
    height: 100%;
}
.review-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
}
.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;
}
.slide .details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 85%;
    flex-wrap: wrap;
    align-content: center;
    color: #fff;
}
.details .name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 5px;
}
.details .city {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 5px;
}
.slide .details img {
    width: 130px;
    margin: 5px;
}
.testimonial-swiper-button-prev::after,
.testimonial-swiper-button-next::after {
    color: #e11e2c;
    font-size: 30px !important;
    font-weight: 600;
}
div.testimonial-swiper-button-next {
    border-radius: 10px;
    transition: all 0.5s;
    padding: 0px;
    width: 40px;
    height: 40px;
    right: -5px;
}
div.testimonial-swiper-button-prev {
    border-radius: 10px;
    transition: all 0.5s;
    padding: 0px;
    width: 40px;
    height: 40px;
    left: -5px;
}
.trust-statement {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-top: 20px;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
}
.trust-statement-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}
.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;
    filter: invert(1);
}
.trust-statement-text {
    color: #000000;
    text-align: center;
    text-transform: capitalize;
}
.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: #241E1E;
    border-radius: 25px;
    padding: 10px;
    flex-direction: row;
}
.contact-image {
    display: none;
}
.closing-secion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.closing-section-title {
    color: #fff;
    text-align: center;
}
.closing-section-subtitle {
    text-align: center;
    margin: 0;
    color: #fff;
}
.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 {
    padding: 10px 15px;
    margin: 5px;
    border-radius: 15px;
    border: 2px solid #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: 0.5s;
}
.closing-section-element:hover {
    background: #f5f5f5;
}
.closing-section-element span {
    margin-left: 5px;
    color: #fff;
    transition: 0.5s;
    text-transform: capitalize;
}
.closing-section-element:hover span {
    color: #000;
}
.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: #fff;
}
.closing-section-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.closing-section-buttons .button-1 {
    color: #f5f5f5;
    border: 2px solid #f5f5f5;
}
.closing-section-buttons .button-1::after {
    background-color: #f5f5f5;
}
.closing-section-buttons .button-1:hover span {
    color: #000;
}
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    background: #f5f5f5;
    padding: 20px 0px;
}
footer > div {
    display: flex;
    width: 90%;
    max-width: 1280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer-content {
    text-align: center;
    color: #000000;
    margin-bottom: 0;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
    color: #000;
}
.footer-contact-info > span {
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-contact-info > span span {
    display: none;
}
.footer-contact-info img {
    width: 18px;
    height: 18px;
    margin: 0 0 0 10px;
    object-fit: contain;
    object-position: center;
}
.footer-contact-info a {
    color: #000000;
    padding: 10px;
}
#callnowbutton {
    display: none;
}
#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    background-color: #bc1824;
    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;
        height: calc(100vh + 100px);
        min-height: 640px;
        max-height: 650px;
    }
    .slider-content {
        margin-top: 12%;
    }
    .scroll-down-section {
        max-width: 1280px;
        width: calc(-260px + 90vw);
        padding: 20px 30px;
        margin: 0px;
        left: 5vw;
    }
    .area-served li {
        width: 50%;
    }
    .footer-contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
    }
    .footer-contact-info > span span {
        display: block;
    }
}
@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: 981px) {
    .hamburger {
        display: none;
    }
    nav {
        height: 150px;
    }
    nav > div {
        flex-direction: row;
        justify-content: space-between;
        width: 90%;
        display: flex;
    }
    .navigation {
        width: 100%;
        justify-content: center;
    }
    nav .menu {
        height: auto;
        background-color: transparent;
        flex-direction: row;
        justify-content: center;
        top: initial;
        left: initial;
        position: relative;
        width: 100%;
        align-items: center;
        padding: 0px;
        margin: 5px 0px;
    }
    nav .menu li {
        margin: 0px 10px;
        padding: 0px;
    }
    .brand {
        width: 100%;
        justify-content: center;
        padding: 0;
    }
    .brand a {
        justify-content: center;
    }
    .slider-section {
        height: calc(100vh - 10px);
        min-height: 535px;
        max-height: 550px;
    }
    .slider-content {
        flex-direction: row;
        align-items: end;
        margin-top: 8%;
    }
    .slider-text {
        align-items: flex-start;
    }
    .slider-text h1 {
        text-align: left;
    }
    .slider-text p {
        text-align: left;
    }
    .slider-buttons {
        align-items: flex-start;
    }
    .slider-badges-container {
        justify-content: flex-end;
    }
    nav .menu li:nth-of-type(7) {
        margin-bottom: 0px;
    }
    #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;
        max-height: 580px;
    }
    .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;
    }
    .working-process-section {
        margin-top: 20px;
        width: 100%;
    }
    .working-process-content li {
        width: 47%;
    }
    .srvElementImg img {
        height: 200px;
    }
    .srvElementFullWidth .srvElementImg img {
        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:first-of-type {
        flex-direction: row;
    }
    .decoration-images {
        margin: 0px;
    }
    .decoration-main {
        margin-right: 10px;
        width: 50%;
    }
    .decoration-main img {
        height: 300px;
    }
    .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%;
    }
    .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: 123%;
        right: 0px;
        border-radius: 25px;
    }
    .contact-image img {
        width: 100%;
        height: 100%;
        border-radius: 25px;
        box-shadow: 5px 5px 10px 0 #0000004d, -5px 5px 10px 0 #0000004d;
    }
    .closing-secion {
        width: 41vw;
        padding: 0px 10px;
        max-width: 650px;
        align-items: flex-start;
    }
    .closing-section-title {
        text-align: left;
    }
    .closing-section-subtitle {
        text-align: left;
    }
    .closing-section-container {
        justify-content: flex-start
    }
    .closing-section-number {
        text-align: left;
    }
    .closing-section-buttons {
        align-items: flex-start;
    }
    .email-form {
        align-items: flex-end;
    }
}
@media (min-width: 1154px) {
    nav {
        height: 90px;
    }
    nav > div {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1280px;
    }
    .navigation {
        width: auto;
        justify-content: flex-start;
    }
    nav .menu {
        width: 64%;
        justify-content: flex-end;
    }
    .brand {
        justify-content: flex-start;
    }
}
@media (min-width: 2500px) {
    .slider-content {
        margin-bottom: 40px;
    }
}
