@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;
  }

ul li {
    text-decoration: 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;
}


/* product slider START */

.sec-title-fs{
    width: 100%;
    background-color: #FCF7EE;
}

.title-fs{
    text-align: center;
    margin: 0;
    padding: 3.5% 0 1%;
}

.fish-slider {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    max-height: 755px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FCF7EE;
    overflow: hidden;
}

.fish-slider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .2;
    z-index: -1;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    height: 550px;
    display: flex;
    margin-top: 2.5%;
    justify-content: center;
    align-items: center;
}

.box {
    width: 350px;
    height: 570px;
    background-color: #89a540;
    border-radius: 10px;
    box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 20px 10px;
}

.box img{
    width: 300px;
    height: 200px;
}

.model {
    height: 100%;
    max-height: 250px;
    max-width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    padding: 0;
}

.details {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
}

.details.specie {
    text-align: left;
    margin-top: -20px;
    font-size: 98%;
}

.details span {
    margin-top: 10px;
    color: #333333;
}

.details p {
    font-family: calibri;
    font-weight: 400;
    color: #fff;
    font-size: 98%;
    text-align: left;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 5px;
}

/* 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 */
