:root {
    --main-color: #355683;
}

* {
    font-family: 'Somar', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

/* 
 body {

    background-color: #f7f9fb;
    color: #333;
   

}

 */

header {


    position: fixed;
    z-index: 999;

    width: 100%;


}

.logo {
    width: 100px;
}

.navbar .navbar-nav .nav-link {
    color: var(--main-color);
    font-size: large;

}

.navbar .navbar-nav .nav-link.active {
    color: #2b4769;
    font-weight: 700;
}

.navbar .search {
    border-left: 1px solid var(--main-color);
}

.navbar .search i {
    color: var(--main-color);
}

.navbar .navbar-toggler {
    color: var(--main-color);
    border: none;
    font-size: 25px;

}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* header and appbar  */

/* home-bage */

.section-body {
    background-color: var(--main-color);
    padding: 50px 0px;
}

.section-body .title {
    color: white;
}

.section-body .card {
    transition: 0.7s ease;
}

.section-body .card:hover {
    transform: scale(1.1);
}

.main-logo .logo {
    display: block;
    margin: 0 auto;
}

.landing .main-logo {
    margin: 50px;
    display: block;
    align-content: flex-end;
    text-align: center;
    align-items: center;
}

.landing .main-logo .app-name {
    font-size: 5em;
    font-weight: 900;
}

.landing .main-logo .social-icons {

    display: flex;
    margin-top: 20px;
}

.landing .main-logo .social-icons i {

    color: var(--main-color);
    margin: 10px;
    font-size: 2em;
    transition: 0.7s ease;

}

.landing .main-logo .social-icons i:hover {

    transform: scale(1.1);

}

.landing .main-logo .social-icons a {

    text-decoration: none;

}

.landing .main-logo h2 {
    color: var(--main-color);
    font-size: 3em;
}

.landing .main-logo h3 {

    font-weight: 400;

}

.landing .main-logo .logo-with-name {
    width: 80%;
    margin-bottom: 50px;
}


.download-btn {
    display: block;
    align-content: center;
    text-align: center;
    margin-top: 50px;

    background-color: var(--main-color);
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Somar', sans-serif;
    transition: 0.3s ease;
}

.download-btn span {
    color: white;
    ;
}

.download-btn:hover {
    background-color: #2b4769;
}






.title {
    display: flex;
    justify-content: center;
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 20px;
    color: #355683;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.post {
    direction: rtl;
    background-color: white;
    padding: 10px;
    margin: 10px;
    border-radius: 15px;
    /* width: 40%;    */
    transition: 0.7s ease;
    display: flex;
    width: 60%;
}

.post:hover {
    transform: scale(1.1);
    margin: 20px;
}

.post-body {
    width: 40%;
    max-width: 40%;
    min-width: 40%;
}

* {
    direction: rtl
}

.post-image {
    width: 8em;
    height: 8em;
    ;

}

.mycard {
    background-color: white;
    width: 21.2em;
    box-shadow: 0 5px 25px rgba(1, 1, 1, 15%);
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;

}

.mycard:hover {
    transform: scale(1.1);
}

.icon {

    justify-content: center;
    align-items: center;
    display: flex;
}

.icon img {

    height: 8em;
    width: 8em;

}

.info {
    text-align: center;
}

.info h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;
    color: #355683;
}

footer i {
    margin: 10px;
}