html {
    scroll-behavior: smooth;
}
b, strong {
    font-weight: bold;
}

.smallest {
    font-size: 80%;
}

.z-index-1 {
    z-index: 1;
}
.z-index-2 {
    z-index: 2;
}
.z-index-999 {
    z-index: 999;
}

.border-2px {
    border-width: 2px !important;
}
.border-3px {
    border-width: 5px !important;
}
.border-5px {
    border-width: 5px !important;
}
.border-transparent {
    border-color: transparent !important;
}

.letter-spacing-025 {
    letter-spacing: 0.25px;
}
.letter-spacing-05 {
    letter-spacing: 0.5px;
}
.letter-spacing-1 {
    letter-spacing: 1px;
}
.letter-spacing-2 {
    letter-spacing: 2px;
}
.minh-40vh {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.minh-50vh {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.minh-60vh {
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.minh-100vh {
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.w-auto {
    max-width: none !important;
    width: auto !important;
}
.rounded-20px {
    border-radius: 20px !important;
}
.rounded-xl {
    border-radius: 100px 0 0 100px;
}
.rounded-xl-top-left {
    border-top-left-radius : 100px !important;
}
.rounded-xl-bottom-left {
    border-bottom-left-radius: 100px !important;
}
.rounded-xl-top-right {
    border-top-right-radius : 100px !important;
}
.rounded-xl-bottom-right {
    border-bottom-right-radius: 100px !important;
}
@media(max-width: 1380px) {
    .rounded-xl {
        border-radius: 50px 0 0 50px;
    }
    .rounded-xl-top-left {
        border-top-left-radius : 50px !important;
    }
    .rounded-xl-bottom-left {
        border-bottom-left-radius: 50px !important;
    }
    .rounded-xl-top-right {
        border-top-right-radius : 50px !important;
    }
    .rounded-xl-bottom-right {
        border-bottom-right-radius: 50px !important;
    }
}

.top-0 {
    top: 0;
}
.right-0 {
    right: 0;
}
.bottom-0 {
    bottom: 0;
}

.bg-cover {
    background-size: cover;
}
.bg-center {
    background-position: center;
}
.bg-soft-light {
    background-blend-mode: soft-light;
}
.bg-multiply {
    background-blend-mode: multiply;
}
.bg-overlay {
    background-blend-mode: overlay;
}


.object-fit-cover {
    object-fit: cover;
}
.object-fit-contain {
    object-fit: contain;
}

.opacity-0 {
    opacity: 0;
}
.opacity-5 {
    opacity: .5;
}
.opacity-75 {
    opacity: .75;
}
.font-0 {
    font-size: 0;
}
.line-height-1 {
    line-height: 1;
}
.text-inherit,
.text-inherit:hover {
    color: inherit;
}
.text-white-all * {
    color: #fff !important;
}
.c-pointer {
    cursor: pointer;
}

.font-weight-semibold {
    font-weight: 500 !important;
}


.position-initial {
    position: initial;
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 7.5rem;
    line-height: 1.5rem;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.5rem;
    line-height: 1.5rem;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3rem;
    line-height: 1.5rem;
}

.display-5 {
    font-size: 3rem;
}


.mw-none {
    max-width: none !important;
}

.bg-overlay-dark {
    background-color: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
}

.rotate-90 {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.rotate90 {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}