﻿@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&family=Josefin+Sans:wght@100&family=Oswald:wght@300;500;600&family=Roboto+Condensed&family=Ysabeau+Infant:ital,wght@0,300;1,200&family=Ysabeau+SC:wght@100;200;300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Ysabeau SC', sans-serif;
}

.header {
    width: 100%;
    height: 100vh;
    background: url(images/MainImage2.jpg) no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

.img-logo {
    width: 180px;
}

.index-title {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 3px 0px #000000;
}



.nav-links ul li {
    outline-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

    .nav-links ul li a {
        text-decoration: none;
        color: #ffffff;
        font-weight: 700;
        font-size: 21px;
        font-family: 'Cairo', sans-serif;
    }

        .nav-links ul li a:hover {
            border-bottom: 2px solid #c10809;
            color: #c10809;
        }

.text-box {
    width: 80%;
    color: #000000;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    display: block;
}

.box-title {
    font-size: 62px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    color: #000000;
    margin-bottom: 60px;
    text-shadow: 2px 0px #ffffff;
}

.box-text {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 60px;
    width: 80%;
    text-align: center;
    margin: auto;
}

.hero-btn {
    display: block;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #c10809;
    padding: 12px 34px;
    font-size: 19px;
    background: #c10809;
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    transition: 0.7s;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

    .hero-btn:hover {
        transform: scale(1.1);
        color: #000000;
        background-color: #c10809;
    }

nav .fa-solid {
    display: none;
}

@media(max-width: 700px) {
    .box-title {
        font-size: 26px;
    }

    .index-title {
        font-size: 35px;
    }

    .box-text {
        font-size: 35px;
        padding-top: 40px;
    }
}
/*nav {*/
/*display:block;*/
/*justify-content:center;*/
/*text-align:center;*/
/* display:none;*/
/* }*/
/*.nav-links ul li {
            display: block;
        }
        .nav-links{
            position:absolute;
            background:#bd1010;
            height:100vh;
            width:200px;
            top:0;
            right:-200px;
            text-align:left;
            z-index:2;
            transition:1s;
        }
        nav .fa-solid{
            display:block;
            color:#ffffff;
            margin:10px;
            font-size:22px;
            cursor:pointer;
        }
        .nav-links ul{
            padding:30px;*/
/*text-align:center;*/
/*}*/


/*Style of the Second section Faculties */
.Faculties {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.M2tamr-title {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #c10809;
    margin-bottom: 15px;
    text-transform: uppercase;
}


.course-row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.Faculties ul {
    list-style-type: none;
}

.course-column {
    flex-basis: 31%;
    background: #f8f5f5;
    border-radius: 15px;
    padding: 20px 12px;
    box-shadow: 0 5px 25px rgba(1 1 1 /40%);
    transition: 0.7s;
    margin-bottom: 45px;
    min-height: 32.75vh;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    color: #c10809;
    margin-bottom: 10px;
}

.course-column:hover {
    transform: scale(1.1);
}

.column-text {
    font-size: 18px;
    font-weight: 600;
}

.fa-solid {
    font-size: 42px;
    color: #c10809;
    margin-bottom: 5px;
}
/* media query of the Faculties section for the responsive design */
@media(max-width: 700px) {
    .course-row {
        flex-direction: column;
    }

    h3 {
        font-size: 19px;
    }

    h2 {
        font-size: 24px;
    }
}


/*Style of the 3rd section campus */
.big-box {
    width: 100%;
    background-color: #cf0a0a;
}

.campus {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.campus-headline {
    color: #ffffff;
}

.campus-title {
    font-size: 18px;
    font-weight: 600;
}

.campus-column {
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

    .campus-column img {
        width: 100%;
        height: 195px;
    }

.layer {
    background: transparent;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: 0.7s;
}

    .layer h3 {
        color: #000000;
        font-weight: 500;
        font-size: 22px;
    }

    .layer h3 {
        width: 100%;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        opacity: 0;
        transition: 0.5s;
    }

    .layer:hover h3 {
        bottom: 49%;
        opacity: 1;
    }

    .layer:hover {
        background: rgba(255,255,255,0.7);
    }

.Facilities {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.Facilities-column {
    flex-basis: 31%;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 25px;
}

    .Facilities-column img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 5px 25px rgba(1 1 1 /40%);
    }
/*The footer style of the website */
footer {
    background-color: #cf0a0a;
    min-height: 40vh;
}

    footer h2 {
        color: #ffffff;
    }

    footer p {
        font-size: 18px;
        font-weight: 500;
    }

.Footer-box {
    padding: 20px 0 15px;
    width: 65%;
    margin: auto;
    text-align: center;
}

.footer-icons {
    margin: 12px 0 12px;
}

.fa-brands {
    padding: 5px 25px 10px 25px;
    font-size: 25px;
    color: #ffffff;
}

.footer-title {
    font-size: 19px;
    font-weight: 500;
    color: #ffffff;
    padding-top: 20px;
}

@media(max-width: 700px) {
    .fa-brands {
        padding: 10px;
    }

    nav {
        text-align: left;
    }

    .nav-links {
        display: none;
    }

    /*.nav-links ul li a {
            font-size: 21px;
            font-weight: 600;
            font-family: 'Roboto Condensed', sans-serif;
            padding: 10px 25px 10px 25px;
            border: 1px solid;
            background-color: #cf0a0a;
            border-radius: 15px;
            color: #ffffff;
        }

        .nav-links ul li a space {
            padding: 0px 14px 0px 14px;
            }

        .nav-links ul li a:hover {
            border-bottom: 2px solid #c10809;
            color: #000000;
            }*/
}


/* About Us page style*/
.sub-header {
    width: 100%;
    min-height: 50vh;
    text-align: center;
    color: #ffffff;
    background-image: url('../Multipage Project/Images/graduation.jpg');
    background-position: center;
    background-size: cover;
}

.about-title {
    text-transform: uppercase;
    padding-top: 35px;
    font-size: 50px;
    font-family: 'Roboto Condensed', sans-serif;
}

.about-us {
    width: 80%;
    margin: auto;
    padding-top: 25px;
}

.about-colums {
    flex-basis: 48%;
    padding: 30px 2px;
}

    .about-colums img {
        width: 100%;
    }

/*The Courses page section of the website here*/
.button1 {
    display: block;
    margin-top: 45px;
    padding: 8px 10px 8px 10px;
    border: 1px solid #c10809;
    text-decoration: none;
    color: #ffffff;
    background: #c10809;
    border-radius: 16px;
}

.IT-courses {
    width: 100%;
    min-height: 60vh;
    background-color: #0d1679;
    text-align: center;
    padding-top: 20px;
    padding: 7px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px;
}

    .table thead {
        background: #ffffff;
    }

.IT-box {
    padding-top: 25px;
    width: 90%;
    margin: auto;
}

.table thead tr th {
    font-size: 19px;
    font-weight: 700;
}

.table tr td {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.table tbody tr td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ffffff;
}

/* New Website code for style of the index(home page)*/
.button1 Arabic-Bottom {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.Arabic-smallTitle {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.M2tamr-title {
    font-family: 'Cairo', sans-serif;
}

.English-smallTitle {
    padding-bottom: 13px;
}

.Facilities-column2 {
    flex-basis: 31%;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 25px;
    margin: auto;
}

.Arabic-footer {
    font-size: 19px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
}

.fa-solid {
    font-size: 30px;
    color: #feea0a;
    padding-right: 8px;
}

    .slogan {
        padding-top: 15px;
        padding: 2px;
        border: 2px solid #0d1679;
        border-radius: 20px;
        font-size: 24px;
        font-family: 'Cairo', sans-serif;
        font-weight: 700;
        padding-bottom: 9px;
        text-align: center;
    }

.box-slogan {
    flex-basis: 48%;
    text-align: center;
    margin-bottom: 25px;
}

.Arabic-color-text {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #0d1679;
    padding-bottom: 15px;
    padding-top: 15px;
}
/* New Website code for style of the second page (الترنيم)*/
.tranym {
    min-height: 100vh;
}

.logo-page2 {
    font-size: 40px;
    font-weight: 700;
    color: black;
    padding-top: 25px;
    text-align: center;
}

.tranym-box1 {
    width: 60%;
    margin: auto;
    text-align: center;
    padding-top: 35px;
    padding: 8px;
}

.tranym-text {
    padding-bottom: 8px;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #000000;
}

.Arabic-tranym-title {
    padding-bottom: 8px;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #0d1679;
}
/* New Website code for style of the second page الترنيمة الثانية */
.tranym-box2 {
    background-color: #c10809;
    width: 100%;
    min-height: 40vh;
}

.tranym-box2-inside {
    width: 60%;
    margin: auto;
    text-align: center;
    padding: 10px;
}

.tranym-text-second {
    color: #ffffff;
    padding-bottom: 13px;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}

.Arabic-tranym-title2 {
    padding-bottom: 8px;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
}

.tranym-box3 {
    color: #ffffff;
    min-height: 40vh;
}
/* New Website code for style of the second page (الترنيم) media query*/
@media(max-width: 700px) {
    .tranym-text {
        font-size: 17.5px;
        padding-bottom: 14px;
    }

    .tranym-box1 {
        width: 99%;
    }

    .tranym-text-second {
        font-size: 17.5px;
        padding-bottom: 14px;
    }

    .tranym-box2-inside {
        width: 98%;
    }
}

/* the second page code style الالحان */
.al7an-row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    margin: 15px;
}

.al7an-column {
    flex-basis: 48%;
    border-radius: 15px;
    /*box-shadow: 0 5px 25px rgba(1 1 1 /40%);*/
    min-height: 60vh;
    margin-bottom: 30px;
    padding: 5px;
    font-size: 19px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}

.al7an {
    width: 85%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.al7an-column li {
    direction: rtl;
    text-align: right;
    list-style-image: url('images/cross.png');
    font-size: 21px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}

.al7an-column img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(1 1 1 /40%)
}
/* the second page code style الالحان media query */
@media(max-width: 700px) {
    .al7an-row {
        flex-direction: column;
    }

    .al7an {
        width: 90%;
    }

    .al7an-column li {
        font-size: 19px;
    }
}
/* the Third Page code style دراسة الكتاب */
.HollyBible-box1 {
    width: 85%;
    padding-top: 15px;
    margin-bottom: 20px;
    text-align: center;
    margin: auto;
    min-height: 70vh;
}

.tranym-text-Third {
    color: #000000;
    padding-bottom: 13px;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    text-align: right;
}

.HollyBible-box1-inside {
    width: 60%;
    margin: 8px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(1 1 1 /40%);
    padding: 30px;
    margin: auto;
    margin-bottom: 20px;
    background-color: #c10809;
}

    .HollyBible-box1-inside ol {
        direction: rtl;
        text-align: right;
        font-size: 21px;
        font-weight: 700;
        font-family: 'Cairo', sans-serif;
        color: #ffffff;
    }

.HollyBible-box1 .Arabic-tranym-title2 {
    padding-bottom: 4px;
    border-bottom: 2px solid #ffffff;
    margin: 8px;
}
/* The media query of the Page code style دراسة الكتاب */
@media(max-width: 700px) {
    .HollyBible-box1-inside {
        width: 100%;
    }

        .HollyBible-box1-inside ol {
            font-size: 23px;
        }
}

.HollyBible-box4 {
    min-height: 40vh;
    margin: auto;
    margin-top: 25px;
}

.HollyBible-links {
    width: 60%;
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 10px;
    text-align: center;
    margin: auto;
}
/* the fourth Page code style دراسة الكتاب */
.wr4a-text1 {
    text-align: right;
    color: #c10809;
    font-size: 23px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}

.wr4a-box2 img {
    width: 100%;
    border-radius: 20px;
}

.wr4a-box2 {
    width: 50%;
    margin: 8px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(1 1 1 /40%);
    margin: auto;
    margin-bottom: 35px;
    background-color: #ffffff;
    margin-top: 10px;
}

.Page-title {
    font-size: 35px;
    color: #c10809;
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    border: 3px solid #c10809;
    padding: 4px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.wr4a-text2 {
    color: black;
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}

.wr4a-list li {
    direction: rtl;
    text-align: right;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #000000;
    padding: 4px;
}
/* the fourth Page code style media query ورشة العمل */
@media(max-width: 700px) {
    .wr4a-box2 {
        width: 85%;
    }

    .wr4a-text2 {
        font-size: 19px;
    }

    .wr4a-text1 {
        font-size: 22px;
    }

    .Page-title {
        padding: 3.5px;
        font-size: 28px;
    }
}

/* fifth page code style login formn */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

::selection {
    background: rgba(26,188,156,0.3);
}

.container {
    max-width: 440px;
    padding: 0 20px;
    margin: 170px auto;
}

.wrapper {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
}

    .wrapper .title {
        height: 90px;
        background: #c10809;
        border-radius: 5px 5px 0 0;
        color: #fff;
        font-size: 30px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wrapper form {
        padding: 30px 25px 25px 25px;
    }

        .wrapper form .row {
            height: 45px;
            margin-bottom: 15px;
            position: relative;
        }

            .wrapper form .row input {
                height: 100%;
                width: 100%;
                outline: none;
                padding-left: 60px;
                border-radius: 5px;
                border: 1px solid lightgrey;
                font-size: 16px;
                transition: all 0.3s ease;
                font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            }

form .row input:focus {
    border-color: #c10809;
    box-shadow: inset 0px 0px 2px 2px rgba(26,188,156,0.25);
}

form .row input::placeholder {
    color: #c10809;
}

.wrapper form .row i {
    position: absolute;
    width: 47px;
    height: 100%;
    color: #fff;
    font-size: 18px;
    background: #c10809;
    border: 1px solid #16a085;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper form .button input {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-left: 0px;
    background: #c10809;
    border: 1px solid #16a085;
    cursor: pointer;
}

form .button input:hover {
    background: #c10809;
}

.button {
    text-align: center;
    background: #c10809;
    color: #ffffff;
}

.secret-box {
    width: 80%;
    margin: auto;
    text-align: right;
}

/* eigth page style*/
.kdam-question {
    text-align: right;
    font-size: 23px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #000000;
}

.kdam-answer {
    text-align: right;
    font-size: 23px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
}

.kdam-list {
    direction: rtl;
    text-align: right;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
}

.course-column .fa-solid {
    color: #c10809;
    font-size: 45px;
}

.course-column .button1 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
}
/*.footer-icons .fa-solid {
        font-size: 30px;
        color: #ffffff;
        padding-right: 5px;
    }*/
/*eigth page style media query*/
.website-end {
    width: 60%;
    text-align: center;
    margin: auto;
    margin-top: 35px;
    margin-bottom: 35px;
}

    .website-end h2 {
        margin-top: 10px;
        padding-top: 10px;
    }

.kdam-list2 li {
    direction: rtl;
    text-align: right;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #000000;
}

@media(max-width: 700px) {
    .kdam-question {
        font-size: 20px;
    }

    .kdam-answer {
        font-size: 19px;
    }

    .secret-box {
        width: 90%;
    }

    .website-end h2 {
        margin-top: 10px;
        padding-top: 20px;
    }

    .img-box {
        width: 90%;
        margin: auto;
    }

    .final-box {
        width: 90%;
    }
}

.img-box {
    width: 70%;
    margin: auto;
}

    .img-box img {
        width: 100%;
    }

.image-logo {
    width: 220px;
    border-radius: 20px;
    padding-top: 20px;
}

.second-title-text {
    padding-bottom: 8px;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    color: #c10809;
}

.final-box {
    width: 80%;
    margin: auto;
}

    .final-box img {
        width: 100%;
    }


    /* new css codes */
    slogan-text2 {
        font-size: 24px;
        font-family: 'Cairo', sans-serif;
        font-weight: 700;
        padding-bottom: 8px;
        text-align: center;
    }