@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Montserrat", sans-serif;
}

.poll-container {
    background: #f3f4f0;
    padding: 4rem 0;
}

.poll-container h2 {
    font-size: 30px;
    font-weight: 700;
    color: #e2020b;
}

/* TOP */
.top {
  width: 100%;
   background: #fff url('../img/bg-top.jpg') center top no-repeat;
}

.top > div {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 625px;
}

.top > div>.intro-test {
  padding-top: 30px;
  text-align: center;
  max-width: 445px;
}

.top-logo {
  margin-bottom:35px;
}

.top h1 {
  font-size: 30px;
  font-weight: 700;
  color: #e2020b;
  text-transform: none;
  line-height: 35px;
  
}


.top p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 25px;
  font-weight: 400;
}

.btn-c {
  margin-bottom: 18px;
  margin-top: 30px;
  display: inline-block;
}

.btn-c .btn {
    height: 50px;
    line-height: 50px;
    background: #e2020b;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
}



.top img {
  max-width: 100%;
}


.top-img-mobile {
  display: none;
}


@media (max-width: 1000px) {
  .top > div {
    background: #f3f4f0;
    padding:10px 0px; 
  }
  
  .top-logo{
    display: inline-block;
    float: none;
    margin:20px auto 7px auto;
}

.top-img-mobile {
  display: block;
  float: none;
}
  
  .top > div>.intro-test {
    max-width:100%;
    text-align: center;
    padding: 20px 2.5% 0 2.5%;
    margin: 0;
  }
  
  .top h1 {
    margin-top: 10px;
    font-size: 26px;
  }
  
  
  
  .btn-c {
    margin-top: 20px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 0 10px;
  }
  
  
}

.products {
  padding: 40px 0 80px 0;
}



.product{
  margin: 60px auto 0 auto;
  max-width: 1055px;
}



.product p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 25px;
}

.product.left{
  text-align: left;
  display: flex;
  justify-content:center;
  gap: 50px;
  align-items: center;
}

.product.left .product-img {
  text-align: right;
}

.product.right{
  text-align: left;
  display: flex;
  justify-content:center;
  gap: 50px;
  align-items: center;
}

.product.right .product-img {
  text-align: left;
}

.product-img, .opis {
  flex-grow: 1;
}



@media (max-width: 1000px) {
  .products {
    padding: 30px 10px;    
  }
  .product.left{
    text-align: left;
    flex-direction: column;
    gap:0;
  }

  .product.right{
    text-align: left;
    flex-direction: column-reverse;
    gap:0;
  }
 
  .product p {
    font-size: 16px;
  }
  .product img {
    margin: 0 auto 20px auto;
    max-width: 310px;
  }
}