a{
    color: #1B1B1B;
    text-decoration: none;
}
img{
    object-fit: cover;
}
input{
    border: none;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.flex{
    display: flex;
}
.flex-row{
    flex-direction: row;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-colum{
    flex-direction: column;
}
.justify-around{
    justify-content: space-around;
}
.justify-between{
    justify-content: space-between;
}
.justify-evenly{
    justify-content: space-evenly;
}
.justify-center{
    justify-content: center;
}
.align-center{
    align-items: center;
}
.text-center{
    text-align: center;
}
.w100{
    width: 100%;
}
.w80{
    /* width: 1200px; */
    /* max-width: 1200px; */
    max-width: 1280px;
    position: relative;
}
.m-auto{
    margin: 0 auto;
}
a{
    text-decoration: none !important;
}
a:hover{
    color: #1B1B1B;
}
.lr-layout {
    display: flex;
    /* padding: 15px; */
}
.left-layout {
    width: 20%;
    position: relative;
    /* min-height: 300px; */
    /* overflow: hidden; */
    padding: 15px;
    padding-left: 0;
}
.center-layout {
    width: 60%;
    position: relative;
    /* min-height: 300px; */
    /* overflow: hidden; */
    padding: 15px;
}
.right-layout {
    width: 20%;
    position: relative;
    /* min-height: 300px; */
    /* overflow: hidden; */
    padding: 15px;
    padding-right: 0;
}
@media (max-width: 750px) {
    .lr-layout {
        display: flex;
        /* padding: 15px; */
        flex-wrap: wrap;
    }
    .left-layout {
        width: 100% !important;
        position: relative;
        padding: 15px;
        padding-left: 15px;
    }
    .center-layout {
        width: 100% !important;
        position: relative;
        padding: 15px;
    }
    .right-layout {
        width: 100% !important;
        position: relative;
        padding: 15px;
        padding-right: 15px;
    }


}