body {
    color: #F5F5F5;
    background: #10100f;
    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: 100px;
    scroll-behavior: smooth;
}
@media (min-width: 981px) {
    html {
        scroll-padding-top: 150px;
   }
}
@media (min-width: 1422px) {
    html {
        scroll-padding-top: 120px;
   }
}
a {
    text-decoration: none;
    cursor: pointer;
}
a[href^="tel:"] {
  white-space: nowrap;
}
p, li {
    color: #e5e5e5;
}
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: #0d76d2;
}
h3 {
    font-size: 22px;
}
@media (min-width: 600px) {
    h1 {
        font-size: 35px;
   }
    h2 {
        font-size: 30px;
   }
    h3 {
        font-size: 24px;
   }
}
@media (min-width: 992px) {
    h1 {
        font-size: 35px;
   }
    h2 {
        font-size: 36px;
   }
    h3 {
        font-size: 28px;
   }
}
* {
    box-sizing: border-box;
}
/*NAVIATION SECTION*/
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(0 0 1px #000);
}
.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: #0d467b;
    padding: 20px 0;
}
nav.scrolled {
    box-shadow: rgb(0, 0, 0) 0px 0px 5px;
    position: fixed;
    background: #0d76d2;
    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: 0;
    padding: 10px;
    clip-path: none;
    background: transparent;
    width: 85%;
    max-width: none;
    padding: 0;
}
nav.scrolled .brand a {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
nav.scrolled .brand img {
    width: 85px;
}
nav.scrolled .brand span {
    text-align: left;
    margin-left: 10px;
    margin-top: 0;
}
nav.scrolled .brand-decoration {
    display: none;
}
nav > div {
    width: 90%;
    display: flex;
    flex-flow: wrap;
    place-content: center space-between;
    align-items: center;
    height: auto;
    max-width: 1280px;
    justify-content: center;
}
.navigation {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    place-content: center space-between;
    align-items: center;
    position: relative;
    justify-content: flex-end;
}
nav .menu {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    background: #0d467b;
    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-2 .button {
    background: #0d76d2;
    outline: 3px solid #0d76d2;
}

nav.scrolled .nav-btn-2 .button {
    background: #0d467b;
    outline: 3px solid #0d467b;
}

.nav-btn-2 .button::before {
    background: radial-gradient(circle at bottom, #ffffff2e 10%, #0d76d2 70%);
}

nav.scrolled .nav-btn-2 .button::before {
    background: radial-gradient(circle at bottom, #0d76d2 10%, #0d467b 70%);
}

.brand-decoration {
    background: #00000082;
    width: 67%;
    z-index: 1;
    position: absolute;
    top: -23px;
    left: -7px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
    height: 225px;
    max-width: 195px;
    transition: all 0.5s;
    opacity: 0;
}
.brand {
    width: 65%;
    text-wrap: wrap;
    z-index: 2;
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute;
    background: #0d76d2;
    top: -20px;
    left: 0;
    padding: 10px 10px 45px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
    max-width: 180px;
    opacity: 0;
}
.brand a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    top: 0;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.brand span {
    font-size: 21px;
    font-family: "Exo 2", serif;
    font-weight: 800;
    font-style: normal;
    position: relative;
    color: #fff;
    margin-top: 5px;
    text-align: center;
    text-shadow: 0 0 2px #000;
}
@keyframes fadeInBrand {
    from {
        opacity: 0;
        transform: translateY(-100px) rotate(0deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}
.brand img {
    width: 80px;
    height: auto;
    align-self: center;
    position: relative;
}
.button {
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff !important;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
    outline: 3px solid #0d467b;
    border: 0;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
    background: #0d467b;
    transition: transform 0.5s ease-in-out, box-shadow 1s ease-in-out;
    text-decoration: none !important;
}
.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom, #0d76d2 10%, #0d467b 70%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}
.button:hover::before {
    opacity: 1;
}
.button span {
    position: relative;
    z-index: 1;
}
.button-1 {
    padding: 10px 15px;
    border-radius: 5px;
    color: #000 !important;
    box-shadow: 0 0 2px 2px #F5F5F5;
    outline: 3px solid #F5F5F5;
    border: 0;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: transform 0.5s ease-in-out, box-shadow 1s ease-in-out;
    margin-left: 15px;
    text-decoration: none !important;
}
.button-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom, #0d76d2 5%, #fff 70%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    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;
}

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

/*SLIDER SECTION*/
.slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px);
    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(to bottom, #00000078 0%, #10100f 100%);
    z-index: 2;
    bottom: -1px;
}
.slider-decoration-1 {
    position: absolute;
    background: #2d2d2d;
    width: 70%;
    height: 200px;
    z-index: 4;
    top: -40px;
    left: 0;
    clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%);
}
.slider-decoration-2 {
    position: absolute;
    background: #10100f;
    width: 97%;
    height: 60.5px;
    z-index: 5;
    top: 0;
    left: 0;
    clip-path: polygon(0% 0%, 100% 0%, 72% 100%, 72% 100%);
}
.slider-section > picture {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.slider-section > picture img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
}
.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: #fff;
    letter-spacing: 2px;
}
.slider-text p a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}
.slider-text p a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #0d76d2;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.slider-text p a:hover {
    color: #0d76d2;
}
.slider-text p a:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.slider-text p {
    margin: 15px 0px 20px;
    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: 0;
}
.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*/
.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 0;
}
.badges-section > div > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.badges-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-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: 10px;
    opacity: 0;
}
@keyframes zoomInBadge {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.badge-bg {
    position: absolute;
    width: 250px;
    height: 250px;
    margin: 10px;
    z-index: 1;
    object-fit: contain;
    object-position: center;
}
.badge-holder > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    z-index: 2;
}
.badge-icon {
    width: auto;
    height: 90px;
}
.badge-content{
    color: #fff;
    margin: 10px 0 5px;
    font-size: 18px;
}
.badge-title {
    color: #fff;
    margin: 5px 0 10px;
    font-size: 18px;
}
/*ABOUT SECTION*/
.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: 30px 0 0;
}
.about-images {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    aspect-ratio: 1;
    max-width: 500px;
    opacity: 0;
}
.about-image-1 {
    object-fit: cover;
    object-position: center;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.about-image-2 {
    object-fit: cover;
    object-position: 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 {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.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;
    width: 100%;
}
.area-served li {
    width: 100%;
    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);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: auto;
}
.area-served-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    max-width: 500px;
    opacity: 0;
}
.area-served-image img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 4px 6px black);
}
/*FEATURES SECTION*/
.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: #092b4dd4;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.features-section > picture {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.features-section > picture img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
}
.features-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 90%;
    max-width: 1280px;
    z-index: 3;
    margin: 65px 0;
    text-shadow: 0 0 5px #000, 0 0 5px #000;
}
.features-content h2 {
    color: #fff;
    opacity: 0;
}
.features-content ul {
    text-align: justify;
    color: rgb(255, 255, 255);
    margin-bottom: 0px;
    list-style: none;
    padding: 0;
    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);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 0 3px #000);
}
.features-content ul li strong {
    position: relative;
    margin-left: 25px;
    font-size: 18px;
}
/*SERVICES ECTION*/
.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: #10100f;
}
.services-section > div {
    width: 90%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px 0 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;
}
.srvBlock a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}
.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;
    margin-bottom: -20px;
}
@keyframes slideInTitle1 {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.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: center;
    align-items: center;
    font-size: 24px;
    margin: 0px;
    width: 65%;
    text-shadow: 0 0 5px #0d467b;
}
.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;
    background: #2d2d2d;
    border-left: 5px solid #10100f;
    margin-top: -2px;
    transition: all 0.5s;
}
.srvElement:hover .srvElementContent {
    border-left: 5px solid #fff;
}
.srvElementBody {
    position: relative;
    z-index: 0;
    border-radius: 40px;
    width: 100%;
    left: 0px;
    margin-top: -70px;
}
.srvElementHeader {
    border-left: 5px solid #fff;
    position: relative;
    bottom: 1px;
    padding: 5px;
    z-index: 2;
    background: #0d76d2;
    padding-top: 45px;
    clip-path: polygon(0% 0%, 100% 58%, 100% 100%, 0% 100%);
}
.srvFooter {
    background: #0d76d2;
    width: calc(100% - 5px);
    height: 90px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 40%);
    position: relative;
    z-index: 2;
    margin-right: -5px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
}
.srvFooter p {
    font-size: 22px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
    margin: 0 0 25px 25px;
}
.arrow-1 {
    width: 10px;
    height: 10px;
    position: relative;
    margin: 0 0 25px 0;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    border-top-right-radius: 3px;
    animation: moveArrows 1.5s infinite;
    animation-timing-function: ease-in-out;
}
.arrow-2 {
    width: 10px;
    height: 10px;
    position: relative;
    margin: 0 0 25px 0;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    border-top-right-radius: 3px;
    animation: moveArrows 1.5s infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 0.3s;
}
.arrow-3 {
    width: 10px;
    height: 10px;
    position: relative;
    margin: 0 7px 25px 0;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    border-top-right-radius: 3px;
    animation: moveArrows 1.5s infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 0.6s;
}
@keyframes moveArrows {
    0% {
        transform: translateX(0) 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: #fff;
    text-shadow: 0 0 5px #0d467b;
    flex-direction: row;
    width: auto;
}
.srvFooterDecoration {
    background: #fff;
    width: calc(100% - 30px);
    height: 92px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 40%);
    position: absolute;
    bottom: -2px;
    z-index: 1;
    left: 15px;
}
/*GALLERY SECTION*/
.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: #0d76d2;
    text-shadow: 0 0 5px #000;
    opacity: 0;
}
.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;
    cursor: grab;
}
.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;
}
/*TESTIMONIALS SECTION*/
.testimonials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #2d2d2d;
    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 {
    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: '\275D';
    position: absolute;
    color: #0d467b;
    font-size: 170px;
    left: -20px;
    top: -90px;
}
.slide p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: justify;
    margin: 0px;
    position: relative;
    padding: 0px;
    text-shadow: 0 0 5px #000;
}
.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: #ffffff;
    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*/
.contact-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    flex-direction: column;
    background: #10100f;
    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: 90%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
    height: 100%;
    margin: 15px 0 95px;
}
.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;
    opacity: 0;
}
@keyframes slideInEmailForm {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.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: #fff;
    width: 100%;
    top: -2px;
    height: 92px;
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 100%);
    max-width: 500px;
}
.contact-form-title {
    background: #0d76d2;
    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: 0;
    color: #fff;
    margin-top: 20px;
    text-shadow: 0 0 5px #0d467b;
}
.contact-form {
    z-index: 2;
    position: relative;
    width: 100%;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px 0;
    background: #2d2d2d;
}
.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;
    display: flex;
}
/* CAPTCHA */
.captcha-and-submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 30px;
}
.form-row.form-row-captcha {
    margin: 0;
    width: 100%;
}
.checkbox-captcha {
    pointer-events: auto !important;
    display: flex !important;
    align-items: center;
    position: relative !important;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    color: #000;
    box-sizing: border-box;
    accent-color: #0d76d2 !important;
    padding: 8px 12px !important;
    font-size: 14px;
    left: 0 !important;
    transform: unset !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.41);
}
.checkbox-captcha input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}
.contact-form .form-row.submit-btn {
    width: auto;
    margin: 0;
}
.contact-form .form-row.submit-btn .button-1 {
    margin-left: 0;
    padding: 12px 28px;
}
.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 SECTION*/
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    position: relative;
    z-index: 6;
    margin-top: -85px;
}
footer::after {
    display: none;
}
footer::before {
    content: '';
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #092b4dd4;
    position: absolute;
}
footer > picture {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
footer > picture img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
}
/*CONTACT SECTION*/
.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 0;
}
.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 200px;
}
.contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin: 10px 0;
}
.contact-content p {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0px;
}
.contact-content p a {
    color: #fff;
    text-decoration: none;
    position: relative;
}
.contact-content p a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.contact-content p a:hover::after {
    transform: translateX(-50%) scaleX(1);
}
/*FOOTER*/
.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: 1px solid #000;
    border-left: none;
    border-radius: 0 5px 5px 0;
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    background: #0d467b;
    transition: all 0.5s ease 0s;
    color: #fff!important;
    text-shadow: none !important;
    font-weight: 500 !important;
}
/*TABLET STYLE*/
@media (min-width: 600px) {
    /*ABOUT SECTION*/
    .area-served li {
        width: 50%;
   }
    /*FEATURES SECTION*/
    .features-section {
        clip-path: polygon(0% 0%, 100% 8%, 100% 100%, 0% 100%);
        margin-top: -67px;
    }
    .features-section > div {
        margin-top: 70px;
    }
   /*SERVICES ECTION*/
   .srvElement {
        max-width: 400px;
    }
   /*TESTIMONIALS SECTION*/
    .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: 0;
    }
    .testimonial .image {
        width: 44%;
        align-items: stretch;
        display: flex;
        justify-content: center;
        margin: 0px;
        height: 300px;
   }
}
@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;
   }
}
/*DESTOK STYLE*/
@media (min-width: 981px) {
    /*HEADER SECTION*/
    .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-direction: row;
        justify-content: center;
        left: 0px;
        position: relative;
        width: calc(100% - 190px);
        align-items: center;
        padding: 0px;
        margin: 5px 0px;
        background: transparent;
        transform: none;
        top: 0px;
        flex-wrap: wrap;
   }
    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: 0 0 3px #000;
    }
    nav.scrolled .navigation {
        width: 100%;
        justify-content: center;
    }
    nav.scrolled .brand {
        width: 100%;
    }
    nav.scrolled .brand a {
        width: 100%;
        justify-content: center;
    }
    /*ABOUT SECTION*/
    .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 {
        from {
            opacity: 0;
            transform: translateX(-100px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    .about-area-served-image {
        flex-direction: row;
        justify-content: space-between;
    }
    .area-served-section {
        width: 39%;
        align-items: flex-start;
        margin-top: -100px;
    }
    .area-served-image {
        width: 59%;
    }
    /*FEATURES SECTION*/
    .features-section {
        clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
        margin-top: -85px;
    }
    .features-section > div {
        margin-bottom: 90px;
    }
    .features-content {
        align-items: flex-start;
    }
   /*SERVICES SECTION*/
    .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;
    }
    .srvElementHeader h2 {
        width: 100%;
    }
    /*TESTIMONIALS*/
    .testimonials-section {
        clip-path: polygon(0% 0%, 100% 25%, 100% 100%, 0% 100%);
        overflow: hidden;
    }
    .testimonials-section::before {
        content: '';
        display: block;
        background: #10100f;
        width: 110%;
        height: 50%;
        position: absolute;
        top: 90%;
        z-index: 10;
        transform: rotate(172deg);
    }
    .testimonials-section > div {
        align-items: flex-start;
        padding: 130px 0 130px;
    }
    .testimonials-swiper-navigation {
        justify-content: flex-end;
    }
    /*CONTACT FORM SECTION*/
    .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: #fff;
        position: absolute;
        width: 25.5%;
        height: 304px;
        left: 0;
        bottom: 258px;
        clip-path: polygon(0% 0%, 100% 30%, 100% 70%, 0% 100%);
        z-index: 10;
        opacity: 0;
    }
    .decoration-element-blue {
        background: #0d76d2;
        position: absolute;
        width: 25%;
        height: 300px;
        left: 0;
        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 {
        from {
            opacity: 0;
            transform: translateY(-100px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .decoration-element-blue > div {
        margin: 0;
        width: 15px;
        height: 15px;
    }
    .decoration-element-blue p {
        font-size: 27px;
        text-transform: uppercase;
        margin: 0 0 0 35px;
        text-decoration: underline;
        text-shadow: 0 0 5px #0d467b;
    }
    .decoration-element-blue p a {
        color: #fff;
    }
    .contact-form-content {
        flex-direction: row;
        justify-content: flex-end;
        z-index: 9;
        height: auto;
    }
    .email-form {
        max-width: 450px;
    }
    .contact-form-title-decoration {
        max-width: 450px;
    }
    /*FOOTER*/
    footer {
        margin-top: -350px;
        overflow: hidden;
    }
    footer::after {
        content: '';
        display: block;
        background: #10100f;
        width: 110%;
        bottom: 85%;
        height: 85%;
        position: absolute;
        z-index: 3;
        transform: rotate(189deg);
    }
    .contact-section {
        margin-top: 130px;
    }
    .contact-image {
        justify-content: flex-start;
    }
    .contact-content {
        justify-content: flex-start;
    }
    .contact-content h2 {
        text-align: left;
    }
}
@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;
    }
}
