/*--------------------------------------*\
	Base
\*--------------------------------------*/

* {
    box-sizing: border-box;
}


body {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    color: #fff;
}

.cols {
    margin-right: -10px;
    margin-left: -10px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cols > * {
    padding-right: 10px;
    padding-left: 10px;
}

.col-33 {
    width: 33.33333333%;
}

.col-40 {
    width: 40%;
}

.col-20 {
    width: 20%;
}

.col-50 {
    width: 50%;
}


.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.padding-up-down {
    padding: 60px 0;
}

.remove-style-list{
    padding: 0;
    margin: 0;
    list-style: none;
}

.txt-center {
    text-align: center;
}

/*--------------------------------------*\
	Body
\*--------------------------------------*/
body {
    background-color: #009CA4;
}

.logo {
    margin: auto;
    display: block;
    width: 240px;
    text-align: center;
    margin-bottom: 30px;
}

.content-ar {
    font-family: "Noto Kufi Arabic", sans-serif;
}

li:before {
    content: "";
    vertical-align: middle;
    width: 20px;
    display: inline-block;
    height: 20px;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.item:nth-child(1):before {
    background-image: url(../images/icon-1.svg);
}
  
.item:nth-child(2):before {
    background-image: url(../images/icon-2.svg);
}
  
.item:nth-child(3):before {
    background-image: url(../images/icon-3.svg);
}

.item:not(:last-child) {
    margin-bottom: 10px;
}

.fb-content img, .in-content img {
    width: 100px;
    height: 100px;
    display: block;
}

.icon-s-content {
    width: 50%;
    float: left;
    margin-top: 35px;
}

.icon-s {
    display: inline-block;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    transition: all .3s;
    border-radius: 10px;
}

.icon-s:hover {
    box-shadow: 0px 0px 8px 10px rgba(255, 255, 255, .3);
}

.img-content {
    float: right;
    width: 50%;
}

.img-content a {
    color: #fff;
    font-size: 11px;
    margin-top: 5px;
}

.in-content, .fb-content {
    width: 50%;
}

.fb-content .icon-s {
    background-image: url(../images/facebook.svg);
}


.in-content .icon-s {
    background-image: url(../images/instagram.svg);
}

.fb-content .flex, .in-content .flex {
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.info img {
    width: 100px;
    margin: auto;
    display: block;
}

.img-content .flex {
    display: flex;
    flex-direction: column;
}

.items {
    font-size: 15px; 
}

.container-2 {
    max-width: 1050px;
    margin-top: 30px;
}

body {
    padding: 30px;
    margin: 0;
}

/*--------------------------------------*\
	Responsive
\*--------------------------------------*/
@media only screen and (max-width : 1148px) {
  .icon-s-content, .img-content {
    float: none;
  }

  .icon-s-content {
    margin-top: 0px;
  }

  .icon-s-content, .img-content {
    width: 100%;
  }
}

@media only screen and (max-width : 900px) {
    .container-2 {
        max-width :auto
    }
    .part-1, .container-2 > .flex {
        flex-direction: column;
    }

    .col-33, .col-40, .col-20 {
        width: 100%;
    }

    .content-en, .content-fr, .content-ar   {
        margin-bottom: 30px;
    }

    .container-2 .col-40:first-child, .container-2 .col-20 {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width : 450px) {
    body {
        padding: 10px;
    }
}

@media only screen and (max-width : 400px) {
    .in-content {
        margin-bottom: 30px;
    }

    .flex-s {
        flex-direction: column;
    }

    .in-content, .fb-content {
        width: 100%;
    }
}




