:root {
    --primary900: #EEEEEE;    /* Light Blue */
    --accent700: #686D76;    /* Dark Gray */
    --secondary100: #373A40; /* Bright Blue */
}

body {
    overscroll-behavior: none;
    margin: 0;
    width: 100%;
    overflow-y: visible !important;
}

.scroll-container {
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.header {
    display: flex;
    justify-content: space-between;
    background-color: var(--secondary100);
    height: 75px;
    position: relative;
}

.menu-container {
    display: flex;
    color: var(--accent700);
    align-items: center;
    justify-content: center;
    padding-left: 15px;
}

.menu-content {
    cursor: pointer;
    display: inline-block;
    align-items: center;
    color: var(--primary900);
}

.menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-color: var(--primary900);
    mask: url(../images/logo.svg) no-repeat center / contain;
    -webkit-mask: url(../images/logo.svg) no-repeat center / contain;
}

.menu-dropdown {
    /* Removed the :hover styles */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: absolute;
    z-index: -1;
    background-color: var(--secondary100);
    border-radius: 0px 0px 15px 15px;
    list-style: none;
    transition: all 0.5s ease;
    padding: 20px;
}

.menu-container:hover .menu-dropdown {
    z-index: 1;
    opacity: 1;
}


.menu-dropdown a {
    display: block;
    color: var(--primary900);
    text-decoration: none;
}

.menu-dropdown li a:hover {
    color: white;
}
.menu-dropdown li a:click {
    color: white;
}

.show{
    z-index: 1;
    opacity: 1;
    color: white;
}

.title-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary900);
}

.title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
.subtitle {
    color: var(--primary900);
    border: #073F4D;
    background-color: var(--secondary100);
    text-align: center;
    margin: 0;
    padding: 10px;
    
    
    
}
.title-container  a {
    text-decoration: none;
    color: var(--primary900);
}

.content-map-image {
    width: 100%;
    background-repeat: no-repeat;
    object-fit: cover;
    position: relative;
}

.content-map-selection {
    position: absolute;
    top: 27%;
    left: 41%;
    width: 100px;
    height: 100px;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid var(--secondary100);
}

.content-map-selection a {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.red-background {
    width: 100%;
    display: flex;
    overflow: hidden;
}
.red-background img {
    width: 100%;
    display: flex;
}
.footer {
    color: var(--primary900);
    background-color: var(--secondary100);
    text-align: center;
    font-size: 0.8rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.info-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary900);
    position: relative;
}
@keyframes moveBubble {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100vh);
    }
}

.info-bubble-content {
    text-align: center;
    width: 80%;
    opacity: 1;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    z-index: 100;
    align-items: start;
}

.Item1 {
    display: flex;
    position: relative;
    background-color: var(--secondary100);
    border-radius: 50%;
    opacity: 0.8;
}

.SwissMain {
    background-image: url(../images/switzerland.avif);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    overflow: hidden;
    padding-bottom: 30px;
}

.offset-1 {
    margin-top: 10px;
}

.offset-2 {
    margin-top: 30px;
}

.offset-3 {
    margin-top: 50px;
}

.offset-4 {
    margin-top: 70px;
}

.offset-5 {
    margin-top: 100px;
}

.sizeoffset-1 {
    padding: 20px;
    min-width: fit-content;
    max-width: calc(fit-content + 20px);
}

.sizeoffset-2 {
    padding: 25px;
    min-width: fit-content;
    max-width: calc(fit-content + 20px);
}

.sizeoffset-3 {
    padding: 30px;
    min-width: fit-content;
    max-width: calc(fit-content + 20px);
}

.sizeoffset-4 {
    padding: 35px;
    min-width: fit-content;
    max-width: calc(fit-content + 40px);
}

.sizeoffset-5 {
    padding: 40px;
    min-width: fit-content;
    max-width: calc(fit-content + 40px);
}

.our-team {
    padding: 20px;
    margin: 20px;
    margin-left: 25%;

    margin-right: 20%;
}

.unique-value-propositions {
    margin-left: 25%;
    margin-right: 20%;
    padding: 20px;
}

.Flag-location {
    padding: 20px;
    text-align: center;
}

.team-photo {
    border-radius: 50%;
}

.about-us {
    background-image: url(../images/sky_sunset_gradient_170507_3840x2160.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-bottom: 30px;
}

.middle-content-text {
    margin-left: 25%;
    margin-right: 20%;
    padding: 20px;
    
}

/* Grid container */
.Flag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    z-index: 100;
    align-items: start;
    gap: 20px;
    height: 100%;
}
.flag {
    text-align: center;
    padding: 0px;
}

.flag img {
    max-width: 100%;
    height: auto;
    width: 360px;
    height: 240px;
}

.flag h2 {
    margin-top: 10px;
    font-size: 1.2em;
}

.flag p {
    margin-top: 10px;
    font-size: 1em;
}

.title-container,
.Flag-location {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

@media screen and (min-height: 1040px) {
    .SwissMain {
        background-image: url(../images/switzerland.avif);
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        overflow: hidden;
        padding-bottom: 30px;
        height: 100vh;
    }
}

@media screen and (max-width: 768px) {
    .SwissMain {
        background-image: url(../images/switzerland.avif);
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        overflow: hidden;
        padding-bottom: 30px;
  
    }
}

@media screen and (max-width: 768px) {
    .about-us {
        background-image: url(../images/sky_sunset_gradient_170507_3840x2160.jpg);
        background-size: cover;
        background-position: center;
        overflow: hidden;
        padding-bottom: 30px;
        padding-left: 20px;
        
    }
    .unique-value-propositions{
        padding: 0%;
        margin: 0%;
    }
    .our-team{
        padding: 0%;
        margin: 0%;
    }
    .middle-content-text{
        padding: 0%;
        margin: 0%;
    }
}

.flags {
    background-image: url(../images/sky_sunset_gradient_170507_3840x2160.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-bottom: 30px;
}
.container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Adjust as needed */
}

.famous-places-section {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust column size */
    gap: 20px; /* Adjust as needed */
}

.grid-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grid-image {
    width: 100%;
    height: auto;
}
.famous-places-grid {
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    align-items: start;
    z-index: 100;
    height: 100%;
}

.places-dropdown {
    cursor: pointer;
    margin-bottom: 20px;
}

.places-dropdown-content {
    display: none;
    flex-direction: column;
    border-top: none;
    padding: 10px;
    text-align: left;
}

.places-dropdown.active .places-dropdown-content {
    display: flex;
    width: 100vw;
}

.places-dropdown-content p {
    margin: 0;
    padding: 8px 16px;
    border-bottom: 1px solid #ddd;
}

.places-dropdown-content p:last-child {
    border-bottom: none;
}

.famous-places-bg {
    background-image: url(../images/HD-wallpaper-sunset-color-palette-android-colors-simple-sunsets.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-bottom: 30px;
    
}

.container {
    margin: 25px;
}

.container li {
    list-style-type: none;
}

.famous-places-section {
    
    margin: 0 auto;
    width: 80%;
}

.famous-places-country {
    margin: 0;
    padding: 0;
    
    border-radius: 5px;
    text-align: center;
}

.famous-places-sights {
    
    display: flex;

    
}
.famous-places-sights-eiffeltower-image {  
    display:flex;
}

.famous-places-sights-eiffeltower-img{
    flex-shrink: 0;
    border: var(--accent700);
}
.famous-places-sights-eiffeltower-img img {
  
    border:var(--accent700);

}
.famous-places-info{
    display: flex;
    flex-direction: row-reverse; 
    align-items: flex-start; 
    gap: 20px; 
   
    
}
.famous-places-sights{
    justify-content: center; 
}
.famous-places-country h3 {
    width: 100vw; 
}
.famous-places-sights-france{
    display: flex;
    
}
.famous-places-sights-france ul {
    padding-left: 0px;
}
@media screen and (max-width: 1006px) {
    .famous-places-sights-eiffeltower-img img {
        display:none;
    }
}

@media screen and (min-width: 1006px) {
    .famous-places-sights-eiffeltower-img img {
          width: 300px; 
    }
}
.footerforabout{
    color: var(--primary900);
    background-color: var(--secondary100);
    text-align: center;
    font-size: 0.8rem;
    position: fixed;
    bottom: 0;
    width: inherit;
}

