@import url();

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Finlandica', sans-serif;
}

a{
  text-decoration: none;
  color: #000;
}

nav{
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #364652;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo img{
    height: 100px;
    padding: 5px;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
}
.wrapper .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: #2a363f;
}
.nav-links .mobile-item{
  display: none;
}

.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #364652;
    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: #364652;
  }
  ::-webkit-scrollbar-thumb {
    background: #364652;
  }
  #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;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    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-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }

}
nav input{
    display: none;
}

.first-section{
  width: 100%;
  max-height: 100vh;
  padding-top: 40px;
  padding-left: 6%;
  padding-right: 8%;
  overflow: hidden;
  margin-bottom: 100px;
  background: #E5CDFB;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 13% 100%, 0% 65%, 0% 50%);
  z-index: -1;
} 

.title{
  margin-top: 80px;
  text-align: center;
}

.row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.col-1{
  flex-basis: 40%;
  position: relative;
}

.col-1 img{
  margin-bottom: 10%;
}

.col-2{
  position: relative;
  flex-basis: 60%;
  width: 50%;
  max-height: 550px;
  display: flex;
  align-items: center;
}

.slider {
  width: 100%;
  margin: 0;
  max-height: 100vh;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  margin-top: 80px;
  width: 485%;
  height: auto;
  display: flex;
  float: left;
}

.slides input {
  display: none;
}

.slide {
  width: 20%;
  transition: 2s;
}

.slide img {
  margin-top: 5%;
  width: 100%;
  height: 50%;
  max-height: 50%;
  border-radius: 10px;
}

.navigation-manual {
  position: absolute;
  width: 100%;
  margin-top: 73%;
  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: 100%;
  justify-content: center;
  margin-top: 73%;
}

.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;
}

.pslider{
  width: 100%;
  max-height: 100vh;
  padding-bottom: 3rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  z-index: -1;
}

@media (max-width: 1300px){
  .col-2{
    position: relative;
    flex-basis: 60%;
    width: 50%;
    max-height: 600px;
    display: flex;
    align-items: center;
  }

  .slides {
    margin-top: 150px;
    width: 485%;
    height: auto;
    display: flex;
    float: left;
  }

  .navigation-manual {
    margin-top: 80%;
  }

  .navigation-auto {
    margin-top: 80%;
  }

}

@media (max-width: 1100px){

  .col-2{
    position: relative;
    flex-basis: 60%;
    width: 50%;
    max-height: 350px;
    display: flex;
    margin-bottom: 15%;
    align-items: center;
  }

  .slides {
    width: 485%;
    height: auto;
    display: flex;
    float: left;
  }

  .navigation-manual {
    margin-top: 80%;
  }

  .navigation-auto {
    margin-top: 80%;
  }

  .col-1 img{
    max-width: 500px;
    margin-bottom: 30%;
  }

}

@media (max-width: 900px){
  .col-2{
    position: relative;
    flex-basis: 60%;
    width: 50%;
    max-height: 600px;
    display: flex;
    align-items: center;
  }

  .slides {
    margin-top: 80px;
    width: 465%;
    height: auto;
    display: flex;
    float: left;
  }

  .navigation-manual {
    margin-top: 80%;
  }

  .navigation-auto {
    margin-top: 80%;
  }

  .col-1 img{
    max-width: 350px;
    margin-bottom: 80%;
  }

}

@media (max-width: 700px){

  .container{
      padding-top: 50px;
      max-height: 500px;
  }

  .row{
      flex-direction: column;
      margin: 50px 0;
  }

  .col-2{
      flex-basis: 100%;
      margin-bottom: 0px;
  }

  .col-2 .slider{
      width: 100%;
  }

  .col-2 .slides{
    height: 300px;
  }

  .color-box{
      transform: translateX(75px);
  }

  .col-1 img{
     display: none;
  }

  .titleText{
    font-size: 18px;
  }

  .navigation-auto{
    margin-top: 130%;
  }

  .navigation-manual{
    margin-top: 130%;
  }

}

/* Product slider START */

.pslider h2{
  text-align: center;
  margin-bottom: 40px;
}

.slide-container{
  width: 100%;
  padding: 20px 0;
}
.slide-content{
  max-width: 1120px;
  margin: 0 20%;
  overflow: hidden;
  border-radius: 25px;
}
.card{
  border-radius: 25px;
  background-color: #FFF;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #bde0fe;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #bde0fe;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #bde0fe;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
  margin-bottom: 80px;
}
/* .button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #bde0fe;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #bde0fe;
} */

.swiper-navBtn{
  color: #545a55;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #64b1f4;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #bde0fe;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #bde0fe;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

.third-section{
  background: #fff;
  padding: 0;
  margin: 0;
  min-height: 500px;
}

.box{
  width: 800px;
  height: 400px;
  margin: 100px auto;
  background: url(images/pexels-suzy-hazelwood-1266139.jpg) no-repeat;
  position: relative;
  opacity: 75%;
  border: 2px solid #000;
}

.box h2{
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  top: 35%;
  left: 13%;
  transform: translateY(-50%);
}

@media screen and (max-width: 700px){
  .third-section{
    min-height: 250px;
  }

  .box{
    width: 300px;
    height: 150px;
    margin: 100px auto;
    background: url(images/pexels-suzy-hazelwood-12661391.jpg) no-repeat;
    position: relative;
    border: 2px solid #000;
  }
  
  .box h2{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .8rem;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    top: 35%;
    left: 13%;
    transform: translateY(-50%);
  }
}

.end{
  position: relative;
  width: 100%;
  min-height: 10vh;
  display: flex;
  background: #364652;
  align-items: center;
  justify-content: center;
}

.footer-text{
  text-align: center;
  padding: 20px;
  color: #fff;
}