@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;500;700&display=swap');

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    background-color: white;
    scroll-behavior: smooth;
}

p {
    font-size: 0.75rem;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(13deg, #757575 14%,#999999 64%);
    border-radius: 11px;
}
::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(13deg, #7d7d7d 14%,#a6a6a6 64%);
}
::-webkit-scrollbar-track{
    background: #ffffff;
    border-radius: 15px;
}

video {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    filter: brightness(90%);
}

.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 999;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.topnav.scrolled {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#logo {
    font-size: 1.2rem;
    padding: 0;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.site {
    font-size: 0.8rem;
}

.topnav-elements {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    max-width: 100%;
}

.icon {
    display: none;
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
    position: relative; /* Ensure proper positioning */
    z-index: 1000; /* Ensure it appears above other elements */
}

@media screen and (max-width: 768px) {
    .topnav-elements {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        z-index: 998;
        display: flex;
    }

    .menu-elements {
        width: 100%;
    }
    
    .menu-elements:hover {
        background-color: #f1f1f1;
    }

    .topnav-elements.open {
        max-height: 500px; /* adjust depending on how many links you have */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .icon {
        display: block;
    }

    .topnav {
        flex-wrap: wrap;
    }

    .topnav.open {
        background-color: white;
    }
}

.menu-elements {
    float: left;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1rem;
    transition: 1s;
}

.menu-elements-logo {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1rem;
    transition: 1s;
}

.topnav a:hover{
    color: #242424;
}

.topnav .icon {
    /* display: none; */
    float: left;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1rem;
    transition: 1s;
}

#logo {
    float: left;
    font-size: 1rem;
    padding-left: 20px;
}

.position-rel {
    position: relative;
}

.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.container {
    background-color: white;
    width: 600px;
    min-height: 360px;
    word-wrap: break-word;
    text-align: center;
}

.container-background {
    width: 600px;
    min-height: 350px;
    position: relative;
}

.parallax {
    background-image: url("../web_image/pexels-andrew-neel-7932264.jpg");
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    min-height: 100%;
    background-color: white;

}

.more-info-about-us {
    display: none;
}

button {
    background-color: black;
    color: white;
    border: none;
    text-align: center;
    transition: all 0.5s;
    cursor: pointer;
    width: 100px;
    height: 40px;
}

button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

button:hover span {
    padding-right: 25px;
}

button:hover span:after {
    opacity: 1;
    right: 0;
}

.site {
    font-size: 0.5rem;
}

.go-down {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}