/* In the name of Allah */
.mobile-header .open-menu,
.desktop-header .menu-items .item:not(.logo) {
    color: var(--tdc);
}

.mobile-header,
.desktop-header {
    -webkit-box-shadow: var(--bsh);
    box-shadow: var(--bsh);
    background: white;
}

main {
    padding-top: 76px;
}

#banner {
    /* background-image: url(../img/low-poly-grid-haikei.svg); */
    background-image: repeating-conic-gradient(from 30deg, #ffffff 0% 60deg, #fff2f8 0% 120deg);
    background-color: #fff2f8;

    background-size: 100px 173px;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 3rem 0;
    color: var(--mc);
    -webkit-clip-path: ellipse(100% 100% at 50% 0%);
    clip-path: ellipse(100% 100% at 50% 0%);
}

#banner .h1 {
    font-family: "Mikhak";
    font-weight: 900;
    margin-bottom: 1rem;
}

.features:not(:last-child) {
    margin-bottom: 4rem;
}

.features .h2 {
    font-family: "Mikhak";
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--mc);
}

.features .bg-mc2 {
    font-family: "Mikhak";
}

.feature {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0.7rem;
    -webkit-box-shadow: var(--bsh);
    box-shadow: var(--bsh);
    border-radius: var(--br);
    background: white;
}

.feature .h5 {
    font-family: "Mikhak";
    font-weight: 700;
}

.feature img {
    max-width: 70px;
    margin-bottom: 1rem;
}

.feature p {
    margin: 0;
    font-size: 0.8rem;
}

.navig {
    padding-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 45px;
    z-index: 100;
    /* bottom: 4.5rem; */
    /* right: 1.3rem; */
    /* z-index: 1; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.navig .item {
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 30rem;
    background: var(--mc);
    color: white;
    cursor: pointer;
}

.navig .item:not(:last-child) {
    margin-left: 5px;
}

body .tooltip {
    display: none;
}

@media (min-width:992px) {
    #banner {
        padding: 4rem 0;
    }

    .feature {
        text-align: start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 1rem;
    }

    .feature img {
        margin-bottom: 0;
        margin-left: 1rem;
    }

    .feature p {
        font-size: 1rem;
    }

    .navig {
        position: fixed;
        top: unset;
        padding-top: 0;
        display: block;
        z-index: 100;
        bottom: 4.5rem;
        right: 1.3rem;
        z-index: 1;
    }

    .navig .item:not(:last-child) {
        margin-left: 0;
        margin-bottom: 5px;
    }
}

@media (min-width:1200px) {
    .navig {
        right: 1rem;
    }

    .navig .item {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    body .tooltip {
        display: block;
    }
}