* {
    transition: 0.5s all ease-in-out;
    font-family: "Poppins", "Noto Sans Arabic";
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

button,
a,
input,
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: inherit;
    appearance: none;
}

a {
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
}

body {
    background-color: #f6f6f6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* globals */

button:focus,
a:focus {
    box-shadow: none !important;
}

input,
select,
textarea {
    box-shadow: none !important;
}

.readmore-button {
    background-color: #167a8b;
    color: white;
    border-radius: 4px;
}

.readmore-button:hover,
.readmore-button:focus {
    color: white;
}

.custom-sticky {
    position: sticky;
    top: 190px;
    position: -webkit-sticky;
}

@media (min-width: 1px) and (max-width: 575px) {
    .sticky-navbar {
        /*display: none;*/
        position: -webkit-sticky;
        position: sticky;
        top: -1px;
        z-index: 10000;
    }
}

@media (min-width: 576px) {
    .sticky-navbar {
        position: sticky;
        position: -webkit-sticky;
        top: -1px;
        z-index: 10000;
    }
}

.sticky-year-navbar {
    /*position: sticky;*/
    position: -webkit-sticky;
    top: 60px;
    z-index: 10000;
}

.pl-20 {
    padding-left: 20px;
}

.opacity-0 {
    opacity: 0;
}

.opacity-1 {
    opacity: 1;
}

@media (min-width: 1px) and (max-width: 991px) {
    .desktop-only {
        display: none;
    }
}

@media (min-width: 1px) and (max-width: 575px) {
    .desktop-sm-only {
        display: none;
    }
}

.limit-body {
    height: 100%;
    overflow: hidden;
}

.wrap {
    overflow: hidden !important;
    text-wrap: wrap !important;
}

.fs-13 {
    font-size: 13px;
}
