body {
    font-family: "Poppins", roboto;
    font-weight: 400;
    font-style: normal;

    webkit-user-select: none;
    user-select: none;
}

.color-inherit,
.color-inherit:hover {
    background-color: inherit;
    color: inherit;
    text-decoration: none;
}

.hover-bg-color-grey:hover {
    background-color: #E4E4E4;
}

.bg-color-blue {
    background-color: hsla(200, 100%, 40%, 1) !important;
}

.bg-color-blue-05 {
    background-color: hsla(200, 100%, 40%, .5);
}

.bg-color-black {
    background-color: hsla(210, 11%, 15%, 1);
}

.bg-color-black-05 {
    background-color: hsla(210, 11%, 15%, 0.5);
}

.bg-color-white {
    background-color: white;
}

.txt-color-blue {
    color: hsla(200, 100%, 40%, 1);
}

.txt-color-blue-05 {
    color: hsla(200, 100%, 40%, .5);
}

.txt-color-white {
    color: white;
}

.txt-color-white-07 {
    color: hsla(100, 100%, 100%, 0.7);
}

.hover-bg-color-blue:hover {
    background-color: hsla(200, 100%, 40%, 1) !important;
    color: white;
}

.hover-txt-color-white:hover {
    color: white;
}

.hover-txt-color-blue-light:hover {
    color: #1FAEF6 !important;
}

.text-muted-1 {
    color: white !important;
}

.text-muted-03 {
    color: hsla(100, 100%, 100%, 0.3) !important;
}

.text-muted-05 {
    color: hsla(100, 100%, 100%, 0.5) !important;
}

.text-muted-09 {
    color: hsla(100, 100%, 100%, 0.9) !important;
}

.fs-7 {
    font-size: .9rem;
}

.fs-8 {
    font-size: .8rem;
}

.fs-85 {
    font-size: .65rem;
}

.fs-9 {
    font-size: .5rem;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: .5rem;
}

.gap-2 {
    gap: .75rem;
}

.height-400-px {
    height: 400px;
}

.height-500-px {
    height: 500px;
}

.z-index-2 {
    z-index: 2;
}

hr.solid {
    background: #919191;
    margin: 0;
}

.txt-color-black-05 {
    color: hsla(0, 0%, 0%, 0.66);
}

.bg-color-grey {
    background-color: hsla(0, 0%, 0%, 0.05);
}

.bold {
    font-weight: 600;
}

.text-upper {
    text-transform: uppercase;
}

.cursor-pointer {
    cursor: pointer;
}

.max-line-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.max-line-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.max-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

.text-justify {
    text-align: justify;
}

.list-bluearrow {
    list-style: none;
    padding-left: 0;
}

.list-bluearrow li {
    padding-left: 20px;
}

.list-bluearrow li::before {
    content: "\25B6";
    color: #007bff;
    padding-right: 8px;
}

.list-greenarrow {
    list-style: none;
    padding-left: 0;
}

.list-greenarrow li {
    padding-left: 20px;
}

.list-greenarrow li::before {
    content: "\25B6";
    color: green;
    padding-right: 8px;
}

.list-blackcircle {
    list-style: none;
    padding-left: 0;
}

.list-blackcircle li {
    padding-left: 20px;
}

.list-blackcircle li::before {
    content: "\25CF";
    color: black;
    padding-right: 8px;
}