body {
    color: #000;
    background: #fff;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 500;
    overflow-x: hidden;
}
html {
    scroll-padding-top: 33%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
a[href^="tel:"] {
  white-space: nowrap;
}
p, li {
    color: #000;
    text-align: justify;
}
h1, h2, h3, h4 {
    font-family: "Raleway", serif;
    font-weight: 600;
    font-style: normal;
}
h1 {
    font-size: 26px;
}
h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0px;
    color: #292c31;
    text-shadow: 0 0 5px #fff;
    text-align: center;
}
h3 {
    font-size: 22px;
}
@media (min-width: 600px) {
    h1 {
        font-size: 38px;
   }
    h2 {
        font-size: 30px;
   }
    h3 {
        font-size: 24px;
   }
}
@media (min-width: 981px) {
    h1 {
        font-size: 38px;
   }
    h2 {
        font-size: 36px;
        text-align: left;
   }
    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;
    z-index: 99999;
    align-items: center;
    justify-content: flex-end;
    height: 35px;
    width: 35px;
    transition: all 0.2s;
    position: relative;
}
.line {
    transition: 0.5s;
    stroke-width: 6px;
    stroke: #fff;
}
.lineTop {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 25;
}
.lineBottom {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 60;
}
.lineMid {
    stroke-dasharray: 40 40;
}
.hamburger.open .lineTop {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(45deg) translate(-7px, -5px);
}

.hamburger.open .lineMid {
    stroke-dashoffset: 40;
}

.hamburger.open .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(-45deg) translate(-5px, 5px);
}
nav {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 10px 0 0;
}
nav::before {
    content: '';
    background: #292c31;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 41px;
}
nav::after {
    display: none;
}
nav.scrolled {
    position: fixed;
    top: 0px;
    margin: 0px;
    z-index: 999999;
    animation: 0.3s ease 0s 1 normal none running slideDown;
}
.navigation-section {
    width: 90%;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    height: auto;
    max-width: 1280px;
    justify-content: center;
}
.navigation {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    position: relative;
    justify-content: space-between;
    flex-direction: row;
    height: 100%;
    padding-top: 30px;
}
.navigation-decoration-bg-dark {
    position: absolute;
    background: #292c31;
    z-index: 2;
    width: 37%;
    height: 73%;
    right: 0;
    top: 5px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.navigation-decoration-bg-light {
    position: absolute;
    background: #0075ea;
    z-index: 1;
    width: 39%;
    height: 81%;
    right: 0;
    top: 19px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
nav .menu-section {
    flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    background: #292c31;
    position: absolute;
    top: -1rem;
    left: -100%;
    z-index: 0;
    place-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 1s ease-in-out 0s;
    justify-content: center;
}
nav .menu-section.active {
    top: -1rem;
    left: 0px;
    right: 0px;
    padding: 0px;
    z-index: 9999;
    width: 100%;
    transform: translateX(0px);
    overflow: hidden;
}
nav .menu {
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
}
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);
}
.brand-decoration-bg-dark{
    position: absolute;
    background: #292c31;
    width: 75%;
    left: 0;
    top: 7px;
    height: 100%;
    z-index: 2;
    clip-path: polygon(0% 0%, 100% 0%, 81% 100%, 0% 100%);
}
.brand-decoration-bg-light{
    position: absolute;
    background: #0075ea;
    width: 65%;
    left: 0;
    top: 22px;
    height: 103%;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 84% 100%, 0% 100%);
}
.brand {
    width: 85%;
    text-wrap: wrap;
    z-index: 3;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 10px;
}
.brand a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    width: 77%;
}
.brand span {
    font-size: 20px;
    font-family: "Raleway", serif;
    font-weight: 800;
    font-style: normal;
    position: relative;
    color: #fff;
    /* margin-top: 15px; */
    text-align: left;
    text-shadow: 0 0 2px #000;
    margin-left: 10px;
}
.brand img {
    width: 65px;
    height: auto;
    position: relative;
}
.navigation-buttons {
    width: 15%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    align-self: flex-start;
}
.navigation-links {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    align-self: center;
    left: calc(50% - 92px);
    top: 0;
    z-index: 3;
}
.navigation-links .button-call {
    color: #fff;
    font-size: 18px;
}
.navigation-links .button-call span {
    color: #0075ea;
}
.navigation-links .button-booking {
    color: #fff;
    font-size: 18px;
    margin-left: 10px;
}
.navigation-links .button-booking span {
    color: #0075ea;
    text-transform: uppercase;
}
/*SLIDER SECTION*/
.slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    align-items: center;
    display: flex;
    z-index: 3;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
    max-height: 550px;
    /* margin-top: -7%; */
}
.slider-section > img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: 48% center;
    z-index: 1;
}
.slider {
    display: flex;
    flex-direction: column;
    width: 90%;
    position: relative;
    max-width: 1280px;
    z-index: 3;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}
.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -8%;
    margin-right: 12px;
    max-width: 600px;
}
.slider-decoration {
    background: #092062d4;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    bottom: -25px;
    right: -25px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px,100% 100%, 20px 100%, 0 calc(100% - 25px));
    opacity: 0;
}
.slider-text {
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #292c31c2;
    padding: 10px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0;
}
@keyframes diagonalInSlider {
    0% {
        transform: translate(100%, 100%);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}
.slider-text h1 {
    margin: 0px;
    position: relative;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    z-index: 3;
}
.slider-text a {
    color: #fff;
    text-decoration: underline;
}
.slider-text p {
    margin: 10px 0px 5px;
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 20px;
    text-align: center;
}
.headers-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin: 10px 0 5px;
}
.headers-buttons > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.button {
    color: #fff;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    display: inline-grid;
    place-content: center;
    padding: 10px 15px;
    font-size: 17px;
    border: 0;
    text-transform: uppercase;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
    clip-path: polygon(0% 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    transition: color 250ms;
    text-decoration: none !important;
}
.button::after, .button::before {
    content: "";
    position: absolute;
    inset: 0;
}
.button::before {
    background: linear-gradient(-45deg, #092062, #292c31, #0075ea);
    background-size: 300% 300%;
    animation: move-bg-button 5s ease infinite;
    z-index: -2;
}
@keyframes move-bg-button {
    0% {
      background-position: 31% 0%;
    }
  
    50% {
      background-position: 70% 100%;
    }
  
    100% {
      background-position: 31% 0%;
    }
}
.button::after {
    background: #080312;
    z-index: -1;
    clip-path: polygon( 2px calc(10px + 2px * 0.5), calc(10px + 2px * 0.5) 2px, calc(100% - 2px) 2px, calc(100% - 2px) calc(100% - calc(10px + 2px * 0.5)), calc(100% - calc(10px + 2px * 0.5)) calc(100% - 2px), 2px calc(100% - 2px));
    transition: clip-path 500ms;
}
.button:where(:hover, :focus)::after {
    clip-path: polygon( calc(100% - 2px) calc(100% - calc(10px + 2px * 0.5)), calc(100% - 2px) 2px, calc(100% - 2px) 2px, calc(100% - 2px) calc(100% - calc(10px + 2px * 0.5)), calc(100% - calc(10px + 2px * 0.5)) calc(100% - 2px), calc(100% - calc(10px + 2px * 0.5)) calc(100% - 2px));
    transition: 200ms;
}
.button:where(:hover, :focus) {
    color: #fff;
}
.button-1 {
    color: #fff;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    display: inline-grid;
    place-content: center;
    padding: 12px 30px;
    font-size: 17px;
    border: 0;
    text-transform: uppercase;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
    clip-path: polygon(0% 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    transition: color 250ms;
    text-decoration: none !important;
}
.button-1::after, .button-1::before {
    content: "";
    position: absolute;
    inset: 0;
}
.button-1::before {
    background: linear-gradient(-45deg, #092062, #292c31, #0075ea);
    background-size: 300% 300%;
    animation: move-bg-button 5s ease infinite;
    z-index: -2;
}
@keyframes move-bg-button {
    0% {
      background-position: 31% 0%;
    }
  
    50% {
      background-position: 70% 100%;
    }
  
    100% {
      background-position: 31% 0%;
    }
}
.button-1::after {
    background: #080312;
    z-index: -1;
    clip-path: polygon( 2px calc(10px + 2px * 0.5), calc(10px + 2px * 0.5) 2px, calc(100% - 2px) 2px, calc(100% - 2px) calc(100% - calc(10px + 2px * 0.5)), calc(100% - calc(10px + 2px * 0.5)) calc(100% - 2px), 2px calc(100% - 2px));
    transition: clip-path 500ms;
}
.button-1:where(:hover, :focus)::after {
    clip-path: polygon( calc(100% - 2px) calc(100% - calc(10px + 2px * 0.5)), calc(100% - 2px) 2px, calc(100% - 2px) 2px, calc(100% - 2px) calc(100% - calc(10px + 2px * 0.5)), calc(100% - calc(10px + 2px * 0.5)) calc(100% - 2px), calc(100% - calc(10px + 2px * 0.5)) calc(100% - 2px));
    transition: 200ms;
}
.button-1:where(:hover, :focus) {
    color: #fff;
} 
.slider-img {
    display: none;
}
.slider-decoration-1 {
    background: #0075ea;
    position: absolute;
    width: 20%;
    height: 13%;
    bottom: -34px;
    left: -5%;
    z-index: 2;
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
}
.slider-decoration-2 {
    background: #0075ea;
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 90%;
    height: 6%;
    z-index: 2;
}
.scroll-down {
    position: absolute;
    margin: 20px;
    z-index: 5;
    left: calc(0% - 30px);
    bottom: 12px;
}
.scroll-down img {
    height: 80px;
    transform: rotate(0deg);
    animation: 1.5s ease 0s infinite normal none running scroll-down-btn;
    filter: drop-shadow(2px 4px 6px #000) drop-shadow(2px 4px 6px #000) drop-shadow(2px 4px 6px #000);
}
@-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-about-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    flex-direction: column;
}
.badges-about-bg::before {
    content: '';
    position: absolute;
    background: #ffffffde;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.badges-about-bg > img {
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.badges-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
}
.badges-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    max-width: 1280px;
    margin: 100px 0 30px;
    z-index: 4;
}
.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;
    min-height: 210px;
    margin: 10px 10px 20px;
    z-index: 3;
    background: #292c31;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 25px));
    padding: 10px 0 10px 20px;
    border-right: 5px solid #0075ea;
    transition: all 0.5s ease-in-out;
}
.badge-holder:hover {
    transform: rotateY(360deg);
}
div.badge-holder:nth-child(even) {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    align-items: flex-start;
    padding: 10px 10px 20px 0;
    border-left: 5px solid #0075ea;
    border-right: none;
}
.badge-holder > div {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    z-index: 2;
}
div.badge-holder:nth-child(even) > div {
    align-items: flex-start;
}
.badge-icon {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #092062;
    padding: 5px 20px 5px 40px;
    position: relative;
    margin: 10px 0 0;
}
.badge-icon::before {
    content: '';
    background: #0075ea;
    position: absolute;
    width: 20px;
    height: 100%;
    left: -7px;
    top: 0;
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
}
.badge-holder:nth-child(even) .badge-icon {
    padding: 5px 20px 5px 10px;
}
.badge-holder:nth-child(even) .badge-icon::before {
    right: -7px;
    left: auto;
}
.badge-icon img {
    width: auto;
    height: 85px;
}
.badge-content {
    color: #fff;
    margin: 10px 0 5px;
    font-size: 18px;
    background: #092062;
    padding: 5px 10px 5px 15px;
    position: relative;
    text-transform: capitalize;
    display: flex;
    text-align: right;
}
.badge-content::before {
    content: '';
    background: #0075ea;
    position: absolute;
    width: 20px;
    height: 100%;
    left: -7px;
    top: 0;
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
}
.badge-holder:nth-child(even) .badge-content {
    text-align: left;
    padding: 5px 20px 5px 10px;
}
.badge-holder:nth-child(even) .badge-content::before {
    right: -7px;
    left: auto;
}
.badge-title {
    color: #fff;
    margin: 5px 0 10px;
    font-size: 18px;
    background: #092062;
    padding: 5px 10px 5px 15px;
    position: relative;
    text-transform: capitalize;
    text-align: right;
}
.badge-title::before {
    content: '';
    background: #0075ea;
    position: absolute;
    width: 20px;
    height: 100%;
    left: -7px;
    top: 0;
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
}
.badge-holder:nth-child(even) .badge-title {
    text-align: left;
    padding: 5px 20px 5px 10px;
}
.badge-holder:nth-child(even) .badge-title::before {
    right: -7px;
    left: auto;
}
.banner {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #0075ea;
    clip-path: polygon(0% 25px, 20px 0, calc(100% - 20px) 0, 100% 25px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 25px));
    padding: 15px 20px;
}
.banner::before {
    content: '';
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 5px;
    left: 5px;
    background: #292c31;
    clip-path: polygon(0% 25px, 20px 0, calc(100% - 20px) 0, 100% 25px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 25px));
    z-index: -1;
}
.banner span {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
/*ABOUT SECTION*/
.about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    position: relative;
    max-width: 1280px;
    margin: 60px 0 45px;
}
.about-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    text-shadow: 0 0 5px #fff;
}
.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 15px;
}
.area-served li {
    width: 50%;
    text-align: left;
    position: relative;
    padding: 0;
}

/* .area-served li::before {
    content: "";
    margin-right: 10px;
    background: url(/img/icons/mover-icon-5.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: auto;
} */
.about-images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin-top: 35px;
    max-width: 500px;
}
.about-images img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    clip-path: polygon(0% 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.about-image-decoration-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #292c31;
    z-index: 1;
    top: 15px;
    left: 15px;
    clip-path: polygon(0% 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.about-image-decoration-3 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #0075ea;
    z-index: 0;
    top: 20px;
    left: 20px;
    clip-path: polygon(0% 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.about-image-decoration-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #092062;
    z-index: 1;
    bottom: 15px;
    right: 15px;
    clip-path: polygon(0% 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.about-image-decoration-4 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0075ea;
    z-index: 0;
    bottom: 20px;
    right: 20px;
    clip-path: polygon(0% 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
@keyframes zoomInAbout {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/*CONTACT FORM SECTION*/
.features-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}
.features-section::before {
    content: '';
    background: #292c31db;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.features-section > img {
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.features-contact-form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    position: relative;
    flex-direction: column;
    max-width: 1280px;
    height: 100%;
    margin: 30px 0;
    z-index: 5;
}
.features-decoration-1 {
    display: none;
}
.features-decoration-2 {
    display: none;
}
.contact-form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    height: 100%;
    z-index: 2;
}
.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;
    background: #fff;
    clip-path: polygon(0% 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    padding: 10px;
    opacity: 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 {
    background: #292c31;
    width: 100%;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% 0, 100% 100%, 0 100%);
    margin-bottom: 20px;
}
.contact-form-title h2 {
    text-align: center;
    margin: 0;
    color: #fff;
    text-shadow: none;
    font-weight: 600;
}
.contact-form {
    z-index: 2;
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.email-form h3 {
    text-align: center;
    color: 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: 20px;
    width: 100%;
    position: relative;
}
.contact-form .form-row.submit-btn {
    /* width: auto; */
    /* margin: 0; */
}
.contact-form .form-row.submit-btn .button-1 {
    /* margin: 0; */
}
.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;
    border: 1px solid transparent;
    position: relative;
    background: #092062;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% 0, 100% 100%, 0 100%);
}
.contact-form input:focus, .contact-form input:not(:placeholder-shown), .contact-form textarea:focus, .contact-form textarea:not(:placeholder-shown) {
    outline: 0px;
    background: #292c31;
    color: rgb(255, 255, 255);
    border: 1px solid transparent;
}
.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 !important;
    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 2px 20px;
    background: #292c31;
    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;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% 0, 100% 100%, 0 100%);
}
.contact-form input[type="text"]:focus, .contact-form input[type="tel"]:focus, .contact-form input[type="email"]:focus, .contact-form textarea:focus {
    outline: none;
}

/* CAPTCHA */
.form-row.form-row-captcha {
    margin: 0;
}
.form-row.submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    align-content: center;
}
.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: #092062c9 !important;
    padding: 10px 12px !important;
    font-size: 16px;
    left: 0 !important;
    top: 0 !important;
    transform: unset !important;
    border: 1px solid transparent;
    background: #092062;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% 0, 100% 100%, 0 100%);
}
.checkbox-captcha input[type="checkbox"] {
    cursor: pointer;
    position: relative;
    width: 16px;
    height: 16px;
    top: 2px;
    left: 7px !important;
}
/*FEATURES SECTION*/
.features-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    z-index: 2;
    margin-top: 20px;
}
.features-title {
    color: #0075ea;
    text-shadow: 0 0 5px #292c31;
}
.features-content ul {
    text-align: justify;
    /* list-style: none; */
    padding: 0;
    margin-bottom: 20px;
}
.features-content ul li {
    margin: 15px 0px;
    position: relative;
    color: #fff;
    text-shadow: 0 0 5px #292c31;
}
.features-content ul li::marker {
    color: #fff;
}
/* .features-content ul li::before {
    content: "";
    margin-right: 10px;
    background: url(/img/icons/mover-icon-5.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    filter: invert(1);
} */
.features-content ul li strong {
    position: relative;
    margin-left: 15px;
    font-size: 18px;
}
/*SERVICES ECTION*/
.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: url(/img/services-bg.webp);
    background-position: top center;
    background-size: contain;
    background-repeat: repeat-y;
    padding-bottom: 80px;
}
.services-section::before {
    content: '';
    position: absolute;
    background: #ffffffde;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin-top: 80px;
}
.services-section > div {
    width: 90%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 30px 0;
    z-index: 3;
}
.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: 15px auto 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 15px 15px 0px;
    align-items: center;
}
.srvElementHeader h2 {
    text-align: center;
    font-family: Heebo, sans-serif;
    line-height: 1.2;
    font-size: 24px;
    margin: 0px;
    font-weight: 600;
}
.srvElementImg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    max-height: 250px;
    transition: all 0.5s ease-out;
}
.srvElement:hover .srvElementImg {
    transform: scaleX(-1);
}
.srvImgDecration {
    position: absolute;
    background: #292c31;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 20px) 100%, 0 100%);
    width: 104%;
    height: 105%;
}
.srvElementImg img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    object-position: center center;
    position: relative;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 20px) 100%, 0 100%);
}
.srvElement:nth-child(even) .srvImgDecration {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px,100% 100%, 20px 100%, 0 calc(100% - 25px));
}
.srvElement:nth-child(even) .srvElementImg img {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px,100% 100%, 20px 100%, 0 calc(100% - 25px));
}
.srvElementContent {
    text-align: justify;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    line-height: 1.2;
    border-top: 2px solid #292c31;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.srvElementContent::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #092062;
    transition: all 0.5s ease-out;
    z-index: 1;
}
.srvElement:hover .srvElementContent::before {
    top: 0;
    z-index: 1;
}
.srvElementContent p {
    margin: 0;
    text-shadow: 0 0 5px #fff;
    font-weight: 500;
    z-index: 2;
    transition: all 0.5s ease-out;
    position: relative;
}
.srvElement:hover  .srvElementContent p {
    color: #fff;
    text-shadow: 0 0 5px #000;
}
.srvElementBody {
    position: relative;
    z-index: 0;
    width: 100%;
    margin-top: 10px;
    height: 100%;
}
.srvElementHeader {
    position: relative;
    bottom: 1px;
    padding: 10px 5px;
    z-index: 2;
}



.ServicesSwiper {
    padding: 25px 0 30px !important; /* bottom may differ */
    width: 100vw;
}

.ServicesSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 
.ServicesSwiper .swiper-slide > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    height: 100%;
} */


@media screen and (min-width: 981px) {
    .srvElement {
        width: 100% !important;
        height: 100%;
        max-width: 400px;
    }
}

/* Services Swiper Nav Btns */
div.services-swiper-button-next {
    top: auto !important;
    bottom: 0;
    right: calc(50% - 50px) !important;
    background: #de4810;
    border-radius: 10px;
    width: 40px !important;
    transition: 0.4s;
    position: absolute !important;
    border: 1px solid #de4810;
}
div.services-swiper-button-prev {
    top: auto !important;
    bottom: 0;
    left: calc(50% - 50px) !important;
    background: #de4810;
    border-radius: 10px;
    width: 40px !important;
    transition: 0.5s;
    border: 1px solid #de4810;
}
div.services-swiper-button-next::after, div.services-swiper-button-prev::after {
    position: relative;
    color: #fff;
    font-size: 25px !important;
}
/* div.services-swiper-button-next:hover, div.services-swiper-button-prev:hover {
    background: #181f48;
} */



/*GALLERY SECTION*/
.gallery-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #292c31;
    z-index: 3;
}
.gallery-decoration-1 {
    position: absolute;
    background: #0075ea;
    z-index: 2;
    width: 20%;
    height: 60px;
    top: -35px;
    left: -6%;
    clip-path: polygon(0% 0%, 60% 0%, 100% 100%, 40% 100%);
}
.gallery-decoration-2 {
    position: absolute;
    background: #0075ea;
    width: 92%;
    height: 25px;
    top: 0;
    right: 0;
}
.gallery-content {
    width: 90%;
    max-width: 1280px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}
.gallery-section h2 {
    text-align: center;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
    margin: 20px 0 20px;
    color: #0075ea;
    text-shadow: 0 0 5px #292c31;
}
.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;
}
.GallerySwiper .swiper-slide img {
    max-height: 160px;
    min-height: 160px;
}
.GallerySwiper img {
    max-height: 200px !important;
}
.GallerySwiper2 .swiper-slide:nth-child(odd) img {
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 20px) 100%, 0 100%);
}
.GallerySwiper2 .swiper-slide:nth-child(even) img {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px,100% 100%, 20px 100%, 0 calc(100% - 25px));
}
.GallerySwiper .swiper-slide:nth-child(odd) img {
    clip-path: polygon(0% 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.GallerySwiper .swiper-slide:nth-child(even) img {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px,100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.GallerySwiper2 .swiper-button-next {
    right: auto;
    left: calc(50% + 10px);
    top: 34px;
    border: 1px solid #0075ea;
    border-radius: 0;
    padding: 0px;
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
    background: #0075ea;
    clip-path: polygon(0% 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.GallerySwiper2 .swiper-button-prev {
    left: calc(50% - 50px);
    top: calc(100% - 35px);
    border: 1px solid #0075ea;
    border-radius: 0;
    padding: 0px;
    width: 40px !important;
    height: 40px !important;
    background: #0075ea;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px,100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.GallerySwiper2 .swiper-button-prev::after, .GallerySwiper2 .swiper-button-next::after {
    color: #000;
    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;
}
.gallery-decoration-3 {
    position: absolute;
    background: #0075ea;
    z-index: 2;
    width: 20%;
    height: 60px;
    bottom: -37px;
    right: -6%;
    clip-path: polygon(0% 0%, 60% 0%, 100% 100%, 40% 100%);
}
.gallery-decoration-4 {
    position: absolute;
    background: #0075ea;
    width: 92%;
    height: 25px;
    bottom: -2px;
    left: 0;
}
/*TESTIMONIALS SECTION*/
.testimonials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
    flex-direction: column;
    padding-bottom: 80px;
}
.testimonials-section::before {
    content: '';
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffffde;
}
.testimonials-section > img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.testimonials-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1280px;
    position: relative;
    z-index: 3;
}
.testimonials-section > div:nth-of-type(1) {
    /* padding: 50px 0 0; */
}
.testimonials-section > div:nth-of-type(2) {
    padding: 30px 0 100px;
    align-items: center;
}
.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;
}
.testimonial h2 {
    text-align: left;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
    width: 100%;
    align-self: flex-start;
}
div.testimonials-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-bottom: 20px;
}
.testimonials-image-decoration {
    position: absolute;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 20px) 100%, 0 100%);
    background: #292c31;
    z-index: 1;
    width: 105%;
    height: 107%;
}
.testimonial .image {
    height: auto;
    width: 100%;
    position: relative;
    object-fit: cover;
    z-index: 2;
    clip-path: polygon(0% 25px, 20px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 20px) 100%, 0 100%);
}
.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;
    width: 97%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    max-width: 500px;
}
.testimonial-content > div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}
.testimonial-text {
    position: relative;
    margin: 10px 0 0;
    border-bottom: 2px solid #292c31;
}
.slide p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: justify;
    margin: 0px;
    position: relative;
    padding: 0px;
    text-shadow: 0 0 5px #fff;
    padding-bottom: 10px;
}
.slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
}
.details .name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.slide .details img {
    width: 130px;
    filter: drop-shadow(rgb(0, 0, 0) 0 0 1px);
}
.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;
    background: #292c31;
    clip-path: polygon(0% 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.testimonial .swiper-button-prev {
    margin-right: 5px;
    left: 0px !important;
    top: 0px !important;
    right: 0px !important;
    background: #292c31;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px,100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.testimonial .swiper-button-prev, .swiper-button-next {
    /* border: 1px solid #292c31; */
    border-radius: 0;
    padding: 0px;
    position: relative !important;
    width: 40px !important;
    /* height: 40px !important; */
}
.testimonial .swiper-button-prev::after, .swiper-button-next::after {
    color: #fff;
    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;
}
.testimonials-images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin: 25px 0 20px;
    max-width: 500px;
}
.testimonials-images img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px,100% 100%, 20px 100%, 0 calc(100% - 25px));
    z-index: 5;
    opacity: 0;
}
.testimonials-image-decoration-1 {
    position: absolute;
    background: #292c31;
    width: 100%;
    height: 100%;
    z-index: 4;
    top: -10px;
    right: -10px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px,100% 100%, 20px 100%, 0 calc(100% - 25px));
    opacity: 0;
}
.testimonials-image-decoration-3 {
    position: absolute;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px,100% 100%, 20px 100%, 0 calc(100% - 25px));
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #0075ea;
    top: -15px;
    right: -15px;
    opacity: 0;
}
.testimonials-image-decoration-2 {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px,100% 100%, 20px 100%, 0 calc(100% - 25px));
    position: absolute;
    background: #092062;
    width: 100%;
    height: 100%;
    bottom: -10px;
    left: -10px;
    z-index: 2;
    opacity: 0;
}
.testimonials-image-decoration-4 {
    position: absolute;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 25px,100% 100%, 20px 100%, 0 calc(100% - 25px));
    width: 100%;
    height: 100%;
    bottom: -15px;
    left: -15px;
    z-index: 1;
    background: #0075ea;
    opacity: 0;
}
/*FOOTER SECTION*/
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    flex-direction: column;
    margin-top: -120px;
}
.footer-brand-decoration {
    background: #0075ea;
    position: absolute;
    width: 70%;
    height: 50px;
    top: -42px;
    right: 0;
    z-index: 3;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #292c31;
    padding-top: 20px;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 4;
    right: 0;
    margin-top: -1px;
}
.footer-brand > div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 90%;
    max-width: 600px;
    position: relative;
    z-index: 5;
}
.footer-brand a {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 80%;
    padding-bottom: 10px;
}
.footer-brand a img {
    width: 80px;
    height: auto;
}
.footer-brand a span {
    color: #fff;
    font-size: 25px;
    margin-left: 10px;
}
.contact-section-decoration-1 {
    display: none;
}
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 30px 0 0;
    background: #292c31;
    z-index: 2;
}
.contact-section::before {
    display: none;
}
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 10px 0;
    max-width: 1280px;
}
.contact-content h2 {
    color: #fff;
    text-shadow: none;
    text-align: center;
    font-size: 26px;
}
.contact-content h2 a {
    color: #0075ea;
    /* text-decoration: underline; */
}
.footer-menu {
    width: 100%;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-menu li {
    width: 47%;
    margin: 5px;
}
.footer-menu li a {
    color: #fff;
    font-size: 18px;
}
.footer-hr {
    width: 75%;
    background-color: #ffffff5c;
    height: 1px;
    border: none;
    margin: 0;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #292c31;
    width: 100%;
    position: relative;
    flex-direction: column;
}
.footer-content p {
    color: #fff;
    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;
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    background: #0075ea;
    transition: all 0.5s ease 0s;
    color: #000 !important;
    text-shadow: none !important;
    font-weight: 500 !important;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.button-2:hover {
    background: #092062;
    color: #fff !important;
}
/*TABLET STYLE*/
@media (min-width: 600px) {
    /*SLIDER SECTION*/
    .slider-content {
        margin-top: -3%;
    }
    .slider-text {
        align-items: flex-start;
    }
    .slider-text h1 {
        text-align: left;
    }
    .slider-text p {
        text-align: left;
    }
    .slider-img {
        display: block;
        object-fit: contain;
        width: 100%;
        position: absolute;
        object-position: center;
        z-index: 3;
        bottom: -125px;
        right: -110px;
        height: auto;
        max-width: 450px;
        filter: drop-shadow(2px 4px 6px #000);
        opacity: 0;
        display: none;
    }
    @keyframes zoomInSliderImg {
        0% {
            transform: scale(0);
            opacity: 0;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
    .headers-buttons > div {
        flex-direction: row;
    }
    .button-1 {
        margin-top: 0;
        margin-left: 10px;
    }
    /*ABOUT SECTION*/
    .area-served li {
        width: 33%;
   }
    .about-images:hover img {
    width: 104%;
    height: 104%;
}
.about-images:hover .about-image-decoration-1 {
    top: 20px;
    left: 20px;
}
.about-images:hover .about-image-decoration-3 {
    top: 25px;
    left: 25px;
}
.about-images:hover .about-image-decoration-2 {
    bottom: 20px;
    right: 20px;
}
.about-images:hover .about-image-decoration-4 {
    bottom: 25px;
    right: 25px;
}
    /*FEATURES SECTION*/
   /*SERVICES ECTION*/
   .srvElement {
        max-width: 400px;
    }
   /*TESTIMONIALS SECTION*/
    .testimonials-image {
        max-width: 300px;
    }
    /*FOOTER*/
    footer {
        align-items: flex-end;
    }
    .footer-brand-decoration {
        width: 55%;
    }
    .footer-brand {
        flex-direction: row;
        justify-content: space-between;
        width: 75%;
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        margin-top: -1%;
    }
    .footer-brand a span {
        font-size: 28px;
    }
    .contact-section-decoration-1 {
        position: absolute;
        width: 100%;
        background: #0075ea;
        z-index: 3;
        top: 11%;
        height: 20%;
        right: 0;
        width: 100%;
        display: block;
    }
    .contact-section{
        z-index: 4;
    }
}
@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;
        clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px,100% 100%, 10px 100%, 0 calc(100% - 10px));
   }
    #callnowbutton a img {
        height: 2em;
   }
}
/*DESTOK STYLE*/
@media (min-width: 981px) {
    /*HEADER SECTION*/
    .hamburger {
        display: none;
   }
    nav {
        align-items: center;
        padding: 0;
    }
    nav::before {
        height: 78px;
        background: linear-gradient(to bottom, #0075ea 50%, #292c31 50%);
    }
    nav::after {
        display: block;
        content: '';
        bottom: -39px;
        left: 0;
        position: absolute;
        background: #292c31;
        height: 100%;
        width: 21%;
        z-index: 2;
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 0% 100%);
    }
    .navigation-section {
        justify-content: center;
        flex-direction: column;
        position: relative;
        align-items: center;
   }
    nav .menu-section {
        flex-direction: row;
        justify-content: center;
        left: 0px;
        position: relative;
        width: 100%;
        align-items: center;
        padding: 0px;
        margin: 0;
        background: transparent;
        transform: none;
        top: 0px;
        flex-wrap: wrap;
        height: auto;
        z-index: 3;
   }
    nav .menu {
        height: auto;
        flex-direction: row;
        margin: 0;
        width: 100%;
        background: #092062;
        padding: 5px 65px;
        clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
    }
    nav .menu li {
        margin: 10px;
        padding: 0px;
        width: auto;
   }
    .navigation {
        padding: 0;
        padding-top: 15px;
        margin-top: -9px;
    }
    .brand-decoration-bg-dark {
        width: 66%;
        top: 40px;
        height: 70%;
    }
    .brand-decoration-bg-light {
        top: 40px;
        height: 83%;
        width: 59%;
    }
    .navigation-decoration-bg-dark {
        top: 40px;
        width: 50%;
        height: 45%;
        clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
    }
    .navigation-decoration-bg-light {
        top: 48px;
        width: 56%;
        height: 59%;
        clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
        right: 15px;
    }
    .brand {
        width: 56%;
        justify-content: flex-end;
        margin-top: 10px;
        z-index: 5;
   }
    .brand a {
        justify-content: flex-start;
        width: 85%;
   }
    .navigation-buttons {
        width: 39%;
        margin-top: 10px;
        margin-right: 20px;
    }
    .navigation-links {
        position: relative;
        left: 0;
    }
    .brand span {
        font-size: 25px
    }
    /*DLIDER SECTION*/
    .slider-section {
        height: calc(100vh - 77px);
        /* margin-top: 0px; */
    }
    .slider-section > img {
        object-position: center 15%;
    }
    .slider-content {
        margin-top: -70px;
    }
    .slider-text {
        align-items: center;
    }
    .slider-text h1 {
        text-align: center;
    }
    .slider-text p {
        text-align: center;
    }
    .slider-img {
        right: -75px;
        bottom: -140px;
        max-width: 500px;
    }
    /*ABOUT SECTION*/
    .about-section {
        padding-bottom: 30px;
    }
    .about-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    .about-main-content {
        width: 48%;
        align-items: flex-start;
    }
    .about-images {
        width: 48%;
        margin: 0;
    }
    .about-images img {
        height: 100%;
    }
    /*CONTACT FORM SECTION*/
    .contact-form-content {
        width: 39%;
    }
    /*FEATURES SECTION*/
    .features-section {
        margin-top: -45px;
    }
    .features-section::before {
        display: none;
    }
    .features-section > img {
        display: none;
    }
    .features-contact-form-content {
        flex-direction: row;
        justify-content: space-between;
        margin: 50px 0;
    }
    .features-decoration-1 {
        display: block;
        top: 0;
        left: 0;
        position: absolute;
        width: 45%;
        height: 100%;
        clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 45px, 100% calc(100% - 45px), calc(100% - 45px) 100%, 0 100%);
        z-index: 3;
    }
    .features-decoration-1::before {
        content: '';
        background: #292c31db;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 4;
    }
    .features-decoration-1 > img {
        object-fit: cover;
        object-position: 60% center;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 3;
    }
    .features-decoration-2 {
        display: block;
        right: 0;
        position: absolute;
        width: 58%;
        height: 86%;
        z-index: 2;
    }
    .features-decoration-2::before {
        content: '';
        background: #292c31db;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 4;
    }
    .features-decoration-2 > img {
        object-fit: cover;
        object-position: 100% center;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 3;
        transform: rotateY(180deg);
    }
    .features-content {
        width: 57%;
        margin: 0;
        align-items: flex-start;
    }
   /*SERVICES SECTION*/
    .services-section {
        margin-top: -45px;
        padding-top: 45px; 
    }
    .services-section::before {
        margin-top: -45px;
    }
    .srvBlockTitle {
        align-items: flex-end;
    }
    .srvElement {
        width: 32%;
        display: flex;
        flex-direction: column;
        margin: 50px 0px 0px;
    }
    .srvElementHeader h2 {
        width: 100%;
    }
    /*TESTIMONIALS*/
    .testimonials-section > div {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #testimonials {
        width: 49%;
    }
    .testimonials-images {
        width: 49%;
        margin: 0;
    }
    .testimonials-images img {
        height: 100%;
    }
    /*FOOTER*/
    .footer-brand-decoration {
        width: 37%;
    }
    .footer-brand {
        width: 47%;
    }
    .contact-section-decoration-1 {
        top: 13%;
        height: 58px;
        width: 97%;
    }
    .contact-section {
        padding: 30px 0 30px;
    }
    .contact-section:before {
        content: '';
        display: block;
        position: absolute;
        top: -42px;
        left: -2%;
        background: #0075ea;
        z-index: 5;
        width: 8%;
        height: 100px;
        clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
    }
    .contact-content {
        flex-direction: row;
        justify-content: space-between;
    }
    .contact-content h2 {
        width: 49%;
        text-align: right;
        border-right: 2px solid #0075ea;
        padding-right: 20px;
    }
    .footer-menu {
        width: 49%;
    }
}
@media (min-width: 1300px) {
    .contact-section-decoration-1 {
        top: 8%;
    }
}
