/* General Rules */
* {
    direction: rtl;
    text-align: right;
    padding: 0;
    margin: 0;
    font-family: 'Tajawal', sans-serif;
}
body {
    background: #e7e7e7;
}

img {
    width: 100%;
    height: 100%;
}
.title {
    margin-top: 30px;
    margin-bottom: 50px;
}
.title h1 {
    font-weight: bold;
    color: red;
}
.countries a {
    border: 1px solid #000;
    display: block;
}
.description {
    margin: 40px 0;
}
.description p {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: green;
}

.row {
    margin: 0 -10px;
}
.col-sm-3 {
    padding: 0 10px;
}
.list-item {
    border: 2px solid #000;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.list-item h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.social-media {
    margin-top: auto;
    display: flex;
}
.social-media > a {
    width: 25px;
    height: 25px;
    display: block;
    margin-left: 15px;
}
.listing .col-lg-3 {
    margin-bottom: 30px;
}
.description2 {
    font-size: 24px;
}
.description2 h3 {
    font-weight: bold;
    color: blue;
}
.description2 p {
    color: red;
}
.description2 a {
    text-align: center;
    display: block;
    font-weight: bolder;
    color: green;
    font-size: 30px;
    margin-bottom: 40px;
}
.title + p {
    font-size: 24px;
    color: green;
    font-weight: bold;
}
@media(max-width: 992px) {
    .row {
        margin: 0 -5px;
    }
    .col-sm-3.col-lg-1 {
        flex: 0 0 20%;
        max-width: 20%;
        padding: 0 5px;
        margin-bottom: 10px;
    }
}