.wwa__wrapper{
    width: 100%;
    display: flex;
    margin-top: 50px;
}
.wwa__form{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    background: #da251d;
    color: #fff;
    height: 38px;
    font-size: 25px;
    padding: 0 30px;
    margin: 0 auto;
    max-width: 224px;
    text-decoration: none;
    white-space: nowrap;
}
.wwa__form:hover{
    background: #be0d0d;
}
.wwa{
    flex-grow: 1;
}
.wwa__item{
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #a5a5a5;
}
.wwa__img{
    width: 25%;
    align-self: center;
    margin-right: 20px;
    --aspect-ratio: 3/2;
    position: relative;
}
.wwa__img::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
}
.wwa__info{
    flex-grow: 1;
}
.wwa__info a{
    display: block;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
.wwa__info p{
    font-size: 16px;
}
.wwa .wwa__item:first-child{
    padding-top: 0;
}
.wwa .wwa__item:last-of-type{
    border-bottom: 0;
}
@media screen and (max-width: 1124px){
	.wwa__form{
		display: none;
	}
}
@media screen and (max-width: 768px){
	.wwa__img{
        width: 40%;
        float: left;
    }
    .wwa__item{
        display: block;
        overflow: hidden;
    }
}
@media screen and (max-width: 400px){
	.wwa__img{
		width: 50%;
	}
}