* {
  font-family: "poppins";
}

p {
  font-weight: 400;
}
.mainView {
  margin-top: 320px;
}
#main_container {
  width: 95%;
  max-width: 1100px;
  position: relative;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
}
#img_mobile {
  display: none;
}
#main_container img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
}
#info {
  display: flex;
  max-width: 1400px;
  flex-direction: column;
  justify-self: center;
}
#text {
  position: relative;
  text-align: justify;
  flex: 1;
  margin: 0 0 120px;
  animation: text_slide_animation 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes text_slide_animation {
  0% {
    top: 1500px;
    opacity: 0;
  }
  70% {
    top: -10px;
    opacity: 1;
  }
  85% {
    top: 5px;
  }
  100% {
    top: 0;
  }
}

#picture {
  flex: 1;
  margin: 0 16px;
}
#picture_desktop {
  width: 70%;
  animation: img_animation 2s ease;
}
@keyframes img_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#info p {
  margin: 24px 0;
}
#info li {
  margin: 0 32px;
}
#picture #ko_picture2 {
  min-width: 80%;
}
#opieka_form {
  /* min-height: 100vh; */
  margin-bottom: 250px;
}
#ok_form {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: revert-layer;
  width: 99%;
  overflow: visible;
}
#form_text {
  font-size: 24px;
  margin-bottom: 60px;
}
#surveyForm {
  margin: 36px 0 0 24px;
}
#surveyForm label {
  display: inline-block;
  margin: 0 12px 12px 0;
}
#download_button {
  background-color: rgb(33, 159, 167);
  color: white;
  width: 250px;
  height: 48px;
  font-family: "poppins";
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 48px;
  border-radius: 10px;
  border: none;
  box-shadow:
    0 15px 15px rgba(0, 0, 0, 0.5),
    0 40px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  #info {
    flex-direction: column;
  }
  #main_container #img_mobile {
    display: block;
    margin-bottom: 24px;
  }
  #picture_desktop {
    display: none;
  }
  #text {
    margin-bottom: 36px;
  }
  #info p {
    font-size: 14px;
    font-weight: 400;
  }
  #surveyForm {
    margin-left: 0;
  }
  #img_mobile {
    width: 60%;
    animation: img_animation_mobile 2s ease;
  }
  @keyframes img_animation_mobile {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
@media (max-width: 820px) {
  #info {
    flex-direction: column;
  }
  #main_container #img_mobile {
    display: block;
    margin-bottom: 24px;
  }
  #picture_desktop {
    display: none;
  }
  #text {
    margin-bottom: 40px;
  }
  #info p {
    font-size: 14px;
    font-weight: 400;
  }
  #surveyForm {
    margin-left: 0;
  }

  #img_mobile {
    width: 80%;
  }
}
@media (max-width: 430px) {
  #main_container {
    margin-bottom: 190px;
  }
  #info {
    flex-direction: column;
  }
  #info {
    margin: 0;
  }

  #main_container img {
    margin-bottom: 8px;
  }
  #main_container #img_mobile {
    display: block;
    margin-bottom: 24px;
  }
  #picture_desktop {
    display: none;
  }
  #download_button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  #footer_logo a img {
    width: 80px;
  }
  #img_mobile {
    width: 90%;
  }
}
