* {
    padding:0;
    margin: 0;
}
a:link {
     text-decoration: none;
 }
html {
    direction: rtl;
}
body {
    background-image:url("../Background/Backgrond.png")
}
.container {
    display: grid;
    height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.5fr 5fr 2fr;
    grid-template-areas:
    "header"
    "navigation"
    "form-body"
    "form-body"
    "form-body"
    "form-body"
    "form-body"
    "footer"
    "footer"
}
header {
    background-color: rgb(61, 74, 130);
    height: 150px;
    display: flex;
    justify-content: space-between;
    grid-area: header;
    flex-direction:row-reverse;

}
.social {
    width: 44px;
    height: 42px;
    margin-top: 95px;
    margin-left: 10px;
}
.social-media {
    display: flex;
    justify-content: space-around; 
     margin-left: 200px; 
}
.logo {
     margin-right: 50px; 
    width: 150px;
}
.logo-h1 {
    display: flex;
    justify-content: right;  
    align-items: center;
    /* margin-right: 150px;  */
}
h1 {
   font-family:'Aref Ruqaa', serif;
   color: aliceblue;
   font-size: 60px;
   margin-right: 20px; 
}
nav {
    grid-area: navigation;
}
.navigation {
    display: flex;
    justify-content:space-around;
   /* margin-top: 10px;  */
    background-color: rgb(183, 195, 80);
    height: 50px;  
    overflow: hidden;
    align-items: center;
}
ul {
    list-style-type: none;
}
.navigation li {
    font-size: 25px;
    font-family: 'Aref Ruqaa', serif;
    color: aliceblue;
}
  
  .navigation a {
    float: left;
    display: block;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 2px 3px;
    text-decoration: none;
    font-size: 19px;
    width: 100%;
  }
  
  .navigation a:hover {
    background-color: rgb(141, 149, 70);
    color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
  }
  
  .navigation a.active {
    background-color: #2196F3;
    color: white;
  }
  .index {
    margin-top: 1px;
    margin-right: 10px;
    grid-area: index;
    font-size: 20px;
    text-align: center;margin-bottom: 5px;
    font-family: 'Aref Ruqaa', serif;
   
}
hr.line {
    border: 2px solid rgb(61, 74, 130);
    margin-bottom: 10px;
    width: 100%;
}


#fcf-form {
    display:block;
    
}
#fcf-form h3 {
    text-align: center;
    margin-bottom: 10px;
}
.fcf-body {
    direction: rtl;
    grid-area: form-body;
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-width: 100%;
    font-family:'Aref Ruqaa', serif;
    text-align: right;
    grid-area: form-body;
}

.fcf-form-group {
    margin-bottom: 1rem;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
    text-align: center;
}

.fcf-credit a {
    color: #545b62;
    text-decoration: underline;
}

.fcf-credit a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #212529;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.fcf-btn-block {
    display: block;
    width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}
.footer {
    background-color: rgb(183, 195, 80);
  grid-row: 4/5;
  grid-column: 1/3;
  display: grid;
  grid-template: 1fr / 1fr;
  align-items: center;
  justify-items: center;
  height: 75px;
  font-size: 19px;
  margin-top: 15px;
  grid-area: footer;
}
.zoom {
    padding: 2px;
    transition: transform .2s; 
  }
  
  .zoom:hover {
    transform: scale(1.3); 
  }