*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* All styles */

.btn{
    color: #9C052E;
    font-size: 18px;
    background-color: #fff;
    padding: 12px 18px;
    display: inline-block;
    font-weight: 700;
    border: 2px solid #fff;
    transition: all .3s ease;
}

.btn:hover{
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
}

.wrapper{
    padding: 0 20px;
    height: 100%;
    margin: 0 auto;
}

/* Header */

header{
    width: 100%;
    height: 14vh;
}
nav{
    width: 100%;
    height: 100%;
    background-color: #9C052E;
}
.nav-items{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.nav-items li{
    height: 90%;
}
.logo-image{
    height: 100%;
}
.logo-image img{
    height: 100%;
    object-fit: contain;
}
.partners-logos{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.partners-logos img{
    margin-left: 10px;
    margin-right: 10px;
    width: 80px;
    height: 80px;
    background: #fff;
    object-fit: contain;
}
/* Main */
.main-title{
    width: 100%;
    padding: 20px 0;
    border-top: 2px solid #9C052E;
    border-bottom: 2px solid #9C052E;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.card-model{
    min-height: 280px;
    width: 100%;
    display: grid;
    grid-template-columns: 70% 30%;
    margin-bottom: 40px;
}
.model-img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #9C052E;
}
.model-img img{
    height: 100%;
}
.model-desc{
    padding: 20px 0px;
    background-color: #727B82;
    display: flex;
    align-items: center;
    justify-content: center;
}
.desc-container{
    width: 80%;
}
.card-title{
    color: #fff;
    font-size: 28px;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 30px;
}
.card-description{
    color: #D9D9D9;
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 10px;
}
.contain{
    max-height: 50vh !important;
}
footer{
    padding: 20px 0px;
    width: 100%;
    height: 18vh;
    overflow: hidden;
    margin-top: 20px;
    background-color: #9C052E;
}
.footer-nav-items{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}
.footer-nav-items li{
    height: 100%;
}
.footer-logo-image{
    height: 100%;
}
.footer-logo-image img{
    height: 100%;
    object-fit: contain;
}
.footer-nav{
    width: 100%;
    height: 100%;
}