body, h1, p, ul {
    margin: 0;
    padding: 0;
  }
  
  p {
      font-size: 18px;
  }
  
  body {
    background-color: #ebf3f3;
    scrollbar-width: 12px;
    scrollbar-color: #4138A8 #222;
    scrollbar-highlight-color: #7c7cf6;
    background-image: url("images/bg.gif");
    min-height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
  }
  
  .main-container {
    min-height: 100%;
    width: 100%;
  }

  ::-webkit-scrollbar {
    width: 12px;
  }

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #222;
}

::-webkit-scrollbar-thumb:hover {
  background: #111;
}

  /* Header and Navbar */
  header {
    color: white;
    background-color: #FFD801;
    padding: 0px;
    display:flex;
    justify-content: center;
    z-index: 3;
  }

  header a{
    color: white;
  }

  .header-image {
    position: absolute;
    z-index: 0;
    width: 150vw;
    height: 100%;
    opacity: 0.8;
    overflow: hidden;
  }

  .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #FFD801;
    z-index: 2;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    overflow: visible;
    padding-left: 20px;
    padding-right: 20px;
    height: 100px;
    translate: 0px;
    color: white;
    z-index: 4;
  }

  .navbar-logo img {
    width:70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    opacity: 1;
    transition: background-color 0.3s, width 0.3s ease;
    background-color: #fff;
    border-radius: 50%;
  }

  .navbar-logo img:hover {
    background-color: #000;
    width: 80px;
  }

  .navbar-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
  }

  .navbar-link {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.5s cubic-bezier(1, 0, 0, 1);
  }

  .mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
  }

  .navbar-link {
    font-weight: 100;
    transition: font-weight 0.5s ease;
  }

  .mobile-navbar{
    display: none;
  }

  .navbar a {
    text-shadow: none;
    font-weight: 100;
    transition: color 0.4s, text-shadow 0.2s, font-weight 0.2s ease-out;
  }

  .navbar a:hover {
    font-weight: 900;
    text-shadow: 1px 1px 0 #000;
    color: #E6D263;
  }

  .navbar-link.active {
    font-weight: 900;
    color: #fff3af;
  }

  .mobile-navbar a {
    transition: color 1s ease-out;
  }

  .mobile-navbar a:hover {
    color: #E6E263;
  }
  
  /* Main Content */
  .main-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .left-menu {
    overflow-y:scroll;
    -ms-overflow-y-style: scroll;
    overflow-x:hidden;
    -ms-overflow-x-style: hidden;
    scrollbar-width: 12px;
    scrollbar-color: #FFD801 #222;
    scrollbar-highlight-color: #ffde84;
    translate: 30px 0px;
    height: 90vh;
    padding-right: 30px;
    display: flex;
  }

  .menu {
    list-style: none;
    padding: 0px 0;
    margin: 0px 0px 0px 0px;
    max-height: 90vh;
    width:20vw;
    justify-content: center;
    text-align:center;
  }
  
  .menu-btn {
    margin-bottom: 15px;
    color:#212224;
    padding-left:25px;
    padding-right:25px;
    padding-top:15px;
    padding-bottom:15px;
    cursor: pointer;
    border:none;
    background-color: rgba(0,0,0,0);
    font-weight: 100;
    width: 100%;
    justify-content: left;
    text-align:left;
    font-size: 19px;
    border-radius: 0% 0% 0% 0% / 0% 0% 0% 0% ;
    color: -webkit-gradient(linear, left bottom, left top, 
    from(rgba(255,255,255,1)), to(rgba(0,0,0,1)));
    box-shadow: 20px 20px rgba(0,0,0,0);
    transition: all .4s ease;
  }

  .menu-btn:hover {
    color:#000;
    padding-left:28px;
    padding-right:28px;
    padding-top:18px;
    padding-bottom:18px;
    font-weight: 900;
    border-radius: 0% 0% 50% 50% / 0% 0% 10% 10% ;
    box-shadow: 10px 10px rgba(0,0,0,.25);
  }

  .selected-btn {
    margin-bottom: 15px;
    background-color: #222;
    color:#fff;
    padding-left:25px;
    padding-right:25px;
    padding-top:15px;
    padding-bottom:15px;
    cursor: pointer;
    border:none;
    font-weight: 900;
    transition: font-weight 0.3s ease;
    justify-content: left;
    text-align:left;
    width: 100%;
    font-size: 19px;
    border-radius: 0% 0% 0% 0% / 0% 0% 0% 0% ;
    color: -webkit-gradient(linear, left bottom, left top, 
    from(rgba(255,255,255,1)), to(rgba(0,0,0,1)));
    box-shadow: 20px 20px rgba(0,0,0,0);
    transition: all .4s ease;
  }

  .mobile-dropdown-links .selected-btn {
    background-color: #4138A8;
    margin-bottom: 15px;
    color:#fff;
    height: auto;
    padding-top: 4vw;
    padding-bottom: 4vw;
    padding-left: 30vw;
    padding-right: 30vw;
    margin: 0;
    cursor: pointer;
    border:none;
    font-weight: 900;
    transition: font-weight 0.3s ease;
    justify-content: space-between;
    text-align:left;
    margin-bottom: 0px;
    width: 100%;
  }

  .selected-btn:hover {
    background-color: #000;
    color:#fff;
    font-weight: 900;
  }

.left-menu::-webkit-scrollbar-thumb {
  background: #fff;
}

.left-menu::-webkit-scrollbar-thumb:hover {
  background: #e7e7e7;
}

.left-menu::-webkit-scrollbar-track {
  background: #222;
}

.mobile-menu-btn {
  display: none;
}

@media (max-width: 1200px) {
  .mobile-menu-btn {
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px;
  background-color: #4138A8;
  padding: 10px;
  width:100%;
  align-items: center;
  justify-content: center;
  }

  .mobile-dropdown.active {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .mobile-menu-btn.active {
    background-color: #000075;
    display: flex;
  }
  
}

.mobile-dropdown a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  margin: 20px;
  padding: 20px;
  display: flex;
  transition: color 0.3s ease;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.mobile-dropdown h2 {
  color: white;
  font-size: 24px;
  margin: 0;
  padding: 15px 0;
  width: 100%;
  box-sizing: border-box;
}

.mobile-menu-btn {
  border: none;
  color: white;
  font-size: 38px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  color: #E6E263;
}

.mobile-dropdown-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:center;
}

.mobile-dropdown-btn{
    background-color: #222;
    color:#fff;
    height: auto;
    padding-top: 4vw;
    padding-bottom: 4vw;
    padding-left: 30vw;
    padding-right: 30vw;
    margin: 0;
    cursor: pointer;
    border:none;
    font-weight: 100;
    transition: font-weight 0.3s ease;
    justify-content: space-between;
    text-align:left;
    width: 100%;
}

.mobile-dropdown-btn:hover {
  background-color: #000;
  color:#fff;
  font-weight: 900;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 65vw;
}

     .image-container video {
  display: none;
     }

      .image-container img {
  display: none;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

      .image-container img.active,
      .image-container video.active {
  animation: fadeIn 1s forwards;
  display: block;
}

.info-content {
  flex: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.flex-space {
  flex: 1.37;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
  
  .image-container {
    display: flex;
    max-height: 80%;
    max-width: 80%;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    margin: 0;
    translate: 50px;
    overflow: auto;
  }
  
      .image-container img,
      .image-container video {
    height: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .swiper-button-prev{
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 12px;
    --swiper-navigation-size: 40px;
  }

  .swiper-button-prev:hover{
    background-color: rgba(0, 0, 0, 1);
    color: #E6E263;
    transition: color 0.3s ease;
  }

  .swiper-button-next{
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 12px;
    --swiper-navigation-size: 40px;
  }

  .swiper-button-next:hover{
    background-color: rgba(0, 0, 0, 1);
    color: #E6E263;
    transition: color 0.3s ease;
  }

  .mobile-menu-links {
    display: none;
  }
  
  @media (max-width: 1200px){
    .main-container {
        display: flex;
        flex-direction: column;
        width: 100vw;
        max-height: 100%;
      }

      .content {
        display: flex;
        flex-direction: column;
        width: 100vw;
        margin:0;
        padding:0;
        top:0;
        max-height: 200vh;
      }

      .image-container {
        display: flex;
        max-width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100vw;
        margin:0;
        padding:0;
        max-height: 80%;
        translate: 20px 0px;
      }

      .image-container img,
      .image-container video {
        width: 100vw;
        margin:0;
        padding:0;
        top:0;
        max-height: 80%;
        max-width: 100%;
      }

      .navbar {
        display: none;
      }

      .mobile-navbar {
        display: flex;
      }
    
      .mobile-menu-icon {
        font-size: 24px;
        cursor: pointer;
      }
    
      .mobile-submenu {
        display: none;
        list-style: none;
        padding: 0;
        position: absolute;
        background-color: #222;
        width: 100%;
      }
      
      .submenu-visible {
        display: flex;
        flex-direction: column;
      }      
    
      .mobile-submenu li {
        margin: 10px 0;
      }

      .left-menu {
        overflow: scroll;
      }

      .main-title {
        margin: 0px;
        padding: 0px;
        align-items: center;
      }

      .mobile-navbar {
        display: flex;
      }

      .mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        background-color: #000;
        padding: 20px;
        overflow: hidden;
      }
    
      .mobile-menu-links li{
        margin-bottom: 20px;
      }
      
      .mobile-menu-links {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
      }
      
      .mobile-menu-link {
        text-decoration: none;
        color: white;
        font-size: 18px;
        margin-bottom: 10px;
      }

      .image-container{
        width:100%;
        margin: 0;
        max-width:100%;
      }

      .swiper{
        width: 100vw;
        margin: 0;
        max-width:100%;
      }

      .swiper-wrapper{
        width:100%;
        margin: 0;
        max-width:100%;
      }

      .swiper-slide{
        width:100%;
        margin: 0;
        max-width:100%;
      }

      .main-container{
        width:100vw;
        height: 100%;
        max-width:100%;
      }

      .content{
        width:100%;
        flex: 1;
        margin: 0;
        max-width:100%;
      }

      .flex-space {
        flex: 0;
        margin: 0;
      }
      
  }

  .menu-hidden{
    display: none;
  }

  .modal-button{
      display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border:none;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 99;
    background-color: #222;
    border-radius: 50% 50% 50% 50% / 0% 0% 0% 0% ;
    box-shadow: 0;
    margin: 0px;
    padding: 0px;
    width: 80px;
    height: 80px;
    line-height: 0%;
    transition: all 300ms ease;
  }

  .modal-button:hover{
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50% ;
      color: -webkit-gradient(linear, left bottom, left top, 
  from(rgba(255,255,255,1)), to(rgba(0,0,0,1)));
  box-shadow: 10px 10px rgba(0,0,0,0.2);
    color: #222;
    font-size: 23px;
    width: 100px;
    height: 100px;
    opacity: 1;
    background-color: #FFD801;
    transition: all 300ms ease;
  }
  
  .fa-info {
    font-size: 30px;
  }
  
    .fa-info:hover {
    font-size: 36px;
  }
  
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    }
  
  .modal-content-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.95);
    padding: 30px;
    max-height: 630px;
    width: 80vw;
    padding-bottom: 60px;
  }
  
  .modal-title {
    font-size: 24px;
    margin: 30px;
    color: #fff;
  }
  
  .modal-description {
    font-size: 16px;
    color: #fff;
    margin-top: 0%;
    margin-bottom:0%;
    margin-left:5%;
    margin-right:5%;
    max-width: 100vw;
    overflow-y: hidden;
    white-space:pre-wrap;
    translate: 0px 15px;
  }
  
  .about-active {
      translate: 0px -15px;
      width: 100%;
      max-width: 100%;
  }
  
  .modal-close {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 50px;
    color: #fff;
  }
  
  .modal-close:hover {
    color: #4138A8;
  }

  .footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    margin-top: 100px;
  }

  a {
    color: #f7ff80;
  }

  a:hover {
    color: #80eaff;
  }

  .flex-space{
    display: flex;
    flex-direction: column;
    color: #fff;
    margin:75px 75px 75px 75px;
    height: 90vh;
    align-items: center;
    justify-content: right;
  }

  .side-panel{
    font-size: 19px;
    font-weight: 900;
    display: flex;
    background-color: #fff;
    color:#000;
    padding: 20px;
    margin-left: -50px;
    margin-right: -50px;
    height:45vh;
    align-items: center;
    text-align: center;
  }

  .side-panel-two{
    font-size: 19px;
    font-weight: 900;
    display: flex;
    background-color: #000;
    padding: 20px;
    margin-left: -50px;
    margin-right: -50px;
    height:45vh;
    align-items: center;
    text-align: center;
  }

  .main-title{
    display: flex;
    justify-content: center;
    font-size:3em;
    text-align: center;
    
    color:#000;
    max-width: 95vw;
    translate: 0px calc(5vh + 30px);
  }

  .slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .slider-container:hover {
    cursor: pointer;
  }
  
  .image-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .image-slide img,
  .image-slide video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
  }
  
  .blurred-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .slider-container.active{
    display: flex;
  }

  .slider-container{
    display: none;
    overflow: hidden;
  }

  .modal-button.active{
    display: flex;
  }

  .modal-button{
    display: none;
  }

  .slider-buttons.active{
    display: flex;
  }

  .slider-buttons{
    display: none;
  }

  .main-info a {
    color: #000;
    transition: all 0.3s ease;
  }

  .main-info a:hover {
    color: #09005e;
    transition: all 0.3s ease;
  }
  
  a {
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  a:hover {
    letter-spacing: 2px;
    transition: all 0.3s ease;
  }

  .main-info.active{
    display: flex;
    opacity: 1;
    padding: 30px;
    justify-content: center;
    align-items: center;
    background-color: #FFD801;
    max-height: 100%;
    width: 100vw;
    max-width: 70vw;
    translate: 30px -60px;
    transition: all .4s ease;
    padding: 45px 0 30px 0;
      overflow-x:visible;
  }

  .main-info > div {
    font-weight: 900;
    font-size: 18px;
    color: #000;
    max-height: 100%;
    max-width:100%;
    width: 100%;
    text-align: left;
    align-items: center;
    text-align: justify;
      overflow-x:visible;
    
  }

  .main-info{
    display: none;
    opacity: 0;
    transition: all .4s ease;
      overflow-x:visible;
  }

  @media(max-width:1200px){
    .footer {
      margin-top: 0;
    }
  
    .flex-space{
      margin:75px 75px 75px 75px;
    }

    .main-title{
      display: flex;
      justify-content: center;
      font-size:2em;
      translate: 0px;
      text-align: center;
      color:#000;
      margin: -2% 0 -5% 0;
      max-width: 95vw;
      padding: 5% 0px 0px 0px;
    }

    .image-container{
      margin: 0;
      padding: 0;
      width: 100%;
      max-width: 90vw;
      max-height: 80%;
      overflow: hidden;
      align-items: center;
    }
    
      .main-info.active{
    display: flex;
    opacity: 1;
    padding: 30px;
    justify-content: center;
    align-items: center;
    background-color: #FFD801;
    max-height: 100%;
    width: 100vw;
    max-width: 90vw;
    translate: 0px -60px;
    transition: all .4s ease;
    padding: 75px 0 30px 0;
      overflow-x:visible;
  }
  
    .main-info > div {
      font-weight: 900;
      font-size: 18px;
      color: #000;
      max-width:100%;
      width: 100%;
      text-align: justify;
      align-items: center;
      overflow-x:visible;
    }
  }
  
  .contact-active {
      padding-bottom: 30px;
      overflow-x:hidden;
  }

  .main-info > div {
    font-weight: 900;
    font-size: 18px;
    color: #000;
    max-width:100%;
    width: 100%;
    text-align: left;
    align-items: center;
    text-align: justify;
  }
  
  .modal-description {
    scrollbar-width: 0px;
  }
  
  .modal-description ::-webkit-scrollbar  {
    width: 0px;
  }

  /* Contact Styling */

  .container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    justify-content: left;
    align-items: center;
    text-align: left;
      overflow-x:hidden;
  }
  
  #contact {
    background: transparent;
    padding:0% 2% 0% 2%;
    justify-content: left;
    align-items: center;
    text-align: left;
    font-weight: normal;
    translate: -10px 0px;
      overflow-x:hidden;
  }
  
  #contact h3 {
    display: block;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
  } 
  
  #contact p {
    translate: 10px;
  }
  
  #contact h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: 13px;
    font-weight: 400;
  }
  
  fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
  }
  
  #contact input[type="text"]:hover,
  #contact input[type="email"]:hover,
  #contact input[type="tel"]:hover,
  #contact input[type="url"]:hover,
  #contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #222;
  }
  
  #contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
  }
  
  #contact button[type="submit"] {
    cursor: pointer;
    width: 30%;
    border: none;
    background: #4138A8;
    color: #FFF;
    margin: 0 0 5px;
    padding: 20px;
    font-size: 15px;
    justify-content: center;
    text-align: center;
  }
  
  #contact button[type="submit"]:hover {
    background: #0000b8;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  
  #contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  #contact input:focus,
  #contact textarea:focus {
    outline: 0;
    border: 1px solid #000;
  }
  
  ::-webkit-input-placeholder {
    color: #222;
  }
  
  :-moz-placeholder {
    color: #222;
  }
  
  ::-moz-placeholder {
    color: #222;
  }
  
  :-ms-input-placeholder {
    color: #222;
  }

  .offset {
    margin-left: -100vw;
  }

  .container-other {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    height:90vh;
    max-width: 95%;
    padding: 5% 5% 5% 5%;
    margin-right: 25px;
    margin-left: -25px;
  }

  .container-other {
    position: relative;
    background-image: linear-gradient(to top, rgba(255,255,255,1), rgba(0,0,0,0));
    color: white;
  }

.main-container{
  width: 100%;
  height: 300px;
  translate: 0px 40px;
  color: #fff;
  overflow: hidden;
  padding: 0;
  transition: all .4s ease;
}

.main-title {
  background-color: #222;
  padding: 2%;
  overflow: hidden;
  color: #fff;
  font-size: 38px;
  transition: font-size 0.3s ease;
  margin: 0;
  translate: 0 -10%;
  border-radius: 50% 50% 50% 50% / 0% 0% 0% 0% ;
  width:40vw;
  transition: all 0.3s ease;
}

.main-title:hover {
  background-color:#fff;
  font-size: 42px;
  color: #000;
  border-radius: 50% 50% 50% 50% / 0% 0% 15% 15% ;
  color: -webkit-gradient(linear, left bottom, left top, 
  from(rgba(255,255,255,1)), to(rgba(0,0,0,1)));
  box-shadow: 10px 10px rgba(0,0,0,0.2);
}

.toggled {
  color: #E6D263;
  font-size: 48px;
}

label {
    font-weight: bold;
}

textarea {
    max-width: calc(100% - 20px);
}

input[type="submit"] {
    margin-top: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

   .profile-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 20px;
      padding: 20px;
      background-color: #fff;
      border: 1px solid #ccc;
    }

    #about {
      width: 100%;
      padding: 10px;
      margin: 5px 0;
    }

    input[type="submit"] {
      background-color: #333;
      color: #fff;
      padding: 10px 20px;
      border: none;
      cursor: pointer;
    }

    input[type="submit"]:hover {
      background-color: #555;
    }
    
    .edit-section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      width: 100%;
    }
    
    @media (max-width: 1200px) {
          .main-title {
  width:80vw;
  padding: 3%;
  }
  
}

  label {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
  }

  /* Style the checkbox */
  input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }

  /* Style the text next to the checkbox */
  #visible {
    font-size: 16px;
    vertical-align: middle;
  }
  
  .image-container {
    scrollbar-width: 0px;
  }
  
  select {
  width: 100%;
  max-width: calc(100% -20px);
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 10px 0;
  }
  
  .modal-button h2 {
      padding: 30px;
  }
  
    .image-container{
      max-height: 100%;
      max-width: 100%;
      height: 100%;
      width: auto;
      overflow: visible;
    }
    
    .content {
        width: 65vw;
        height: 90vh;
    }
    
    .image-slide {
        width: auto;
        height: 90vh;
    }
    
    .slider-container {
        width: auto;
        height: 100%;
    }
    
    
.modal-btn {
  padding: 10px 20px;
  color: #071eb5;
  font-size: 16px;
  outline: solid #071eb5 2px;
  cursor: pointer;
  z-index:999;
}

#modal-toggle {
  display: none;
}

.modal-content,
.modal-backdrop {
  opacity: 0;
  position: fixed;
  padding: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: -1;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.modal-content {
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  height: 550px;
  max-height: 98%;
  max-width: 80%;
  text-align: center;
  transform: translateX(300%);
}

.modal-backdrop {
  left: 0;
  top: 0;
  height: 100%;
  height: 100vh;
  width: 100%;
  width: 100vw;
  transform: scale(0);
}

#modal-toggle:checked ~ .modal-backdrop {
  opacity: 1;
  background-color: rgba(25, 31, 69, 0.5);
  z-index: 998;
  transform: scale(1);
}

#modal-toggle:checked ~ .modal-content {
  opacity: 1;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: auto;
  cursor: auto;
  z-index: 999;
  transform: translateX(0%);
}

@media (max-width: 768px) {
  #modal-toggle:checked ~ .modal-backdrop {
    opacity: 0;
  }

  .modal-content {
    top: 0;
    left: 0;
    height: 85vh;
    width: 80%;
  }
}
.modal-close-btn {
  margin-top: 5px;
  display: inline-block;
  cursor: pointer;
 position: absolute;
    right: 10px;
    top: 5px;
}
.modal-close-btn svg {
  transition: 0.2s;
}
.modal-close-btn svg line {
  stroke-width: 5px;
  stroke: #071eb5;
}
.modal-close-btn:hover svg {
  transform: rotate(90deg);
}

/* BASIC FUNCTIONALITY .tabs */
.tabs {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
.tabs > .radio {
  display: none;
}
.tabs > .radio:checked + .table + .tabs-content {
  display: block;
}
.tabs > .table {
  order: -1;
  flex-basis: 100%;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tabs .tabs-content {
  width: 100%;
  display: none;
}

.tabs > .radio:checked + .table + .tabs-content {
  display: block;
}

/* END BASIC FUNCTIONALITY .tabs */
    
    /*  THEME for .tabs with login & sign-in  */
.tabs > .table {
  padding: 20px 0;
  text-align: center;
  border-bottom: solid #071eb5 5px;
  color: #071eb5;
  cursor: pointer;
  z-index: 9999999;
}

.tabs > .table:hover {
  color: #071eb5;
  background: rgba(0, 121, 107, 0.2);
  z-index: 9999999;
}
.tabs > .radio:checked + .table {
  color: #fff;
  background: #071eb5;
  cursor: auto;
  z-index: 9999999;
}
.tabs > .radio:checked + .table span {
  display: inline-block;
  transform: scale(1.2);
  transition: 0.1s;
  z-index: 9999999;
}

/*  END THEME for .tabs with login & sign-in  */
/*  START style login & sign up  */
.tabs > .tabs-content .login_socnet {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: no-wrap;
  justify-content: space-around;
  z-index: 9999999;
}
.tabs > .tabs-content .login_socnet a {
  margin: 20px;
  margin-bottom: 0;
  width: 100%;
  font-size: 60px;
  text-decoration: none;
  transition: 0.2s;
  z-index: 9999999;
}
.tabs > .tabs-content .login_socnet a:hover {
  transform: scale(1.1);
  filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.2));
  z-index: 9999999;
}
.tabs > .tabs-content .login_socnet .fa-vk {
  color: #7986CB;
  z-index: 9999999;
}
.tabs > .tabs-content .login_socnet .fa-google-plus {
  color: #E57373;
  z-index: 9999999;
}
.tabs > .tabs-content .login_socnet .fa-facebook {
  color: #5C6BC0;
  z-index: 9999999;
}
.tabs > .tabs-content form {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  z-index: 9999999;
}
.tabs > .tabs-content form input {
  padding: 10px;
  margin: 15px 0;
  border: none;
  border-bottom: solid 1px #071eb5;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.1s;
  z-index: 9999999;
}
.tabs > .tabs-content form input:focus {
  transform: translateX(10px);
  outline: none;
  z-index: 9999999;
}
.tabs > .tabs-content input[type="submit"] {
  padding: 15px 0;
  width: 100%;
  background: #071eb5;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999999;
}
.tabs > .tabs-content input[type="submit"]:focus {
  transform: none;
  z-index: 9999999;
}
.tabs > .tabs-content .forgot-password label {
  margin: 0 auto;
  width: 50%;
  color: #071eb5;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
  z-index: 9999999;
}
.tabs > .tabs-content .forgot-password label:hover {
  text-decoration: underline;
  z-index: 9999999;
}

/*  END style login & sign up  */
.forgot-password #forgot-password-toggle {
  display: none;
  z-index: 9999999;
}
.forgot-password .forgot-password-content {
  height: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease-in;
  z-index: 9999999;
}
.forgot-password .forgot-password-content input[type="email"] {
  width: 80%;
  margin-right: 0px;
  border-right: none;
  z-index: 9999999;
}
.forgot-password .forgot-password-content input[type="submit"] {
  width: 20%;
  margin-left: 0px;
  z-index: 9999999;
}
.forgot-password #forgot-password-toggle:checked ~ .forgot-password-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  pointer-events: auto;
  cursor: auto;
  visibility: visible;
}

  .content {
      margin-left: -30px;
      overflow-x:visible;
  }

@media screen and (max-width: 1200px) {
    
  .container-other {
      display: flex;
      justify-content: center;
      text-align: center;
      flex-direction: column;
      overflow: hidden;
      height:auto;
      width:90%;
      margin:auto;
  }
  
  .menu {
      overflow-y: auto;
      overflow-x: hidden;
      width:100%;
      max-width: 98vw;
      text-align: center;
      z-index: 999;
      margin-left:-10px;
  }
  
  .left-menu {
      width:100%;
      max-width:98vw;
      text-align: center;
      z-index: 999;
      flex-direction: column;
      overflow: visible;
      margin-left:-30px;
      position: relative;
      overflow: hidden;
  }
  
  .menu-btn {
      width:100%;
      max-width:80vw;
      justify-content: center;
      text-align: center;
      z-index: 999;
  }
  
  .content {
      width: 100%;
      margin-left:0;
      overflow-x:visible;
  }
  
  .image-container {
      margin-left:-40px;
  }

}

.year-dropdown {
  margin: 10px 0;
}

.dropdown-btn {
  background-color: #f9f9f9;
  color: black;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.dropdown-content {
  display: none;
  background-color: #f1f1f1;
  padding: 10px;
}

.dropdown-content .menu-btn {
  padding: 8px;
  cursor: pointer;
}

.dropdown-btn.active + .dropdown-content {
  display: block;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: #222;
    min-width: 160px;
    z-index: 99;
}

.dropdown-item {
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.navbar-link.archive:hover .dropdown {
    display: block;
}

.mobile-dropdown {
    display: none; /* Hide by default */
    /* Add specific styles for mobile dropdown */
}

/* Toggle mobile dropdown visibility on click */
.navbar-link.archive.active .mobile-dropdown {
    display: block;
}

/* Hide dropdown menu by default */
.dropdown {
    display: none;
    position: absolute;
    /* Add other styling as needed */
}

/* Show dropdown when active */
.dropdown.active {
    display: flex;
    flex-direction: column;
      border-style: solid;
  border-color: white;
}

  body::-webkit-scrollbar {
    display: none;
}

html {
    overflow: -moz-scrollbars-none; /* Firefox specific */
    -ms-overflow-style: none;       /* Internet Explorer/Edge */
}