/* 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 h2 {
    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: 30%;
    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: 40%;
    right: 1%;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    z-index: -1;
}

.section-02 figure {
    position: relative;
}

.section-02 figure a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
    background: var(--color01);
    opacity: 0;
    color: #fff;
    transition: 300ms;
    border-radius: 15px;
}

.section-02 figure:hover a {
    opacity: 0.5;
}

.section-02 img {
    width: 100%;
    border-radius: 15px;
}

.section-02 img:not(:last-child) {
    /* margin-bottom: 20px; */
}

.section-02 .col-md-4.col-sm-6 {
    padding: 0px 8px;
}


/* 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;
    }

}

@media (max-width: 575.98px) {

    .section-01::after {
        top: 40%;
    }

}

@media(max-width:455px) {}

@media(max-width:375px) {

    .section-01::after {
        right: 5px;
        top: 50%;
    }

}