.lb-loader,.lightbox{text-align:center;line-height:0}body.lb-disable-scrolling{overflow:hidden}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:#000;opacity:.8;display:none}.lightbox{position:absolute;left:0;width:100%;z-index:10000;font-weight:400;outline:0}.lightbox .lb-image{display:block;height:auto;max-width:inherit;max-height:none;border-radius:3px;border:4px solid #fff}.lightbox a img{border:none}.lb-outerContainer{position:relative;width:250px;height:250px;margin:0 auto;border-radius:4px;background-color:#fff}.lb-loader,.lb-nav{position:absolute;left:0}.lb-dataContainer:after,.lb-outerContainer:after{content:"";display:table;clear:both}.lb-loader{top:43%;height:25%;width:100%}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;background:url(images/loading.gif) no-repeat}.lb-nav{top:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:0;background-image:url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==')}.lb-next,.lb-prev{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;background:url(images/prev.png) left 48% no-repeat;opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-next:hover,.lb-nav a.lb-prev:hover{opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;background:url(images/next.png) right 48% no-repeat;opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-dataContainer{margin:0 auto;padding-top:5px;width:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.lb-data{padding:0 4px;color:#ccc}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:700;line-height:1em}.lb-data .lb-caption a{color:#4ae}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#999}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;background:url(images/close.png) top right no-repeat;text-align:right;outline:0;opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.lb-data .lb-close:hover{cursor:pointer;opacity:1}

@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&display=swap');

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: #333;
  overflow-x: hidden;
    font-size: 0.9em !important

}

.copyright  {
  font-family: 'MuseoModerno', sans-serif !important;
  font-size: 0.9em;
}

#desc {
  font-family: 'MuseoModerno', sans-serif;
  text-align: center;
  padding-bottom: 5px;
}

header {
    background-color: rgb(230, 230, 230);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: gray;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 10px;
}

.title {
  font-family: 'MuseoModerno', sans-serif;
}

.arch {
  font-size: 2em;
}

.name {
  font-size: 1em;
  padding-left: 88px;
  margin-top: -12px;
  font-family: 'MuseoModerno', sans-serif;
}

.contact {
  font-family: 'MuseoModerno', sans-serif;
}

.contact a {
  text-decoration: none;
  color: gray;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: gray;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

main {
    padding: 100px 80px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.row {
    display: flex;
}

.project-item.rov {
  margin-right: 20px;
}

.project-item {
    position: relative;
    overflow: hidden;
}

.project-item img {
    display: block;
    max-height: 100px;
}

.project-item:hover img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item.rov:hover ~ .project-grid .project-item img {
    opacity: 0;
}

.project-item.rov:hover img {
    opacity: 1;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
}

footer {
    background-color: rgb(230, 230, 230);
    text-align: center;
    color: gray;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.partners {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.partners-images img {
    width: 40px;
    height: auto;
    margin: 5px;
    transition: transform 0.3s ease;
}

.copyright {
  padding-bottom: 5px;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

#preloader-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#skip-video-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10000;
}

#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

#progress-container {
    width: 80%;
    max-width: 300px;
}

#progress-bar {
    width: 0;
    height: 4px;
    background-color: #000;
    transition: width 0.3s ease;
}

#progress-text {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #000;
    font-family: 'MuseoModerno', sans-serif;
}

#unmute-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;  /* Position it on the left side */
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10000;
}

/* Hover effect for both buttons */
#skip-video-btn:hover,
#unmute-btn:hover {
    background-color: #f0f0f0;
}

.lb-dataContainer {
    display: none !important;
}

@media screen and (max-width: 768px) {
    main {
        padding: 120px 40px 40px;
    }

    .row {
        flex-direction: column;
    }

    .project-item {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .project-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-images img {
        margin: 5px;
    }
}