.breadcrum{
    background-image: url(/assets/img/banner/breadcrum.jpg);
    background-size: cover;
    height: 240px;
    padding: 50px 120px 0px 120px;
}

.breadcrum h1{
    margin-top: 45px;
    font-family: 'Dancing Script', cursive;
    font-size: 40px;
}

.breadcrum h2{
    margin-top: 25px;
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.promotion{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.promotion>div{
    width: 50%;
}
.promotion img{
    width: calc(100% - 30px);
    height: 500px;
    margin-left: 30px;
    object-fit: contain;
}
.promotion p{
    line-height: 28px;
}
.promotion .btn-general{
    margin-top: 20px;
}

.showcase-cont{
    text-align: center;
}

.showcase{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 60%;
    margin: auto;
    margin-top: 50px;
}

.showcase>div{
    width: 25%;
    transition: .5s;
}

.showcase>div:hover{
    position: relative;
    transform: scale(1.2);
}

.showcase div p{
    background-color: #7b1c1b;
    padding: 10px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    margin-top: -4px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.direct-contact{
    background-color: #d0c8c2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.direct-contact h4{
    font-size: 20px;
    text-transform: capitalize;
}

@media (max-width: 1700px) {
    .showcase{
        width: 80%;
    }
}
@media (max-width: 1350px) {
    .showcase{
        width: 100%;
    }
}
@media (max-width: 1150px) {
    .showcase>div{
        width: 30%;
    }
}

@media (max-width: 890px) {
    .promotion>div{
        width: auto;
    }
    .promotion{
        flex-direction: column;
    }
    .promotion img{
        width: 100%;
        height: auto;
        margin-left: 0;
        margin-top: 20px;
    }
    .showcase div p{
        padding: 5px;
        font-size: 14px;
        line-height: 12px;
    }
}

@media (max-width:600px) {
    .showcase{
        flex-direction: column;
    }
    .showcase>div{
        width: 64%;
        margin: 15px auto;
    }
}

@media (max-width:570px) {
    .breadcrum{
        padding: 40px 30px;
        height: 120px;
    }
    .breadcrum h1{
        margin-top: 25px;
        font-size: 25px;
    }
    
    .breadcrum h2{
        margin-top: 25px;
        font-size: 27px;
    }
}