.image {
    width: 40%;
    margin-right: 5%;
    border: 1px dashed var(--blue);
    transition: transform 400ms ease-in-out;
}
.image:hover {
    transform: translateY(-4px);
    opacity: .9;
}
.info {
    width: 55%;
}
.info > h2 {
    color: var(--blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}
span.line {
    margin-left: 5px;
    margin-right: 5px;
    color: #6c6666;
}
.info > h2 + div {
    font-size: 17px;
    line-height: 1.35;
    color: var(--grey);
    margin-bottom: 2rem;
}
.mat-icon {
    background-color: #e9e8e8;
    padding: 0.5rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}
.location {
    margin-bottom: 1rem;
}
.location__value {
    font-size: 19px;
}
.date_from__value,.date_to__value {
    font-size: 18px;
}
.info > h2 + div > p:not(:last-child) {
    margin-bottom: 15px;
}
@media only screen and (max-width: 604px){
	.image {
		width: 100%;
		margin-right: 0;
		margin-bottom: 2rem;
	}
	.info {
		width: 100%;
	}
}
@media only screen and (max-width: 480px){
.info > h2 {
    font-size: 22px;
}
.info > h2 + div {
    font-size: 15px;
}
}