/** BLOCK: ABOUT - CSS **/
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
}

.about p {
    margin-top: 1.5rem;
}

.about button {
    margin-top: 1.5rem;
}

.about .about-img {
    position: relative;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;

    max-height: 437px;
}

.about .about-img svg {
    position: absolute;
    bottom: -20px;
    right: 15px;
    width: 75px;
    height: 75px;
}

.review {
    width: 380px;
    background: #FFFFFF;
    height: auto;
    position: absolute;
    top: 302px;
    padding: 25px;
    border: 1px solid #D5D5D5;
    color: #003145;
}

.review h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.review h1 {
    font-size: 2.5rem;
    line-height: 45px;
    text-transform: uppercase;
    font-family: "Sailec";
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.review .review__rating {
    font-size: 1.2rem;
    text-transform: lowercase;
    margin-top: 0.7rem;
    margin-bottom: 1rem;
    display: grid;
    gap: 1rem;
}

.review .review__rating--number {
    vertical-align: middle;
    color: #237dc1;
    line-height: 32px;
    letter-spacing: 0;
    font-size: 3rem;
    font-family: "Sailec";
}

.review__count {
    margin-top: 1rem;
}

.review a {
    color: #237dc1;
}

@media only screen and (max-width: 1130px) and (min-width: 990px) {
    .about {
        width: 90%;
        margin: auto;
    }
}

@media only screen and (max-width: 990px) {

    /** ABOUT **/
    .about {
        grid-template-rows: unset; /*1fr 1fr;*/
        grid-template-columns: none !important;
    }
    .about-img {
        height: 380px;
        margin-bottom: 150px;
        margin-top: 40px;
    }

    .about-img svg {
        z-index: 1;
    }

    .review {
        max-width: 100%;
        width: unset;
        position: absolute;/*static;*/
        padding: 15px;
        margin-top: 30px;
    }

}

@media only screen and (max-width: 360px) {
    .about-img {
        margin-bottom: 200px;
    }
}
