/* Start Css Generl */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "DroidArabicKufiRegular", sans-serif;
}

body {
    background-color: rgba(0, 0, 255, 0.6);
}
/* End Css Generl */
/* Start Landing Page Css  */

.main-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-section .box-img {
    margin: 50px auto;
    width: 90%;
}

.main-section .box-content ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    padding: 0;
}

.main-section .box-content ul li {
    transition: all 0.3s ease-in-out;
    font-family: "DroidArabicKufiRegular", sans-serif !important;
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
}

.main-section .box-content ul a:hover {
    background-color: #3f51b5;
    text-decoration: none;
    transform: scale(1.05);
    z-index: 1;
}

.main-section .box-content ul a:hover li {
    color: #fff;
}
.main-section .box-content ul a:hover li p {
    color: #fff;
}
.main-section .box-content ul a:hover li hr {
    color: #fff;
}

.main-section .box-content ul a {
    color: #000 !important;
    font-size: 14px;
    text-align: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 20px 3px rgba(255, 255, 255, 0.07);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
    width: calc(90% / 3);
    margin: 12px;
    border-radius: 6px;
    border-top-left-radius: 30%;
    border-bottom-right-radius: 30%;
    border: 5px solid #eee;
}

.main-section .box-content ul a i {
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
}

.main-section .box-content ul a p {
    color: #666;
    font-size: 14px;
    height: 18.4px;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width: 991px) {
    .main-section .box-content ul a {
        font-size: 11px;
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    .main-section .box-content ul a {
        width: 50% !important;
        font-size: 10px;
    }
}
/* End Landing Page Css  */
