* {
    font-family: "El Messiri", sans-serif;
}

:root {
    --primary-color: #33C0CB;
    --secondary-color: #CB5533;
    --accent-color-1: #33CBC0;
    --accent-color-2: #3385CB;
    --primary-color-70per: rgba(51, 192, 203, 0.7);
    --secondary-color-70per: rgba(203, 85, 51, 0.7);
    --accent-color-1-70per: rgba(51, 203, 192, 0.7);
    --accent-color-2-70per: rgba(51, 133, 203, 0.7);
}

.navbar.navbar-expand-lg.bg-body-tertiary {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
}

.navbar-brand {
    transition: 0.2s ease;
}

.navbar-brand.custom-text-color {
    color: var(--primary-color);
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


.navbar-brand.custom-text-color:hover {
    color: var(--primary-color);
}

.navbar-brand.custom-text-color b {
    color: var(--secondary-color)
}

.navbar-brand img {
    height: 60px;
    width: 60px;
}

.nav-item .search-box {
    margin: 0 20px;
    background: #e8e8e8;
    border-radius: 30px;
    width: 250px;
}

.nav-item .search-box form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item .search-box input {
    border: none;
    outline: none;
    background: none;
    width: 80%;
    font-size: 15px;
    margin-right: 10px;
}

.nav-item .search-box button {
    border: none;
    background: none;
    display: flex;
}

.nav-item .search-box button i {
    font-size: 20px;
}

@media screen and (max-width: 991px) {
    .nav-item .search-box {
        margin: 20px 0;
    }
}

.to-top {
    position: fixed;
    bottom: 10px;
    left: 30px;
    font-size: 50px;
    z-index: 100;
    color: var(--primary-color);
    text-decoration: none;
    pointer-events: none;
    transition: all .4s ease;
    opacity: 0;
}

.to-top.active {
    pointer-events: auto;
    opacity: 1;
}

.popup {
    background-color: #fff;
    width: 450px;
    padding: 30px 40px;
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    z-index: 5;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.9);
    display: none;
}

.popup .popup-header {
    display: flex;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
}

.popup .popup-header button {
    position: absolute;
    top: -15px;
    right: 0;
    color: var(--secondary-color);
    font-size: 40px;
    border: none;
    background: none;
}

.popup p {
    text-align: justify;
}

footer {
    box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 101;
}

footer p {
    margin-bottom: 0;
}

footer .copyright {
    font-size: 16px;
    text-align: center;
}

footer .copyright a {
    color: #000;
    text-decoration: none;
}

footer .copyright b {
    transition: 0.5s ease;
}

footer .copyright b:hover {
    color: var(--primary-color);
}

footer .developer {
    font-size: 12px;
    text-align: center;
}

footer .developer a {
    text-decoration: none;
    color: #000;
    transition: 0.5s ease;
}

footer .developer a:hover {
    color: var(--primary-color);
}