@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;
}

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;
  }

/*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: #fff;
  padding-bottom: 7%;
}

.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;
}

.title{
  display: flex;
  justify-content: center;
  margin-top: 50px;
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 1.5%;
  font-size: auto;
  text-align: center;
}

.slide {
  width: 20%;
  transition: 2s;
}

.slide img {
  width: 100%;
  height: 35%;
  max-height: 50%;
  border-radius: 10px;
  margin-top:5% ;
}

.navigation-manual {
  position: absolute;
  width: 60%;
  margin-top: 47%;
  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: 47%;
}

.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 */


/* Start About us section */

.about-us {
    position: relative;
    margin-top: -18%;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
}

.read-more-text {
    background-color: #708735;
    padding: 20px;
}

hr {
    border: 0;
    border-bottom: 1px dashed #2E181A;
    background: #2E181A;
    width: 50%;
}

.info {
    margin-top: 10px;
    height: auto;
    color: #fff;
    width: 70%;
    display: block;
    margin-left: 14%;
    margin-bottom: 10px;
}

.info ul li {
    margin-left: 5%;
    padding: 10px 0;
}

.htext {
    width: 70%;
    display: block;
    color: #fff;
    margin-left: 14%;
}

.htext ul li {
    margin-left: 5%;
    padding: 2% 0;
}

.text-title {
    text-align: center;
}



/*=============== READ MORE READ LESS ============*/
/******************** Danish **********************/
/*************** See more wrapper *****************/
/**************************************************/

.wrapper-state {
    display: none;
}

.wrapper-target {
    opacity: 0;
    height: 0;
    font-size: 0;
    transition: .25s ease;
}

.wrapper-state~.wrapper-wrap {
    display: none;
}

.wrapper-state:checked~.wrapper-wrap {
    display: block;
}

.wrapper-state:checked~.wrapper-wrap .wrapper-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
}

.wrapper-state~.wrapper-trigger:before {
    content: 'Прочети още';
}

.wrapper-state:checked~.wrapper-trigger:before {
    content: 'Прочети по-малко';
    margin-left: 2%;
}

/* .wrapper-state~.wrapper-trigger2:before {
    content: 'Read more';
    display: none;
}

.wrapper-state:checked~.wrapper-trigger2:before {
    content: 'Read less';
    display: inline-block;
    margin-left: 6px;
} */

.wrapper-trigger {
    cursor: pointer;
    margin-left: 46%;
    width: 20%;
    display: flex;
    align-items: center;
    padding: 0 .5em;
    /* background-color: #2E181A; */
    color: #2E181A;
    text-align: center;
    font-size: 80%;
    line-height: 2;
    /* border: 1px solid #E6D9BD;
    border-radius: 0.5em; */
}

.wrapper-trigger2 {
    cursor: pointer;
    width: 20%;
    margin-left: 46%;
    display: flex;
    align-items: center;
    padding: 0 .5em;
    /* background-color: #2E181A; */
    color: #2E181A;
    text-align: center;
    font-size: 80%;
    line-height: 2;
    /* border: 1px solid #E6D9BD;
    border-radius: 0.5em; */
}

/* .wrapper-trigger:hover {
    border: 1px solid #2E181A;
    background-color: #E6D9BD;
    opacity: 1;
    color: #2E181A;
}

.wrapper-trigger2:hover {
    border: 1px solid #2E181A;
    background-color: #E6D9BD;
    opacity: 1;
    color: #2E181A;
} */

/****** See more first ******/
/*********************/

.first-state {
    display: none;
}

.wrapper-target .first-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
}

.first-state:checked~.wrapper-wrap .first-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
}


.first-state~.wrapper-wrap .first-trigger:before {
    content: 'Se mere';
}

.first-state:checked~.wrapper-wrap .first-trigger:before {
    content: 'Se mindre';
}

.first-state~.first-target {
    display: none;
}

.first-state:checked~.first-target {
    display: block;
}

.first-target img {
    height: 0;
}

.first-state:checked~.wrapper-wrap .first-target img {
    height: auto;
}

.first-target p {
    display: none;
}

.first-state:checked~.wrapper-wrap .first-target p {
    display: block;
}

.first-target iframe {
    height: 0;
}

.first-state:checked~.wrapper-wrap .first-target iframe {
    height: 100%;
}

.wrapper-wrap .first-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0 .5em;
    background-color: #2E181A;
    color: #E6D9BD;
    font-size: .9em;
    line-height: 2;
    border: 1px solid #E6D9BD;
    border-radius: 0.5em;
}

.wrapper-wrap .first-trigger:hover {
    border: 1px solid #2E181A;
    background-color: #E6D9BD;
    opacity: 1;
    color: #2E181A;
}

/* Finish About us section */


/* Card Slider Start */

.card-sld-title{
    position: relative;
    width: 100%;
    height: auto;
    max-height: 80px;
}

.card-sld-title h3{
    text-align: center;
    margin-top: 2.5%;
}

.card-slider {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'roboto', sans-serif;
    background-color: #fff;
    perspective: 70%;
}

.card-slider ul{
    margin-top: 3%;
    margin-bottom: 1.5%;
}

.sec-title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card {
    width: 300px;
    height: 450px;
    margin: 4%;
    position: relative;
    transform-style: preserve-3d;
    transition: 1s;
}

.card-img {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/IMG_20210516_132245.jpg);
    background-size: cover;
    border-radius: 20px;
    transform: translateZ(40px);
}

.card-img2 {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/mladen.jpg);
    background-size: cover;
    border-radius: 20px;
    transform: translateZ(40px);
}

.card-img3 {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/suhindol-lager-ivankovec-4.jpg);
    background-size: cover;
    border-radius: 20px;
    transform: translateZ(40px);
}

.card-img4 {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/10675675_323218914506491_3834564272281036258_n.jpg); 
    background-size: cover;
    border-radius: 20px;
    transform: translateZ(40px);
}

.card-img5 {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/DSC02362-746x548.jpg);
    background-size: cover;
    border-radius: 20px;
    transform: translateZ(40px);
}

.card-img6 {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/IMG_1831.jpg);
    background-size: cover;
    border-radius: 20px;
    transform: translateZ(40px);
}

.card-img7 {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/279343_422780241101931_2025737613_o.jpg);
    background-size: cover;
    border-radius: 20px;
    transform: translateZ(40px);
}

/* .card-img8 {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/sopotski_vodopad3.jpg);
    background-size: cover;
    border-radius: 20px;
    transform: translateZ(40px);
} */

.card-img9 {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/13054995_490067947850175_6534069497138609886_o.jpg);
    background-size: cover;
    border-radius: 20px;
    transform: translateZ(40px);
}

.card-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, -40px) rotateY(180deg);
    width: 85%;
    height: 87%;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
}

.card:hover {
    transform: rotateY(180deg);
}

.card-body .bg {
    position: absolute;
    background: #fff;
    border-radius: 100px;
    width: 0%;
    transition: .5s;
}

.card-body .bg:nth-child(1) {
    height: 25%;
    transform-origin: left;
    top: 0;
    left: -30%;
    transform: rotate(-10deg);
}

.card-body .bg:nth-child(2) {
    height: 50%;
    transform-origin: right;
    top: 5%;
    right: -30%;
    transform: rotate(-10deg);
}

.card-body .bg:nth-child(3) {
    height: 50%;
    transform-origin: left;
    top: 70%;
    left: -30%;
    transform: rotate(-10deg);
}

.card:hover .card-body .bg {
    width: 200%;
    transition-delay: .8s;
}

.card:hover .card-body .bg:nth-child(2) {
    transition-delay: 1.6s;
}

.card:hover .card-body .bg:nth-child(3) {
    transition-delay: 2.3s;
}

.content {
    position: relative;
    opacity: 0;
    transition: .8s;
    padding: 20px 10px;
    text-align: center;
}

.card-title{
    font-size: 87%;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.card:hover .content{
    opacity: 1;
    transition-delay: 2.6s;
}

.content p{
    font-size: 77%;
    margin-bottom: -5px;
}

.content a{
    text-decoration: none;
    font-size: 75%;
    color: #000;
}

/* Card Slider End */

/* 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 10px 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 */
