body {
    color: #000;
    background: #fff;
    font-family: "Inter", 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: 25%;
    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: "Onest", 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: #ff6600;
    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: #1e1e1e;
}
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: #FF6600;
    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%;
}
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: "Onest", serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
    color: #FF6600;
    margin-top: 5px;
    text-align: left;
    margin-left: 10px;
}
.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: #fff;
    font-size: 18px;
}
.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: #fff;
    font-size: 18px;
}
/*END OF NAVIGATION STYLE*/
/*SLIDER STYLE*/
.slider-section {
    position: relative;
    width: 100%;
    height: calc(-55px + 100vh);
    align-items: center;
    display: flex;
    z-index: 0;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 450px;
    max-height: 700px;
}
/* .slider-section::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(#000000a1, transparent);
    z-index: 2;
} */
.slider-section > img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center 25%;
    z-index: 1;
}
.slider {
    display: flex;
    flex-direction: column;
    width: 95%;
    position: relative;
    max-width: 1280px;
    z-index: 4;
    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;
}
.slider-text {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
    position: relative;
    background: #00000045;
    z-index: 2;
}
.subtitle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    opacity: 0;
}
.subtitle img {
    height: auto;
    width: 40px;
    margin-right: 5px;
    filter: drop-shadow(#000 0px 0px 5px);
}
.subtitle p {
    text-transform: uppercase;
    color: #fff;
    text-shadow: #000 0px 0px 5px;
    text-align: left;
}
.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: left;
    opacity: 0;
}
.slogan {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
}
.slogan p {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    border-left: 2px solid #ff6600;
    border-bottom: 2px solid #ff6600;
    padding: 0 0 0 5px;
    filter: drop-shadow(0 0 10px #000);
}
.slider-text > p {
    margin: 10px 0px 5px;
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 20px;
    text-align: left;
    text-shadow: #000 0px 0px 5px;
    opacity: 0;
}
.slider-text p a {
    color: #FF6600;
    text-decoration: underline;
}
.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: flex-start;
    width: 100%;
}
.button {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    background: #FF6600;
    color: #fff;
    padding: 17px 16px;
    margin-right: 50px;
    border: none;
    transition: all 0.5s ease-in-out 0s;
    z-index: 1;
}
.button:hover {
    text-transform: capitalize;
    background: #eaeaea;
    color: #000;
}
.button::before {
    content: "";
    position: absolute;
    top: 0px;
    right: -50px;
    background-color: #eaeaea;
    background-image: url("/img/icons/arrows-black.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out 0s;
}
.button:hover::before {
    background-color: #FF6600;
    background-image: url("/img/icons/arrows-withe.webp");
}
.button::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0px 0px 0px auto;
    width: 0px;
    height: 100%;
    background: #eaeaea;
    transition: all 0.4s ease-in-out 0s;
    z-index: -1;
}
.button:hover::after {
    width: 100%;
    left: 0px;
    right: auto;
}
.button-1 {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    background: #eaeaea;
    color: #000;
    padding: 17px 16px;
    margin-right: 50px;
    border: none;
    transition: all 0.5s ease-in-out 0s;
    z-index: 1;
    margin-top: 10px;
}
.button-1:hover {
    text-transform: capitalize;
    background: #eaeaea;
    color: #fff;
}
.button-1::before {
    content: "";
    position: absolute;
    top: 0px;
    right: -50px;
    background-color: #FF6600;
    background-image: url("/img/icons/arrows-withe.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out 0s;
}
.button-1:hover::before {
    background-color: #eaeaea;
    background-image: url("/img/icons/arrows-black.webp");
}
.button-1::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0px 0px 0px auto;
    width: 0px;
    height: 100%;
    background: #FF6600;
    transition: all 0.4s ease-in-out 0s;
    z-index: -1;
}
.button-1:hover::after {
    width: 100%;
    left: 0px;
    right: auto;
}
.scroll-down {
    position: absolute;
    margin: 20px;
    z-index: 5;
    right: calc(7% - 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*/
/*BADGES STYLE*/
.badges-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #eaeaea;
}
.badges-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    margin: 50px 0px;
}
.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%;
    background: #fff;
    margin: 20px 10px;
    max-width: 200px;
    overflow: hidden;
    z-index: 1;
    position: relative;
}
.badge-holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff6600;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 0;
}
.badge-holder:hover::before {
    transform: translateY(0);
}
.badge-holder > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.badge-icon {
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 0px;
    margin: 5px 0px;
    z-index: 1;
    background: url(/img/icons/roofing-badge.webp);
    transition: all 0.5s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.badge-holder:hover .badge-icon{
    background: url(/img/icons/roofing-badge-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.badge-content {
    min-height: 40px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    text-transform: capitalize;
    text-align: center;
    margin: 5px 0px;
    z-index: 1;
    transition: all 0.5s;
}
.badge-holder:hover .badge-content {
    color: #fff;
}
.badge-title {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    width: 100%;
    background: #FF6600;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    margin: 5px 0px 0px;
    color: #fff;
    z-index: 1;
    transition: all 0.5s;
}
.badge-holder:hover .badge-title {
    background: #1e1e1e;
}
/*END OF BADGES STYLE*/
/*ABOUT STYLE*/
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.about-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    width: 95%;
    max-width: 1280px;
    margin: 50px 0px;
    position: relative;
}
.about-images {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 100%;
}
.about-images > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    margin: 10px 0px;
}
.about-image-1 {
    position: relative;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: auto;
    z-index: 2;
}
.about-dot-pattern-1 {
    position: absolute;
    right: 0px;
    top: 50%;
    filter: brightness(1) invert(41%) sepia(76%) saturate(1841%)
        hue-rotate(360deg) brightness(101%) contrast(107%);
    width: 20%;
    z-index: 1;
}
.about-image-2 {
    position: relative;
    object-fit: cover;
    object-position: center center;
    width: 95%;
    height: auto;
    margin-top: 8%;
    align-self: flex-start;
    z-index: 2;
}
.about-image-3 {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    position: relative;
    height: auto;
    z-index: 2;
}
.about-image-4 {
    margin-top: 30px;
    object-fit: cover;
    object-position: center center;
    width: 95%;
    height: auto;
    align-self: flex-end;
    position: relative;
    z-index: 2;
}
.about-dot-pattern-2 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 20%;
    z-index: 1;
}
.reveal-image {
    opacity: 0;
    transform: translateX(-50px);
    position: relative;
    overflow: hidden;
}
.reveal-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1E1E1E;
    transform: translateX(0%);
    z-index: 2;
    transition: transform 1s ease;
}
.reveal-image.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease, transform 1s ease;
}
.reveal-image.visible::before {
    transform: translateX(100%);
}
.delay-1 {
    transition-delay: 0.3s;
}
.delay-1::before {
    transition-delay: 0.3s;
}
.delay-2 {
    transition-delay: 1s;
}
.delay-2::before {
    transition-delay: 1s;
}
.about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.about-subtitle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.about-subtitle img {
    object-fit: contain;
    object-position: center center;
    width: 32px;
    bottom: 3px;
    position: relative;
    margin-right: 5px;
}
.about-subtitle p {
    margin: 0px;
    font-size: 18px;
    text-transform: uppercase;
    color: #FF6600;
}
.about-title {
    color: #000;
    opacity: 0;
}
.about-content > p {
    width: 100%;
    opacity: 0;
}
.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;
    opacity: 0;
}
.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: "✓";
    margin-right: 10px;
    font-size: 18px;
    color: #FF6600;
}
.about-content .button {
    opacity: 0;
}
/*END OF ABOUT STYLE*/
/*FEATURES STYLE*/
.features-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #1E1E1E;
    flex-direction: column;
    z-index: 0;
    overflow: hidden;
}
.features-section > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 50px 0;
}
.features-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}
.features-subtitle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.features-subtitle img {
    object-fit: contain;
    object-position: center center;
    width: 32px;
    bottom: 3px;
    position: relative;
    margin-right: 5px;
}
.features-subtitle p {
    margin: 0px;
    font-size: 18px;
    text-transform: uppercase;
    color: #FF6600;
}
.features-title {
    color: #fff;
    opacity: 0;
}
.features-content ul {
    padding-left: 0;
    list-style: none;
    opacity: 0;
}
.features-content ul li {
    color: #fff;
    position: relative;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ffffff73;
    padding: 0 0 20px;
}
.features-content ul li::before {
    content: '';
    background: url(/img/icons/roofing-icon-2.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 65px;
    height: 60px;
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
}
.features-content ul li strong {
    color: #FF6600;
    margin-left: 70px;
    font-size: 18px;
    margin-bottom: 5px;
}
.features-content .button {
    opacity: 0;
}
.features-images {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
}
.features-images > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    height: 100%;
}
.features-decoration {
    background: #2d2d2d;
    width: 33%;
    height: 250px;
    position: absolute;
    left: 0;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    bottom: 0;
    opacity: 0;
}
.features-image-1 {
    width: 57%;
    height: 400px;
    object-fit: cover;
    object-position: 72% bottom;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    margin-right: -24%;
    opacity: 0;
}
.features-image-2 {
    width: 57%;
    height: 400px;
    object-fit: cover;
    object-position: 18% bottom;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    margin-right: -9%;
    opacity: 0;
}
/*END OF FEATURES STYLE*/
/*SERVICES STYLE*/
.services-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.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 p {
    line-height: 1.4;
    font-weight: bold;
    color: #000;
    display: inline-block;
    font-size: 26px;
}
.srvBlockTitle {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.srvBlocSubtitle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.srvBlocSubtitle img {
    object-fit: contain;
    object-position: center center;
    width: 32px;
    bottom: 3px;
    position: relative;
    margin-right: 5px;
}
.srvBlocSubtitle p {
    margin: 0px;
    font-size: 18px;
    text-transform: uppercase;
    color: #FF6600;
}
.srvBlockTitle h2 {
    text-align: center;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 16px;
}
.services-title {
    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;
    opacity: 0;
}
.srvElement {
    margin: 40px 25px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    align-items: center;
    max-width: 376px;
}
.srcElementIcon {
    position: absolute;
    top: -45px;
    width: 90px;
    height: 90px;
    z-index: 2;
    border-radius: 50%;
    background: #FF6600;
    padding: 10px;
    border: 3px solid #fff;
    transition: all 0.5s;
}
.srvElement:hover .srcElementIcon {
    background: #2d2d2d;
}
.srcElementIcon img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 0 1px 1px #000000a3;
}
.srvElementHeader h2 {
    text-align: center;
    font-family: "Onest", 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;
    z-index: 0;
    border: 4px solid #FF6600;
    border-bottom: 0;
    width: 100%;
    transition: all 1s;
}
.srvElement:hover .srvElementImg {
    border-color: #2d2d2d;
}
.srvElementImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    position: relative;
}
.srvElementContent {
    text-align: justify;
    color: #fff;
    padding: 10px 20px 80px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}
.srvElementContent p {
    margin: 0px;
    font-weight: 500;
    position: relative;
    color: #fff;
    z-index: 2;
    transition: all 0.5s;
}
.srvElement:hover .srvElementContent p  {
    color: #000; 
}
.srvElementBody {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #1E1E1E;
    border: 4px solid #FF6600;
    border-top: 0;
    transition: all 1s;
}
.srvElement:hover .srvElementBody {
    background: #eaeaea; 
    border-color: #2d2d2d;
}
.srvElementBody::before {
    content: '';
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 20%;
    z-index: 1;
    background: #FF6600;
    transition: all 1s;
}
.srvElement:hover .srvElementBody::before {
    background: #2d2d2d;
}
.srvElementHeader {
    position: relative;
    padding: 10px 5px;
    z-index: 2;
    background: #FF6600;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s;
}
.srvElement:hover .srvElementHeader {
    background: #2d2d2d;
}
.srvElementHeader::before {
    content: '';
    background: #FF6600;
    height: 100%;
    width: 20%;
    position: absolute;
    left: -5%;
    z-index: 1;
    transition: all 1s;
}
.srvElement:hover .srvElementHeader::before {
    background: #2d2d2d;
    left: 0
}
.srvElementHeader::after {
    content: '';
    background: #FF6600;
    height: 100%;
    width: 20%;
    position: absolute;
    right: -5%;
    z-index: 1;
    transition: all 1s;
}
.srvElement:hover .srvElementHeader::after {
    background: #2d2d2d;
    right: 0;
}
/*END OF SERVICES STYLE*/
/*GALLERY STYLE*/
.gallery-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1E1E1E;
}
.gallery-content {
    width: 95%;
    max-width: 1280px;
    margin: 50px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.gallery-subtitle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.gallery-subtitle img {
    object-fit: contain;
    object-position: center center;
    width: 32px;
    bottom: 3px;
    position: relative;
    margin-right: 5px;
}
.gallery-subtitle p {
    margin: 0px;
    font-size: 18px;
    text-transform: uppercase;
    color: #FF6600;
}
.gallery-section h2 {
    text-align: center;
    position: relative;
    z-index: 2;
    color: #fff;
    opacity: 0;
}
.GallerySwiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px 60px !important;
    opacity: 0;
}
.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;
}
.GallerySwiper .swiper-slide::before {
    content: '';
    clip-path: polygon(50% 0%, 5% 100%, 95% 100%);
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 20%;
    z-index: 1;
    background: #ffffff63;
    transition: all 1s;
}
.GallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1s;
}
.GallerySwiper .swiper-slide .srcElementIcon {bottom: -25px;top: unset;}

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: #fff;
    text-align: center;
    font-size: 30px !important;
}
div.gallery-swiper-pagination {
    bottom: 0 !important;
}
div.gallery-swiper-pagination .swiper-pagination-bullet {
    background: #fff;
}
/*END OF GALLERY 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: 50px 0;
}
/*CONTACT FORM STYLE*/
.email-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}
.email-form > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    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: #ff6600c7;
    width: 100%;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    z-index: 4;
    backdrop-filter: blur(2px);
    opacity: 0;
}
.contact-form-title h2 {
    text-align: center;
    margin: 0px;
    color: #fff;
    text-shadow: none;
    font-weight: 600;
}
.contact-form {
    z-index: 4;
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.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;
    opacity: 0;
}
.contact-form .form-row:first-of-type {
    flex-direction: row;
    justify-content: space-between;
}
.contact-form .form-row > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 49%;
}
.contact-form .form-row.submit-btn {
    width: auto;
    margin: 0px;
}
.contact-form .form-row.submit-btn .button-1 {
    margin: 0px;
    cursor: pointer;
}
.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: #eaeaeabd;
    backdrop-filter: blur(2px);
    padding-top: 30px;
    box-shadow: 0 0 5px 0 #000;
}
.contact-form input:focus,
.contact-form input:not(:placeholder-shown),
.contact-form textarea:focus,
.contact-form textarea:not(:placeholder-shown) {
    outline: 0px;
    background: #EAEAEA;
    color: #000;
    border: 1px solid transparent;
}
.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;
    pointer-events: none;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    padding: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
.contact-form .form-row:first-of-type div:nth-of-type(2) label {
    left: calc(50% + 10px);
}
.contact-form .form-row label img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}
.contact-form .form-row-textarea label {
    color: #000;
    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: #000;
    padding: 2px 5px 2px 20px;
    background: #EAEAEA;
    font-size: 14px;
    box-shadow: hwb(0 0% 100% / 0.51) 0px 0px 5px 0px,
        #00000082 0px 0px 5px 0px;
    border: 1px solid #ffffff69;
    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*/
/*TESTIMONIALS STYLE*/
.testimonials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    flex-direction: column;
    margin-top: 20px;
}
.testimonials-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.testimonials-subtitle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.testimonials-subtitle img {
    object-fit: contain;
    object-position: center center;
    width: 32px;
    bottom: 3px;
    position: relative;
    margin-right: 5px;
}
.testimonials-subtitle p {
    margin: 0px;
    font-size: 18px;
    text-transform: uppercase;
    color: #FF6600;
}
.testimonials-title {
    color: #000;
    opacity: 0;
}
.testi-content.swiper-wrapper {
    align-items: center;
}
#testimonials {
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 2;
    align-items: center;
}
.testimonials-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 25px;
    border-bottom: 5px solid #FF6600;
    padding-bottom: 25px;
    opacity: 0;
}
.testimonials-rating-numbers {
    color: #FF6600;
    font-size: 25px;
    margin-right: 20px;
}
.testimonials-rating-stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.testimonials-rating-stars span {
    color: #FF6600;
    font-size: 22px;
    margin-right: 3px;
}
.testimonial {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.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: flex-start;
    flex-direction: row;
    width: 90%;
}
div.testimonials-image > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10px;
}
.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
}
.testimonial-content {
    padding: 20px 15px;
    position: relative;
    z-index: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}
.testimonial-content > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}
.testimonial-text {
    position: relative;
    margin: 10px 0px 0px;
}
.slide p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: justify;
    margin: 0px;
    position: relative;
    padding: 0px 0px 10px;
    text-shadow: #fff 0px 0px 5px;
    font-size: 18px;
}
.slide .details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0px;
    width: 100%;
}
.testimonials-image .image {
    height: auto;
    width: 100%;
    position: relative;
    object-fit: cover;
    z-index: 2;
    width: 80px;
    border-radius: 50%;
    height: 80px;
}
.details .name {
    font-size: 20px;
    font-weight: 500;
}
div.testimonials-image > div > img {
    width: 100px;
    margin-top: 10px;
}
.testimonials-swiper-navigation {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}
.testimonial .swiper-button-next {
    left: auto !important;
    margin-left: 5px;
    background: #1e1e1e;
    right: auto !important;
    top: auto !important;
    position: relative !important;
}
.testimonial .swiper-button-prev {
    margin-right: 5px;
    background: #1e1e1e;
    left: 0px !important;
    top: 0px !important;
    right: 0px !important;
}
.testimonial .swiper-button-prev,
.swiper-button-next {
    border: 1px solid #1e1e1e;
    border-radius: 0px;
    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::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 0px 20px;
    max-width: 500px;
}
/*END OF TESTIMONIALS STYLE*/
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    flex-direction: column;
    z-index: 1;
}
footer:before {
    content: '';
    background: #1e1e1eba;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
}
footer > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 4;
    flex-direction: column;
}
.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: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #fff;
}
.footer-brand a img {
    width: 130px;
    height: auto;
}
.footer-brand a span {
    color: #fff;
    font-size: 25px;
}
.footer-brand p {
    color: #fff;
    text-shadow: none;
    text-align: center;
    font-size: 28px;
}
.footer-brand p a {
    color: #fff;
    text-decoration: underline;
}
.footer-menu {
    width: 100%;
    list-style: none;
    padding: 0px;
    display: flex;
    flex-flow: wrap;
    place-content: center;
    align-items: center;
}
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
    position: relative;
    z-index: 4;
    max-width: 1280px;
    padding: 30px 0;
}
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-menu li {
    width: 47%;
    padding: 5px 5px 5px 15px;
    border-left: 2px solid #ffffff7d;
}
.footer-menu li a {
    color: #fff;
    font-size: 18px;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    flex-direction: column;
    z-index: 4;
}
.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-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: #ff6600;
    transition: all 0.5s ease 0s;
    color: #fff !important;
    text-shadow: none !important;
    font-weight: 500 !important;
}
.button-2:hover {
    background: #2d2d2d;
    color: #fff !important;
}
@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes riseUpImg {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes riseDownImg {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes riseLeft {
    from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes riseRight {
    from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (min-width: 600px) {
    /*SLIDER TABLET*/
    .headers-buttons > div {
        flex-direction: row;
    }
    .button-1 {
        margin-top: 0px;
        margin-left: 10px;
    }
    /*END OF SLIDER TABLET*/
    /*ABOUT TABLET*/
    .about-images > div {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .about-images > div:last-child {
        justify-content: space-between;
        margin-top: -11%;
        align-items: flex-end;
    }
    .about-image-1 {
        width: 48%;
        height: 50vw;
        margin-right: 4%;
        position: relative;
        top: 0px;
    }
    .about-dot-pattern-1 {
        top: 13%;
        width: 10%;
        transition: all 1s;
    }
    .about-images:hover .about-dot-pattern-1 {
        top: 50%;
    }
    .about-image-2 {
        width: 45%;
        margin-top: 10%;
        transition: all 0.5s;
    }
    .about-images:hover .about-image-2 {
        margin-top: 0;
    }
    .about-image-3 {
        width: 48%;
        margin-bottom: 8%;
    }
    .about-images:hover .about-image-3 {
        margin-bottom: 0;
    }
    .about-image-4 {
        width: 48%;
        margin: 0px;
        align-self: center;
        height: 50vw;
        position: relative;
        bottom: 0px;
    }
    .about-dot-pattern-2 {
        width: 10%;
        left: 47%;
        transition: all 1s;
    }
    .about-images:hover .about-dot-pattern-2 {
        bottom: 54%;
        left: 43%;
    }
    .area-served li {
        width: 50%;
    }
    /*END OF ABOUT TABLET*/
    /*GALLERY TABLET*/
    .GallerySwiper .swiper-slide a {
        width: 40vw;
        height: 40vw;
    }
    /*END OF GALLERY TABLET*/
    /*TESTIMONIALS TABLET*/
    .testimonials-rating-numbers {
        font-size: 30px;
    }
    .testimonials-rating-stars span {
        font-size: 25px;
    }
    .slide p {
        font-size: 20px;
    }
    /*FOOTER TABLET*/
    .footer-brand a img {
        width: 150px;
    }
    .footer-brand a span {
        font-size: 30px;
    }
    /*END OF FOOTER TABLET*/
}
@media screen and (max-width: 650px) {
    #callnowbutton {
        position: fixed;
        right: 10px;
        padding: 10px 20px;
        z-index: 9999999;
        cursor: pointer;
        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: #1e1e1e;
    }
    nav .menu li {
        margin: 10px;
        padding: 0px;
        width: auto;
    }
    .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;
    }
    .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 TABLET*/
    .about-section > div {
        flex-direction: row;
        justify-content: space-between;
        margin: 30px 0;
    }
    .about-images {
        width: 49%;
        margin: 0;
    }
    .about-image-1 {
        height: 27vw;
        max-height: 365px;
    }
    .about-dot-pattern-1 {
        top: 12%;
    }
    .about-images > div:last-child {
        margin-top: -17%;
    }
    .about-image-4 {
        height: 27vw;
        max-height: 365px;
    }
    .about-images:hover .about-dot-pattern-1 {
        top: 45%;
    }
    .about-images:hover .about-dot-pattern-2 {
        bottom: 49%;
    }
    .about-content {
        width: 49%;
        align-items: flex-start;
    }
    .about-titles {
        align-items: flex-start;
    }
    /*END OF ABOUT TABLET*/
    /*FEATURES TABLET*/
    .features-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    .features-section > div:first-child {
        width: 49%;
        margin-left: 2.5%;
        margin-right: 1%;
        align-items: flex-end;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .features-content {
        max-width: 640px;
        align-items: flex-start;
    }
    .features-images {
        width: 49%;
        justify-content: flex-start;
    }
    .features-images > div {
        max-width: 640px;
    }
    .features-decoration {
        bottom: 0;
        height: 40%;
        width: 60%;
    }
    .features-image-1 {
        position: absolute;
        margin: 0;
        top: 0;
        height: 80%;
        width: 100%;
    }
    .features-image-2 {
        position: absolute;
        bottom: 0;
        right: -45%;
        margin: 0;
        height: 80%;
        width: 100%;
        object-position: 26% bottom;
    }
    /*END OF FEATURES TABLET*/
    /*SERVICES DESTOP*/
    .services-section > div {
        margin: 30px 0;
    }
    .srvElementHeader h2 {
        width: 100%;
    }
    /*END OF SERVICES DESTOP*/
    /*GALLERY DESKTOP*/
    .gallery-content {
        margin: 30px 0;
    }
    .GallerySwiper .swiper-slide a {
        width: 27vw;
        height: 27vw;
        max-width: 375px;
        max-height: 375px;
    }
    /*END OF GALLERY DESKTOP*/
    .contact-form-content > div {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        margin: 30px 0 55px;
    }
    /*CONTACT FORM DESKTOP*/
    .email-form {
        width: 49%;
        justify-content: flex-start;
    }
    .contact-form-title {
        margin-top: 20px;
    }
    .contact-form {
        align-items: flex-start;
    }
    .contact-form textarea {
        width: 85%;
    }
    .contact-form .form-row-textarea label {
        width: 32% !important;
    }
    /*END OF CONTACT FORM DESKTOP*/
    /*TESTIMONIALS DESKTOP*/
    .testimonials-section {
        width: 49%;
        margin-top: 0;
    }
    .testimonials-subtitle {
        justify-content: flex-start;
        width: 100%;
    }
    .testimonials-rating {
        justify-content: flex-start;
        margin-top: 50px;
    }
    .testimonials-rating-numbers {
        font-size: 35px;
    }
    .testimonials-rating-stars span {
        font-size: 30px;
    }
    .testimonial {
        position: relative;
        margin-left: -84px;
        width: 55vw;
        top: 30px;
        max-width: 730px;
    }
    /*END OF TESTIMONIALS DESKTOP*/
    /*FOOTER TABLET*/
    .footer-brand {
        width: 75%;
        align-items: flex-start;
    }
    .footer-brand > a {
        align-items: flex-start;
    }
    .footer-brand a img {
        width: 156px;
    }
    .footer-brand a span {
        font-size: 36px;
    }
    .footer-brand p {
        text-align: left;
    }
    .contact-section {
        flex-direction: row;
        justify-content: center;
    }
    .contact-content {
        flex-direction: row;
        justify-content: space-between;
        width: 25%;
    }
    .footer-menu {
        width: 100%;
        justify-content: flex-end;
    }
    .footer-menu li {
        width: 100%;
        text-align: right;
        border-left: none;
        border-right: 2px solid #ffffff7d;
        padding: 5px 15px 5px 5px;
    }
    /*END OF FOOTER TABLET*/
}
@media (min-width: 1330px) {
    .brand {
        width: 32%;
    }
    nav .menu-section {
        width: 40%;
        order: 2;
    }
    .navigation-buttons {
        width: 27%;
        order: 3;
    }
}