@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');

* {
    transition: all 0.2s ease;
}

body {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
    padding: 60px 0;
    overflow-x: hidden;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    direction: rtl;
}
@media only screen and (min-width: 500px) {
    body:before {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 460px;
        background-size: cover;
        overflow: hidden;
        background-image: url(../images/banner.jpg);
        filter: blur(10px) brightness(0.8);
        transform: scale(1.1);
        z-index: -2;
    }
    body:after {
        display: block;
        position: absolute;
        top: 461px;
        left: 0;
        content: "";
        width: 100%;
        height: 100%;
        min-height: 100%;
        overflow: hidden;
        background-color: white;
        filter: brightness(0.8);
        transform: scale(1.1);
        z-index: -2;
    }
}
@media only screen and (max-width: 600px) {
    body {
        padding: 0;
    }
}
body nav {
    position: absolute;
    top: 0;
    height: 54px;
}
@media only screen and (max-width: 600px) {
    body nav.transparent {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.7175245098) 0%, rgba(0, 0, 0, 0.3365721289) 55%, rgba(255, 255, 255, 0) 100%);
    }
}
body nav .nav-wrapper {
    height: 54px;
    margin-top: 8px;
}
body nav .nav-wrapper .row {
    margin-bottom: 0;
}
body nav .nav-wrapper ul li a {
    border-radius: 100px;
}
body nav .nav-wrapper ul li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
body nav .nav-wrapper ul li a i {
    height: 54px;
    line-height: 54px;
}

.container {
    max-width: 640px;
}
@media only screen and (max-width: 600px) {
    .container {
        width: 100%;
    }
}
.container main.card {
    margin: 0;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    overflow: hidden;
}
@media only screen and (max-width: 600px) {
    .container main.card {
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #e0e0e0;
    }
}
.container main.card .card-image img {
    width: 100%;
    height: auto;
}
@media only screen and (max-width: 600px) {
    .container main.card .card-image img {
        border-radius: 0;
    }
}
.container main.card .card-image:before {
    z-index: 9999999;
    display: block;
    content: "";
    width: 150px;
    height: 150px;
    background-size: 100%;
    background-image: url("../images/logo.png");
    background-repeat: no-repeat;
    overflow: hidden;
    position: absolute;
    bottom: 2em;
    left: 2em; border-radius: 10px;
}
@media only screen and (max-width: 600px) {
    .container main.card .card-image:before {
        left: 50%;
        transform: translate(-50%, 0);
        bottom: 1em;
    }
}
.container main.card .card-content {
    border-radius: 0;
    padding: 3em 5em;
}
@media only screen and (max-width: 600px) {
    .container main.card .card-content {
        padding: 2em;
    }
}
.container main.card .card-content .card-title {
    font-weight: 700;
    margin: 0;
    padding: 10px 0;
}
.container main.card .card-content{
}
.container main.card .card-content p {
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
}
.container main.card .card-content .collection {
    margin: 0;
    border: none;
    border-radius: 0;
}
.container main.card .card-content .collection a.collection-item {
    cursor: pointer;
}
.container main.card .card-content .collection a.collection-item:not(.active):hover {
    background-color: rgba(128, 128, 128, 0.1);
}
.container main.card .card-content .collection a.collection-item.avatar {
    min-height: 64px;
}
.container main.card .card-content .collection a.collection-item .title {
    color: black;
    font-weight: 700; font-size: 14px;
}
.container main.card .card-content .collection a.collection-item p {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}
strong{ font-weight: 700}
.share-dialog {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: -1;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    background-color: #fff;
}
.share-dialog.is-open {
    display: block;
    z-index: 2;
}
.share-dialog header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.share-dialog header h1,
.share-dialog header h2,
.share-dialog header h3,
.share-dialog header h4,
.share-dialog header h5,
.share-dialog header h6 {
    margin: 0;
    font-size: 1.17em;
}
.share-dialog header .close-button {
    background-color: transparent;
    border: none;
    padding: 0;
}
.share-dialog header .close-button svg {
    margin-right: 0;
}
.share-dialog .targets {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 20px;
}
.share-dialog svg {
    width: 20px;
    height: 20px;
    margin-left: 7px;
}
.share-dialog svg.hidden {
    display: none;
}
.share-dialog .link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    background-color: #eee;
}
.share-dialog .link .page-url {
    margin-right: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.share-dialog .link a {
    color: rgba(128, 128, 128, 0.9);
}
.share-dialog .link a:hover {
    color: rgba(0, 0, 0, 0.8);
}
.share-dialog button,
.share-dialog .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid #ddd;
    cursor: pointer;
}
.share-dialog button:hover,
.share-dialog .button:hover {
    border-color: #cdd;
}
.share-dialog button.copy-link,
.share-dialog .button.copy-link {
    padding: 8px 30px;
}

.credit {
    margin: 0 auto;
    padding: 1rem 0 1.5rem;
    opacity: 0.4;
    font-size: 0.65em;
}
.credit a {
    color: inherit;
}

.no-padding {
    padding: 0;
}

.blue {
    background-color: #000 !important;
}

.icon i.circle {
    font-size: 18px;
    line-height: 42px;
    color: #fff;
    background-color: #999;
    text-align: center;
}
.icon .circle {
    position: relative;
    margin-left: 16px;
    margin-bottom: 16px;
    float: left;
    width: 42px;
    height: 42px;
    overflow: hidden;
    left: 15px;
    display: inline-block;
    vertical-align: middle;
}
ul:not(.browser-default){ padding-right: 0}
.collection .collection-item.avatar {
    padding-right: 72px;
    padding-left: 0;
}
.collection .collection-item.avatar:not(.circle-clipper)>.circle, .collection .collection-item.avatar :not(.circle-clipper)>.circle {
    right: 15px;
    left: auto;
}
.icon .circle{ float: right; margin-left: 16px; margin-right: auto}
.card .card-title{ font-size: 17px;}