@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  max-width: 100%;
}

/* Navigation bar */
.wrapper{
    background: #4a0604;
    position: fixed;
    width: 100%;
    border: 3px solid black;
  }
  .wrapper nav{
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 70px;
    align-items: center;
    justify-content: space-between;
  }
  nav .content{
    display: flex;
    align-items: center;
  }
  nav .content .links{
    margin-left: 80px;
    display: flex;
  }
  .content .logo1 a{
    color: #fff8dc;
    font-size: 30px;
    font-weight: 600;
  }
  .content .logo1 img{
    width: 65px;
    position: absolute;
    left: -78px;
    top: 0.5%;
  }
  .content .links li{
    list-style: none;
    line-height: 70px;
  }
  .content .links li a,
  .content .links li label{
    color: #fff8dc;
    font-size: 18px;
    font-weight: 750;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .content .links li label{
    display: none;
  }
  .content .links li a:hover,
  .content .links li label:hover{
    background: #fff8dc;
    color: #4a0604;
  }
  .wrapper .search-icon,
  .wrapper .menu-icon{
    color: #fff8dc;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: right;
  }
  .wrapper .menu-icon{
    display: none;
  }
  .wrapper #show-search:checked ~ .search-icon i::before{
    content: "\f00d";
  }
  .wrapper .search-box{
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .wrapper #show-search:checked ~ .search-box{
    opacity: 1;
    pointer-events: auto;
  }
  .search-box input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #fff8dc;
    background: #4a0604;
    padding: 0 100px 0 15px;
  }
  .search-box input::placeholder{
    color: #fff8dc;
  }
  .search-box .go-icon{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 60px;
    width: 70px;
    background: #4a0604;
    border: none;
    outline: none;
    color: #fff8dc;
    font-size: 20px;
    cursor: pointer;
  }
  .wrapper input[type="checkbox"]{
    display: none;
  }
  /* Dropdown Menu code start */
  .content .links ul{
    position: absolute;
    background: #4a0604;
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
  .content .links li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    border-top: 3px solid black;
  }
  .content .links ul li a{
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0px!important;
  }
  .content .links ul ul{
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
  }
  .content .links ul li{
    position: relative;
  }
  .content .links ul li:hover ul{
    top: 0;
  }
  /* Responsive code start */
  @media screen and (max-width: 1250px){
    .wrapper nav{
      max-width: 100%;
      padding: 0 20px;
    }
    nav .content .links{
      margin-left: 30px;
    }
    .content .links li a{
      padding: 8px 13px;
    }
    .wrapper .search-box{
      max-width: calc(100% - 100px);
    }
    .wrapper .search-box input{
      padding: 0 100px 0 15px;
    }
  }
  @media screen and (max-width: 1029px){
    .wrapper .menu-icon{
      display: block;
    }
    .wrapper #show-menu:checked ~ .menu-icon i::before{
      content: "\f00d";
    }
    nav .content .links{
      display: block;
      position: fixed;
      background: #4a0604;
      height: 100%;
      width: 47.55%;
      top: 73.5px;
      left: -100%;
      margin-left: 0;
      max-width: 350px;
      overflow-y: auto;
      padding-bottom: 100px;
      transition: all 0.3s ease;
      border-top: 3px solid black;
      border-left: 3px solid black;
      border-right: 3px solid black;
    }
    nav #show-menu:checked ~ .content .links{
      left: 0%;
    }
    .content .links li{
      margin: 15px 20px;
    }
    .content .links li a,
    .content .links li label{
      line-height: 40px;
      font-size: 20px;
      display: block;
      padding: 8px 14px;
      cursor: pointer;
    }
    .content .links li a.desktop-link{
      display: none;
    }
    /* dropdown responsive code start */
    .content .links ul,
    .content .links ul ul{
      position: static;
      opacity: 1;
      visibility: visible;
      background: none;
      max-height: 0px;
      overflow: hidden;
    }
    .content .links #show-features:checked ~ ul,
    .content .links #show-services:checked ~ ul,
    .content .links #show-items:checked ~ ul{
      max-height: 100vh;
    }
    .content .links ul li{
      margin: 7px 20px;
    }
    .content .links ul li a{
      font-size: 18px;
      line-height: 30px;
      border-radius: 5px!important;
    }
  }
  @media  screen and (max-width: 580px) {
    .content .links li a,  
    .content .links li label, 
    .content .links ul li a{
      font-size: 16px;
    }
  }
  @media  screen and (max-width: 520px) {
    .content .links li a,  
    .content .links li label, 
    .content .links ul li a{
      font-size: 14px;
    }
  }
  @media screen and (max-width: 400px){
   .wrapper nav{
     padding: 0 10px;
   }
   .content .logo1 a{
     font-size: 27px;
   }
   .wrapper .search-box{
     max-width: calc(100% - 70px);
   }
   .wrapper .search-box .go-icon{
     width: 30px;
     right: 0;
   }
   .wrapper .search-box input{
     padding-right: 30px;
   }
   .content .links li a,
   .content .links li label{
     font-size: 14px;
   }
  }

/* Text and Backgrounds*/
.quote{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 41px;
    line-height: 50px;
    font-family: "Lora", sans-serif;
    font-weight: 550;
    color: #fff8dc;
    text-shadow: black 3px 3px;
}
@media screen and (max-width: 1365px){
    .quote{
        font-size: 35px;
    }
}
@media screen and (max-width: 1171px){
    .quote{
        font-size: 30px;
        line-height: 40px;
    }
}
@media screen and (max-width: 998px){
    .quote{
        font-size: 25px;
        line-height: 35px;
    }
}
@media screen and (max-width: 832px){
    .quote{
        font-size: 20px;
        line-height: 30px;
    }
}

.Beige_Achtergrond{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff8dc;
    background: #fff8dc;
    top: 100%;
    transition:all 0.3s ease-in;
    box-shadow: 3px solid black;
    margin-bottom: 10%;
    border-top: 3px solid black;
}
.Beige_Achtergrond .Centered_header{
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding-bottom: 30px;
    padding-top: 70px;
}
.Beige_Achtergrond .Info_text{
    position: absolute;
    text-align: left;
    left: 12.5%;
    padding-left: 15px;
    font-family: Tahoma, sans-serif;
    font-weight: 400;
    padding-right: 32%;
    display: block;
}

.imgAlbufeira1{
  position: absolute;
  width: 29.5%;
  height: 30%;
  top: 55%;
  left: 70%;
  border: 2px solid black;
}
.imgAlbufeira2{
  position: absolute;
  width: 29.5%;
  height: 30%;
  top: 20%;
  left: 70%;
  border: 2px solid black;
}


/* Swiper for Pictures*/
.slider{
position: absolute;
top: 210%;
  background: #000116;
  width: 96.5%;
  min-height: 500px;
  margin: 20px;
  margin-right:  40px;
  overflow: hidden;
  border-radius: 10px;
}
.NumberText{
    color: #fff;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }

.slider .slide{
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: circle(0% at 0 50%);
}

.slider .slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s;
}

.slider .slide img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navigation{
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.slider:hover .navigation{
  opacity: 1;
}

.prev-btn, .next-btn{
  z-index: 999;
  font-size: 2em;
  color: #222;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  cursor: pointer;
}

.prev-btn{
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.next-btn{
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.navigation-visibility{
  z-index: 999;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

.navigation-visibility .slide-icon{
  z-index: 999;
  background: rgba(255, 255, 255, 0.5);
  width: 20px;
  height: 10px;
  transform: translateY(-50px);
  margin: 0 6px;
  border-radius: 2px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.navigation-visibility .slide-icon.active{
  background: #4285F4;
}

@media (max-width: 850px){
  .slider{
    width: 95%;
  }

  .slider .slide .info{
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 700px){
  .slider{
    width: 91%;
  }

  .slider .slide .info{
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
 /* Img Collage*/


.container .image-container{
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
  padding: 10px;
  top: 305%;
}
.container .image-container > *{
  flex-basis: 1 1 25%;
}
.container .image-container .image{
  height: 200px;
  width: 350px;
  border: 3px solid black;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  overflow: hidden;
  cursor: pointer;
}
/* @ Media image containers */
@media screen and (max-height: 710px){
    .container .image-container{
        position: absolute;
        top: 315%;
    }
}
@media screen and (max-height: 650px){
    .container .image-container{
        position: absolute;
        top: 325%;
    }
}
@media screen and (max-height: 590px){
    .container .image-container{
        position: absolute;
        top: 335%;
    }
}
@media screen and (max-height: 540px){
    .container .image-container{
        position: absolute;
        top: 345%;
    }
}
@media screen and (max-height: 395px){
    .container .image-container{
        position: absolute;
        top: 355%;
    }
}

@media  screen and (max-width: 545px) {
  .container .image-container{
    flex-wrap: wrap;
  }
  .container .image-container > *{
    flex-basis: 45%;
  }
}

/* Styling rest containers */
.container .image-container{
    margin-top: 2%;
}

.container .image-container .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .2s linear;
}
.container .image-container .image:hover img{
  transform: scale(1.1);
}
.container .popup-img{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}
.container .popup-img span{
  position: absolute;
  top: 0; right: 10px;
  font-size: 60px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}
.container .popup-img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #fff;
  border-radius: 5px;
  width: 80%;
  height: 85%;
  object-fit: cover;
}
@media (max-width: 768px){
  .container .popup-img img{
      width: 90%;
  }
}
@media (max-width: 650px){
  .container .popup-img img{
      width: 85%;
      height: 75%;
  }
}
@media (max-width: 500px){
  .container .popup-img img{
      width: 85%;
      height: 45%;
  }
}
@media (max-width: 400px){
  .container .popup-img img{
      width: 85%;
      height: 35%;
  }
}
@media (max-width: 840px){
  .container .image-container .image{
      height: 155px;
      width: 250px;
      box-shadow: 0 5px 15px rgba(0,0,0,.1);
      overflow: hidden;
      cursor: pointer;
  }
}
@media (max-width: 600px){
  .container .image-container .image{
      height: 135px;
      width: 250px;
      box-shadow: 0 5px 15px rgba(0,0,0,.1);
      overflow: hidden;
      cursor: pointer;
  }
}
@media (max-width: 495px){
  .container .image-container .image{
      height: 110px;
      width: 250px;
      box-shadow: 0 5px 15px rgba(0,0,0,.1);
      overflow: hidden;
      cursor: pointer;
  }
}
@media (max-width: 410px){
  .container .image-container .image{
      height: 100px;
      width: 250px;
      box-shadow: 0 5px 15px rgba(0,0,0,.1);
      overflow: hidden;
      cursor: pointer;
  }
}

/*Media Tekst changin place*/
@media (max-width: 1035px){
    .Beige_Achtergrond .Info_text{
      font-size: 17px;
    }
  }
  @media (max-width: 900px){
    .Beige_Achtergrond .Info_text{
      position: absolute;
      text-align: left;
      left: 5.5%;
      padding-left: 0;
      font-family: Tahoma, sans-serif;
      font-weight: 400;
      padding-right: 5%;
      display: block;
      font-size: 14px;
    }
    .imgAlbufeira1{
      position: absolute;
      width: 45%;
      height: 30%;
      top: 68.5%;
      left: 4%;
      border: 2px solid black;
    }
    .imgAlbufeira2{
      position: absolute;
      width: 45%;
      height: 30%;
      top: 68.5%;
      left: 50%;
      border: 2px solid black;
    }  
  }
  @media (max-width: 860px){
    .Beige_Achtergrond .Info_text{
      position: absolute;
      text-align: left;
      left: 5.5%;
      padding-left: 0;
      font-family: Tahoma, sans-serif;
      font-weight: 400;
      padding-right: 5%;
      display: block;
      font-size: 13px;
    }
  }
  @media (max-width: 720px){
    .Beige_Achtergrond .Info_text{
      position: absolute;
      text-align: left;
      left: 5.5%;
      padding-left: 0;
      font-family: Tahoma, sans-serif;
      font-weight: 400;
      padding-right: 5%;
      display: block;
      font-size: 12px;
    }
  }
  @media (max-width: 660px){
    .Beige_Achtergrond .Info_text{
      position: absolute;
      text-align: left;
      left: 5.5%;
      padding-left: 0;
      font-family: Tahoma, sans-serif;
      font-weight: 400;
      padding-right: 5%;
      display: block;
      font-size: 11px;
    }
  }
  @media (max-width: 560px){
    .Beige_Achtergrond .Info_text{
      position: absolute;
      text-align: left;
      left: 5.5%;
      padding-left: 0;
      font-family: Tahoma, sans-serif;
      font-weight: 400;
      padding-right: 5%;
      display: block;
      font-size: 10px;
    }
  }
  @media (max-width:380px){
    .Beige_Achtergrond .Info_text{
        position: absolute;
        text-align: left;
        left: 5.5%;
        padding-left: 0;
        font-family: Tahoma, sans-serif;
        font-weight: 400;
        padding-right: 5%;
        display: block;
        font-size: 10px;
      }
      .imgAlbufeira1{
        position: absolute;
        width: 45%;
        height: 20%;
        top: 78%;
        left: 4%;
        border: 2px solid black;
      }
      .imgAlbufeira2{
        position: absolute;
        width: 45%;
        height: 20%;
        top: 78%;
        left: 50%;
        border: 2px solid black;
      }   
  }

  @media (max-width:350px){
    .Beige_Achtergrond .Info_text{
        position: absolute;
        text-align: left;
        left: 5.5%;
        padding-left: 0;
        font-family: Tahoma, sans-serif;
        font-weight: 400;
        padding-right: 5%;
        display: block;
        font-size: 9px;
      }
    }

  /* Centered Header */
  @media (max-width: 1050px){
    .Beige_Achtergrond .Centered_header{
      padding-right: 26%;
    }
  }
  @media (max-width: 950px){
    .Beige_Achtergrond .Centered_header{
      padding-right: 18%;
    }
  }
  @media (max-width: 940px){
    .Beige_Achtergrond .Centered_header{
      padding-right: 20%;
    }
  }
  @media (max-width: 900px){
    .Beige_Achtergrond .Centered_header{
      padding-left: 19%;
    }
  }
  @media (max-width: 880px){
    .Beige_Achtergrond .Centered_header{
      font-size: 35px;
    }
  }
  @media (max-width: 775px){
    .Beige_Achtergrond .Centered_header{
      font-size: 30px;
    }
  }
  @media (max-width: 665px){
    .Beige_Achtergrond .Centered_header{
      font-size: 26px;
    }
  }


/*Footer*/
  footer{
    width: 102.5%;
    position: absolute;
    top: 450%;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}
.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col{
    flex-basis: 25%;
    padding: 10px;
}
.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}
.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
.email-id{
  width: fit-content;
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}
.col ul li{
    list-style: none;
    margin-bottom: 12px;
}
.col ul li a{
    text-decoration: none;
    color: #fff;
}

.social-icons ul{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 5px;
    font-size: 50px;
    margin-right: 100px;
    cursor: pointer;
    display: flex;
    gap: 20px;
}
.social-icons ul li a{
    position: relative;
    text-decoration: none;
    color: var(--clr);
    z-index: 10;
    font-size: 1em;
    transition: 0.5s;
}
.social-icons ul li:hover a{
    filter: drop-shadow(0 0 20px var(--clr)) drop-shadow(0 0 40px var(--clr)) drop-shadow(0 0 60px var(--clr));
}
.social-icons ul li:hover{
    z-index: 10000;
    transform: scale(0.75);
}
.logo{
  width: 50%;
  padding-bottom: 5%;
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}
@media (max-width: 700px){
    footer{
        bottom: unset;
    }
    .col{
        flex-basis: 100%;
    }
    .col:nth-child(2), .col:nth-child(3){
        flex-basis: 100%;
    }
    .logo{
      width: 30%;
      padding-bottom: 5%;
    }
    
}

@media (max-width: 1445px){
  .footer{
      position: absolute;
      top: 485%;
  }
}
@media (max-width: 1090px){
  .footer{
      position: absolute;
      top: 565%;
  }
}
@media (max-width: 835px){
  .footer{
      position: absolute;
      top: 415%;
  }
}
@media (max-width: 800px){
  .footer{
      position: absolute;
      top: 465%;
  }
}