@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    position: relative;
    width: 100%;
    font-family: 'Poppins', sans-serif;

}
.container{
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    max-width: 1440px;
}
a{
  display: block;
  text-decoration: none;
}
.m-minus{
  margin-top: -150px;
  margin-bottom: -150px;
}
.m-minus-2{
  margin-top: 0px;
  margin-bottom: -150px;
}
img{
    width: 100%;
}
main{
    position: relative;
}
header{
    min-height: 400px;
    width: 100%;
    position: relative;
    display: flex;
    z-index: 1;
    justify-content: center;
    align-content: center;
    align-items: flex-end;

}
.background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
header:after{
  
    background: rgb(45,163,215);
    background: linear-gradient(180deg, rgba(45,163,215,0) 0%, rgba(45,163,215,1) 58%);
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    z-index: -1;
}
h1{
    text-align: center;
    color: rgb(255, 255, 255);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 48px;
}
.social-box{
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 130px 0 0 130px;
    padding:15px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    transform: translateY(15vh);
}
.social-box img{
    width: 60px;
    margin: auto;
}
.logo{
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 170px;
    background: white;
    border-radius: 0 0 200px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding-right: 30px;
    padding-bottom: 25px;
}
.logo img{
    max-width: 200px;
}
.field {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  left: 50%;
  margin-right: -50%;
  transform: translateX(-50%);
  bottom: -70px;
}

.scroll {
  width: 60px;
  height: 60px;
  border: 5px solid white;
  border-radius: 50%;
  position: relative;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}
.scroll::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 18px;
  height: 18px;
  border-left: 4px solid white;
  border-bottom: 4px solid white;
  transform: rotate(-45deg);
}

@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}
@-webkit-keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}
.arrow {
  width: 0;
  height: 40px;
  border: 1px solid #333;
  position: relative;
  animation: scroll 1.5s infinite;
  -webkit-animation: scroll 1.5s infinite;
}
.arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: -5px;
  width: 1px;
  height: 10px;
  border-top: 10px solid #333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

@keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}
@-webkit-keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}
.product-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2em;
    align-items: center;
}
.product{
  background: white;
  border-radius: 10px;
  padding: 10px;
  padding-bottom: 100px;
  position: relative;
  text-align: center;
}
.product-image{
  height: 260px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.price{
  width: 160px;
  height: 160px;
  background: rgb(199, 63, 63);
  position: absolute;
  right: 5px;
  bottom: -60px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 49px -27px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 49px -27px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 49px -27px rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  color: white;
  font-size:30px!important;
  flex-direction: column;
  font-weight: bolder;
  transform: rotate(12deg);
}
h4{
  text-align: center;
  font-size: 22px;
  color: rgb(45,163,215);
}
.line-trough{
  text-decoration: line-through;
  display: block;
  font-size: 18px;
  font-weight: 400;
}
.product-name{
  text-align: center;
  color: rgb(36, 118, 153);
  font-size: 20px;
}
.purple-bg{
  background: rgb(122, 86, 133);
}
.purple svg{
  fill: rgb(122, 86, 133)!important;
  margin-bottom: -20px;

}
.p-in-title{
  color: rgb(221, 221, 221);
}
.mt-minus{
  margin-top: -100px!important;
}
.product-image .background{
  background-size: contain;
}
.blue-bg{
  background: rgb(45,163,215);
  margin-top: -10px;
}
.product-wave svg{
  fill: rgb(45,163,215);
}
.small{
  font-size: 16px;
}
.products-circle{
  position: relative;
  text-align: center;
  margin: auto;
  margin-top: -50px;
  float: right;
  font-size: 15px!important;
  display: inline-block!important;
  width: unset;
  height: unset;
  padding: 40px 35px;
  font-size: 26px!important;
}
.small{
  display: inline-block;
  font-size: 14px;
}
.facebook-box{
  background: rgb(36, 118, 153);
  color: white;
  padding: 20px 10px;
  text-align: center;
  margin-bottom: 60px;
  font-size: 24px;
}
.info{
  color: white;
  text-align: center;
  margin-top: 65px;
  font-size: 20px;
}
.cta-btn{
    color: unset;
    display: block;
    font-weight: 600;
    border: 5px solid rgb(45,163,215);
    text-decoration: none;
    padding: 0;
    padding-right: 10px;
    margin: 25px auto;
    margin-top: 70px;
    display: flex;
    align-items: center;
    width: max-content;
    text-transform: uppercase;
    color: rgb(36, 118, 153);
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    transition: .5s;
    background: white;
}
.cta-btn:after{
    width: 0;
    height: 42px;
    left: 20px;
    background: rgb(45,163,215);
    content: '';
    position: absolute;
    transition: .6s;
    z-index: 1;

}
.cta-btn:hover{
    color: white;
}
.cta-btn:hover:after{
    width: calc(100% - 15px);
}
.right-arrow{
    height: 40px;
    margin-right: 15px;
    background: rgb(45,163,215);
    padding: 5px 10px;
    background-image: url(images/wave.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
    
}
.place-icon{
  position: absolute;
  left: 50%;
  top: 0;
  margin-right: -50%;
  transform: translateX(-50%);
  z-index: -2;
  transition: .5s;
}
.text{
  position: relative;
  z-index: 2;
}
.place-icon svg{
  width: 70px;
  transform: scale(.3);
  fill: rgb(45,163,215);
  transition: .3s;
}
.cta-btn:hover .place-icon{
  transform: translateX(-50%) translateY(-80px);
}
.cta-btn:hover .place-icon svg{
  transform: scale(1);
}
.right-arrow img{
    width: unset;
    height: 100%;
}
.grid-2{
    grid-template-columns: repeat(2, 1fr);
}
h2, h3{
  color: rgb(36, 118, 153);
  text-align: center;
  padding: 5px 30px;
}
h2{
  font-size: 40px;
  position: relative;
}
h3{
  font-size: 30px;
  position: relative;
  margin: 0;

}
.akcio{
  padding: 60px 0;
  color: white;
  text-align: center;
  background: rgb(45,163,215);
  font-size: 16px;
  font-style: italic;
}
@media (max-width: 1024px){
  h1{
    font-size: 36px;
    margin-top: 120px;
  }
  .social-box{
    display: none;
  }
  header{
    align-items: center;
  }
  .field{
    bottom: 0;
  }
}
@media (max-width: 768px){
  .product-grid{
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 5em;
  }
  .m-minus{
    margin-top: 0px;
    margin-bottom: -50px;
  }
  .m-minus-2{
    margin-top: 0;
    margin-bottom: 0;
  }
}
.minus-margin{
  margin-bottom: -200px;
}
