body {
    color: #000;
    background-color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

@media (min-width: 769px) {
    html {
        scroll-padding-top: 170px;
    }
}

.container {
    max-width: 1080px;
    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;
}

p, li {
    font-size: 18px;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 28px;
    margin: 0px;
}

h3 {
    font-size: 26px;
}

img {
    border-radius: 8px;
}

.background-dark {
    background-color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.background-light {
    background-color: #fff;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

nav {
    display: flex;
    position: fixed;
    width: 100%;
    max-width: 1280px;
    padding: 12px 0px;
    top: 0px;
    flex-direction: column;
    /* height: 50px; */
    z-index: 999;
    justify-content: center;
    align-items: center;
    background: transparent;
    transition: background-color 0.3s ease 0s;
}

nav.scrolled {
    background-color: #111111;
    box-shadow: rgb(0, 0, 0) 0px 5px 10px;
}

nav > div {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    place-content: center space-between;
    align-items: center;
}

nav .menu {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: #111111;
    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;
}

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

nav .menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #ff8c11;
}



.brand {
    width: 70%;
    text-wrap: wrap;
    z-index: 10;
    padding: 0 10px;
}

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

.brand span {
    color: #FD8402;
    font-size: 25px;
    margin-left: 10px;
}

.brand img {
    width: 180px;
    height: 89px;
}

.button-1 {
    background-color: #E02B20;
    padding: 12px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    border: 3px solid #E02B20;
    color: rgb(255 255 255) !important;
}

.button-1:hover, .button-1:active {
    background-color: #FD8402 !important;
    border-color: #FD8402 !important;
    color: rgb(0 0 0) !important;
}

.button-2 {
    background-color: transparent;
    border: 3px solid #FD8402;
    padding: 12px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    color: #FD8402;
}

.button-2:hover, .button-2:active {
    background-color: #FD8402 !important;
    border-color: #FD8402 !important;
    color: rgb(26, 26, 26) !important;
}

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

@media (min-width: 540px) {
    .costum-border-1 {
        height: 440px !important;
    }
}

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

    nav {
        /* height: 80px; */
    }

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

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

    nav .menu li a {
        /* color: #FD8402; */
    }

    .brand {
        width: 100%;
    }

    .brand a {
        justify-content: center;
    }

    .slider-section {
        padding-top: 4vw;
    }

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

    .slider-content {
    }
}

@media (min-width: 1035px) {
    nav {
        flex-direction: row;
        justify-content: end;
        /* padding: 2% 0px; */
    }

    .brand {
        width: 38%;
        margin-left: 20px;
    }

    .brand a {
        justify-content: left;
    }

    nav .menu {
        position: inherit;
        align-items: center;
        margin: 0px;
    }

    .slider-section {
        padding-top: 0px;
    }
}

.slider-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
}
.hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 3;
    margin-left: 30px;
    width: 90%;
    margin-bottom: 40px;
}

.slider-section > div {
   position: relative;
   z-index: 3;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   width: 90%;
   max-width: 1080px;
   padding: 50px 0;
   margin-top: 80px;
}

.slider-content .button-2 {
    margin-right: 10px;
}

.slider-text {
    color: white;
    margin-bottom: 30px;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    max-width: 370px;
}
.slider-text h1 {
    font-size: 32px;
}
.slider-text p {
    line-height: 1.25;
}
.slider-text p span {
    display: block;
    padding-top: 10px;
}
.slider-text .slider-offer {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 10px;
}
.slider-text .slider-offer .slider-highlight {
    display: inline;
    color: #FD8402;
    padding: 0;
    white-space: nowrap;
}
.slider-text p a {
    color: #FD8402;
    text-decoration: none;
}

.costum-border-1 {
    position: absolute;
    z-index: 2;
    width: 325px;
    height: 575px;
    border-top: 5px solid #FD8402;
    border-left: 5px solid #FD8402;
    border-bottom: 5px solid #FD8402;
    border-radius: 8px;
}

.costum-border-1::before {
    content: "";
    position: absolute;
    right: 0px;
    z-index: 100;
    top: 0px;
    width: 5px;
    height: 17%;
    background: #FD8402;
    border-radius: 8px;
}

.costum-border-1::after {
    content: "";
    position: absolute;
    right: 0px;
    z-index: 100;
    bottom: 0px;
    width: 5px;
    height: 19%;
    background: #FD8402;
    border-radius: 8px;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 30px;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    align-content: center;
    /* padding-bottom: 20px; */
}

.badge-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 250px;
    /* min-width: 200px; */
    padding: 15px 1px 22px;
    margin: 10px 15px 30px;
    border-radius: 8px;
    position: relative;
    text-shadow: rgba(0, 0, 0, 0.04) 0px 15px 15px;
    font-family: Nunito, sans-serif;
    border-left: 3px solid #FD8402;
    border-right: 3px solid #FD8402;
}

p.badge-content {
    color: №000;
    text-align: center;
    line-height: 1.2;
    text-transform: capitalize;
    font-size: 20px;
    min-height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Oswald, sans-serif;
    margin: 20px 0px 30px;
}

.badge-holder img {
    width: 100px;
    height: 50px !important;
    max-width: 100px;
    padding-bottom: 10px;
    filter: invert(0.9);
}

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

.badge-title span {
    font-size: 17px;
}
div#badges-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

p.badges-info {
    width: 80%;
    line-height: 1.4;
    padding: 0 20px;
}
/* SERVICE HIGHLIGHTS */
.serv-highlights-container-inner {
    padding: 20px;
    margin-bottom: 30px;
    width: 100%;
    border-radius: 10px;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 360px;
    box-sizing: border-box;
    /* margin: 10px; */
}

.service-highlights-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    width: 90%;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.service-highlights-main-container h2{
    text-align: center;
}
section#service-highlights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.service-highlights-main-container p {text-align: justify;max-width: 750px;}

.serv-highlights-container {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    flex-wrap: wrap;
    max-width: 790px;
}
div#srv-highlight-1 {
    /* background: #111111; */
    /* color: #fff; */
    border: 3px solid #111111 !important;
}
div#srv-highlight-1:hover {
    border: 3px solid #fd8402 !important;
}



.serv-highlights-container-inner h3 {
    text-align: center;
    margin-top: 0;
}
div#srv-highlight-2,
div#srv-highlight-5{
    background: #FD8402;
}

div#srv-highlight-3 {
    background: #111111;
    color: #fff;
}

div#srv-highlight-4 {
    border: 3px solid #111;
}
div#srv-highlight-4:hover{
    background: #FD8402;
    border-color: #FD8402;
}
div#srv-highlight-5:hover{
     background: #111111;
    color: #fff;
}
div#srv-highlight-2:hover {
    background: #111;
    color: #fff;
}

div#srv-highlight-3:hover {
    border: 3px solid #111;
    color: #000;
    background: #fff;
}
ul.serv-highlights-list {
    margin: 0;
}

.serv-highlights-list li {
    padding: 5px;
}
.decoration-border {
    position: relative;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    width: 50px;
    height: 50px;
    left: 0px;
    top: 35px;
    border-radius: 8px;
}

.decoration-cube {
    position: relative;
    border: solid #FD8402;
    width: 25px;
    height: 25px;
    left: 13px;
    top: 0px;
    border-radius: 8px;
}

.decoration-inside-cube {
    position: relative;
    background-color: #FD8402;
    width: 10px;
    height: 10px;
    left: 28px;
    top: -15.5px;
    border-radius: 8px;
}
.srv-area-img-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 400px;
}
.srv-area-content-container h2 {
    text-align: left!important;
    margin-bottom: 15px;
}

.srv-area-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.srv-area-img-container img {
    width: 340px;
    height: 227px;
}

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0px 90px;
    justify-content: center;
}

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

.about-section h2 {
    text-align: left;
    color: #000;
}

.about-section .content {
    text-align: justify;
    border-left: 3px solid #FD8402;
    padding-left: 10px;
    border-radius: 8px;
    height: fit-content;
}

.about-content div {
    margin: 30px 0px;
}

.area-served-section {margin-top: 20px;justify-content: center !important;flex-direction: column !important;}

.area-served {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 0px;
    padding-left: 0;
    width: 90%;
}
.area-served-section > div {
    align-self: flex-start;
    margin-top: 10px;
}
.area-served li {
    width: 50%;
    text-align: left;
    position: relative;
}

.about-content-section {
    width: 100%;
}

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

.about-img-section {
    width: 90%;
}

.about-img {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.about-img img {
    width: 340px;
    height: 227px;
}

.costum-border-2 {
    display: none;
}
section#service-area .container p {
    border-left: 3px solid #FD8402;
    border-radius: 8px;
    line-height: 1.4;
    padding: 10px;
}


@media (min-width: 420px) {
    .about-img-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: -150px;
    }

    .about-img img {
        width: 300px;
        height: 200px;
    }

    .costum-border-2 {
        position: relative;
        z-index: 1;
        width: 300px;
        height: 158px;
        border: 5px solid #FD8402;
        border-radius: 8px;
        left: 8%;
        top: -185px;
        display: block;
    }

    .srv-area-img-container:before {
    content: '';
    width: 80%;
    height: 160px;
    border: 5px solid #FD8402;
    border-radius: 8px;
    position: absolute;
    right: 0px;
    z-index: 0;
}

.srv-area-img-container img {
    width: 300px !important;
    height: 200px !important;
    z-index: 2;
}

}

@media (min-width: 600px) {
    .brand img {
        width: 200px;
        height: 99px;
    }
    .about-img img {
        width: 400px;
        height: 267px;
    }

    .costum-border-2 {
        left: 14%;
        top: -215px;
    }

    .area-served li {
        width: 33%;
    }
    .slider-text {
    max-width: unset;
}
    .slider-text h1 {
    font-size: 35px !important;
}
    .srv-area-img-container img {
    width: 400px !important;
    height: 267px !important;
}

.srv-area-img-container {
    max-width: 500px !important;
}


}

@media (min-width: 830px) {
    .about-section > div {
        flex-direction: row;
        justify-content: space-between;
    }
     

    .about-content-section {
        width: 49%;
    }

    .about-img-section {
        width: 49%;
    }

    .about-img img {
        width: 350px;
        height: 234px;
    }

    .costum-border-2 {
        top: -192px;
    }
    .srv-area-main-container {
    display: flex;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
    align-items: center !important;
}
    


.srv-area-img-container {
    width: 50%;
    margin-bottom: 0;
}

.srv-area-content-container {
    width: 50%;
    margin-right: 15px;
}

.srv-area-img-container img {width: 350px !important;height: 234px !important;}

}

.row-icons {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: 20px 0px;
}

.row-icons > div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 90%;
    max-width: 1080px;
    flex-wrap: wrap;
}

.icons {
    display: flex;
    justify-content: center;
    width: 27%;
    align-items: center;
    margin: 10px;
}

.icons img {
    width: 70px;
    height: 70px;
}
img.paving-ico-2 {
    height: 73.7px;
}


img.paving-ico-6 {
    width: 75.6px;
}
@media (min-width: 769px) {
    .icons {
        width: 13%;
    }
       .costum-border-1 {
    height: 425px !important;
}
}

.services-section {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

.srvBlockTitle h2 {
    line-height: 1.2;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.srvBlockTitle p {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}

.srvBlockTitle {
    text-align: center;
    position: relative;
}

.srvBlock {
}

.srvElement {
    margin: 50px auto 0px;
    padding: 4px;
    max-width: 500px;
}

.srvElementHeader h2 {
    text-align: center;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.srvElementBody {
    display: flex;
    justify-content: center;
    align-items: center;
}

.srvElementBody h2, .srvElementBody p {
    padding: 0px;
    margin: 0px;
}

.srvElementBody img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center center;
    border-radius: 8px 8px 0px 0px;
}

.srvElementHeader {
    padding: 20px 20px 0px;
}

.srvElementContent {
    text-align: justify;
    color: rgb(255, 255, 255);
    padding: 20px;
    line-height: 1.2;
}

.srvElementBody {
    background: #111111;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.srvElement:hover h2 {
    color: #FD8402;
}

@media screen and (min-width: 981px) {
    .brand img {
        width: 250px;
        height: 123px;
    }
    .brand span {
        font-size: 30px;
    }
    .slider-text .slider-offer {
        font-size: 28px;
    }

    section#service-highlights {
    padding-top: 50px;
}
    .srvElement {
        width: 46%;
        display: flex;
        flex-direction: column;
        margin: 30px 10px 20px;
    }

    .srvBlock {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1200px;
        margin: 0px auto;
        align-items: stretch;
    }

    .srvElementBody {
        height: 100%;
    }

    .srvElementContent {
        height: 100%;
    }
    .serv-highlights-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    max-width: unset;
}
    .srv-area-img-container img {
    width: 400px !important;
    height: 300px !important;
    object-fit: cover;
}
}

.box:hover {
    padding: 4px;
    background-color: #FD8402;
    background-image: url("/img/icons/animation-services-box-1.gif"), url("/img/icons/animation-services-box-2.gif"), url("/img/icons/animation-services-box-3.gif");
    background-repeat: no-repeat;
    background-size: 0px 2px, 0px 100%, 0% 2px;
    background-position: center top, center top, center bottom;
    animation: 1.5s ease 0s 1 normal none running drawBorderFromCenter;
    border-radius: 8px;
}

@-webkit-keyframes drawBorderFromCenter {
    0% {
        background-size: 0px 2px, 0px 0px, 100% 100%;
    }

    20% {
        background-size: 100% 2px, 100% 0px, 100% 100%;
    }

    66% {
        background-size: 100% 2px, 100% 98%, 100% 100%;
    }

    99% {
        background-size: 100% 2px, 100% 98%, 0px 2px;
    }
}

@keyframes drawBorderFromCenter {
    0% {
        background-size: 0px 2px, 0px 0px, 100% 100%;
    }

    20% {
        background-size: 100% 2px, 100% 0px, 100% 100%;
    }

    66% {
        background-size: 100% 2px, 100% 98%, 100% 100%;
    }

    99% {
        background-size: 100% 2px, 100% 98%, 0px 2px;
    }
}

.email-form {
    position: relative;
    width: 100vw;
    max-width: 1080px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.email-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.email-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.email-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000000ab;
    z-index: 1;
}

@media (min-width: 981px) {
    .email-form {
        align-items: flex-end;
        max-width: 50%;
    }
    .serv-highlights-container-inner {
    padding: 20px;
    width: calc(100% / 3);
    max-width: 370px;
    margin: 10px;
}

.service-highlights-main-container {
    width: 100%;
}
}

.email-form > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: calc(-40% + 1080px);
}

.contact-form {
    z-index: 2;
    position: relative;
}

.email-form h3 {
    text-align: center;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

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

.captcha{
        width:calc(100% - 116px);
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: #000000 0px 0px 5px;
    transition: all 0.3s ease 0s;
    background:#fff;
    
}

.captcha label{
    position: relative !important;
    transform: none !important;
}


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


@media screen and (max-width:450px) {
	.contact-form .form-row.submit-btn {
	align-items: center;
    justify-content: center;
    flex-direction: column;
	}
}

.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form input[type="message"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 4px;
    box-sizing: border-box;
}
textarea#message {
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 4px;
    box-sizing: border-box;
}
textarea#message::placeholder {
    font-family: "Roboto Condensed", sans-serif;
}
.contact-form input[type="text"]:focus, .contact-form input[type="tel"]:focus, .contact-form input[type="email"]:focus .contact-form input[type="message"]:focus {
    outline: none;
    border-color: rgb(193, 18, 31);
}

.contact-form .submit-button:hover {
    background-color: rgba(25, 148, 178, 0.77);
}

.features-section {
    display: flex;
    flex-direction: column-reverse;
    margin: 40px 0px;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 90%;
}

.decoration-border-1 {
    position: relative;
    border-top: 1px solid rgb(255, 255, 255);
    border-left: 1px solid rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    left: 0px;
    top: 35px;
    border-radius: 8px;
}

.decoration-cube-1 {
    position: relative;
    border: solid #FD8402;
    width: 25px;
    height: 25px;
    left: 14px;
    top: 0px;
    border-radius: 8px;
}

.decoration-inside-cube-1 {
    position: relative;
    background-color: #FD8402;
    width: 10px;
    height: 10px;
    left: 27px;
    top: -15px;
    border-radius: 8px;
}

.features-content {
    min-height: 370px;
    background-color: #fff;
    align-self: center;
    display: flex;
    text-align: left;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    border-radius: 8px;
}

.features-content > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 90%;
    max-width: 100%;
    margin: 0px 20px 15px;
}

@media (min-width: 981px) {
    .features-section {
        margin: 0;
    }
    .features-content {
        width: 50%;
    }
}

.features-content li {
    font-size: 18px;
    text-align: justify;
}

.features-content li::marker {
    color: #FD8402;
    font-size: 33px;
}

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

@media (min-width: 981px) {
    .features-section {
        flex-direction: row;
    }
}

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

.gallery-section {
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

@media (min-width: 981px) {
    .lp-gallery a {
        width: calc(26.6667vw);
        max-width: 300px;
        height: calc(26.6667vw);
        max-height: 300px;
    }
}
.faq-question {
    border-left: 3px solid #FD8402;
    border-right: 3px solid #FD8402;
    border-radius: 8px;
    padding: 0 25px;
    margin-bottom: 10px;
}
div#call-now-btn {
    margin-top: 40px;
}
.faq-question:hover h3 {
    color: #e27602;
}
.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testi-content.swiper-wrapper {
    margin-top: 30px;
}

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

.testimonial .image {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
    border: 5px solid rgb(51, 51, 51);
}

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

.testimonial-content {
    background: #111111;
    border-radius: 8px;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    z-index: 0;
    bottom: 100px;
    width: 100%;
    text-align: center;
}

.slide p {
    padding: 0px 60px;
    font-size: 18px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-align: justify;
}

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

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

.details .name {
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.slide .details img {
    width: 130px;
    margin-left: 10px;
}

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

.swiper-button-prev::after, .swiper-button-next::after {
    color: #FD8402;
    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;
}
@media (min-width: 600px) {
    .slide p {
        text-align: center;
    }
}

section#service-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 34px 0;
    padding-bottom: 0;
}

section#service-area .container {
    padding: 20px 0;
}


.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
}
section#service-area .container p a {
    color: #fd8402;
}
.contact-section > div {
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1080px;
}

.contact-section h2 {
    text-align: center;
    margin: 10px 0px 20px;
}

.contact-section h2 a {
    color: #e02b20;
    text-decoration: underline;
}

footer {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111;
}

footer > div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    max-width: 1080px;
    text-align: center;
    color: #fff;
}

#callnowbutton {
    display: none;
}
#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: none;
    box-shadow: none;
    margin: 0px;
    padding: 0px;
}

#booking-engin .button-1 {
    height: auto;
    border-radius: 0 10px 10px 0;
}

@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999;
        cursor: pointer;
        bottom: 10px;
        display: inline-block;
        background-color: rgb(129, 215, 66);
        color: rgb(255, 255, 255);
        text-decoration: none;
        border: none;
        transition: all 0.3s ease 0s;
        border-radius: 10px;
    }

    #callnowbutton a img {
        height: 31px;
        width: 21px;
    }
}

@media (min-width: 981px) {
    .area-served li {
        width: 25%;
    }
}