html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

@keyframes slideColor {
    to {
        background-position: 0 0%
    }
}

@keyframes slideColorReverse {
    to {
        background-position: 0 95%
    }
    from {
        background-position: 0 0%
    }
}

.slider-item {
    flex: 0 0 auto;
    text-align: left;
    width: 14rem;
    clip-path: polygon(0 0, 0% 95%, 10% 100%, 100% 100%, 100% 0%);
}
    .slider-item .card-img-top {
        max-height: 10rem;
        margin-bottom: 1rem;
        transition: transform 1s;
    }
    .slider-item:hover .card-img-top {
        transform: scale(1.2);
    }
    .slider-item .card-body {
        min-height: 12rem;
        background: linear-gradient(to bottom,#0474be 50%, #023c62 50%);
        background-size: 100% 200%;
        background-position: 0 95%;
        animation: slideColorReverse .3s linear forwards;
    }
    .slider-item:hover .card-body {
        animation: slideColor .4s linear forwards;
    }

.ximaj-light {
    background-color: #0474be !important;
}

.ximaj-dark {
    background-color: #023c62 !important;
}
.ximaj-text-light {
    color: #0474be !important;
}

.ximaj-text-dark {
    color: #023c62 !important;
}

.bg-ximaj {
    background: #023c62;
}
@media (min-width: 1400px) {
    .overlap-left {
        margin-left: -150px;
    }

    .overlap-right {
        margin-right: -150px;
    }

}

.flex-60 {
    flex: 0 1 60%;
}

.flex-40 {
    flex: 1 1 40%;
}

.flex-30 {
    flex: 1 1 30%;
}

.dropdown-menu.dropdown-menu-wide {
    min-width: 100%;
    text-align: center;
}

.mw-30 {
    max-width: 30vw;
}

.mh-20 {
    max-height: 20vh;
}

.mh-50 {
    max-height: 50vh;
}
@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
}

.top-right {
    position: fixed;
    top: 1rem;
    right: 1rem;
}

