main{
    flex-direction: row;
    justify-content: center;
    padding-bottom: 40px;
}
.name{
    padding: 30px 0 45px 0;
    text-align: center;
    font-size: 35px;
}
.camp-item.first-part{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: strech;
}
.camp-container{
    width: 30%;
}
.camp_img{
    width: 69%;
    height: 480px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.camp_name{
    font-size: 25px;
    line-height: 1;
    margin-bottom: 15px;
}
.camp-dates{
    padding: 0 0 20px 0;
}
.camp-dates_header{
    margin-top: 15px;
    font-family: 'Bold', sans-serif;
    font-size: 20px;
}
.camp-dates_description{
    font-size: 18px;
}
.camp-dates_price{
    margin-top: 10px;
    font-size: 20px;
    font-family: 'Bold', sans-serif;
}
.camp-dates_price:not(:last-child){
    margin-bottom: 15px;
}
.camp-item_description{
    font-size: 18px;
}
.second-part{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-top: 30px;
}
.camp-block{
    width: 50%;
}
.second-part .camp-block:first-child{
    height: 1000px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/camp/arm.jpg);
}
.camp_link{
    display: inline-block;
    padding: 4px 15px;
    position: absolute;
    top: 45%;
    left: 37%;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 40px;
    font-size: 20px;
    font-family: 'Bold', sans-serif;
    background-color: rgba(0,0,0, .5);
    transition: all .3s ease;
}
.camp-block .camp-item{
    width: 100%;
    padding-bottom: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.camp-block .camp-item_img{
    width: 100%;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.camp-block .camp-item_header{
    width: 45%;
    font-size: 20px;
}
.camp-block .camp-item_description{
    width: 55%;
    padding-top: 10px;
    font-size: 16px;
}

/*hover*/
@media screen and (min-width: 835px) {
    .camp_link:hover{
        background-color: #ffffff;
        color: #380a4d;
    }
}
/* адаптирование под экраны */
@media screen and (max-width: 1175px) {
  .camp-container{
    padding-left: 10px;
  }
  .camp-block .camp-item_description{
    padding-right: 10px;
  }
}
@media screen and (max-width: 1024px) {
  /* .camp_img{
    height: 360px;
  } */
  .camp-block .camp-item_img{
    height: 340px;
  }
}
@media screen and (max-width: 880px) {
    .camp-item.first-part{
        flex-direction: column;
    }
    .camp-container{
        width: 100%;
        padding: 20px 10px 0 10px;
        order: 2;
    }
    .camp_img{
        width: 100%;
        order: 1;
    }
    .second-part{
        display: block;
    }
    .second-part .camp-block:first-child{
        width: 100%;
        height: 460px;
        margin-bottom: 20px;
    }
    .camp_link {
        left: 39%;
    }
    .camp-block{
        width: 100%;
    }
    .camp-block .camp-item_img{
        height: 440px;
    }
    .camp-block .camp-item_header{
        padding-left: 10px;
    }
}
@media screen and (max-width: 440px) {
    .camp_img,
    .second-part .camp-block:first-child,
    .camp-block .camp-item_img{
        height: 360px;
    }
    .camp-block .camp-item{
        display: block;
    }
    .camp-block .camp-item_header,
    .camp-block .camp-item_description{
        width: 100%;
        padding: 10px 0;
    }
}