/* 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: 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;
}

.map {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    border-radius: var(--br);
    border: 2px solid var(--mc);
}

#info .card,
#address .card {
    border: 0;
    border-radius: var(--br);
    -webkit-box-shadow: var(--bsh);
    box-shadow: var(--bsh);
    -webkit-transition-duration: var(--td);
    -o-transition-duration: var(--td);
    transition-duration: var(--td);
}

#info .card * {
    -webkit-transition-duration: var(--td);
    -o-transition-duration: var(--td);
    transition-duration: var(--td);
}

#info .col:not(:last-child) {
    margin-bottom: 1.5rem;
}

#info .card-body,
#address .card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#info .icon,
#address .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20rem;
    -webkit-box-shadow: inset 0 0.5rem 1rem rgb(0 0 0 / 15%);
    box-shadow: inset 0 0.5rem 1rem rgb(0 0 0 / 15%);
    margin-bottom: 1rem;
    border: 2px solid transparent;
}

#info .icon i,
#address .icon i {
    font-size: 2rem;
    color: var(--mc);
}

#info .title,
#address .title {
    position: relative;
    margin-bottom: 1rem;
    font-weight: bold;
    font-family: "Mikhak";
}

#address .title {
    text-align: center;
}

#info .title::after,
#address .title::after {
    position: absolute;
    content: '';
    top: 130%;
    left: calc(50% - 25px);
    width: 50px;
    height: 3px;
    background-color: var(--mc);
}

#info .card a,
#info .card-body div {
    font-weight: 500;
    color: var(--tdc);
}

#info .card a:hover {
    color: var(--mc2) !important;
}

#info .card:hover,
#address .card:hover {
    background-color: var(--mc);
}

#info .card:hover .icon,
#address .card:hover .icon {
    background-color: white;
    border-color: #831053;
}

#info .card:hover .title,
#address .card:hover .title {
    color: white;
}

#info .card:hover .title::after,
#address .card:hover .title::after {
    background-color: #831053;
}

#info .card:hover a {
    color: white;
}

#address .card-body div {
    text-align: center;
}

#address .card:hover .card-body div {
    color: white;
}

@media (min-width:768px) {
    #info .col:not(:last-child) {
        margin-bottom: 0;
    }

    #address .card-body {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    #address .icon {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-bottom: 0;
        margin-left: 1rem;
    }

    #address .title,
    #address .card-body div {
        text-align: start;
    }

    #address .title::after {
        left: unset;
        right: 0;
    }
}

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

@media (min-width:1200px) {

    #info .container-fluid,
    #form .container-fluid,
    #map-wrap .container-fluid {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    #info .card-body {
        padding: 2rem 1rem;
    }

    #info .icon, #address .icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    #address .icon {
        margin-bottom: 0;
    }

    #info .icon i, #address .icon i {
        font-size: 3rem;
    }

    #info .title, #address .title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    #info .card a {
        font-size: 1.1rem;
    }
}