.header{
    background-color: #a20f0f;
    padding-bottom: 100px;
}
.header__title{
    padding: 80px 0;
    font-size: 14vw;
    font-weight: 600;
    color: white;
}
.header__text{
    max-width: 300px;
    font-size: 16px;
    line-height: 25px;
    color: white;
}
.header__list{
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}
.header__img{
    width: 180px;
    height: 180px;
    background-color: rgb(47, 17, 7);
    border-radius: 50%;
    border: 2px solid white;
}

@media only screen and (max-width:800px) {
    .header__list{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 30px;
    }
    .header__text{
        text-align: center;
        max-width: 390px;
    }
}