@import url('https://fonts.googleapis.com/css2?family=Finlandica&family=Montserrat+Alternates:ital@1&family=Playfair+Display:ital,wght@0,600;1,500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Finlandica', sans-serif;
}
body {
    font-size: 20px;
}
header {
    height: 60px;
}
/* Navbar container */
nav{
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #3d4e15;
  }
  nav .nav-bar{
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* .nav-bar .logo a{
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
  } */
  .nav-bar .nav-links{
    display: inline-flex;
  }
  .nav-links li{
    list-style: none;
  }
  .nav-links li a{
    color: #f2f2f2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links li a:hover{
    background: #3d4e15;
  }
  .nav-links .mobile-item{
    display: none;
  }
  
  .nav-links .mobile-item2{
    display: none;
  }
  .nav-links li:hover .mega-box{
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links li:hover .mega-box2{
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
  }
  
  .mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 0 20px;
    top: 85px;
    max-height: 60px; 
    opacity: 0;
    visibility: hidden;
  }
  .mega-box .nav-content{
    background: #3d4e15;
    padding: 20px 0;
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .mega-box .nav-content .row{
    width: calc(25% - 30px);
    line-height: 20px;
  }
  .nav-content .row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .nav-content .row h4{
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
  }
  .nav-content .row .mega-links{
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
  }
  .row .mega-links li{
    padding: 0 20px;
  }
  .row .mega-links li a{
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
  }
  .row .mega-links li a:hover{
    color: #f2f2f2;
  }
  
  .mega-box2{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 20px;
    top: 85px;
    max-height: 60px;
    opacity: 0;
    visibility: hidden;
  }
  .mega-box2 .nav-content2{
    background: #3d4e15;
    padding: 20px 0;
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .mega-box2 .nav-content2 .row2{
    width: calc(33.33% - 30px);
    line-height: 20px;
  }
  .nav-content2 .row2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .nav-content2 .row2 h4{
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
  }
  .nav-content2 .row2 .mega-links2{
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
  }
  .row2 .mega-links2 li{
    padding: 0 20px;
  }
  .row2 .mega-links2 li a{
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
  }
  .row2 .mega-links2 li a:hover{
    color: #f2f2f2;
  }
  
  .nav-bar .btn{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  
  .nav-bar .btn.menu-btn{
    position: absolute;
    right: 30px;
  }
  
  .nav-bar .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 10px;
  }
  
  @media screen and (max-width: 970px) {
    .nav-bar .btn{
      display: block;
    }
    .nav-bar .nav-links{
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 350px;
      top: 0;
      left: -100%;
      background: #3d4e15;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
      transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #3d4e15;
    }
    ::-webkit-scrollbar-thumb {
      background: #3d4e15;
    }
    #menu-btn:checked ~ .nav-links{
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn{
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn{
      display: block;
    }
    .nav-links li{
      margin: 15px 10px;
    }
    .nav-links li a{
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
    
    #showMega:checked ~ .mega-box{
      max-height: 100%;
    }
  
    #showMega2:checked ~ .mega-box2{
      max-height: 100%;
    }
  
    .nav-links .nav-item{
      display: none;
    }
  
    .nav-links .nav-item2{
      display: none;
    }
  
    .nav-links .mobile-item{
      display: block;
      color: #f2f2f2;
      font-size: 20px;
      font-weight: 500;   
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item2:hover{
      background: #3d4e15;
    }
  
    .nav-links .mobile-item2{
      display: block;
      color: #f2f2f2;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item2:hover{
      background: #3d4e15;
    }
  
    .mega-box{
      position: static;
      top: 65px;
      opacity: 1;
      visibility: visible;
      padding: 0 20px;
      max-height: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .mega-box .nav-content{
      box-shadow: none;
      flex-direction: column;
      padding: 20px 20px 0 20px;
    }
    .mega-box .nav-content .row{
      width: 100%;
      margin-bottom: 15px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mega-box .nav-content .row:nth-child(1),
    .mega-box .nav-content .row:nth-child(2){
      border-top: 0px;
    }
    .nav-content .row .mega-links{
      border-left: 0px;
      padding-left: 15px;
    }
    .row .mega-links li{
      margin: 0;
    }
    .nav-content .row h4{
      font-size: 19px;
    }
  
    .mega-box2{
      position: static;
      top: 65px;
      opacity: 1;
      visibility: visible;
      padding: 0 20px;
      max-height: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .mega-box2 .nav-content2{
      box-shadow: none;
      flex-direction: column;
      padding: 20px 20px 0 20px;
    }
    .mega-box2 .nav-content2 .row2{
      width: 100%;
      margin-bottom: 15px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mega-box2 .nav-content2 .row2:nth-child(1),
    .mega-box2 .nav-content2 .row2:nth-child(2){
      border-top: 0px;
    }
    .nav-content2 .row2 .mega-links2{
      border-left: 0px;
      padding-left: 15px;
    }
    .row2 .mega-links2 li{
      margin: 0;
    }
    .nav-content2 .row2 h4{
      font-size: 19px;
    }
  }
  
  nav input{
    display: none;
  }


  button {
    background-color: #3d4e15;
    color: white;
    padding: 9px 20px;
    padding-bottom: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 17.5px;
    font-weight: 500;
    font-family: 'Finlandica', sans-serif;
  }
  
  li {
    padding-bottom: 1%;
  }
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

.title-sldr{
    width: 100%;
    height: 100%;
    max-height: 100px;
    padding-top: 1.5%;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #FCF7EE;
}

.title-sldr h1{
    text-transform: uppercase;
    font-weight: 500;
    font-size: auto;
    margin: 2.2%;
}

/*image slider start */

.slider-menu {
    position: relative;
    margin: 0;
    padding: 0;
    max-height: 900px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FCF7EE;
}

.slider-menu::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: auto;
    width: 100%;
    background-color: black;
    opacity: .2;
    z-index: -1;
}

.slider {
    width: 60%;
    margin: 0;
    height: 100%;
    max-height: 700px;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    width: 500%;
    height: auto;
    display: flex;
    float: left;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 2s;
}

.slide img {
    margin-top: 5%;
    width: 100%;
    height: 100%;
    max-height: 75%;
    border-radius: 10px;
}

.navigation-manual {
    position: absolute;
    width: 60%;
    margin-top: 43%;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid black;
    padding: 0.55%;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 3.3%;
}

.manual-btn:hover {
    background: #6A6A6A;
}

#radio1:checked~.first {
    margin-left: 0;
}

#radio2:checked~.first {
    margin-left: -20%;
}

#radio3:checked~.first {
    margin-left: -40%;
}

#radio4:checked~.first {
    margin-left: -60%;
}

#radio5:checked~.first {
    margin-left: -80%;
}

.navigation-auto {
    position: absolute;
    display: flex;
    width: 60%;
    justify-content: center;
    margin-top: 43%;
}

.navigation-auto div {
    border: 2px solid black;
    padding: 0.55%;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child) {
    margin-right: 3.3%;
}

#radio1:checked~.navigation-auto .auto-btn1 {
    background: black;
}

#radio2:checked~.navigation-auto .auto-btn2 {
    background: black;
}

#radio3:checked~.navigation-auto .auto-btn3 {
    background: black;
}

#radio4:checked~.navigation-auto .auto-btn4 {
    background: black;
}

#radio5:checked~.navigation-auto .auto-btn5 {
    background: black;
}

/*image slider end */

.events {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    max-height: 755px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #708735;
    overflow: hidden;
}

.events::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    max-height: 755px;
    width: 100%;
    background-color: black;
    opacity: .2;
    z-index: -1;
}

.events-titles{
    display: flex;
    width: 50%;
    height: 100%;
    margin: 10%;
    padding: 0;
    font-weight: 500;
    font-size: 100%;
    max-height: 755px;
}

.events-titles ul{
    margin: 5%
}

.events-titles ul li{
    display: flex;
    padding: 15%;
}

.events-text{
    width: 90%;
    height: 80%;
    max-height: 755px;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    margin: 5%;
    border-radius: 10px;
}

.events-text .events-text-border{
    width: 85%;
    height: 75%;
    max-height: 755px;
    background-color: #344214;
    text-align: center;
    margin: 7.5%;
    padding: 20%;
}

/* Footer Section Start */

footer{
    width: 100%;
    background-color: #3A2311;
    padding: 50px 0 10px;
}

.title-footer{
    width: 100%;
    height: auto;   
    margin-bottom: 20px;
    color: #fff;
}

.title-footer h2{
    display: flex;
    margin-top: -2%;
    margin-left: 3%;
}

.container-footer{
    max-width: 1400px;
    padding: 0 4%;
    margin: auto;
}

.row-footer{
    display: flex;
    flex-wrap: wrap;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h3{
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}

.footer-col ul{
    list-style: none;
}

.footer-col ul li{
    margin: 10px 0;
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col img{
    width: 100%;
    margin-top: -10%;
    cursor: pointer;
}

.footer-col .medias-socials{
    text-align: center;
    margin-top: 10px;
}

.footer-col .medias-socials a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    margin: 0 10px 10x 0;
    text-decoration: none;
    border-radius: 50%;
    color: #fff;
    border: 1px solid white;
}

.email {
    margin-bottom: -10px;
    text-align: center;
    color: #fff;
    font-size: 70%;
}

.number {
    margin-top: 20%;
    text-align: center;
    color: #fff;
    font-size: 70%;
}

@media (max-width:880px) {
    .footer-col{
        width: 50%;
        margin-bottom: 10px;
    }
}

@media (max-width:600px) {
    .footer-col{
        width: 100%;
    }
}

/* Footer Section End */
