body, html {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

html {
    scroll-padding-top: 100px;
}  

.container {
    max-width: 1080px;
    width: 95%;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

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

p, h1, h2, h3, h4, h5, h6 {
    padding: 5px 0px;
    margin: 5px 0px;
}

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

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

h2 {
    font-size: 28px;
    font-weight: 700;
}

body {
    line-height: 1.2;
    background-color: rgb(255, 255, 255);
}

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

a.button {
    font-size: 16px;
    padding: 15px;
    font-weight: 600 !important;
    color: #fff !important;
    cursor: pointer;
    background-color: #e01e2b;
    border-radius: 3px;
}

a.button:hover {
    background: #8b5e3b;
}

nav {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    color: #000;
    box-shadow: rgb(0, 0, 0) 0px 0px 10px;
    transition: all 0.2s ease 0s;
    background-size: contain;
    background-repeat: repeat;
    background-color: #fff;
    background-image: url("/img/pattern-bg.webp");
}

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

nav .brand {
    font-size: 1.5rem;
    width: 100%;
}

nav .brand a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 700;
}

nav .brand a img {
    height: 80px;
}

nav .menu {
    display: flex;
    list-style: none;
    padding: 0px;
    align-items: center;
    justify-content: center;
}

nav .menu li {
    margin-left: 12px;
    display: flex;
    justify-content: center;
}

nav .menu a {
    color: #000;
    text-decoration: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
}

nav .menu {
    transition: transform 0.3s ease-in-out 0s;
}

.highlight-box {
    font-size: 16px;
    padding: 10px;
    font-weight: 600 !important;
    color: #fff !important;
    cursor: pointer;
    background-color: #1e1e2a;
    border: 5px solid #e01e2b;
    border-radius: 3px;
    cursor: default;
}

.highlight-box:hover {
    background-color: #e01e2b;
    border-color: #1e1e2a;
}

header {
    position: relative;
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    flex-direction: column;
    padding: 10px;
    justify-content: flex-start;
    overflow: hidden;
}

@media (min-width: 769px) {
    header {
        height: calc(100vh - 60px);
        max-height: 560px;
        min-height: 560px;
    }
}

@media (min-width: 1125px) {
    header {
        height: calc(100vh - 140px);
        max-height: 60px;
    }
}

header img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
}

header::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 65%);
    z-index: 0;
}

header > div {
    z-index: 1;
    text-align: center;
    width: 90%;
    margin: 50px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

header > div > div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header h1 {
    font-size: 33px;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    z-index: 2;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

header a {
    color: #e01e2b;
    font-weight: 700;
}

header a:hover {
    color: #8b5e3b;
}

header p {
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    z-index: 2;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 600;
}

.header-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 0px;
    margin: 5px 0px;
}

section {
    max-width: 920px;
    width: 920px;
}

#background-div {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    flex-direction: column;
}

#background-div > div:first-of-type {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1080px;
	width: 95%;
}

#background-div-1 {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e2a;
    flex-direction: column;
}

#background-div ul {
    padding: 0px;
    text-align: justify;
}

#background-div strong {
    font-weight: 800;
    color: rgb(233, 97, 34);
}

#background-div-1 ul {
    padding: 0px;
    text-align: justify;
}

#background-div-1 strong {
    font-weight: 800;
    color: rgb(233, 97, 34);
}

.slogan {
    color: rgb(255, 255, 255);
    text-align: left;
    z-index: 1;
    font-size: 24px;
    margin: 15px 0px;
    font-weight: 600;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
    border-left: 3px solid #e01e2b;
    border-bottom: 3px solid #e01e2b;
    padding-left: 5px;
    padding-bottom: 5px;
    width: fit-content;
    letter-spacing: 1px;
}

.slogan span {
	color:#e01e2b;
}

.about, .features {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0px;
}

.about-img {
    margin: 0px 10px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.about img {
    max-width: 100%;
    height: 100%;
}

.features p {
    text-align: justify;
}

.features img {
    max-width: 50%;
    width: 100%;
    height: auto;
    margin-left: 1.5rem;
}

.features video {
    max-width: 50%;
    margin-left: 1.5rem;
}

.about .content, .features .content {
    max-width: 50%;
    font-size: 14px;
    text-align: left;
    padding: 0px 20px;
}

.about p {
    text-align: justify;
}
.srvBlockTitle p {
	font-size: 26px !important;
	line-height: 1.2;
	font-weight: bold;
	font-family: 'Heebo', sans-serif;
	color: #000000;
	border-bottom: 1px solid #ea0a3b;
	display: inline-block;
}

.srvBlockTitle {
	text-align: center;
	z-index: 2;
	color: #fff;
}

.srvBlock {
    z-index: 2;
}

.srvElement {
	margin: 0 auto;
	margin-top: 50px;
	box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 8%);
}

.srvElementHeader h2 {
	text-align: center;
	color: #ffffff;
	font-family: 'Heebo', sans-serif;
	padding: 10px 5px;
	line-height: 1.2;
	height: 74px;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

.srvElementImg img {
	width: 100%;
	height: 50vw;
	object-fit: cover;
	object-position: top center;
}

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

.srvElementBody {
	background: #1e1e2a;
	padding: 10px;
}

.srvElement:hover img {
	filter: grayscale(1) drop-shadow(0px 0px 6px #fff);
}

.srvElement:hover h2 {
	color: #e01e2b;
	font-weight: bold;
}




@media screen and (min-width: 981px) { 


	.srvElement {
		width: 43%;
		display: flex;
		flex-direction: column;
		margin: 0;
		margin-top: 30px;
		padding: 0 30px 30px;
		margin-bottom: 65px;
		border: 2px solid rgba(255, 255, 255, .1);
	}

	.srvElementImg img {

		height: 200px;
	}

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

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

	.srvElementBody {
		height: 100%;
	}

	.srvElementContent {
		height: 100%;
	}

	.srvElementFullWidth .srvElementContent {
		height: auto;
	}

	.srvElement.srvElementFullWidth {
		width: 100%;
		max-width: 1080px;
		flex-direction: row;
	}

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

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

}


/* Emergency Services Section */

.emergencySrvSection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background: #fff;
    padding: 20px;
}

.emergencySrvBlockTitle {
	text-align: center;
	z-index: 2;
	color: #ea0a3b;
}

.emergencySrvBlockTitle p {
	font-size: 26px !important;
	line-height: 1.2;
	font-weight: bold;
	font-family: 'Heebo', sans-serif;
	color: #000000;
	border-bottom: 5px solid #ea0a3b;
	display: inline-block;
}

.emergencySrvBlock {
    z-index: 2;
}

.emergencySrvElement {
	margin: 0 auto;
	margin-top: 50px;
	border: 10px solid #ea0a3b;
	/* box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 8%); */
}

.emergencySrvElementHeader h2 {
	text-align: center;
	color: #ffffff;
	font-family: 'Heebo', sans-serif;
	padding: 10px 5px;
	line-height: 1.2;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

.emergencySrvElementImg img {
	width: 100%;
	height: 50vw;
	object-fit: cover;
	object-position: top center;
}

.emergencySrvElementContent {
	text-align: justify;
	color: #ffffff;
	padding: 10px;
	padding-top: 0;
	line-height: 1.2;
}

.emergencySrvElementBody {
	background: #1e1e2a;
	padding: 10px;
}

.emergencySrvElement:hover img {
	filter: grayscale(1) drop-shadow(0px 0px 6px #fff);
}

.emergencySrvElement:hover h2 {
	color: #e01e2b;
	font-weight: bold;
}




@media screen and (min-width: 981px) { 


	.emergencySrvElement {
		width: 43%;
		display: flex;
		flex-direction: column;
		margin: 30px 10px;
		/* margin-top: 30px; */
		padding: 0px;
		/* margin-bottom: 65px; */
		/* border: 2px solid rgba(255, 255, 255, .1); */
	}

	.emergencySrvElementImg img {

height: auto;

}

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

	.emergencySrvElementBody {
		height: 100%;
	}

	.emergencySrvElementContent {
		height: 100%;
	}

}


.gallery-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0px 0px 20px;
    color: rgb(34, 34, 34);
    text-align: center;
}

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

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

.lp-gallery a {
    width: 43.5vw;
    height: 43.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 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(28.3333vw);
        max-width: 350px;
        height: calc(28.3333vw);
        max-height: 350px;
    }
}

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

.testimonials-background h2 {
    margin-bottom: 30px;
    color: #fff;
}

.testimonial {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 50px 0px;
    overflow: hidden;
    text-align: center;
}

.testimonial .image {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}

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

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

.slide .quote-icon {
    font-size: 30px;
    color: #e01e2b;
}

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

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

.details .name {
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    border-right: 3px solid rgb(255, 255, 255);
    padding-right: 10px;
}

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

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn::after, .nav-btn::before {
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
    background-color: rgb(64, 112, 244);
}

@media screen and (max-width: 768px) {
}

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

.contact {
    display: flex;
    align-items: center;
    padding: 30px 0px;
    flex-flow: column wrap;
    background: rgb(255, 255, 255);
}

.contact p {
    text-align: justify;
}

footer {
    color: white;
    text-align: center;
    width: 100%;
    padding-block: 1rem;
    background-size: contain;
    background-repeat: repeat;
    background-color: #1e1e2a;
    background-image: url("/img/pattern-bg.webp");
}

@media (max-width: 980.9px) {
    nav .brand {
        width: 80%;
        text-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    .services .card {
        flex: 1 1 45%;
    }

    section {
        padding: 2rem;
        max-width: 1080px;
        width: auto;
        margin-left: 0px;
        transform: none;
    }
}

@media (max-width: 980.9px) {
    html {
        scroll-padding-top: 100px;
    }

    .hamburger {
        display: block;
        width: 15%;
        z-index: 10;
    }

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

    nav {
        position: fixed;
        width: 100vw;
        padding: 5px 20px;
        top: 0px;
        flex-direction: column;
        /* height: 50px; */
        z-index: 999;
        justify-content: center;
        align-items: center;
    }

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

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

    nav .menu.active {
        top: -1rem;
        left: 0px;
    }

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

    header {
        margin-top: 40px;
        max-height: 680px;
        height: 110vh;
        min-height: 680px;
    }

    .about {
        flex-direction: column-reverse;
    }

    .features {
        flex-direction: column;
    }

    .features video {
        margin-left: 0px;
    }

    .about img, .features img {
        max-width: 90%;
        margin-right: 0px;
        margin-bottom: 1rem;
    }

    .about .content, .features .content {
        max-width: 100%;
        margin-bottom: 20px;
        padding: 0px 30px;
    }

    .features img {
        margin: 20px;
        max-width: 90%;
    }

    .features video {
        max-width: 100%;
        width: 80%;
    }

    .services .card {
        flex: 1 1 100%;
        margin: 10px 0px;
    }

    .testimonial {
        width: 100%;
    }

    .slide p {
        padding: 0px 50px;
    }

    .nav-btn {
        display: none !important;
    }
}

@media (min-width: 810px) {
    nav .brand a {
        text-wrap: nowrap;
    }
}

.contact h2 {
    text-align: center;
}

.contact a {
    color: #e01e2b;
}

.contact a:hover {
    color: #8b5e3b;
}

#callnowbutton {
    display: none;
}

@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);
        border-radius: 4px;
        text-decoration: none;
        border: none;
        transition: all 0.3s ease 0s;
    }

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

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

.socials a {
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    background: #e01e2b;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.2s ease 0s;
    margin: 0px 10px;
}

.socials a:hover {
    background: #8b5e3b;
    color: rgb(255, 255, 255);
}

.socials a img {
    width: 20px;
    height: auto;
    filter: invert(1);
}

.socials a:hover i {
    color: rgb(255, 255, 255);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev, .swiper-button-prev, .swiper-rtl .swiper-button-next {
    width: 40px;
}

@media (max-width: 1124.9px) and (min-width: 981px) {
    nav > div {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500.9px) {
    .serviceBox {
        height: fit-content;
    }
}

nav.fixed-nav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    box-shadow: rgb(0, 0, 0) 0px 2px 10px;
    animation: 0.3s ease 0s 1 normal none running slideDown;
    box-sizing: border-box;
}

.swiper-button-next.nav-btn, .swiper-button-prev.nav-btn {
    display: block !important;
}

.swiper-button-next.nav-btn:hover, .swiper-button-prev.nav-btn:hover {
    background: transparent !important;
}

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

.swiper-button-prev {
    left: -11px !important;
    width: 0px !important;
}

.swiper-button-next {
    right: 4px !important;
    width: 0px !important;
}

@media (min-width: 769px) {
    .swiper-button-prev::after, .swiper-button-next::after {
        font-size: 45px !important;
    }

    .swiper-button-prev {
        left: 10px !important;
        width: 50px !important;
    }

    .swiper-button-next {
        right: 10px !important;
        width: 50px !important;
    }
}

@media (min-width: 769px) and (max-width: 1124.9px) {
    html {
        scroll-padding-top: 120px;
    }
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
}

.badge-holder {
    background: #1e1e2a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(60% - 10px);
    max-width: 210px;
    border-radius: 2px;
    padding: 5px 5px 30px;
    position: relative;
    bottom: 50px;
    margin: 20px 10px;
    box-shadow: rgba(0, 0, 0, 0.29) 0px 14px 15px 0px;
    text-shadow: rgba(0, 0, 0, 0.04) 0px 15px 15px;
}

p.badge-content {
    color: #fff;
    text-align: center;
    line-height: 1.2;
    text-transform: capitalize;
    font-size: 18px;
    min-height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: none;
}

.badge-holder img {
    width: 70%;
}

.badge-title {
    background: #e01e2b;
    font-size: 15px;
    width: 85%;
    text-align: center;
    line-height: 1.2;
    padding: 5px;
    position: absolute;
    bottom: -25px;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 15px 15px 0px;
    text-shadow: rgba(0, 0, 0, 0.38) 0px 15px 15px;
    color: rgb(255, 255, 255);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-title span {
    font-weight: 700;
    font-size: 18px;
}


.button-1 {
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #fff !important;
    padding: 16px 26px;
    padding-left: 65px;
    font-weight: 600;
    border-radius: 3px;
    overflow: hidden;
    text-transform: uppercase;
    background: #e01e2b;
    text-decoration: none;
}

.button-1:before {
    position: absolute;
    left: 0;
    top: -5px;
    height: 66px;
    width: 48px;
    content: "";
    background-color: #000;
    transition: .5s;
    opacity: .1;
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px
}

.button-1:after {
    font-family: 'FontAwesome';
    content: "\f095";
    position: absolute;
    left: 16px;
    top: 14px;
    line-height: 25px;
    font-size: 17px;
    color: #fff
}

.button-1:after {
    content: "\f095"
}

.button-1:hover:before {
    width: 100%;
    border-radius: 0
}

.contact-section .button-1 {
    color: #fff !important;
}

.srvSection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-image: url(/img/background-contact-form.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
}

.srvSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 83%);
    z-index: 1;
}

@media (max-width: 1124.9px) and (min-width: 769px) {
    html {
        scroll-padding-top: 200px;
      }
}

@media (max-width: 599.9px) {
    header {
        height: 140vh;
        max-height: 860px;
        min-height: 860px;
    }
}