

/* 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: 40%;
    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: 1%;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    z-index: -1;
}

.section-02 small {
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.section-02 h2 {
    font-size: 23px;
    margin: 0;
    margin-bottom: 20px;
}

.section-02 p {
    font-size: 14px;
    margin: 0;
    margin-bottom: 20px;
}

.section-02 h4 {
    font-size: 14px;
    margin: 0;
    margin-bottom: 40px;
}

.section-02 .social-links {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.section-02 .s-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    padding-left: 15px;
}

.section-02 .social-links h4 {
    margin: 0;
    font-size: 13px;
}

.section-02 .s-links li {
    font-size: 13px;
    margin-right: 15px;
}

.section-02 .s-links li a {
    color: #000;
    transition: 300ms;
}

.section-02 .s-links li a:hover {
    color: var(--color01);
}

.section-02 figure {
    margin: 0;
    border-radius: 15px;
    width: auto;
    height: auto;

}

.section-02 figure img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.section-02 form {
    background-color: #FAFAFA;
    padding: 40px;
    border-radius: 15px;
}

.section-02 label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.section-02 input {
    font-size: 14px;
    padding: 10px;
    width: 100%;
    border: 1px solid #C7C7C7;
    border-radius: 10px;
    margin-bottom: 30px;
    color: #7A7A7A;
}

#Message {
    font-size: 14px;
    padding: 10px;
    width: 100%;
    border: 1px solid #C7C7C7;
    border-radius: 10px;
    margin-bottom: 30px;
    min-height: 80px;
    color: #7A7A7A;
}


/* 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);
    }
}

#btn-mobile {
    display: none;
}

/* @media(min-width:768px){
    .container, .container-md, .container-sm {
        max-width: 890px;
    }
}

@media (min-width: 576px){
.container, .container-sm {
    max-width: 635px;
}
} */

@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;
    }


.section-02 figure {
    margin-bottom: 30px;
}


}

@media (max-width: 575.98px) {


    .section-02 form {
        padding: 20px;
    }
    
    .section-01::after {
        top: 40%;
    }

}

@media(max-width:455px){
   
}

@media(max-width:375px){

    .section-01::after {
        right: 5px;
        top: 50%;
    }
    
}