@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-image: url('img/bg.png');
    background-repeat: repeat;
    color: #000;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}
.button {
    box-shadow: 0px 4px 4px 0px #00000040;
    background: rgba(0, 107, 0, 0.5);
    border-radius: 5px;
    border: none;
    font-size: 24px;
    display: inline-block;
    color: #fff;
    padding: 7px 70px;
    transition: .3s;
}
.button:hover {
    background: #2e862f;
    text-decoration: none;
    color: #fff;
}
.header {
    margin: 70px 0 80px;
}
.header-block {
    position: relative;
    background-color: #2e862f;
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 543px;
    margin: 0 auto 45px auto;
}
.header-block__text {
    margin-bottom: 10px;
    color: #fff;
    opacity: .6;
    font-size: 18px;
    font-weight: 600;
}
.header-block__title {
    text-transform: uppercase;
    font-size: 48px;
}
.header-start {
    text-align: center;
}
.section {
    margin: 50px 0;
}
.task__info {
    margin-bottom: 30px;
}
.task__subtitle {
    font-size: 18px;
    font-weight: 600;
}
.task__item {
    margin-bottom: 30px;
}
.task__item__img {
    width: 100%;
    cursor: pointer;
}
.task__next {
    text-align: center;
    margin-bottom: 50px;
}
.task__next .button:disabled {
    background: rgba(0, 107, 0, 0.5);
}
.task__next .button {
    pointer-events: all;
    cursor: pointer;
    background-color: #2e862f;
}
.task input[type="checkbox"] {
    width: 20px;
    height: 20px;
}
.result-top {
    margin-bottom: 50px;
}
.task-about span{
    color: red;
    font-weight: 700;
  }
.task-about-1 {
    display: block;
}
.button.task-about-1 {
    display: inline-block;
}
.task-about-1.hide {
    display: none;
}
.task-about-2 {
    display: none;
}
.task-about-2.show {
    display: block;
}
.button.task-about-2.show {
    display: inline-block;
}
.task-about-3 {
    display: block;
}
.button.task-about-3 {
    display: inline-block;
}
.task-about-3.hide {
    display: none;
}
.task-about-4 {
    display: none;
}
.task-about-4.show {
    display: block;
}
.button.task-about-4.show {
    display: inline-block;
}

.bg-white {
    background-color: #fff;
}
.bg-red {
    background-color: #fe0100;
}
.bg-yellow {
    background-color: #ff0;
}
.bg-green {
    background-color: #02af50;
}
.bg-black {
    background-color: #000;
    filter: grayscale(1) brightness(100);
}
#answers-container{
    justify-content: center;
}
.task__item .task__item__img{
    max-width: 250px;
    max-height:35vh;
    height: 100%;
    object-fit: cover;
  }
@media (max-width: 576px) {
    .header-block {
        padding: 20px;
    }
}