.model-container{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.model-img {
    width: 50%;
}

.model-img img {
    width: 100%;
}

.model-txt {
    width: 50%;
    padding: 70px 20px;
}

.model-txt p {
    margin: 30px 0;
    line-height: 25px;
    color:#000;
}

.model-txt h2 {
    margin-bottom: 20px;
    font:revert;
}
.model-txt h3 {
    font:revert;
    line-height: normal;
    margin:0;
}
.model-txt h3.price {
    font-size:160%;
}

.model-txt h4 {
    /* margin-bottom: 15px; */
    font:revert;
    color:darkred;
    font-size: 90%;
    line-height: normal;
}

.model-features h5, .feature-text h5 {
    font:revert;
    margin:0;
    line-height: normal;
}

.model-txt button {
    color: white;
    background-color: brown;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
}

.model-txt button:hover {
    cursor: pointer;
}

.features-squares {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    /* border: 1px solid gray; */
    margin-bottom: 90px;
}

.feature-kind {
    border: 1px solid gray;
    display: flex;
    width: 50%;
    padding: 10px;
}

.feature-kind .imgIconContainer {
    width: 40px;
    min-width: 40px;
    margin-right: 10px;
}
.feature-kind img {
    width: 100%;
}

.feature-kind p {
    color: grey;
    font-size: 12px;
    margin-top: 5px;
    line-height: normal;
    margin-bottom: 0;
}

.feature-grey {
    background-color: #F0F0F6;
}

div.no-border {
    border-right: 3px solid white;
    border-bottom: 3px solid white;
}

@media screen and (max-width: 992px) {
    .model-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .model-txt {
        width: 100%;
    }
    .feature-kind {
        width: 100%;
    }
    div.no-border {
        padding: 0;
    }
}
 

