/*==================================================
HOME SHOWROOM
==================================================*/

.home-showroom{
    padding:100px 0;
    /* background:#f8f6f2; */
}

.home-showroom .container{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:47% 55%;
    align-items:center;
    border-radius:18px;
    overflow:hidden;
    background:#18306f;
}

/*==================================================
CONTENT
==================================================*/

.showroom-content{
    padding:70px;
}

.section-subtitle{
    display:inline-block;
    margin-bottom:18px;
    color:#b18e49;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
}

.showroom-content h2{
    margin:0 0 25px;
    color:#fff;
    font-size:54px;
    line-height:1.1;
}

.showroom-content>p{
    margin-bottom:35px;
    color:rgba(255,255,255,.85);
    line-height:1.8;
}

.showroom-info{
    list-style:none;
    margin:0 0 40px;
    padding:0;
}

.showroom-info li{
    display:flex;
    gap:18px;
    margin-bottom:25px;
    align-items:flex-start;
}

.showroom-info span{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    font-size:20px;
}

.showroom-info strong{
    display:block;
    margin-bottom:5px;
    color:#fff;
}

.showroom-info p{
    margin:0;
    color:rgba(255,255,255,.85);
}

/*==================================================
BUTTONS
==================================================*/

.showroom-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
    display:inline-block;
    padding:16px 34px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.btn-primary{
    background:#b18e49;
    color:#fff;
}

.btn-primary:hover{
    background:#fff;
    color:#18306f;
}

.btn-outline{
    border:2px solid rgba(255,255,255,.5);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#18306f;
}

/*==================================================
IMAGE
==================================================*/

.showroom-image{
    height:100%;
}

.showroom-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.home-showroom .container{
    grid-template-columns:1fr;
}

.showroom-image{
    order:-1;
}

.showroom-content{
    padding:45px;
}

.showroom-content h2{
    font-size:42px;
}

}

@media(max-width:768px){

.home-showroom{
    padding:70px 0;
}

.showroom-content{
    padding:30px;
}

.showroom-content h2{
    font-size:34px;
}

.showroom-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-outline{
    width:100%;
    text-align:center;
}

}