/*UTILITY */
.height-100 {
    height: 100%;
}

.bg-gray {
    background-color: #f3f3f3 !important;
}
.bg-white {
    background-color: #fff !important;
}
.text-center {
    text-align: center !important;
}
.shadow-no-border-hovered {
    transition: box-shadow ease 0.3s, border ease 0.3s, background ease 0.3s;
}
.shadow-no-border-hovered:hover {
    border-color: transparent;
}
.shadow-hovered {
    transition: box-shadow ease 0.3s, background ease 0.3s;
}
.shadow-hovered:hover {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.position-relative {
    position: relative;
}

.clr {
}

.clr:after {
    content: "";
    clear: both;
    display: table;
    font-size: 0;
}

.middle {
    vertical-align: middle;
    display: inline-block;
}
.center {
    text-align: center;
}

.dn {
    display: none;
}

.flex-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.column-2 {
    columns: 2;
}
.column-3 {
    columns: 3;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}