body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
}

* {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

a:visited {
    color: #0000;
    /* Same color as default to avoid visual distinction */
    text-decoration: none;
    /* Ensure underline is removed */
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: #000;
    font-family: 'Poppins', sans-serif !important;
}

body {
    overflow-x: hidden;
}

h1 {
    font-weight: 600;
    font-size: 38px;
    letter-spacing: 4px;
}

h2 {
    font-weight: 600;
    font-size: 42px;
    letter-spacing: 8px;
}

h3 {
    font-weight: 800;
    font-size: 18px;
    text-align: left;
    letter-spacing: 4px;
}

p {
    font-weight: 100;
    font-size: 18px;
    letter-spacing: 4px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

header {
    background-color: #ECECEC;
    color: #000;
    position: fixed;
    width: 100%;
    height: 75px;
    opacity: 1;
    z-index: 1;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.menu-item {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    height: 50px;
    line-height: 50px;
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    transition: .5s;
    font-size: 12px;
    font-weight: 600;
}

.menu-top-right {
    right: 0px;
    height: 80px;
    width: 250px;
    top: 0px;
    position: absolute;
    z-index: 100;
}

.menu-item-right {
    /* position: relative; */
    display: inline-block;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    height: 50px;
    line-height: 50px;
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    transition: .5s;
    font-size: 12px;
    font-weight: 600;
}

.submenu {
    background-color: #EFEFEF;
    height: auto;
    display: none;
    margin-top: 0px
}

.submenu-container {
    display: grid;
    /* Use CSS Grid */
    grid-template-columns: repeat(3, 1fr);
    /* 3 equal columns */
    position: relative;
    /* top: 75px; */
    height: auto;
    width: 100%;
    z-index: 2;
    padding: 0px;
    background-color: #EFEFEF;
    /* padding: 10px; */
}

.submenu-container-mobile {
    display: none;
    /* Use CSS Grid */
    grid-template-columns: repeat(1, 1fr);
    /* 3 equal columns */
    position: relative;
    /* top: 75px; */
    text-align: center;
    height: auto;
    width: 100%;
    z-index: 2;
    padding: 0px;
    /* background-color: #EFEFEF; */
    /* padding: 10px; */
}

.submenu-item-mobile {
    cursor: pointer;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    /* height: 100px; */
    line-height: 40px;
    color: #000;
    transition: .5s;
    /* max-width: 450px; */
    font-size: 18px;
    font-weight: 600;
    /* background-color: #676767; */
    /* Background for each item */
}

.submenuinner {
    background-color: #EFEFEF;
    position: relative;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    text-align: center;
    padding: 25px;
    max-width: 1500px;
    height: auto;
}

.submenu-item {
    cursor: pointer;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    /* height: 100px; */
    line-height: 100px;
    color: #fff;
    transition: .5s;
    max-width: 450px;
    margin-left: 50px;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-right: 50px;
    font-size: 18px;
    font-weight: 600;
    background-color: #676767;
    /* Background for each item */
}

.menu-item-icon-mobile {
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.menu-item.active .menu-item-icon-mobile {
    transform: rotate(90deg);
}

.menu-item-icon {
    transition: transform 0.3s ease;
    /* Smooth transition for the rotation */
}

.menu-item:hover .menu-item-icon {
    transform: rotate(90deg);
    /* Rotate the icon by 90 degrees on hover */
}

.language-hover {
    display: none;
    position: fixed;
    top: 65px;
    height: 40px;
    right: 20px;
    z-index: 2;
    background-color: #000;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.language-option {
    display: inline-block;
    margin: 5px;
}

.search-hover {
    display: none;
    position: absolute;
    top: 60px;
    height: 40px;
    right: 250px;
    z-index: 2;
    border-radius: 10px;
}

.search-option {
    display: inline-block;
    margin: 5px;
}

.flag-icon {
    width: 40px;
    height: 30px;
    border-radius: 3px;
    cursor: pointer;
}

.menu-item-icon {
    margin-left: 10px;
}

#search-icon {
    margin-top: 7.5px;
}

.menu-item-logo {
    margin-left: 15px;
    margin-top: 15px;
    /* background-color: #ff0000; */
    height: 50px;
}

.menu-item-logo-mobile {
    /* background-color: #ff0000; */
    height: 50px;
    margin-top: 15px;
}

.menu-item-logo img {
    height: 100%;
}

.menu-item-logo-mobile img {
    height: 100%;
}

.menu-item-search {
    margin-top: 15px;
}

.menu-item-search:hover {
    cursor: pointer;
}

.search-bar {
    display: none;
}

.language-dropdown {
    margin-left: 15px;
}

.section-1 {
    /* padding: 50px; */
    min-height: 100vh;
}

.section-1-small {
    min-height: 80vh;
}

.section-2,
.section-3,
.section-4,
.section-5,
.section-6,
.section-7,
.section-8 {
    padding: 50px;
    min-height: 40vh;
}

.section-4 {
    text-align: center;
}

.section-1 {
    /* background-color: #0000ff; */
    /* background-image: url('assets/section-1-header.jpg'); */
}

.section-inner {
    max-width: 1100px;
    left: 50%;
    position: relative;
    transform: translate(-50%);
}

.central_inner {
    text-align: center;
    width: 100%;
}

.central_inner p {
    width: 100%;
    text-align: center;
}

.central_inner h1 {
    width: 100%;
    text-align: center;
}

.section-1-header {
    font-weight: 600;
    position: absolute;
    top: 50%;
    /* background-color: #fff; */
    left: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: #000;
    text-align: center;
    transform: translate(-50%, -50%);
}

.section-1-subheader {
    font-weight: 600;
    position: absolute;
    top: 55%;
    /* background-color: #fff; */
    left: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: #000;
    text-align: center;
    transform: translate(-50%, -50%);
}

.section-1-header-nobg {
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
}

.section-3-img {
    width: 100%;
    max-width: 500px;
    left: 50%;
    padding-top: 100px;
    position: relative;
    transform: translate(-50%);
}

.video-intro {
    /* background-color: #ff0000; */
    bottom: 20px;
    left: 2%;
    width: 80%;
    /* max-width: 1400px; */
    /* left: 50%; */
    position: absolute;
    /* transform: translate(-50%); */
}

.video-intro h2 {
    color: #000;
    margin-bottom: 20px;
    margin-top: 0px;
    line-height: 60px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    min-height: 400px;
}

.grid-4-min {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    min-height: 300px;
}

.grid-3-min {
    display: grid;
    margin: 0px;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    /* Controls the space between columns */
    justify-content: space-evenly;
    /* Centers and spaces items evenly */
}

.grid-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
    min-height: 300px;
}

.grid-3-min>div {
    /* display: flex; */
    justify-content: center;
    /* Centers images within each column */
    align-items: center;
    /* Optional: Adds inner spacing */
}

.grid-4-minified {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    min-height: 100px;
}

.image {
    height: 100%;
}

.image-placeholder {
    background-color: #D9D9D9;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* Ensures the div is always a square */
    overflow: hidden;
    /* Hides any overflow content */
    display: flex;
    /* Center the image within the container */
    justify-content: center;
    align-items: center;
}

.full-width-image-placeholder {
    background-color: #D9D9D9;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    /* Ensures the div is always a square */
    overflow: hidden;
    /* Hides any overflow content */
    display: flex;
    /* Center the image within the container */
    justify-content: center;
    align-items: center;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container and crops if needed */
    object-position: center;
    /* Center the image within the container */
}

.full-width-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container and crops if needed */
    object-position: center;
    /* Center the image within the container */
}

.image-default {
    background-color: #D9D9D9;
    width: 100%;
    overflow: hidden;
    /* aspect-ratio: 1 / 1; */
    overflow: hidden;
    /* Hides any overflow content */
    display: flex;
    /* Center the image within the container */
    justify-content: center;
    align-items: center;
}

.image-default img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container and crops if needed */
    object-position: center;
    /* Center the image within the container */
}

.triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 300px solid grey;
    /* Change 'grey' to any color you like */
}

.social-links {
    width: 100%;
    /* background-color: #ff0000; */
    height: 75px;
    position: relative;
    display: block;
}

.social-links div {
    margin: 10px 10px 0px 10px;
    /* margin-bottom: 40px; */
    /* margin-top: 30px; */
    display: inline-block;
}

.play-icon {
    position: absolute;
    padding-left: 4px;
    width: 46px;
    line-height: 58px;
    height: 50px;
    text-align: center;
    float: left;
    border-radius: 100px;
    background-color: #808080;
}

.video-lozenge {
    position: relative;
    width: 200px;
    text-align: center;
    height: 50px;
    left: 75px;
    line-height: 52.5px;
    background-color: #D9D9D9;
    border-radius: 100px;
    transition: .5s;
}

.video-lozenge:hover {
    cursor: pointer;
    transition: .5s;
    color: #fff;
    background-color: #808080;
}

.contact-form {
    position: relative;
    width: 50%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: #D9D9D9;
    border-radius: 40px;
}

.contact-lozenge {
    position: relative;
    width: 200px;
    text-align: center;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
    /* right: 75px; */
    line-height: 52.5px;
    background-color: #808080;
    border-radius: 100px;
    transition: .5s;
}

.contact-lozenge:hover {
    cursor: pointer;
    transition: .5s;
    color: #fff;
    background-color: #808080;
}

.career-lozenge {
    position: relative;
    width: 200px;
    margin-bottom: 60px;
    bottom: 0px;
    top: 25px;
    text-align: center;
    height: 50px;
    /* right: 75px; */
    line-height: 52.5px;
    background-color: #D9D9D9;
    border-radius: 100px;
    transition: .5s;
}

.career-lozenge:hover {
    cursor: pointer;
    transition: .5s;
    color: #fff;
    background-color: #808080;
}

footer {
    position: relative;
    background-color: #ECECEC;
    /* color: white; */
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    z-index: 10;
}

input {
    background-color: #6D6D6D;
    border: none;
    padding: 20px;
    width: calc(100% - 40px);
    color: #000;
    border-radius: 50px;
    font-size: 16px;
}

textarea {
    background-color: #808080;
    border: none;
    padding: 20px;
    width: calc(100% - 40px);
    color: #000;
    border-radius: 20px;
    font-size: 16px;
}

.form-group {
    /* margin-bottom: 20px; */
}

.subscribe-button-lozenge {
    margin-top: -49px;
    /* top: 0px; */
    position: absolute;
    width: 175px;
    /* margin-top: 20px; */
    text-align: center;
    border: 0px;
    right: 53.5%;
    margin-left: 0px;
    height: 40px;
    line-height: 40px;
    background-color: #6D6D6D;
    border-radius: 100px;
    transition: .5s;
}

.subscribe-button-lozenge:hover {
    cursor: pointer;
    transition: .5s;
    color: #fff;
    background-color: #808080;
}

.border-line {
    border-top: 1px solid #D9D9D9;
    width: 75%;
    left: 15%;
    position: relative;
}

.footer-sections {
    /* background-color: #ff0000; */
    padding: 40px;
    height: auto;
    color: #000;
}

.footer-sections a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 2.5px;
    transition: .5s;
}

.footer-sections a:hover {
    color: #808080;
    transition: .5s;
}

.footer-sections h3 {
    text-align: center;
}

#threejs-section {
    position: fixed;
}

.desktopNav {
    display: block;
}

.mobileNav {
    display: none;
}

@media only screen and (max-width: 968px) {

    .contact-form {
        position: relative;
        width: 90%;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px;
        background-color: #D9D9D9;
        border-radius: 40px;
    }

    .desktopNav {
        display: none;
    }

    .mobileNav {
        display: block;
    }

    .grid-4,
    .grid-4-min,
    .grid-4-minified,
    .grid-footer,
    .grid-3-min {
        grid-template-columns: 1fr;
        display: block;
    }

    .subscribe-button-lozenge {
        margin-top: -49px;
        /* top: 0px; */
        position: absolute;
        width: 175px;
        /* margin-top: 20px; */
        text-align: center;
        border: 0px;
        float: right;
        right: 12.5px;
        margin-left: 0px;
        height: 40px;
        line-height: 40px;
        background-color: #6D6D6D;
        border-radius: 100px;
        transition: .5s;
    }
}

.burger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    z-index: 10;
    right: 20px;
    top: 25px;
    position: absolute;
}

.line {
    height: 4px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Fullscreen Menu Styles */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ECECEC;
    color: 000;
    display: none;
    /* Initially hidden */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.fullscreen-menu .menu-item {
    font-size: 24px;
    margin: 20px 0;
    text-align: center;
}

/* Animation for Burger Icon */
.burger.open .line:nth-child(1) {
    transform: rotate(55deg) translate(12px, 6px);
    transform-origin: center;
}

.burger.open .line:nth-child(2) {
    transform: rotate(-55deg) translate(-11px, -9px) scaleX(.9);
    transform-origin: center;
}

.burger.open .line:nth-child(3) {
    transform: rotate(0deg) translate(-5px, 5px) scaleX(1);
    transform-origin: center;
}

/*  */

/* GALLERIE STYLES */

/* General Styles */
body {
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
}

/* Section 1 - Carousel */
.carousel {
    position: relative;
    width: 700px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    height: 700px;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
    height: 100%;
}

.carousel-item {
    flex: 1;
    width: 100%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the div and maintains aspect ratio */
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border: none;
    font-size: 2em;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.prev {
    left: 10px;
    width: 100px;
    opacity: .7;
}

.next {
    right: 10px;
    width: 100px;
    opacity: .7;
}

.prev img,
.next img {
    width: 100%;
    height: 100%;
}

/* Section 2 and Section 4 - Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 10px; */
    row-gap: 65px;
    position: relative;
    margin-left: 55px;
    /* padding: 20px; */
}

.video-grid {
    display: grid;
}

.grid-item-video {
    width: 100%;
    height: 400px;
    background-color: #ff0000;
    margin-bottom: 20px;
}

.grid-item {
    background-color: grey;
    width: 300px;
    height: 300px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.grid-item img:hover {
    cursor: pointer;
    opacity: .7;
    transition: .5s;
}

/* Mobile layout: full-width grid items */
@media (max-width: 968px) {
    .image-grid {
        grid-template-columns: 1fr;
        /* Each grid item takes full width on mobile */
        margin: 0px;
    }

    .grid-item {
        width: 300px;
        margin: 0 auto;
        /* Center grid items horizontally */
        background-color: transparent;
    }
}

.section-1-header-galerie {
    font-weight: 600;
    position: absolute;
    top: 50%;
    width: 75%;
    /* background-color: #fff; */
    left: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: #000;
    text-align: center;
    transform: translate(-50%, -50%);
}

/* GALERIA MODAL */
/* Modal (hidden by default) */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Modal image container with white border */
.modal-image-wrapper {
    border: 50px solid white;
    max-width: 90%;
    max-height: 80%;
    text-align: center;
    position: relative;
    /* To position the child image absolutely */
    overflow: hidden;
    /* Ensure overflow is hidden to crop the image */
}

/* Modal image */
.modal-content {
    width: 600px;
    height: 600px;
    object-fit: cover;
    display: block;
    margin: auto;
}

/* Title and description container */
#modalText {
    color: #000;
    text-align: center;
    top: 0px;
    height: 100px;
    background-color: #fff;
}

/* Modal title */
#modalTitle {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000;
    margin-top: 0px;
    padding-top: 20px;
}

/* Modal description */
#modalDescription {
    text-align: center;
    font-size: 16px;
}

.modal .prevmodal,
.modal .nextmodal {
    cursor: pointer;
    position: absolute;
    top: 50%;
    max-width: 100px;
    opacity: .7;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 1;
}

.prevmodal img {
    width: 100%;
    height: 100%;
}

.nextmodal img {
    width: 100%;
    height: 100%;
}

.modal .prevmodal {
    left: 60px;
}

.modal .nextmodal {
    right: 60px;
}

.modal .prevmodal:hover,
.modal .nextmodal:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.tcBtn {
    position: absolute;
    left: 30%;
    bottom: 20px;
    font-size: 12px
}

.ppBtn {
    position: absolute;
    right: 30%;
    bottom: 20px;
    font-size: 12px
}

.copyright {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .tcBtn {
        position: relative;
        width: 100%;
        left: auto;
        /* background-color: #ff00ff; */
        display: block;
    }

    .ppBtn {
        position: relative;
        width: 100%;
        /* background-color: #ff0000; */
        left: auto;
        display: block;
        right: 0px;
    }

    .copyright {
        position: relative;
        width: 100%;
        /* background-color: #ff0000; */
        left: auto;
        display: block;
        right: 0px;
        transform: translateX(0%);
    }
}

.services-button-lozenge {
    /* top: 0px; */
    /* position: absolute; */
    width: 210px;
    /* margin-top: 20px; */
    text-align: center;
    border: 0px;
    height: 40px;
    line-height: 40px;
    background-color: #D9D9D9;
    border-radius: 100px;
    transition: .5s;
}

.services-button-lozenge:hover {
    cursor: pointer;
    transition: .5s;
    color: #fff;
    background-color: #D9D9D9;
}

.pool-priving-button {
    right: 0%;
    width: 100%;
    position: relative;
    height: 200px;
}

.pool-priving-button h2 {
    color: #000;
    margin-bottom: 20px;
    margin-top: 0px;
    line-height: 60px;
}

.pool-priving-button-lozenge {
    position: relative;
    width: 350px;
    text-align: center;
    height: 50px;
    float: right;
    line-height: 52.5px;
    background-color: #D9D9D9;
    border-radius: 100px;
    transition: .5s;
}

.pool-priving-button-lozenge:hover {
    cursor: pointer;
    transition: .5s;
    color: #fff;
    background-color: #808080;
}

.pool-faq-button {
    margin-top: -200px;
    top: -200ox;
    right: 0%;
    width: 100%;
    /* position: relative; */
    height: 200px;
}

.pool-faq-button h2 {
    color: #000;
    margin-bottom: 20px;
    margin-top: 0px;
    line-height: 60px;
}

.pool-faq-button-lozenge {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    width: 250px;
    text-align: center;
    height: 50px;
    line-height: 52.5px;
    background-color: #D9D9D9;
    border-radius: 100px;
    transition: .5s;
}

.pool-faq-button-lozenge:hover {
    cursor: pointer;
    transition: .5s;
    color: #fff;
    background-color: #808080;
}