body {
    color: #000;
    background: #fff;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 500;
    overflow-x: hidden;
    line-height: 1.4;
}
html {
    scroll-padding-top: 17%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    cursor: pointer;
}
a[href^="tel:"] {
  white-space: nowrap;
}
p,
li {
    color: #000;
    text-align: justify;
}
h1,
h2,
h3,
h4 {
    font-family: "Oswald", serif;
    font-weight: 600;
    font-style: normal;
}
h1 {
    font-size: 26px;
}
h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0px;
    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;
}
/*NAVIGATION STYLE*/
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: 45px;
    width: 45px;
    transition: all 0.2s ease 0s;
    position: relative;
    background: #08415C;
    padding: 0px 5px;
}
.line {
    transition: all 0.5s ease 0s;
    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 center;
    transform: rotateZ(45deg) translate(-7px, -5px);
}
.hamburger.open .lineMid {
    stroke-dashoffset: 40;
}
.hamburger.open .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left center;
    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 0px;
    background: #fff;
}
nav.scrolled {
    position: fixed;
    top: 0px;
    margin: 0px;
    z-index: 9999;
    animation: 0.3s ease 0s 1 normal none running slideDown;
    box-shadow: 0 0 5px 0 #000;
}
.navigation-section {
    width: 95%;
    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;
    height: 100%;
    padding: 30px 0px 0px;
}
nav .menu-section {
    flex-direction: column;
    display: flex;
    width: 102vw;
    min-height: 350px;
    max-height: 350px;
    height: 50vh;
    background: #08415C;
    position: absolute;
    top: -100%;
    left: -4vw;
    z-index: 9998;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out 0s;
}
nav .menu-section.active {
    transform: translateY(0px);
    z-index: 9998;
    overflow: hidden;
    top: 100%;
    box-shadow: 0 3px 5px 0 #0000009e;
}
nav .menu {
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0px;
}
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: #fff;
}
.brand,
.brand-logo {
    width: 85%;
    text-wrap: wrap;
    z-index: 3;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 10px;
}
.brand a,
.brand-logo 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: 25px;
    font-family: "Oswald", serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
    color: #08415C;
    margin-top: 5px;
    text-align: left;
    margin-left: 10px;
    text-shadow: 2px 1px 0px #fff, 6px 5px 0px rgba(0, 0, 0, 0.15);
    animation: colorShift 4s ease-in-out infinite;
}
@keyframes colorShift {
  0%, 100% { color: #CC2936; }
  50% { color: #08415C; }
}
.brand-logo img {
    width: 120px;
    height: auto;
}
.navigation-buttons {
    width: 15%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}
.navigation-links {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    align-self: center;
    z-index: 3;
    width: 100%;
    top: 0px;
    left: 0px;
}
.navigation-links .button-call {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.navigation-links .button-call img {
    height: auto;
    width: 22px;
    margin-right: 5px;
}
.navigation-links .button-call span {
    color: #08415C;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}
.navigation-links .button-booking {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.navigation-links .button-booking img {
    height: auto;
    width: 25px;
    margin-right: 5px;
}
.navigation-links .button-booking span {
    color: #08415C;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}
.navigation-links .button-call span::after, .navigation-links .button-booking span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #08415C;
    transition: width 0.3s ease;
}
.navigation-links .button-call span:hover::after, .navigation-links .button-booking span:hover::after {
    width: 100%;
}
/*END OF NAVIGATION STYLE*/
/*SLIDER STYLE*/
.slider-section {
    position: relative;
    width: 100%;
    height: calc(-83px + 100vh);
    align-items: center;
    display: flex;
    z-index: 0;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 550px;
    max-height: 550px;
}
.slider-section::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000036;
    z-index: 2;
}
.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 33%;
}
.slider {
    display: flex;
    flex-direction: column;
    width: 95%;
    position: relative;
    max-width: 1280px;
    z-index: 4;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.slider-text {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    z-index: 2;
}
.slider-text h1 {
    margin: 0px;
    position: relative;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    z-index: 3;
    text-shadow: #000 0px 0px 5px;
    text-align: center;
    opacity: 0;
}
.slider-text > p {
    margin: 10px 0px 5px;
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 20px;
    text-align: center;
    text-shadow: #000 0px 0px 5px;
    opacity: 0;
}
.slider-text p a {
    color: #BBE6E4;
    text-decoration: none;
    position: relative;
}
.slider-text p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #BBE6E4;
    transition: width 0.3s ease;
}
.slider-text p a:hover::after {
    width: 100%;
}
.headers-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin: 10px 0px 5px;
    opacity: 0;
}
.headers-buttons > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.button {
    background-color: #CC2936;
    border: none;
    padding: 15px 32px;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #bbe6e4b3;
    transform: skewX(-30deg);
    transition: all 1s ease-in-out;
    z-index: 1;
}
.button span {
    color: white;
    font-size: 16px;
    text-align: center;
    z-index: 2;
    position: relative;
    transition: all 0.5s ease-in-out;
}
.button:hover::before {
    left: 100%;
}
.button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #bbe6e45c;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
.button:hover::after {
    width: 100%;
}
.button:hover {
    background-color: #fa4545;
}
.button:hover span {
    color: #000;
}
.button-1 {
    background-color: #08415C;
    border: none;
    padding: 15px 32px;
    text-decoration: none;
    display: inline-block;
    margin: 10px 2px 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.button-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #bbe6e4b3;
    transform: skewX(-30deg);
    transition: all 1s ease-in-out;
    z-index: 1;
}
.button-1 span {
    color: #fff;
    font-size: 16px;
    text-align: center;
    z-index: 2;
    position: relative;
    transition: all 0.5s ease-in-out;
}
.button-1:hover::before {
    left: 100%;
}
.button-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #bbe6e45c;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
.button-1:hover::after {
    width: 100%;
}
.button-1:hover {
    background-color: #08415C;
}
.button-1:hover span {
    color: #000;
}
.scroll-down {
    position: absolute;
    margin: 20px;
    z-index: 5;
    right: calc(50% - 30px);
    bottom: 2px;
}
.scroll-down img {
    height: 80px;
    transform: rotate(0deg);
    animation: 1.5s ease 0s infinite normal none running scroll-down-btn;
    filter: drop-shadow(#000 2px 4px 6px)
        drop-shadow(#000 2px 4px 6px)
        drop-shadow(#000 2px 4px 6px);
}
@-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;
    }
}
/*END OF SLIDER STYLE*/
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
/*BADGES STYLE*/
.badges-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
}
.badges-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    margin: 50px 0 20px;
}
.badges-section > div > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}
.badges-container {
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: stretch;
    width: 100%;
}
.badge-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    margin: 20px 10px;
    max-width: 200px;
    position: relative;
    padding: 10px;
    z-index: 0;
}
.badge-holder::before {
    content: '';
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    background: #BBE6E4;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 0.5s;
}
.badge-holder:hover::before {
    content: '';
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
    background: #08415C;
}
.badge-holder > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    position: relative;
    box-shadow: 0 0 10px 0 #0000005e;
    z-index: 2;
}
.badge-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.badge-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin-top: 5px;
}
.badge-content {
    min-height: 40px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 20px 5px;
    text-transform: capitalize;
    text-align: center;
    margin: 5px 0px;
    z-index: 1;
}
.badge-title {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px 5px 5px;
    width: 100%;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    margin: 5px 0px 0px;
    color: #000;
    z-index: 1;
}
/*END OF BADGES STYLE*/
/*ICON STYLE*/
.icon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.icon-section > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 1280px;
    margin: 30px 0;
}
.icon-element {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    margin: 20px;
}
.icon-element img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
/*END OF ICON STYLE*/
/*ABOUT STYLE*/
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #BBE6E4;
    z-index: 2;
    clip-path: polygon(25% 0%, 75% 0%, 100% 6%, 100% 100%, 0 100%, 0 6%);
    flex-direction: column;
    padding-bottom: 30px;
}
.about-section > div {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    margin: 0 0 50px;
}
.about-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 10px;
    max-width: 400px;
    margin-top: 20px;
}
.about-images-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.about-image-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    padding: 10px;
    margin: 10px;
    opacity: 0;
}
.about-image-1::before {
    content: '';
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    background: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    border: 4px solid #08415C;
    transition: all 0.5s;
}
.about-image-1:hover::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
}
.about-image-2 {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    position: relative;
    padding: 10px;
    margin: 10px;
    opacity: 0;
}
.about-image-2::before {
    content: '';
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    background: #08415c;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 0.5s;
}
.about-image-2:hover::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
}
.about-images-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}
.about-image-1 img {
    border: 8px solid #08415C;
}
.about-image-2 img {
    box-shadow: 0 0 10px 0 #0000005e;
}
.about-images-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 10px;
    margin: 10px;
    opacity: 0;
}
.about-images .about-images-1::before {
    content: '';
    transition: all 0.5s;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 100%);
    background: #fff;
    border: 4px solid #08415C;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.about-images-1:hover::before {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
.about-images-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    border: 8px solid #08415C;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
div.about-titles {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center !important;
    width: 85%;
    padding: 50px 0 0;
    margin: 0 0 10px;
}
.about-subtitle {
    color: #08415C;
    text-transform: uppercase;
    text-shadow: 0 0 5px #00000047;
    text-align: center;
    margin: 0;
    opacity: 0;
}
.about-title {
    text-align: center;
    opacity: 0;
}
.about-text {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.area-served {
    display: flex;
    place-content: center flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: 0px;
    list-style: none;
    padding: 0px;
    flex-flow: wrap;
    width: 100%;
}
.area-served li {
    width: 100%;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.area-served li::before {
    content: "\2714";
    margin-right: 10px;
    font-size: 18px;
    color: #CC2936;
}
/*END OF ABOUT STYLE*/
/*FEATURES STYLE*/
.features-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #08415C;
    clip-path: polygon(25% 0%, 75% 0%, 100% 6%, 100% 94%, 75% 100%, 25% 100%, 0 94%, 0 6%);
    margin-top: -55px;
    z-index: 3;
}
.features-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    margin: 50px 0;
}
.features-titles {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 87%;
    margin-bottom: 10px;
}
.features-subtitle {
    color: #BBE6E4;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    opacity: 0;
}
.features-title {
    text-align: center;
    color: #fff;
    opacity: 0;
}
.features-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.features-text {
    padding-left: 0;
    list-style: none;
}
.features-text li {
    color: #fff;
}
.features-text li::before {
    content: "\2714";
    font-size: 18px;
    color: #BBE6E4;
}
.features-text li strong {
    color: #BBE6E4;
}
/*END OF FEATURES STYLE*/
/*SERVICES STYLE*/
.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: #BBE6E4;
    padding-top: 55px;
    margin-top: -55px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 0, 100% 97%, 75% 100%, 25% 100%, 0 97%, 0 0);
}
.services-section > div {
    width: 95%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 50px 0px;
    z-index: 3;
}
.srvBlockTitle {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 87%;
    margin-bottom: 10px;
}
.srvBlocSubtitle {
    color: #08415C;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 5px #00000047;
    opacity: 0;
}
.services-title {
    text-align: center;
    color: #000;
    opacity: 0;
}
.services-section > div > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.srvBlock {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: wrap;
    position: relative;
    height: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}
.srvElement {
    margin: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    align-items: center;
    max-width: 390px;
    padding: 10px;
}
.srvElement::before {
    content: '';
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    background: #CC2936;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    transition: all 0.5s;
}
.srvElement:hover::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
    background: #08415c;
}
.srvElement > div {
    background: #08415c;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px 0 #0000005e;
    transition: all 0.5s;
    height: 100%;
}
.srvElement:hover > div {
    background: #CC2936;
}
.srvElementHeader {
    position: relative;
    z-index: 3;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.srvElementHeader h2 {
    text-align: center;
    font-family: "Oswald", sans-serif;
    line-height: 1.4;
    font-size: 24px;
    margin: 0px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}
.srvElementImg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 0;
    width: 100%;
    z-index: 2;
    padding: 10px 10px 0 10px;
    transition: all 0.5s;
}
.srvElement:hover .srvElementImg {
    padding: 0;
}
.srvElementImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    position: relative;
}
.srvElementBody {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 0 10px 10px 10px;
}
.srvElementContent {
    text-align: justify;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}
.srvElementContent p {
    margin: 0px;
    font-weight: 500;
    position: relative;
    color: #fff;
    z-index: 2;
}
/*END OF SERVICES STYLE*/
/*GALLERY STYLE*/
.gallery-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.gallery-content {
    width: 95%;
    max-width: 1280px;
    margin: 50px 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
div.gallery-titles {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center !important;
    width: 85%;
    margin: 0 0 10px;
}
.gallery-subtitle {
    color: #08415C;
    text-transform: uppercase;
    text-shadow: 0 0 5px #00000047;
    text-align: center;
    opacity: 0;
    margin: 0;
}
.gallery-title {
    text-align: center;
    opacity: 0;
}
.GallerySwiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px 10px !important;
}
.GallerySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}
.GallerySwiper .swiper-slide a {
    width: 81vw;
    height: 81vw;
    margin: 20px;
    max-width: 450px;
    max-height: 450px;
    position: relative;
}
.GallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}
.GallerySwiper .swiper-slide img:hover {
    transform: scale(1.05);
}
div.gallery-swiper-button-next {
    right: -11px;
    top: 50%;
    border: 0;
    border-radius: 0px;
    padding: 0;
    background: transparent;
    position: absolute !important;
}
div.gallery-swiper-button-prev {
    left: -15px;
    top: 50%;
    border: 0;
    border-radius: 0px;
    padding: 0px;
    background: transparent;
}
div.gallery-swiper-button-prev::after,
div.gallery-swiper-button-next::after {
    color: #000;
    text-align: center;
    font-size: 30px !important;
}
div.gallery-swiper-pagination {
    bottom: 0 !important;
}
div.gallery-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #000;
}
.lightboxOverlay, .lightbox {
    z-index: 999999 !important;
}
/*END OF GALLERY STYLE*/
/*CONTACT FORM STYLE*/
.contact-form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
}
.contact-form-content > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 95%;
    max-width: 1280px;
    margin: 25px 0 50px;
}
.email-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}
.email-form > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}
.email-form > div > p {
    width: 59%;
    font-size: 20px;
    margin: 0px;
    text-transform: capitalize;
    font-weight: 500;
    opacity: 0;
}
.email-form > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 43%;
    align-self: flex-end;
    position: relative;
}
div.contact-form-titles {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center !important;
    width: 85%;
    margin: 0 0 30px;
}
.contact-form-subtitle {
    color: #08415C;
    text-transform: uppercase;
    text-shadow: 0 0 5px #00000047;
    text-align: center;
    margin: 0;
}
.contact-form-title {
    text-align: center;
    opacity: 0;
}
.contact-form {
    z-index: 1;
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    max-width: 1000px;
}
.contact-form::before {
    content: '';
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    background: #BBE6E4;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 0.5s;
}
.contact-form:hover::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
}
.contact-form > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    z-index: 2;
    padding: 15px;
    box-shadow: 0 0 10px 0 #0000005e;
    width: 100%;
}
.email-form h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: #000 0px 0px 5px;
    font-weight: 500;
}
.contact-form .form-row {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}

/* CAPTCHA */
.checkbox-captcha {
    pointer-events: auto !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #000 !important;
    box-sizing: border-box;
    border-bottom: 2px solid #000;
    transition: all 0.3s ease 0s !important;
    accent-color: #0c4358 !important;
    padding: 8px 12px !important;
    font-size: 16px;
    left: 0 !important;
    transform: unset !important;
    width: 100% !important;
    position: relative !important;
}
.checkbox-captcha input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}


.contact-form .form-row.submit-btn {
    width: auto;
    margin: 0px;
}
.contact-form .form-row.submit-btn .button-1 {
    margin: 0px;
    cursor: poOpen Sans;
}
.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: 0;
    border-bottom: 2px solid #000;
    position: relative;
}
.contact-form input:focus,
.contact-form input:not(:placeholder-shown),
.contact-form textarea:focus,
.contact-form textarea:not(:placeholder-shown) {
    outline: 0px;
    color: #000;
    border: 2px solid #000;
    background: #bbe6e45c;
}
.contact-form input[type="text"]::placeholder, .contact-form input[type="tel"]::placeholder, .contact-form input[type="email"]::placeholder, .contact-form textarea::placeholder {
    visibility: hidden;
}
.contact-form input[type="text"]:focus::placeholder, .contact-form input[type="tel"]:focus::placeholder, .contact-form input[type="email"]:focus::placeholder, .contact-form textarea:focus::placeholder {
    visibility: visible;
}
.contact-form textarea {
    resize: none;
}
.contact-form .form-row label {
    color: #000;
    position: absolute;
    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: #000;
    position: absolute;
    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: #000;
    padding: 2px 5px 2px 20px;
    background: #bae4e2;
    font-size: 14px;
    border: 2px solid #000;
    width: auto;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
}
/*END OF CONTACT FORM STYLE*/
/*LAST ICON STYLE*/
.second-icon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.second-icon-section > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 1280px;
    margin: 30px 0;
}
.icon-element {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    margin: 20px;
}
.icon-element img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
/*END OF LAST ICON STYLE*/
/*TESTIMONIALS STYLE*/
.testimonials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #BBE6E4;
}
#testimonials {
    display: flex;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    z-index: 2;
    align-items: center;
    flex-direction: column;
    margin: 50px 0;
}
.testimonial {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 35px;
    margin-top: 30px;
    max-width: 600px;
}
.testimonials-titles {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.testimonials-subtitle {
    color: #08415C;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 5px #00000047;
    opacity: 0;
}
.testimonial-title{
    text-align: center;
    color: #000;
    opacity: 0;
}
.testimonial .image {
    height: 100px;
    width: 100px;
    position: relative;
    object-fit: cover;
    z-index: 1;
    border-radius: 50%;
}
.testi-content {
    align-items: stretch;
}
.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 10px;
}
.testimonial .slide::before {
    content: '';
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    background: #CC2936;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    transition: all 0.5s;
}
.testimonial .slide:hover::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 0%);
}
.testimonials-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #08415C;
    padding: 20px;
    z-index: 2;
    box-shadow: 0 0 10px 0 #0000005e;
}
.testimonial-content {
    position: relative;
    z-index: 0;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.testimonial-text {
    border-radius: 5px;
    position: relative;
    margin: 10px 0px;
}
.slide p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: justify;
    margin: 0px;
    position: relative;
    padding: 0px;
}
.slide .details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 67%;
    margin-left: 15px;
}
.details .name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.slide .details img {
    width: 130px;
    margin-top: 10px;
}
.quot-mark {
    font-size: 90px;
    color: #CC2936;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 10%;
}
.testimonials-swiper-navigation {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 15px;
}
.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 #fff;
    border-radius: 50%;
    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;
    background: #CC2936;
    border-radius: 0;
    border: 0;
}
.testimonial .nav-btn::after, .nav-btn::before {
    position: relative;
    font-size: 20px !important;
}
/*END OF TESTIMONIALS STYLE*/
/*CONTACT STYLE*/
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 0;
}
.contact-section::before {
    content: '';
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000085;
}
.contact-section > picture {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.contact-section > picture img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: top center;
}
.contact-section > div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    width: 95%;
    max-width: 1280px;
    margin: 50px 0;
}
.contact-section p {
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 5px #000;
    text-align: center;
    width: 85%;
    opacity: 0;
}
.contact-section p a {
    color: #BBE6E4;
    text-decoration: none;
    position: relative;
}
.contact-section p a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #BBE6E4;
    transition: width 0.3s ease;
}
.contact-section p a:hover::after {
    width: 100%;
}
.contact-section .button {
    opacity: 0;
}
/*FOOTER STYLE*/
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #08415C;
    position: relative;
}
footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    margin: 50px 0;
}
.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}
.footer-brand a {
    font-size: 30px;
    font-family: "Oswald", serif;
    font-weight: 400;
    position: relative;
    text-align: center;
    color: #BBE6E4;
    text-shadow: 2px 1px 0px #ffffff, 6px 5px 0px rgba(0, 0, 0, 0.35);
    letter-spacing: 1px;
}
.footer-brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}
.footer-brand-logo a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-brand-logo a img {
    width: 200px;
    height: auto;
}
.footer-brand-logo a span {
    font-size: 30px;
    font-family: "Oswald", serif;
    font-weight: 400;
    text-align: center;
    color: #BBE6E4;
    text-shadow: 2px 1px 0px #ffffff, 6px 5px 0px rgba(0, 0, 0, 0.35);
    letter-spacing: 1px;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75%;
    position: relative;
    margin: 20px 0 0;
    border-top: 2px solid #BBE6E4;
    border-bottom: 2px solid #BBE6E4;
    padding: 20px 0;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li a {
    color: #fff;
    font-size: 18px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin: 20px 0 0;
}
.footer-links a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}
.footer-links a img {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(96%) sepia(66%) saturate(327%) hue-rotate(134deg) brightness(94%) contrast(90%);
}
.footer-links a div {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.footer-links a div span {
    color: #fff;
    font-size: 18px;
}
.footer-links a div span:last-of-type {
    color: #BBE6E4;
}
div.footer-rights {
    margin: 0;
    width: 100%;
    border-top: 1px solid #BBE6E4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-rights p {
    color: #fff;
}
/*END OF FOOTER STYLE*/
/*END OF CONTACT STYLE*/
#callnowbutton {
    display: none;
}
#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: poOpen Sans;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: none;
    box-shadow: none;
    margin: 0px;
    padding: 0px;
}
.button-2 {
    font-size: 16px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-image: initial;
    border-left: none;
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    background: #cc2936;
    transition: all 0.5s ease 0s;
    color: #fff !important;
    text-shadow: none !important;
    font-weight: 500 !important;
}
.button-2:hover {
    background: #08415c;
    color: #fff !important;
}
@keyframes riseDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes riseRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes riseLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (min-width: 600px) {
    /*SLIDER TABLET*/
    .slider {
        justify-content: center;
    }
    .headers-buttons > div {
        flex-direction: row;
    }
    .button-1 {
        margin-top: 4px;
        margin-left: 10px;
    }
    /*END OF SLIDER TABLET*/
    /*ABOUT TABLET*/
    .about-section {
        padding-bottom: 50px;
    }
    .about-images {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        height: 100%;
        max-width: 750px;
    }
    .about-images-2 {
        width: 51%;
    }
    .about-images-1 {
        width: 45%;
        align-items: stretch;
    }
    .area-served li {
        width: 50%;
    }
    /*END OF ABOUT TABLET*/
    /*FEATURES TABLET*/
    .features-section {
        clip-path: polygon(25% 0%, 75% 0%, 100% 11%, 100% 89%, 75% 100%, 25% 100%, 0 89%, 0 11%);
        margin-top: -75px;
    }
    /*END OF FEATURES TABLET*/
    /*SERVICES TABLET*/
    .services-section {
        margin-top: -75px;
        padding-top: 75px;
    }
    /*END OF SERVICES TABLET*/
    /*TESTIMONIALS TABLET*/
    .slide p {
        font-size: 20px;
    }
    /*END TESTIMONIALS TABLET*/
    /*CONTACT TABLET*/
    .contact-section p {
        font-size: 26px;
        width: 75%;
    }
    /*END OF CONTACT TABLET*/
    /*FOOTER TABLET*/
    .footer-brand a {
        font-size: 33px;
    }
    /*END OF FOOTER TABLET*/
}
@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999999;
        cursor: poOpen Sans;
        bottom: 10px;
        background-color: #81d742;
        color: #fff;
        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;
    }
    #callnowbutton a img {
        height: 2em;
    }
}
@media (min-width: 981px) {
    /*NAVIGATION TABLET*/
    .hamburger {
        display: none;
    }
    nav {
        align-items: center;
        padding: 0px;
    }
    .navigation-section {
        position: relative;
    }
    nav .menu-section {
        flex-flow: wrap;
        justify-content: center;
        left: auto;
        position: relative;
        width: 100%;
        align-items: center;
        padding: 0px;
        margin: 0px;
        transform: none;
        top: auto;
        height: auto;
        order: 3;
        z-index: 3;
        min-height: auto;
        max-height: max-content;
    }
    nav .menu {
        height: auto;
        flex-direction: row;
        margin: 0px;
        width: 100%;
        background: #fff;
        box-shadow: none;
    }
    nav .menu li {
        margin: 10px;
        padding: 0px;
        width: auto;
    }
    nav .menu li a {
        color: #000;
    }
    .navigation {
        padding: 0px;
        flex-direction: row;
    }
    .brand {
        width: 60%;
        z-index: 5;
        order: 1;
        justify-content: flex-start;
    }
    .brand a,
    .brand-logo a {
        justify-content: flex-start;
        width: 85%;
    }
    .brand span {
        font-size: 30px;
        margin-left: 0;
    }
    .navigation-buttons {
        width: 40%;
        order: 2;
        flex-direction: row;
    }
    .navigation-links {
        position: relative;
        left: 0px;
        justify-content: flex-end;
    }
    /*END OF NAVIGATION TABLET*/
    /*SLIDER TABLET*/
    .slider-section {
        height: calc(-120px + 100vh);
    }
    /*END OF SLIDER TABLET*/
    /*BADGES DESKTOP*/
    .badges-section > div {
        margin: 30px 0;
    }
    /*END OF BADGES DESKTOP*/
    /*ABOUT DESKTOP*/
    .about-section {
        clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
        padding-bottom: 120px;
    }
    .about-section > div {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 60px;
    }
    div.about-titles {
        width: 69%;
    }
    .about-images {
        width: 49%;
        align-items: stretch;
        max-width: none;
        margin-top: 0;
    }
    .about-content {
        width: 49%;
        align-items: flex-start;
    }
    /*END OF ABOUT DESKTOP*/
    /*FEATURES DESKTOP*/
    .features-section {
        clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0 75%, 0 25%);
        margin-top: -145px;
    }
    .features-titles {
        width: 76%;
    }
    .features-text {
        margin-bottom: 30px;
    }
    /*END OF FEATURES DESKTOP*/
    /*SERVICES DESTOP*/
    .services-section {
        margin-top: -155px;
        padding-top: 155px;
        clip-path: polygon(30% 0%, 70% 0%, 100% 0, 100% 94%, 75% 100%, 25% 100%, 0 94%, 0 0);
    }
    .srvElementHeader h2 {
        width: 100%;
    }
    /*END OF SERVICES DESTOP*/
    /*GALLERY DESKTOP*/
    .GallerySwiper .swiper-slide a {
        width: 27vw;
        height: 27vw;
        max-width: 375px;
        max-height: 375px;
    }
    /*END OF GALLERY DESKTOP*/
    /*TESTIMONIALS DESKTOP*/
    .testimonial {
        position: relative;
        max-width: none;
    }
    /*END OF TESTIMONIALS DESKTOP*/
    /*CONTACT TABLET*/
    .contact-section p {
        font-size: 28px;
        width: 70%;
    }
    /*END OF CONTACT TABLET*/
    /*FOOTER TABLET*/
    footer > div {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-brand {
        width: 33%;
    }
    .footer-brand-logo {
        width: 33%;
    }
    .footer-content {
        margin-top: 0;
        border-right: 2px solid #BBE6E4;
        border-left: 2px solid #BBE6E4;
        padding: 0;
        border-top: 0;
        border-bottom: 0;
        width: 33%;
    }
    .footer-links {
        margin-top: 0;
        width: 25%;
    }
    /*END OF FOOTER TABLET*/
}
@media (min-width: 1330px) {
    .brand {
        width: 32%;
    }
    nav .menu-section {
        width: 40%;
        order: 2;
    }
    .navigation-buttons {
        width: 27%;
        order: 3;
    }
}
