


/* Section-01 */

.section-01{
    background-image: url(../images/section_01_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 185px;
    padding: 25px 0px;
    display: flex;
    align-items: center;
    position: relative;
}

#ar-lang{
    display: none;
}

html[dir="rtl"] #en-lang{
    display: none;
}

html[dir="rtl"] #ar-lang{
    display: block;
}

html[dir="ltr"] #ar-lang{
    display: none;
}
html[dir="ltr"] #en-lang{
    display: block;
}

.section-01::after{
    content: '';
    width: 85px;
    height: 88px;
    background-image: url(../images/section_01_icon01.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 15%;
    right: 15%;
    opacity: 0.7;
}

.section-01 h1 {
    /* font-size: 23px; */
    color: #fff;
    font-weight: 400;
}

.section-01 small {
    font-size: 13px;
    color: #fff;
    font-weight: 300;
}

/* Section-02 */

.section-02 {
    padding: 50px 0px;
    position: relative;
}

.section-02::before{
    content: '';
    position: absolute;
    width: 89px;
    height: 92px;
    background-image: url(../images/section_02_icon01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 45%;
    left: 1%;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    z-index: -1;
}

.section-02::after{
    content: '';
    position: absolute;
    width: 89px;
    height: 92px;
    background-image: url(../images/section_02_icon01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -5%;
    right: 3%;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    z-index: -1;
}

.section-02 .item {
    border: 2px solid #F6F6F6;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

#s-img .item {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0;
}

.section-02 h2 {
    font-size: 16px;
    margin-bottom: 20px;
}

.section-02 .caption {
    margin-bottom: 25px;
}

.section-02 .caption h4 {
    font-size: 14px;
    font-weight: 400;
}

.section-02 .caption p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.section-02 figure {
    height: 300px;
    margin: 0;
    width: auto;
}

.section-02 figure img {
    height: 100%;
    width: 100%;
}

#s-img .item figure {
    height: auto;
    margin: 0;
}

/* Section-03 */

.section-03{
    padding:20px 0px;
}
.section-03 .item figure {
    margin: 0;
    height: 340px;
    width: auto;
}

.section-03 .item {
    border: 2px solid #F6F6F6;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding: 10px;
}

#img-links .item figure {
    padding: 15px;
    height: auto;
}

#img-links .item {
    margin-bottom: 20px;
}

.section-03 .item figure img {
    height: 100%;
    width: 100%;
}

.section-03 h2 {
    font-size: 16px;
}











/* Animations */

.animate {
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes anim_up_down {
    0% {
        transform: translateY(0);

    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0);
    }
}



@media (max-width:1200px) {
    

}

@media (max-width:992px) {

    .container, .container-md, .container-sm {
        max-width: 960px;
    }

    .section-01::after {
        right: 8%;
    }
    
}

@media(max-width:768px) {

    .container, .container-md, .container-sm {
        max-width: 710px;
    }

    
#s-img {
    margin-bottom: 20px;
}

.section-03 .item {
    margin-bottom: 20px;
}

}

@media (max-width: 575.98px) {


    .section-02 figure {
        height: auto;
    }
    
    .section-03 .item figure {
        height: auto;
    }
    
    .section-01::after {
        top: 40%;
    }

}

@media(max-width:455px){
   
}

@media(max-width:375px){

    .section-01::after {
        right: 5px;
        top: 50%;
    }
    
}