body {
    color: rgb(245, 245, 245);
    background: rgb(16, 16, 15);
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 500;
}

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

a {
    text-decoration: none;
}

p, li {
    color: rgb(229, 229, 229);
}

h1, h2, h3, h4 {
    font-family: "Exo 2", serif;
    font-weight: 600;
    font-style: normal;
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0px;
    color: rgb(19, 108, 180);
}

h3 {
    font-size: 22px;
}

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

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }
}

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

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }
}

* {
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: auto;
}

.hamburger {
    display: flex;
    width: 14%;
    z-index: 999;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    transition: transform 0.5s ease-in-out 0s;
}

.hamburger:active {
    transform: skew(20deg, 20deg);
}

.hamburger img {
    width: 40px;
    height: auto;
    filter: drop-shadow(rgb(0, 0, 0) 0px 0px 1px);
}

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

nav {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease 0s;
    background: rgb(13, 70, 123);
    padding: 10px 0px;
}

nav.scrolled {
    box-shadow: rgb(0, 0, 0) 0px 0px 5px;
    position: fixed;
    background: rgb(19, 108, 180);
    top: 0px;
    margin: 0px;
    z-index: 999999;
    animation: 0.3s ease 0s 1 normal none running slideDown;
}

nav.scrolled .navigation {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

nav.scrolled .brand {
    position: relative;
    top: 0px;
    clip-path: none;
    background: transparent;
    width: 85%;
    max-width: none;
    padding: 0px;
}

nav.scrolled .brand a {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

nav.scrolled .brand img {
    width: 250px;
}

nav.scrolled .brand span {
    text-align: left;
    margin-left: 10px;
    margin-top: 0px;
}

nav.scrolled .brand-decoration {
    display: none;
}

nav > div {
    width: 90%;
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: center;
    height: auto;
    max-width: 1280px;
}

.navigation {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    place-content: center flex-end;
    align-items: center;
    position: relative;
}

nav .menu {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    background: rgb(13, 70, 123);
    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: 500;
    color: rgb(255, 255, 255);
}

.nav-btn-1 {
    margin-bottom: 20px !important;
}

.nav-btn-2 .button {
    outline: rgb(45, 45, 45) solid 3px;
    background: rgb(45, 45, 45);
}

.nav-btn-2 .button::before {
    background: radial-gradient(circle at center bottom, rgb(19, 108, 180) 10%, rgb(45, 45, 45) 70%);
}

.brand-decoration {
    background: rgb(0 0 0 / 88%);
    width: 79%;
    z-index: 1;
    position: absolute;
    top: -10px;
    left: -7px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 0% 100%);
    height: 165px;
    max-width: 250px;
    transition: all 0.5s ease 0s;
    opacity: 0;
}

.brand {
    width: 75%;
    text-wrap: wrap;
    z-index: 2;
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute;
    background: rgb(19, 108, 180);
    top: -10px;
    left: 0px;
    padding: 10px 10px 45px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 0% 100%);
    max-width: 235px;
    opacity: 0;
}

.brand a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    top: 0px;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.brand span {
    font-size: 25px;
    font-family: "Exo 2", serif;
    font-weight: 800;
    font-style: normal;
    position: relative;
    color: rgb(255, 255, 255);
    margin-top: 5px;
    text-align: center;
    text-shadow: rgb(0, 0, 0) 0px 0px 2px;
}

@keyframes fadeInBrand {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) rotate(0deg);
    }
}

.brand img {
    width: 100%;
    height: auto;
    align-self: center;
    position: relative;
}

.button {
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 2px 2px;
    outline: rgb(13, 70, 123) solid 3px;
    border: 0px;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
    background: rgb(13, 70, 123);
    transition: transform 0.5s ease-in-out 0s, box-shadow 1s ease-in-out 0s;
    filter: drop-shadow(rgb(0, 0, 0) 0px 0px 6px);
    color: rgb(255, 255, 255) !important;
    text-decoration: none !important;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: radial-gradient(circle at center bottom, rgb(19, 108, 180) 10%, rgb(13, 70, 123) 70%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out 0s;
    z-index: 0;
}

.button:hover::before {
    opacity: 1;
}

.button span {
    position: relative;
    z-index: 1;
}

.button-1 {
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: rgb(245, 245, 245) 0px 0px 2px 2px;
    outline: rgb(245, 245, 245) solid 3px;
    border: 0px;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
    background: rgb(255, 255, 255);
    transition: transform 0.5s ease-in-out 0s, box-shadow 1s ease-in-out 0s;
    margin-left: 15px;
    color: rgb(0, 0, 0) !important;
    text-decoration: none !important;
}

.button-1::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: radial-gradient(circle at center bottom, rgb(19, 108, 180) 5%, rgb(255, 255, 255) 50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out 0s;
    z-index: 0;
}

.button-1:hover {
    cursor: pointer;
}

.button-1:hover::before {
    opacity: 1;
}

.button-1 span {
    position: relative;
    z-index: 1;
    text-shadow: none;
}

.slider-section {
    position: relative;
    width: 100%;
    /* height: calc(408px + 100vh); */
    height: auto;
    align-items: center;
    display: flex;
    z-index: 0;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    /* max-height: 550px; */
}

.slider-section::before {
    content: "";
    width: 100%;
    height: 102%;
    position: absolute;
    background: linear-gradient(rgba(0, 0, 0, 0.47) 0%, rgb(16, 16, 15) 100%);
    z-index: 2;
    bottom: -1px;
}

.slider-decoration-1 {
    position: absolute;
    background: rgb(45, 45, 45);
    width: 70%;
    height: 200px;
    z-index: 4;
    top: -40px;
    left: 0px;
    clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
}

.slider-decoration-2 {
    position: absolute;
    background: rgb(16, 16, 15);
    width: 97%;
    height: 60.5px;
    z-index: 5;
    top: 0px;
    left: 0px;
    clip-path: polygon(0% 0%, 100% 0%, 72% 100%, 72% 100%);
}

.slider-section > img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.slider {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 90%;
    position: relative;
    max-width: 1280px;
    justify-content: center;
    z-index: 3;
    margin-top: 170px;
    height: 100%;
}

.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    height: 100%;
    width: 100%;
}

.slider-text {
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-text h1 {
    margin: 0px;
    position: relative;
    font-weight: 900;
    color: rgb(255, 255, 255);
    letter-spacing: 2px;
}

.slider-text a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

.slider-text p {
    margin: 5px 0px 10px;
    position: relative;
}

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

.headers-buttons > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.scroll-down {
    position: absolute;
    margin: 20px;
    z-index: 5;
    left: calc(50% - 30px);
    bottom: -26px;
}

.scroll-down img {
    height: 80px;
    transform: rotate(0deg);
    animation: 1.5s ease 0s infinite normal none running scroll-down-btn;
}

@-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;
    }
}

.badges-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.badges-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 90%;
    max-width: 1280px;
    margin: 30px 0px;
}

.badges-container {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.badge-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    max-width: 230px;
    position: relative;
    height: 100%;
    min-height: 250px;
    margin: 20px 10px;
    opacity: 0;
}

@keyframes zoomInBadge {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.badge-bg {
    position: absolute;
    width: 270px;
    height: 270px;
    margin: 10px;
    z-index: 1;
    object-fit: contain;
    object-position: center center;
}

.badge-holder > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    z-index: 2;
    margin-top: -15px;
}

.badge-icon {
    width: auto;
    height: 90px;
}

.badge-content {
    color: rgb(255, 255, 255);
    margin: 10px 0px 5px;
    font-size: 18px;
    text-align: center;
}

.badge-title {
    color: rgb(255, 255, 255);
    margin: 5px 0px 10px;
    font-size: 18px;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 10;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    max-width: 1280px;
    position: relative;
    margin: 20px 0px 0px;
}

.about-images {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    opacity: 0;
}

.about-image-1 {
    object-fit: cover;
    object-position: center 40%;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-image-2 {
    object-fit: cover;
    object-position: center center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.about-main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.about-main-content h2 {
    position: relative;
    text-align: center;
    opacity: 0;
}

@keyframes slideInTitle {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.about-main-content p {
    position: relative;
    text-align: justify;
}

.about-area-served-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    max-width: 1280px;
    position: relative;
}

.area-served-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.area-served {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: 0px;
    list-style: none;
    padding: 0px;
}

.area-served li {
    width: 50%;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: row;
}

.area-served li::before {
    content: "";
    margin-right: 10px;
    background: url("/img/icons/mover-icon.webp") center center / contain no-repeat;
    width: 20px;
    height: auto;
}

.area-served-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    max-width: 500px;
    opacity: 0;
}

.area-served-image img {
    object-fit: contain;
    object-position: center center;
    width: 100%;
    height: 100%;
    filter: drop-shadow(black 2px 4px 6px);
    margin-left: 10px;
}

.features-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    clip-path: polygon(0% 0%, 100% 6%, 100% 100%, 0% 100%);
    margin-top: -50px;
    z-index: 8;
}

.features-section::before {
    content: "";
    background: rgba(9, 43, 77, 0.83);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.features-section > img {
    position: absolute;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.features-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 90%;
    max-width: 1280px;
    z-index: 3;
    margin: 65px 0px 60px;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px, rgb(0, 0, 0) 0px 0px 5px;
}

.features-content h2 {
    color: rgb(255, 255, 255);
    opacity: 0;
    width: 100%;
    text-align: left;
}

.features-content ul {
    text-align: justify;
    color: rgb(255, 255, 255);
    list-style: none;
    padding: 0px;
    margin-bottom: 20px;
}

.features-content ul li {
    margin: 15px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.features-content ul li::before {
    content: "";
    margin-right: 10px;
    background: url("/img/icons/mover-icon.webp") center center / contain no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0px;
    left: 0px;
    filter: drop-shadow(rgb(0, 0, 0) 0px 0px 3px);
}

.features-content ul li strong {
    position: relative;
    margin-left: 25px;
    font-size: 18px;
}

.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0px 30px;
    position: relative;
    z-index: 9;
    clip-path: polygon(0% 0%, 100% 1%, 100% 100%, 0% 100%);
    margin-top: -50px;
    background: rgb(16, 16, 15);
}

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

.srvBlockTitle p {
    line-height: 1.2;
    font-weight: bold;
    font-family: Heebo, sans-serif;
    color: rgb(0, 0, 0);
    display: inline-block;
    font-size: 26px;
}

.srvBlockTitle {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.srvBlockTitle h2 {
    text-align: center;
    position: relative;
    text-transform: capitalize;
}
.srvBlock {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: wrap;
    position: relative;
    height: 100%;
}

.srvElement {
    margin: 50px auto 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 15px 15px 0px;
    align-items: center;
}

.srvElementHeader h2 {
    text-align: left;
    color: rgb(255, 255, 255);
    font-family: Heebo, sans-serif;
    padding: 5px;
    line-height: 1.2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 24px;
    margin: 0px;
    width: 100%;
    text-shadow: rgb(13, 70, 123) 0px 0px 5px;
}

.srvElementImg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.srvElementImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    position: relative;
}

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

.srvElementBody {
    position: relative;
    width: 100%;
    left: 0px;
    margin-top: -95px;
    height: 100%;
    z-index: 2;
    background: linear-gradient(transparent 25%, rgb(45, 45, 45) 33%);
    border-left: 5px solid rgb(16, 16, 15);
    transition: all 0.5s ease 0s;
}

.srvElement:hover .srvElementBody {
    border-left: 5px solid rgb(255, 255, 255);
}

.srvElementHeader {
    border-left: 5px solid rgb(255, 255, 255);
    position: relative;
    bottom: 1px;
    padding: 53px 5px 5px;
    z-index: 2;
    background: rgb(19, 108, 180);
    clip-path: polygon(0% 0%, 100% 50%, 100% 100%, 0% 100%);
    margin-left: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}

.srvFooter {
    background: rgb(19, 108, 180);
    width: calc(100% - 5px);
    height: 60px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 40%);
    position: relative;
    z-index: 4;
    margin-right: -5px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 20px 5px;
}

.srvFooter p {
    font-size: 22px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
    margin: 0px 0px 25px 25px;
}

.arrow-1 {
    width: 10px;
    height: 10px;
    position: relative;
    margin: 0px 0px 25px;
    border-top: 3px solid rgb(255, 255, 255);
    border-right: 3px solid rgb(255, 255, 255);
    transform: rotate(45deg);
    border-top-right-radius: 3px;
    animation: 1.5s ease-in-out 0s infinite normal none running moveArrows;
}

.arrow-2 {
    width: 10px;
    height: 10px;
    position: relative;
    margin: 0px 0px 25px;
    border-top: 3px solid rgb(255, 255, 255);
    border-right: 3px solid rgb(255, 255, 255);
    transform: rotate(45deg);
    border-top-right-radius: 3px;
    animation: 1.5s ease-in-out 0.3s infinite normal none running moveArrows;
}

.arrow-3 {
    width: 10px;
    height: 10px;
    position: relative;
    margin: 0px 7px 25px 0px;
    border-top: 3px solid rgb(255, 255, 255);
    border-right: 3px solid rgb(255, 255, 255);
    transform: rotate(45deg);
    border-top-right-radius: 3px;
    animation: 1.5s ease-in-out 0.6s infinite normal none running moveArrows;
}

@keyframes moveArrows {
    0% {
        transform: translateX(0px) rotate(45deg);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        transform: translateX(20px) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: translateX(30px) rotate(45deg);
        opacity: 0;
    }
}

.srvFooter a {
    color: rgb(255, 255, 255);
    text-shadow: rgb(13, 70, 123) 0px 0px 5px;
}

.srvFooterDecoration {
    background: rgb(255, 255, 255);
    width: calc(100% - 30px);
    height: 70px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 40%);
    position: absolute;
    bottom: -10px;
    z-index: 3;
    left: 15px;
}

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

.gallery-section > div {
    width: 90%;
    max-width: 1280px;
    padding: 20px 0px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-section h2 {
    text-align: center;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
    margin-bottom: 20px;
    color: rgb(19, 108, 180);
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
}

.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.4;
}

.GallerySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.GallerySwiper .swiper-slide img, .GallerySwiper2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 600px;
    max-height: 400px;
    border-radius: 5px;
}

.GallerySwiper .swiper-slide img {
    max-height: 160px;
}

.GallerySwiper2 .swiper-button-next {
    right: auto;
    left: calc(50% + 10px);
    top: 34px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    padding: 0px;
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
}

.GallerySwiper2 .swiper-button-prev {
    left: calc(50% - 50px);
    top: calc(100% - 35px);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    padding: 0px;
    width: 40px !important;
    height: 40px !important;
}

.GallerySwiper2 .swiper-button-prev::after, .GallerySwiper2 .swiper-button-next::after {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 20px !important;
}

.GallerySwiper2 .swiper-button-next.swiper-button-disabled, .GallerySwiper2 .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.testimonials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: rgb(45, 45, 45);
    clip-path: polygon(0% 0%, 100% 10%, 100% 90%, 0% 100%);
    z-index: 6;
}

.testimonials-section::before {
    display: none;
}

.testimonials-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    padding: 70px 0px 20px;
    position: relative;
}

.testi-content.swiper-wrapper {
    align-items: center;
}

#testimonials-content {
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 2;
    align-items: center;
}

.testimonial {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 35px;
}

.testimonial h2 {
    text-align: center;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
    width: 100%;
    opacity: 0;
}

.testimonial .image {
    height: auto;
    width: 200px;
    position: relative;
    object-fit: cover;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.51) -2px 2px 5px 0px, rgba(0, 0, 0, 0.51) 3px 2px 5px 0px;
    border-radius: 8px;
    margin-bottom: 10px;
}

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

.testimonial-content {
    padding: 20px 15px;
    position: relative;
    z-index: 0;
    height: auto;
    border-radius: 40px;
    width: 97%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}

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

.testimonial-text {
    border-radius: 5px;
    position: relative;
    margin: 10px 0px;
}

.testimonial-text::before {
    content: "❝";
    position: absolute;
    color: rgb(13, 70, 123);
    font-size: 170px;
    left: -20px;
    top: -90px;
}

.slide p {
    font-size: 16px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-align: justify;
    margin: 0px;
    position: relative;
    padding: 0px;
    text-shadow: rgb(0, 0, 0) 0px 0px 5px;
}

.slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
}

.details .name {
    font-size: 20px;
    font-weight: 700;
    color: rgb(19, 108, 180);
    margin-bottom: 10px;
}

.slide .details img {
    width: 130px;
    margin-left: 10px;
    filter: drop-shadow(rgb(0, 0, 0) 1px 2px 4px);
}

.testimonials-swiper-navigation {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.testimonial .swiper-button-next {
    left: 0px;
    margin-left: 5px;
    right: 0px !important;
    top: 0px !important;
    position: relative !important;
}

.testimonial .swiper-button-prev {
    margin-right: 5px;
    left: 0px !important;
    top: 0px !important;
    right: 0px !important;
}

.testimonial .swiper-button-prev, .swiper-button-next {
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    padding: 0px;
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
}

.testimonial .swiper-button-prev::after, .swiper-button-next::after {
    color: rgb(255, 255, 255);
    filter: drop-shadow(rgb(0, 0, 0) 1px 2px 4px);
    font-size: 30px !important;
}

.testimonial .nav-btn {
    transform: translateY(30px);
    transition: all 0.2s ease 0s;
}

.testimonial .nav-btn::after, .nav-btn::before {
    position: relative;
    font-size: 20px !important;
}

.contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    flex-direction: column;
    background: rgb(16, 16, 15);
    clip-path: polygon(0% 10%, 100% 0%, 100% 100%, 0% 90%);
    z-index: 7;
}

.decoration-element-blue, .decoration-element-white {
    display: none;
}

.contact-form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    flex-direction: column;
    height: 100%;
    margin: 19px 0px 80px;
}

.contact-form-section > img {
    position: absolute;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.email-form > div > p {
    width: 59%;
    font-size: 20px;
    margin: 0px;
    text-transform: capitalize;
    font-weight: 500;
}

.email-form > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 43%;
    align-self: flex-end;
    position: relative;
}

.contact-form-title-decoration {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 100%;
    top: -2px;
    height: 92px;
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 100%);
    max-width: 500px;
}

.contact-form-title {
    background: rgb(19, 108, 180);
    width: calc(100% - 5px);
    padding: 20px 10px;
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 100%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 90px;
    margin-right: -5px;
}

.contact-form-title h2 {
    text-align: center;
    margin: 20px 0px 0px;
    color: rgb(255, 255, 255);
    text-shadow: rgb(13, 70, 123) 0px 0px 5px;
}

.contact-form {
    z-index: 2;
    position: relative;
    width: 100%;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 0px;
    background: rgb(45, 45, 45);
}

.email-form h3 {
    text-align: center;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: rgb(0, 0, 0) 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;
}

.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form textarea {
    width: 100%;
    padding: 20px 10px 10px;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.41);
    position: relative;
}

.contact-form input:focus, .contact-form input:not(:placeholder-shown), .contact-form textarea:focus, .contact-form textarea:not(:placeholder-shown) {
    outline: 0px;
    background: transparent;
    color: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.41);
}

.contact-form textarea {
    resize: none;
}

.contact-form .form-row label {
    color: rgb(255, 255, 255);
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    padding: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.contact-form .form-row label img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.contact-form .form-row-textarea label {
    color: rgb(255, 255, 255);
    position: absolute;
    pointer-events: none;
    right: 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: rgb(255, 255, 255);
    padding: 2px 5px;
    background: rgb(45, 45, 45);
    font-size: 14px;
    box-shadow: rgba(0, 0, 0, 0.51) 0px 0px 5px 0px, rgba(0, 0, 0, 0.51) 0px 0px 5px 0px;
    border: 1px solid rgba(255, 255, 255, 0.41);
    width: fit-content;
}

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

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    position: relative;
    z-index: 6;
    margin-top: 1px;
    clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
}

footer::after {
    display: none;
}

footer::before {
    content: "";
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(9, 43, 77, 0.83);
    position: absolute;
}

footer > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.contact-section {
    z-index: 3;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    margin-top: 80px;
}

.contact-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    max-width: 350px;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin: 10px 0px;
}

.contact-content h2 {
    text-align: center;
    color: rgb(255, 255, 255);
}

.contact-content h2 a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

.footer-content {
    display: flex;
    width: 90%;
    max-width: 1280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    font-weight: 600;
    padding-bottom: 15px;
    z-index: 3;
}

.footer-content img {
    width: 100%;
}

.footer-content p {
    text-align: center;
}

#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;
}

.button-2 {
    font-size: 16px;
    border-top: 1px solid rgb(0, 0, 0);
    border-right: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    border-image: initial;
    border-left: none;
    border-radius: 0px 5px 5px 0px;
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    background: rgb(13, 70, 123);
    transition: all 0.5s ease 0s;
    color: rgb(255, 255, 255) !important;
    text-shadow: none !important;
    font-weight: 500 !important;
}

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

    .features-section {
        clip-path: polygon(0% 0%, 100% 8%, 100% 100%, 0% 100%);
        margin-top: -67px;
    }

    .features-section > div {
        margin-top: 70px;
    }

    .srvElement {
        max-width: 400px;
    }

    .testimonial h2 {
        margin-block: 20px; text-align: left;
    }

    .testimonial-content {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .testimonial-content > div {
        width: 53%;
        align-items: flex-start;
    }

    .slide .details {
        align-items: flex-start;
    }

    .slide .details img {
        margin: 0px;
    }

    .testimonial .image {
        width: 44%;
        align-items: stretch;
        display: flex;
        justify-content: center;
        margin: 0px;
        height: 300px;
    }

    .GallerySwiper .swiper-slide img {
        min-height: 160px;
    }
}

@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999999;
        cursor: pointer;
        bottom: 10px;
        background-color: rgb(129, 215, 66);
        color: rgb(255, 255, 255);
        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;
        border-radius: 5px;
    }

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

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

    nav {
        align-items: center;
    }

    nav > div {
        justify-content: center;
        flex-direction: column;
        position: relative;
        align-items: flex-end;
    }

    nav .menu {
        height: auto;
        flex-flow: wrap;
        justify-content: center;
        left: 0px;
        position: relative;
        width: calc(100% - 235px);
        align-items: center;
        padding: 0px;
        margin: 5px 0px;
        background: transparent;
        transform: none;
        top: 0px;
    }

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

    .nav-btn-1, .nav-btn-2 {
        width: auto !important;
    }

    .brand {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }

    .brand a {
        justify-content: center;
    }

    nav.scrolled .menu {
        width: 100%;
    }

    nav.scrolled .menu li {
        width: auto;
    }

    nav.scrolled .menu li a {
        text-shadow: rgb(0, 0, 0) 0px 0px 3px;
    }

    nav.scrolled .navigation {
        width: 100%;
        justify-content: center;
    }

    nav.scrolled .brand {
        width: 100%;
    }

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

    .slider-content {
        flex-direction: row;
        display: flex;
        align-items: flex-start;
    }

    .about-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        height: 100%;
    }

    .about-images {
        width: 39%;
        height: 100%;
    }

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

    .about-main-content h2 {
        text-align: left;
    }

    @keyframes slideInTitle {
        0% {
            opacity: 0;
            transform: translateX(-100px);
        }

        100% {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .about-area-served-image {
        flex-direction: row;
        justify-content: space-between;
        margin-top: -60px;
    }

    .area-served-section {
        width: 39%;
        align-items: flex-start;
        margin-top: -100px;
    }

    .area-served-image {
        width: 59%;
    }

    .features-section {
        clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
        margin-top: -150px;
    }

    .features-section > div {
        margin-bottom: 85px;
    }

    .features-content {
        align-items: flex-start;
    }

    .features-content h2 {
        width: 44%;
    }

    .services-section {
        clip-path: polygon(0% 0%, 100% 3%, 100% 100%, 0% 100%);
        margin-top: -65px;
    }

    .srvBlock {
        justify-content: space-around;
    }

    .srvElement {
        width: 32%;
        display: flex;
        flex-direction: column;
        margin: 50px 0px 0px;
    }

    .testimonials-section {
        clip-path: polygon(0% 0%, 100% 25%, 100% 100%, 0% 100%);
        overflow: hidden;
        padding-top: 135px;
    }

    .testimonials-section::before {
        content: "";
        display: block;
        background: rgb(16, 16, 15);
        width: 110%;
        height: 50%;
        position: absolute;
        top: 90%;
        z-index: 10;
        transform: rotate(172deg);
    }

    .testimonials-section > div {
        align-items: flex-start;
        padding: 130px 0px;
    }

    .testimonials-swiper-navigation {
        justify-content: flex-end;
    }

    .contact-form-section {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        background: transparent;
        margin-top: -200px;
    }

    .decoration-element-white {
        display: block;
        background: rgb(255, 255, 255);
        position: absolute;
        width: 25.5%;
        height: 304px;
        left: 0px;
        bottom: 258px;
        clip-path: polygon(0% 0%, 100% 30%, 100% 70%, 0% 100%);
        z-index: 10;
        opacity: 0;
    }

    .decoration-element-blue {
        background: rgb(19, 108, 180);
        position: absolute;
        width: 25%;
        height: 300px;
        left: 0px;
        bottom: 260px;
        clip-path: polygon(0% 0%, 100% 30%, 100% 70%, 0% 100%);
        z-index: 11;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        padding-right: 20px;
        opacity: 0;
    }

    @keyframes slideInDecoration {
        0% {
            opacity: 0;
            transform: translateY(-100px);
        }

        100% {
            opacity: 1;
            transform: translateY(0px);
        }
    }

    .decoration-element-blue > div {
        margin: 0px;
        width: 15px;
        height: 15px;
    }

    .decoration-element-blue p {
        font-size: 27px;
        text-transform: uppercase;
        margin: 0px 0px 0px 35px;
        text-decoration: underline;
        text-shadow: rgb(13, 70, 123) 0px 0px 5px;
    }

    .decoration-element-blue p a {
        color: rgb(255, 255, 255);
    }

    .contact-form-content {
        flex-direction: row;
        justify-content: flex-end;
        z-index: 9;
        height: auto;
        margin: -125px 0 0;
    }

    .email-form {
        max-width: 450px;
    }

    .contact-form-title-decoration {
        max-width: 450px;
    }

    footer {
        margin-top: -23px;
        overflow: hidden;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    footer::after {
        content: "";
        display: block;
        background: rgb(16, 16, 15);
        width: 110%;
        bottom: 85%;
        height: 85%;
        position: absolute;
        z-index: 3;
        transform: rotate(189deg);
    }

    .contact-image {
        justify-content: flex-start;
    }

    .contact-content {
        justify-content: flex-start;
    }

    .contact-content h2 {
        text-align: left;
    }
    .gallery-section h2 {
        opacity: 0;
    }
    .srvBlockTitle h2 {
        opacity: 0;
    }

    @keyframes slideInTitle1 {
        0% {
            opacity: 0;
            transform: translateY(-100px);
        }

        100% {
            opacity: 1;
            transform: translateY(0px);
        }
    }
}

@media (min-width: 1422px) {
    nav.scrolled > div {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    nav.scrolled .navigation {
        width: 35%;
        justify-content: flex-start;
    }

    nav.scrolled .brand {
        justify-content: flex-start;
    }

    nav.scrolled .brand a {
        justify-content: flex-start;
    }

    nav.scrolled .menu {
        width: 64%;
        justify-content: flex-end;
    }
}
