﻿@font-face {
    font-family: aviny;
    src: url(../fonts/aviny.otf);
}

body{
    direction:rtl;
    font-family:aviny;
    font-size:20px !important;
}

.bg-green {
    background-color: #4fd1c5;
}

/*.bg-green >a {
    font-size:20px;
}*/

.nav-link:hover{
    color:white !important;
}

.footer {
   /*  position: fixed;*/
    font-size:14px;
    line-height:10px;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #03665e;
    color: white;
    text-align: center;
}
.footer > p >  a{
    color:yellow;
}

table.paging {
    justify-content: center;
    display: flex;
    border-collapse: separate;
    border-spacing: 5px;
}

    table.paging td {
        border: 1px solid #808080;
        padding: 5px;
    }

fieldset {
    background-color: #eeeeee;
}

legend {
    background-color: gray;
    color: white;
    font-size: 18px;
    padding:8px;
}






/* CARDS */

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    margin: 20px;
    padding: 20px;
   /* width: 20%;*/
    /*min-height: 200px;*/
    display: grid;
    grid-template-rows: 20px 50px 1fr 50px;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
    border:0px;
}

    .card:hover {
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
        transform: scale(1.01);
    }

.card__link,
.card__exit,
.card__icon {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);

}

.card__link > i{
    font-size:16px;
}

.card__link::after {
    position: absolute;
    top: 25px;
    left: 0;
    content: "";
    width: 0%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s;
}

    .card__link:hover::after {
        width: 100%;
    }

.card__exit {
    grid-row: 1/2;
    justify-self: end;
}

.card__icon {
    grid-row: 2/3;
    font-size: 24px;
}

.card__title {
    grid-row: 3/4;
    font-weight: 400;
    color: #ffffff;
    text-align: right;
}

.card__apply {
    grid-row: 4/5;
    align-self: center;
}

/* CARD BACKGROUNDS */

.card-1 {
    background: radial-gradient(#1fe4f5, #3fbafe);
}

.card-2 {
    background: radial-gradient(#fbc1cc, #fa99b2);
}

.card-3 {
    background: radial-gradient(#76b2fe, #b69efe);
}

.card-4 {
    background: radial-gradient(#60efbc, #58d5c9);
}

/* RESPONSIVE */

@media (max-width: 1600px) {
    .cards {
        justify-content: center;
    }
}

input {
    font-size: 20px;
}