
.home_container{
    display: flex;
    flex-direction: column;
}
.home_bannier{
    position: relative;
    width: 100%;
    padding-bottom: 40px;
    padding-top: 40px;
    padding-right: 90px;
    padding-left: 90px;
}
.home_container-bannier{
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1440px;
    width: 100%;
    margin: auto;
    align-items: center;
    color: white;
}
.home_welcome{
    max-width: 902px;
    font-weight: 900;
    font-family: 'DinPro-black';
    font-size: 38px;
    text-align: center;
    text-transform: uppercase;
}
.home_description{
    max-width: 902px;
    font-weight: 400;
    font-family: 'DinPro';
    font-size: 20px;
    text-align: center;
}
.home_content-block{
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    max-width: 1440px;
    width: 100%
}
.home_bloc{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 16px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 24px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    width: 32%;
}
.home_bloc-layout{
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    /*width: 366px;*/
}
.home_icon{
    text-align: center;
}

.home_label{
    font-family: 'DinPro-medium';
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}
.home_description-bloc{
    font-family: 'DinPro';
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 150%;
}
.home_button-layout{
    display:flex;
    flex-direction: column;
    align-items: center;
}
.home_button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 16px;
  gap: 10px;
  height: 48px;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
  max-width: fit-content;
  cursor: pointer;
  user-select: none;
}
.home_button-text {
  height: 18px;
  font-family: 'DinPro-medium';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  flex: none;
  order: 0;
  flex-grow: 0;
}
/*mobile*/
@media(max-width: 768px) {
 .home_bannier{
    padding-bottom: 30px;
    padding-top: 30px;
    padding-right: 20px;
    padding-left: 20px;
}
.home_content-block{
    display: flex;
    flex-direction: column
    }
.home_bloc{
    display: flex;
    flex-direction: column;
    width: auto;
    }
}