body {
    color: #000;
    background-color: #C1EEFF;
    font-family: Quicksand, Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
html {
    scroll-padding-top: 25%;
    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 {
    width: 100%;
    margin-bottom: 20px;
    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: "Playwrite AT", serif;
    font-weight: 600;
    font-style: normal;
}
h1 {
    font-size: 26px;
}
h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    text-shadow: #fff 0px 0px 5px;
}
h2 span {
    color: #b02823;
}
h3 {
    font-size: 22px;
}
@media (min-width: 600px) {
    h1 {
        font-size: 30px;
   }
    h2 {
        font-size: 30px;
   }
    h3 {
        font-size: 24px;
   }
    .about-content h2, .features-content-1 h2, .srvBlockTitle h2, .gallery-section h2, .testimonial h2 {
        margin: 0px 0px 40px !important;
   }
    .about-content h2 span, .features-content-1 h2 span, .srvBlockTitle h2 span, .gallery-section h2 span, .testimonial h2 span {
        bottom: -41px !important;
   }
}
@media (min-width: 992px) {
    h1 {
        font-size: 38px;
   }
    h2 {
        font-size: 36px;
   }
    h3 {
        font-size: 28px;
   }
    .about-content h2, .features-content-1 h2, .srvBlockTitle h2, .gallery-section h2, .testimonial h2 {
        margin: 0px 0px 50px !important;
   }
    .about-content h2 span, .features-content-1 h2 span, .srvBlockTitle h2 span, .gallery-section h2 span, .testimonial h2 span {
        bottom: -49px !important;
   }
}
* {
    box-sizing: border-box;
}
header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.hamburger {
    display: flex;
    width: 14%;
    color: #015cb1;
    z-index: 999;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 8px;
    transition: transform 0.5s ease-in-out 0s;
}
.hamburger:active {
    transform: skew(20deg, 20deg);
}
.hamburger img {
    width: 40px;
    height: auto;
}
.menu .hamburger {
    width: 0px;
    position: absolute;
    bottom: 50px;
}
nav {
    display: flex;
    position: absolute;
    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;
}
nav.scrolled {
    box-shadow: #000 0px 0px 5px;
    position: fixed;
    background: #C1EEFF;
    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;
    height: auto;
    padding: 2px 0px 5px;
}
.navigation {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    place-content: center space-between;
    align-items: center;
    position: relative;
}
nav .menu {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    background: #C1EEFF;
    position: absolute;
    top: -1rem;
    left: -100%;
    z-index: 0;
    place-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 1s ease-in-out 0s;
}
nav .menu.active {
    top: -1rem;
    left: 0px;
    right: 0px;
    padding: 0px;
    z-index: 99;
    width: 100%;
    transform: translateY(0px);
    overflow: hidden;
}
nav .menu li {
    margin: 0px;
    text-align: center;
    padding: 1rem 0px;
    list-style: none;
}
nav .menu li a {
    text-decoration: none;
    font-weight: 700;
    color: #000;
}
.brand {
    width: 85%;
    text-wrap: wrap;
    z-index: 10;
    padding-left: 10px;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.brand a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 100%;
    justify-content: center;
}
.brand span {
    color: #552b31;
    font-size: 25px;
    font-family: "Playwrite AT", serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
    margin-left: 51px;
    margin-top: -52px;
}
.brand img {
    width: auto;
    height: 80px;
    position: relative;
}
.button-1 {
    font-size: 18px;
    border: 3px solid #015cb1;
    border-radius: 300px;
    width: 220px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #015cb1;
    letter-spacing: 1px;
    color: #fff !important;
    text-shadow: none !important;
    font-weight: 700 !important;
}
.button-1:hover {
    background: #b02823;
    border-color: #b02823;
    transition: all 0.5s ease 0s;
    color: #fff !important;
}
.button-2 {
    font-size: 18px;
    border: 3px solid #b02823;
    border-radius: 300px;
    width: 190px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b02823;
    letter-spacing: 1px;
    color: #fff !important;
    text-shadow: none !important;
    font-weight: 600 !important;
}
.button-2:hover {
    background: transparent;
    transition: all 0.5s ease 0s;
    color: #fff !important;
    background: #015cb1;
    border-color: #015cb1;
}
.slider-section {
    position: relative;
    top: 0px;
    width: 100%;
    height: 100vh;
    align-items: center;
    display: flex;
    z-index: 0;
    flex-direction: column;
    justify-content: center;
    min-height: 750px;
    background: #C1EEFF;
    max-height: 820px;
}
.slider-img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    max-width: 600px;
}
.slider-decoration {
    display: none;
}
.main-badge {
    width: 100%;
    max-width: 380px;
}

.main-badge img {width: 100%;}
.top-decoration-element {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 90%;
    position: relative;
    max-width: 1280px;
    justify-content: center;
    z-index: 4;
    top: 42px;
}
.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    /* margin-bottom: 150px; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.trust-signals {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: 425px;
}

.trust-signals-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110px;
}

.trust-signals-holder img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.trust-signals-holder p {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    min-height: 51px;
    position: relative;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trust-signals-holder p:before {
    content: '';
    width: 139%;
    height: 153%;
    bottom: -11px;
    left: -26px;
    background: url(/img/badge.webp);
    position: absolute;
    background-size: cover;
    filter: brightness(10);
    opacity: 0.9;
    z-index: -1;
}
.slider-text {
    color: #015cb1;
    text-shadow: #fff 0px 0px 5px, #fff 0px 0px 5px, #fff 0px 0px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.slider-text h1 {
    margin: 0px;
    position: relative;
}
.slider-text p a {
    color: #b02823;
    text-decoration: none;
}
.slider-text p a:hover {
    color: #015cb1;
}
.slider-text p {
    margin: 5px 0px 10px;
    position: relative;
    font-weight: 600;
    font-size: 18px;
}
p.slider-text-2 {
    font-size: 16px;
    max-width: 600px;
}
.headers-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.button {
    position: relative;
    z-index: 2;
    width: 240px;
    height: 56px;
    letter-spacing: 1px;
    transition: all 0.3s ease 0s;
    margin: 20px 0px;
    text-decoration: none !important;
}
p.no-spam {
    color: #ffffffd6;
    margin-top: 0;
}
.button-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #015cb1;
    text-shadow: #fff 0px 0px 5px, #fff 0px 0px 5px, #fff 0px 0px 5px;
    font-size: 18px;
    font-weight: 700;
}
a.button.hero-btn:hover .button-text {
    letter-spacing:1px;
}

a.button.hero-btn {
    transition: none;
}
.button::before, .button::after, .button__text::before, .button__text::after {
    content: "";
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background: #015cb1;
    transition: all 0.5s ease 0s;
}
.button::before {
    top: 0px;
    left: 54px;
    width: calc(100% - 128px);
}
.button::after {
    top: 0px;
    right: 54px;
    width: 8px;
}
.button-text::before {
    bottom: 0px;
    right: 54px;
    width: calc(100% - 128px);
}
.button-text::after {
    bottom: 0px;
    left: 54px;
    width: 8px;
}
.button-line {
    position: absolute;
    top: 0px;
    width: 56px;
    height: 100%;
    overflow: hidden;
}
.button-line::before {
    content: "";
    position: absolute;
    top: 0px;
    width: 150%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 300px;
    border: 3px solid #015cb1;
}
.button-line:nth-child(1), .button-line:nth-child(1)::before {
    left: 0px;
}
.button-line:nth-child(2), .button-line:nth-child(2)::before {
    right: 0px;
}
.button:hover {
    letter-spacing: 6px;
}

.button.srvAccordionToggle:hover{
letter-spacing: 3px;    
}
.srvAccordionToggle[aria-expanded="true"] {
    letter-spacing: 2px;
    background: #015eb4;
    border-radius: 40px;
}
.srvAccordionToggle[aria-expanded="true"] span{
    color: #fff;
    text-shadow: none;
}

.button:hover::before, .button:hover .button-text::before {
    width: 8px;
}
.button:hover::after, .button:hover .button-text::after {
    width: calc(100% - 128px);
}
.button-drow1, .button-drow2 {
    position: absolute;
    z-index: -1;
    border-radius: 16px;
    transform-origin: 16px 16px;
}
.button-drow1 {
    top: -16px;
    left: 40px;
    width: 32px;
    height: 0px;
    transform: rotate(30deg);
}
.button-drow2 {
    top: 44px;
    left: 77px;
    width: 32px;
    height: 0px;
    transform: rotate(-127deg);
}
.button-drow1::before, .button-drow1::after, .button-drow2::before, .button-drow2::after {
    content: "";
    position: absolute;
}
.button-drow1::before {
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-60deg);
}
.button-drow1::after {
    top: -10px;
    left: 45px;
    width: 0px;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(69deg);
}
.button-drow2::before {
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-146deg);
}
.button-drow2::after {
    bottom: 26px;
    left: -40px;
    width: 0px;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-262deg);
}
.button-drow1, .button-drow1::before, .button-drow1::after, .button-drow2, .button-drow2::before, .buttondrow2::after {
    background: #b02823;
}
.button:hover .button-drow1 {
    animation: 0.06s ease-in 0s 1 normal forwards running drow1;
}
.button:hover .button-drow1::before {
    animation: 0.08s linear 0.06s 1 normal forwards running drow2;
}
.button:hover .button-drow1::after {
    animation: 0.03s linear 0.14s 1 normal forwards running drow3;
}
.button:hover .button-drow2 {
    animation: 0.06s linear 0.2s 1 normal forwards running drow4;
}
.button:hover .button-drow2::before {
    animation: 0.03s linear 0.26s 1 normal forwards running drow3;
}
.button:hover .button-drow2::after {
    animation: 0.06s linear 0.32s 1 normal forwards running drow5;
}
@keyframes drow1 {
    0% {
        height: 0px;
   }
    100% {
        height: 100px;
   }
}
@keyframes drow2 {
    0% {
        width: 0px;
        opacity: 0;
   }
    10% {
        opacity: 0;
   }
    11% {
        opacity: 1;
   }
    100% {
        width: 120px;
   }
}
@keyframes drow3 {
    0% {
        width: 0px;
   }
    100% {
        width: 80px;
   }
}
@keyframes drow4 {
    0% {
        height: 0px;
   }
    100% {
        height: 120px;
   }
}
@keyframes drow5 {
    0% {
        width: 0px;
   }
    100% {
        width: 124px;
   }
}
.button-3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    border: 3px solid #015cb1;
    border-radius: 300px;
    width: 240px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #015cb1;
    letter-spacing: 1px;
    color: #fff !important;
    text-shadow: none !important;
}
.button-3:hover {
    background: #b02823;
    transition: all 0.5s ease 0s;
    text-shadow: #fff 0px 0px 5px !important;
    color: #015cb1 !important;
}
.scroll-down {
    position: absolute;
    left: calc(50vw - 40px);
    bottom: -5px;
    margin: 20px;
}
.scroll-down img {
    height: 80px;
    transform: rotate(0deg);
    animation: 1.5s ease 0s infinite normal none running scroll-down-btn;
    filter: invert(1);
}
@-webkit-keyframes scroll-down-btn {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
   }
}
@keyframes scroll-down-btn {
    0% {
        transform: rotate(0deg) translate(0px, 0px);
        opacity: 0;
   }
    50% {
        opacity: 1;
   }
    100% {
        transform: rotate(0deg) translate(0px, 20px);
        opacity: 0;
   }
}
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.about-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
}
.about-section > div > a {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding-top: 30px;
    align-items: center;
    width: 100%;
    position: relative;
    margin: 30px 0px;
}
.about-btn-1,
.about-btn-2 {
    width: 240px;
    height: 56px;
    margin-top: 24px;
}
.badges-container {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding-top: 30px;
    align-items: center;
    width: 100%;
    position: relative;
    margin: 30px 0px;
    flex-direction: column;
}
.badge-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 10px);
    max-width: 300px;
    min-height: 220px;
    padding: 15px 5px 22px;
    margin: 20px 10px 30px;
    border-radius: 5px;
    position: relative;
    text-shadow: #000 0px 0px 5px, #000 0px 0px 5px, #000 0px 0px 5px;
    z-index: 0;
}
.badge-holder::before {
    content: "";
    position: absolute;
    top: 0px;
    width: 300px;
    height: 220px;
    background-image: url("/img/badge.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(22%) sepia(81%) saturate(2187%) hue-rotate(195deg) brightness(95%) contrast(99%);
    z-index: 2;
    border-radius: 300px;
}

p.badge-title {
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    font-size: 17px;
    z-index: 2;
    position: relative;
    top: 0px;
    text-shadow: #000 0px 0px 5px, #000 0px 0px 5px, #000 0px 0px 5px;
    color: #fff;
}
p.badge-content {
    text-align: center;
    text-transform: capitalize;
    min-height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0px;
    z-index: 2;
    position: relative;
    top: 7px;
    text-shadow: #000 0px 0px 5px, #000 0px 0px 5px, #000 0px 0px 5px;
    color: #fff;
}
.add-badges {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 240px;
}
.add-bdg {
    width: 100%;
}

.add-bdg img {
    width: 100%;
}
p.add-badge span {
    font-weight: bold;
}
p.add-badge {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    font-size: 18px;
}
.badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.badge-icon {
    width: 90px;
    height: 72px;
    padding-bottom: 5px;
    z-index: 2;
    position: absolute;
    top: -25px;
    filter: invert(1) drop-shadow(black 0px 0px 2px) drop-shadow(black 0px 0px 2px);
    transition: transform 0.5s ease-in-out 0s;
}
.badge-holder:hover .badge-icon {
    transform: rotate(45deg);
    transition: transform 0.5s ease-in-out 0s;
}
#about {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column-reverse;
    margin: 30px 0px;
    position: relative;
}
.about-images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin: 20px 0px 0px;
}
.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    position: relative;
    z-index: 4;
    flex-direction: column;
}
.about-img::before {
    content: "";
    position: relative;
    top: 0px;
    left: 0px;
    width: 90%;
    max-width: 305px;
    height: 800px;
    background: url(/img/paint-splash.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0) saturate(100%) invert(18%) sepia(62%) saturate(2877%) hue-rotate(344deg) brightness(104%) contrast(94%);
}
.about-image {
    width: 290px;
    max-width: 290px;
    height: 30%;
    max-height: 240px;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    z-index: 3;
    top: 140px;
    right: 0px;
    box-shadow: #000 0px 0px 15px 0px;
    transition: all 0.5s ease 0s;
}
.about-image-1 {
    width: 290px;
    /* max-width: 290px; */
    height: 30%;
    max-height: 240px;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    z-index: 3;
    top: 400px;
    left: 0px;
    box-shadow: #000 0px 0px 15px 0px;
    transition: all 0.5s ease 0s;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
}
h2.about-title {
    margin-bottom: 0 !important;
    font-size: 30px;
}
.about-decoration {
    position: absolute;
    object-fit: contain;
    object-position: center center;
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 300px;
    top: 1000px;
    right: 0px;
    filter: brightness(0) invert(1);
    z-index: 1;
}
.about-content h2 {
    text-align: center;
    margin: 0px 0px 30px;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
}
.about-content h2 span {
    position: absolute;
    right: 0px;
    bottom: -35px;
}
.about-content p {
    text-align: justify;
    z-index: 2;
}

.area-served {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    /* padding-left: 20px; */
    margin-bottom: 20px;
    margin-top: 0px;
    z-index: 2;
    /* width: 100%; */
    flex-direction: column;
}
h2.about-title {
    margin-bottom: 0 !important;
    line-height: 1.2;
}
.area-served li {
    /* width: 100%; */
    margin: 5px 0 0;
    position: relative;
}
.about-list li,
.area-served li{
    padding: 5px 15px;
    position: relative;
    margin-top: 5px;
}
.about-list li:before,
.area-served li:before{
    content: '';
    width: 108%;
    height: 100%;
    filter: brightness(10);
    opacity: 0.9;
    z-index: -1;
    top: 0px;
    left: -12px;
    position: absolute;
    background: url(/img/badge-1.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left center;
}

ul.about-list,
.area-served{
    list-style: disc inside;
}

.about-content-1-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-inner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.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;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 0;
}
.features-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #015cb1c7;
    z-index: 1;
}
.features-section > img {
    position: absolute;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.features-section > picture,
.features-section > picture > img {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.features-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    position: relative;
    flex-direction: column;
    z-index: 2;
    margin: 30px 0px;
}
.features-content-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.features-content-1 h2 {
    text-align: center;
    margin: 0px 0px 30px;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
    color: #fff;
    text-shadow: #000 0px 0px 5px;
    font-weight: 500;
}
.features-content-1 h2 span {
    position: absolute;
    right: 0px;
    bottom: -35px;
    color: #fff;
}
.features-content-1 ul {
    text-align: justify;
    padding-left: 10px;
    color: #fff;
}
.features-content-1 ul li {
    margin: 10px 0px;
}
.features-content-1 ul li strong {
    color: #fff;
    text-decoration: underline;
    text-shadow: #000 0px 0px 5px;
}
.features-content-1 .button-line::before {
    border-color: #fff;
}
.features-content-1 .button-text {
    color: #fff;
    text-shadow: #000 0px 0px 5px, #000 0px 0px 5px;
}
.features-content-1 .button::before, .features-content-1 .button::after, .features-content-1 .button__text::before, .features-content-1 .button__text::after {
    background: #fff;
}
.section {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.section::before {
    content: "";
    position: absolute;
    background-image: url(/img/decoration.webp);
    background-repeat: repeat-y;
    background-size: 100%;
    background-position: center center;
    width: 100%;
    height: 100%;
    padding-bottom: 0px;
    top: 0px;
    left: 0px;
    filter: brightness(0) invert(1);
    z-index: 0;
}
.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 0%, #fff 60%);
    overflow: hidden;
}
.services-section > div {
    width: 90%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}
.srvBlockTitle p {
    line-height: 1.4;
    font-weight: bold;
    font-family: Heebo, sans-serif;
    color: #000;
    display: inline-block;
    font-size: 26px;
}
.srvBlockTitle {
    text-align: center;
}
.srvBlockTitle h2 {
    text-align: center;
    margin: 0px 0px 25px;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
}
.srvBlockTitle h2 span {
    position: absolute;
    right: 0px;
    bottom: -35px;
}
.services-section > div > a {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.srvBlock {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.srvElement {
    margin: 50px auto 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    transition: transform 0.5s ease-in-out 0s;
    max-width: 350px;
}
.srvElement:hover {
    transform:translateY(-20px);
    transition: transform 0.5s ease-in-out 0s;
}
.srvElementHeader h2 {
    text-align: center;
    color: #fff;
    font-family: Heebo, sans-serif;
    padding: 5px;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0px;
    text-shadow: #000 0px 0px 5px;
}
.srvElementImg {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: #000 0px -2px 15px 0px;
    top: 30px;
    position: relative;
}
.srvElementImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    width: 350px;
    height: 230px;
}
.srvImageBackround {
    position: absolute;
    object-fit: contain;
    object-position: center;
    width: 750px;
    z-index: 0;
    left: calc(50% - 375px);
    height: 750px;
    top: 60px;
    filter: brightness(0) saturate(100%) invert(22%) sepia(81%) saturate(2187%) hue-rotate(195deg) brightness(95%) contrast(99%) drop-shadow(0px 3px 4px #000000a1);
}
.srvElement:hover .srvImageBackround  {
    filter: brightness(0) saturate(100%) invert(18%) sepia(62%) saturate(2877%) hue-rotate(344deg) brightness(104%) contrast(94%) drop-shadow(0px 3px 4px #000000a1);
}
.srvElementContent {
    text-align: justify;
    color: #fff;
    padding: 0px 20px 10px;
    line-height: 1.4;
    z-index: 2;
    text-shadow: #000 0px 0px 5px;
    position: relative;
}
.srvElementBody {
    padding-top: 20px;
}
.srvElementHeader {
    border-radius: 25px;
    position: relative;
    bottom: 1px;
    padding: 5px;
    z-index: 2;
}
.srvElement:hover h2 {
    font-weight: bold;
}

.srvAccordion {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* BUTTON */
.srvAccordionToggle {
    width: 100%;
    max-width: 630px;
    padding: 16px 20px;
    border: none;
    background: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.srvAccordionToggle span {
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* CONTENT */
.srvAccordionContent {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* ACTIVE */
.srvAccordion.active .srvAccordionContent {
    max-height: 5000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.srvAccordion.active .srvAccordionToggle span {
    /* transform: rotate(45deg); */
}


/* FAQ */

.faq-section {padding-bottom: 55px;background: #fff;z-index: 9999;position: relative;display: flex;flex-direction: column;justify-content: center;align-items: center;}

h2.faq-title {
    margin-top: 0;
    color: #b02823;
}
h2.faq-inner-title {
    font-size: 20px;
    color: #015cb1;
    margin-bottom: 0;
    margin-top: 0;
}
.section-row {
    max-width: 1280px;
    width: 90%;
}
p.faq-text {
    margin-bottom: 30px;
    margin-top: 10px;
    line-height: 1.3;
    text-align: justify;
}
.faq-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section:before {
    content: '';
    width: 407px;
    height: 400px;
    right: 0;
    z-index: -1;
    top: -100px;
    background: url(/img/half-white-decoration.webp);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) invert(81%) sepia(21%) saturate(350%) hue-rotate(159deg) brightness(105%) contrast(104%);
}


.faq-text {
    max-height: 0;
    overflow: hidden;
     transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.6s ease, 
                padding 0.6s ease, 
                margin 0.6s ease;

}

.faq.faq-active .faq-text {
    max-height: 500px;
    max-width: 900px;
}


.faq-inner-title {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.faq-inner-title::after {
    content: "+";
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.faq.faq-active .faq-inner-title::after {
    content: "-";
}



.row .col-md-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.gallery-section h2 {
    text-align: center;
    margin: 0px 0px 30px;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
    width: 340px;
}
.gallery-section h2 span {
    position: absolute;
    right: 25px;
    bottom: -35px;
}
.gallery-section {
    padding: 30px 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
}
.GallerySwiper2, .GallerySwiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}
.GallerySwiper2 {
    height: 80%;
    width: 100%;
    padding-bottom: 50px !important;
}
.GallerySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0px;
}
.GallerySwiper .swiper-slide, .GallerySwiper2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: center center / cover transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.GallerySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.6;
}
.GallerySwiper .swiper-slide-thumb-active {
    opacity: 1;
}
.GallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.GallerySwiper2 .swiper-slide img {
    display: block;
    width: 100%;
    object-fit: contain;
}
.GallerySwiper .swiper-slide img {
    max-width: 600px;
    max-height: 400px;
}
.GallerySwiper2 .swiper-slide img {
    max-width: 600px;
    height: 250px;
}
.GallerySwiper .swiper-slide img {
    height: 100px;
}
.GallerySwiper2 .swiper-button-next {
    right: auto !important;
    left: calc(50% + 10px);
    top: 43px !important;
    border: 1px solid #000;
    border-radius: 50%;
    padding: 0px;
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
}
.GallerySwiper2 .swiper-button-prev {
    left: calc(50% - 50px) !important;
    top: 25px !important;
    border: 1px solid #000;
    border-radius: 50%;
    padding: 0px;
    width: 40px !important;
    height: 40px !important;
}
.GallerySwiper2 .swiper-button-prev::after, .GallerySwiper2 .swiper-button-next::after {
    color: #000;
    text-align: center;
    font-size: 20px !important;
}
.testimonials-contact-form-section {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding-bottom: 35px;
}
.testimonials-contact-form-section::before {
    content: '';
    display: none;
}
.contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 370px;
    position: relative;
}

/* CAPTCHA */
.checkbox-captcha {
    pointer-events: auto !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff !important;
    border: none;
    top: 0 !important;
    position: relative !important;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    box-shadow: #000 0px 0px 10px 0px;
    background: #ffffff40;
    accent-color: #b02823 !important;
    padding: 8px 12px !important;
    border-radius: 0;
    font-size: 14px;
    height: 45px;
    left: 0 !important;
    transform: unset !important;
    width: 100% !important;
}
.checkbox-captcha input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}


/* DROPDOWN CONTACT FORM */

.custom-select {
    position: relative;
}

.custom-select .selected {
cursor: pointer;
  padding: 10px;
    border: none;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    box-shadow: #000 0px 0px 10px 0px;
    background: #ffffff40;
    color: #fff;
}

.custom-select .options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: none;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    box-shadow: #000 0px 0px 10px 0px;
    background: #015cb1;
    color: #fff;
    margin-top: 6px;
    display: none;
    z-index: 10;
    list-style: none;
    padding: 10px !important;
}

.custom-select.open .options {
    display: block;
}

.custom-select .options li {
    padding: 10px 12px;
    cursor: pointer;
}

.custom-select .options li:hover {
    background: #b02823;
    color: #fff;
}
.custom-select.open .dropdown-arrow {
    transform: translateY(-50%) rotate(-135deg);
}

.custom-select .dropdown-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}
.contact-form-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #015cb1b5;
    z-index: 1;
}
.contact-form-section::after {
    content: "";
    display: none;
}
.contact-form-section > img {
    position: absolute;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.contact-form-section > picture,
.contact-form-section > picture > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}
.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    position: relative;
    z-index: 2;
}
.email-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    max-width: 640px;
    z-index: 2;
    padding: 30px 0px 20px;
}
.submit-button {
    position: relative;
    z-index: 2;
    width: 240px;
    height: 56px;
    letter-spacing: 1px;
    transition: all 0.3s ease 0s;
    margin: 20px 0px;
    text-decoration: none !important;
    background: transparent;
    border: none;
    cursor: pointer;
}
.submit-button .button-text {
    color: #fff;
    text-shadow: #015cb1 0px 0px 5px, #015cb1 0px 0px 5px;
}
.submit-button::before, .submit-button::after {
    content: "";
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: all 0.5s ease 0s;
}
.submit-button::before {
    top: 0px;
    left: 54px;
    width: calc(100% - 128px);
    background: #fff;
}
.submit-button::after {
    top: 0px;
    right: 54px;
    width: 8px;
}
.submit-button .button-line::before {
    border-color: #fff;
}
.submit-button:hover {
    letter-spacing: 6px;
}
.submit-button:hover::before, .submit-button:hover .button-text::before {
    width: 8px;
}
.submit-button:hover::after, .submit-button:hover .button-text::after {
    width: calc(100% - 128px);
}
.submit-button:hover .button-drow1 {
    animation: 0.06s ease-in 0s 1 normal forwards running drow1;
}
.submit-button:hover .button-drow1::before {
    animation: 0.08s linear 0.06s 1 normal forwards running drow2;
}
.submit-button:hover .button-drow1::after {
    animation: 0.03s linear 0.14s 1 normal forwards running drow3;
}
.submit-button:hover .button-drow2 {
    animation: 0.06s linear 0.2s 1 normal forwards running drow4;
}
.submit-button:hover .button-drow2::before {
    animation: 0.03s linear 0.26s 1 normal forwards running drow3;
}
.submit-button:hover .button-drow2::after {
    animation: 0.06s linear 0.32s 1 normal forwards running drow5;
}
.email-form > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.email-form h2 {
    color: #fff;
    text-shadow: 0 0 5px #000;
}
.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: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: #000 0px 0px 5px;
    font-weight: 500;
}
.contact-form .form-row {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
}
.contact-form .form-row.submit-btn {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form textarea {
    width: 100%;
    padding: 20px 10px 10px;
    border: none;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    box-shadow: #000 0px 0px 10px 0px;
    background: #ffffff40;
}
.contact-form input:focus, .contact-form input:not(:placeholder-shown), .contact-form textarea:focus, .contact-form textarea:not(:placeholder-shown) {
    outline: 0px;
    background: #e9e7e8;
}
.contact-form textarea {
    resize: none;
}
.contact-form input[type="text"]::placeholder, .contact-form input[type="tel"]::placeholder, .contact-form input[type="email"]::placeholder, .contact-form textarea::placeholder {
    visibility: hidden;
}
.contact-form input[type="text"]:focus::placeholder, .contact-form input[type="tel"]:focus::placeholder, .contact-form input[type="email"]:focus::placeholder, .contact-form textarea:focus::placeholder {
    visibility: visible;
}
.contact-form .form-row label {
    color: #fff;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    padding: 0px 5px;
}
.contact-form .form-row-textarea label {
    color: #fff;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 18%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    padding: 0px 5px;
}
.contact-form input:focus + label, .contact-form input:not(:placeholder-shown) + label, .contact-form textarea:focus + label, .contact-form textarea:not(:placeholder-shown) + label {
    top: 0px;
    color: #000;
    padding: 2px 5px;
    background: #fff;
    font-size: 14px;
    box-shadow: #000 0px 0px 10px 0px;
}
.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: #000;
}
.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 30px 0px;
    position: relative;
    background: #e9e7e8;
}
.testimonials-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: transparent;
    transform-origin: left top;
    box-shadow: #00000033 0px 4px 8px, #00000033 0px 4px 8px;
}
.testi-content.swiper-wrapper {
    margin-top: 75px;
}
#testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 640px;
    z-index: 2;
}
.testimonial {
    position: relative;
    width: 100%;
    padding-top: 20px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.testimonial h2 {
    text-align: center;
    margin: 0px 0px 25px;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
    width: 100%;
}
.testimonial h2 span {
    position: absolute;
    right: 0px;
    bottom: -35px;
}
.cta-near-form p {
    font-family: "Playwrite AT", serif;
    font-size: 20px;
                 font-weight: 600;
}
.cta-near-form p a {
    color: #b02823;
}
.testimonial .image {
    height: 150px;
    width: 150px;
    position: relative;
    object-fit: cover;
    z-index: 1;
    box-shadow: #000 0px 0px 10px 0px;
}
.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
    margin-bottom: -70px;
}
.testimonial-content {
    background: #b02823;
    padding: 0px 15px 63px;
    position: relative;
    z-index: 0;
    height: fit-content;
    max-width: 690px;
    width: 100%;
}
.testimonial-text {
    border-radius: 5px;
    position: relative;
    top: -35px;
}
.slide p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: justify;
    margin: 0px;
    position: relative;
    padding: 20px;
    width: 100%;
}
.slide .details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: -15px;
    margin-bottom: 15px;
}
.details .name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    filter: drop-shadow(#000 1px 2px 4px);
}
.slide .details img {
    width: 130px;
    margin-left: 10px;
    filter: drop-shadow(#000 1px 2px 4px);
    border-left: 3px solid #fff;
    padding-left: 10px;
}
.swiper-button-next {
    right: -60px !important;
    top: -94px !important;
}
.swiper-button-prev {
    left: -60px !important;
    top: -146px !important;
}
.swiper-button-prev, .swiper-button-next {
    width: 0px !important;
    position: relative !important;
}
.swiper-button-prev::after, .swiper-button-next::after {
    color: #fff;
    filter: drop-shadow(#000 1px 2px 4px);
    font-size: 30px !important;
}
.nav-btn {
    border-radius: 50%;
    transform: translateY(30px);
    transition: all 0.2s ease 0s;
}
.nav-btn::after, .nav-btn::before {
    font-size: 20px;
}


/* NAP */

.nap-footer {
    padding: 20px;
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 360px;
}

#nap-cn:hover::after,
#nap-phone:hover::after,
#nap-serv-areas:hover::after{
       transform: scale(1.1) rotate(5deg);
}
.nap-footer:before {
    content: '';
    width: 100%;
    height: 100%;
    top: -3px;
    left: 0;
    z-index: -1;
    position: absolute;
    background: url(/img/services-bg.webp);
    background-size: 100% 100%;
    filter: brightness(0) saturate(100%) invert(22%) sepia(81%) saturate(2187%) hue-rotate(195deg) brightness(95%) contrast(99%) drop-shadow(0px 3px 4px #000000a1);
    background-repeat: no-repeat;
}
.nap-footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

ul.nap-area-served {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    list-style: disc inside;
    padding: 10px !important;
    margin: 0;
}

.nap-area-served li {
    padding: 2px 5px;
}
div#nap-cn:after {
    content: '';
    width: 87px;
    height: 98px;
    top: -16px;
    left: 5px;
    background: url(/img/icons/nap-cn-ico.webp);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}
#nap-phone:after {
    content: '';
    width: 81px;
    height: 88px;
    top: -9px;
    left: 5px;
    background: url(/img/icons/nap-phone-ico.webp);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

#nap-serv-areas:after {
    content: '';
    width: 104px;
    height: 82px;
    top: -12px;
    left: -2px;
    background: url(/img/icons/nap-areas-ico.webp);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}
div#nap-cn p {
    color: #fff;
    padding: 40px 20px 20px 57px;
    font-size: 26px;
    font-weight: bold;
}

div#nap-phone a {
    color: #fff;
    font-size: 26px !important;
    font-weight: bold;
    padding: 30px 20px 20px 40px;
}

.nap-area-served li {
    color: #fff;
}
   p.nap-serv-title {
    color: #fff !important;
    font-size: 23px !important;
    font-weight: bold !important;
    width: 100%;
    padding-left: 36px;
}
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 0px;
}
.contact-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0px;
    width: 100%;
    height: 15%;
    background-image: url("/img/footer-bg.webp");
    background-position: left center;
    background-repeat: repeat-x;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(81%) sepia(7%) saturate(1907%) hue-rotate(182deg) brightness(109%) contrast(105%);
    z-index: 2;
}
.contact-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 3;
    width: 90%;
    max-width: 1280px;
}
.contact-section p {
    font-size: 28px;
    font-family: Quicksand, Arial, Helvetica, sans-serif;
    color: #015cb1;
    margin: 0px;
    font-weight: 600;
}
.contact-section a {
    color: #b02823;
    text-decoration: underline;
}
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    position: relative;
    background: #C1EEFF;
}
footer > div:first-of-type {
    display: flex;
    width: 90%;
    max-width: 1280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    font-weight: 600;
    background: #015cb1;
    padding-bottom: 15px;
    margin-top: 20px;
    box-shadow: #000 0px 0px 10px 0px;
}
#callnowbutton {
    display: none;
}
#booking-engin {
    position: fixed;
    left: -1px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
#booking-engin .button-2 {
    color: #fff !important;
    border: none;
    font-weight: 500;
    border-radius: 0 300px  300px 0;
    border: 1px solid #000;
}
#booking-engin .button-2:hover {
    background: #015cb1;
}

@media (min-width: 600px) {
    .top-decoration-element {
        width: 85%;
        top: 40px;
   }
    .headers-buttons {
        flex-direction: row;
        justify-content: flex-start;
   }
    .button-3 {
        margin-top: 0px;
        margin-left: 10px;
   }
   .about-img:hover .about-image {
        transform: translateX(30px);
        transition: all 0.5s ease 0s;
    }
    .about-img:hover .about-image-1 {
        transform: translateX(-30px);
        transition: all 0.5s ease 0s;
    }
    div#home {
    height: calc(100vh - 87px);
}

ul.about-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    list-style: disc inside;
    margin-top: 0;
    margin-bottom: 35px;
}

.about-list li {
    padding: 5px 15px;
    position: relative;
    margin-top: 5px;
}
.about-list li:before {
    content: '';
    width: 100%;
    height: 100%;
    filter: brightness(10);
    opacity: 0.9;
    z-index: -1;
    top: 0px;
    left: 0;
    position: absolute;
    background: url(/img/badge-1.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left center;
}
 
ul.area-served {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    list-style: disc inside;
}
    .area-served li {
        /* width: 100%; */
        padding: 5px 15px;
   }
    .GallerySwiper .swiper-slide img {
        height: 160px;
    }
    .add-badges {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 940px;
}

.add-bdg {
    width: calc((100% / 3) - 5px);
    max-width: 265px;
}

  
}
@media (min-width: 711px) {
    .about-decoration {
        top: 455px;
   }
    p.badge-content.main-badge {
    font-size: 20px;
}

p.badge-title.main-badge {
    font-size: 20px;
}

.badge-holder.main-badge {
    width: 100%;
    max-width: unset;
    margin-bottom: 0;
}



div#badges {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 0;
}

.badge-holder.main-badge:before {
    width: 450px;
}
}
@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: #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;
   }
    #callnowbutton a img {
        height: 2em;
   }
}
@media (min-width: 981px) {
    .hamburger {
        display: none;
   }
    nav > div {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: relative;
   }
    nav .menu {
        height: auto;
        flex-direction: row;
        justify-content: center;
        left: 0px;
        position: relative;
        width: auto;
        align-items: center;
        padding: 0px;
        margin: 5px 0px;
        background: transparent;
        transform: none;
   }
    nav .menu li {
        margin: 0px 10px;
        padding: 0px;
   }
    nav .menu span:nth-of-type(1) {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
   }
    nav .menu span:nth-of-type(2) {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
   }
    .brand {
        width: 100%;
        justify-content: center;
   }
    .brand a {
        align-items: center;
        flex-direction: row;
        margin-bottom: 15px;
   }
    .brand span {
        margin-left: -65px;
        margin-top: 25px;
   }

    .trust-signals {
    max-width: 980px;
    margin-top: 65px;
    margin-bottom: 20px;
}
    .about-content-1 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
}

.about-content-1-text {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.about-list li {
    margin-top: 10px;
}
    .about-content-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about-inner-content {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


h2.about-title {text-align: right;}
h2.about-title.ab-title-2 {
    text-align: left;
}

ul.about-list.ab-list-2 {
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
}
ul.about-list {
    display: flex;
    justify-content: flex-end;
}

.top-decoration-element {
    top: unset;
}
    .badge-holder.main-badge {
    width: 100%;
    max-width: unset;
}

.badge-holder.main-badge::before {
    width: 450px;
}

.badge-holder {
    width: calc((100% / 3) - 10px);
    max-width: 200px;
}
    p.badge-content.main-badge {
    font-size: 25px;
}

p.badge-title.main-badge {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

div#badges {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
}
   .slider-decoration {
        display: block;
        object-fit: contain;
        object-position: center center;
        width: 100%;
        max-width: 300px;
        height: 100%;
        max-height: 300px;
        position: absolute;
        top: 0px;
        right: 0px;
        filter: brightness(0) invert(1);
   }
    .slider-section {
        justify-content: flex-end;
        display: flex;
   }
   .slider-content {
        /* margin-bottom: 80px; */
    }
    nav .menu li:nth-of-type(7) {
        margin-bottom: 0px;
   }
   #about {
        flex-direction: row;
        justify-content: space-between;
   }
    .about-images {
        width: 49%;
   }
    .about-content {
        width: 100%;
   }
    .about-decoration {
        top: 610px;
   }
    .email-form {
        align-items: flex-end;
   }
   .GallerySwiper2 .swiper-slide img {
        height: 450px;
        width: 100%;
        max-width: 900px;
    }
    .srvElement:nth-child(odd) {
        width: 100%;
        display: flex;
        flex-direction: row;
        margin: 70px 0;
        align-items: stretch;
        justify-content: center;
        max-width: 935px;
        align-self: flex-start;
   }
    .srvElement:nth-child(even) {
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        margin: 70px 0;
        max-width: 935px;
        align-items: stretch;
        justify-content: center;
        align-self: flex-end;
   }
   .srvElementImg {
        align-self: center;
        top: auto;
    }
    .srvElementImg img {
        width: 480px;
        height: 320px;
   }
    .srvElementBody {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
   }
   .srvElement:nth-child(odd) .srvImageBackround {
        height: 400px;
        left: auto;
        bottom: -65px;
        right: -75px;
    }
    .srvElement:nth-child(even) .srvImageBackround {
        height: 400px;
        bottom: -65px;
        left: -75px;
        transform: rotateY(180deg);
    }
    .srvElementContent {
        height: auto;
   }
   .testimonials-contact-form-section {
        flex-direction: row;
        padding-bottom: 68px;
   }
    .contact-form-section {
        width: 50%;
        justify-content: center;
        align-items: flex-end;
        flex: 1 1 0%;
        height: 950px;
        padding: 30px 0px;
   }
    .email-form {
        margin-right: 20px;
        padding: 0px 0px 90px;
        top: 50px;
   }
    .contact-form-section::after {
        display: block;
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        transform-origin: left top;
        box-shadow: #00000080 3px 5px 5px;
        transform: skewY(10deg);
        background: #fff;
        height: 16%;
        z-index: 1;
        transform-origin: right top;
   }
   .contact-section::before {
        top: -140px;
        height: 20%;
   }
   .testimonials-section {
        width: 50%;
        height: 950px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
   }
    #testimonials {
        margin-left: 20px;
   }
    .testimonial h2 {
        font-size: 25px;
   }
    .testimonials-section::before {
        transform: skewY(-10deg);
        background: #fff;
        height: 16%;
        top: -1px;
        z-index: 1;
        box-shadow: #00000080 5px 5px 5px;
   }
    .testimonial {
        padding-top: 50px;
   }

      /* NAP FOOTER */

    
.nap-footer-container {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: stretch !important;
}

.nap-footer {
    width: calc(100% / 3);
    min-height: 270px;
}
    div#nap-cn p {
    padding: 40px 20px 20px 20px;
}

div#nap-phone a {
    padding: 30px 20px 20px 20px;
}

div#nap-serv-areas {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.nap-footer-container {
    max-width: 977px !important;
}

}
@media (min-width: 1024px) {
    .contact-form-section, .testimonials-section {
        max-width: 760px;
   }
}
@media (min-width: 1025px) {
    .testimonial h2 {
        font-size: 36px;
   }
}
@media (min-width: 1294px) {
    nav {
        height: fit-content;
   }
    nav > div {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
   }
    .navigation {
        width: auto;
   }
    .brand a {
        margin-left: 0px;
        margin-bottom: 0px;
   }
    .brand img {
        height: 100px;
    }
    .slider-img {
        max-width: 90% !important;
   }
}
@media (min-width: 1422px) {
    .about-decoration {
        top: 445px;
   }
}
@media (min-width: 1521px) {
    .testimonials-contact-form-section::before {
        display: block;
        position: absolute;
        top: -162px;
        left: 0;
        width: 100%;
        transform-origin: left top;
        box-shadow: #00000080 3px 5px 5px;
        background: #fff;
        height: 16%;
        z-index: 1;
        transform-origin: right top;
   }
    .contact-form-section::after {
        height: 136px;
   }
    .testimonials-section::before {
        height: 136px;
   }
}
