* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  width:100%;
}




.header {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
    padding: 5px 0px;
}



.logoen {
    width: 165px;
    height: 74px;
    z-index: 10;
    padding: 0px 11px;
    background-color: white;
}

.logofa {
    width: 131px;
    height: 88px;
    z-index: 10;
    background-color: white;
}

.logoline {
    position: absolute;
    width: 100%;
    height: 9px;
    top: 46px;
    left: 0;
    border: solid #004137;
    border-width: 3px 0;
}
.logoline2{
    display:none;
}

.introImage {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    background-color: rgb(255, 255, 255);
}


.footer {
    height: 75px;
    background-color: #014036;
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
}
    .footer div {
        flex: 1;
    }

.textSlider {
    color: #ffffff;
    font-weight: normal;
    font-size: 20px;
    display: flex;
    font-family: sans-serif;
    justify-content: center;
    align-items: center;
}
    .textSlider .rtl {
        font-family: IranNastaliq;
        font-size: 28px;
        /*bottom: -10px;*/
    }

.languageButton { 
    display: flex;
    justify-content: flex-start; 
    margin-left:40px;
}

    .languageButton a {
        text-align: center;
        text-decoration: none;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        text-transform: uppercase;
        height: 46px;
        width: 122px;
        opacity: 1;
        background-color: #ffffff;
        border: 1px solid rgba(22, 76, 167, 0.6);
        margin-left:20px;
    }

        .languageButton a span {
            color: rgba(22, 76, 167, 1);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.7px;
            font-family: sans-serif;
        }

        .languageButton a:hover {
            transform: scale(1.1);
        }
 



/*////////////////////////////////// MOBILE ///////////////////////////////////////*/
@media only screen and (max-width: 600px) {


    .header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 300px;
    }
    .header img{
        margin: 15px;
    }

    .logoline {
        top:90px;
    }

    .logoline2{
        display:block;
        top:200px;
    }


    .footer {
        flex-direction: column;
        height: 140px;
    }

    .textSlider {
        order: 1;
        align-items: center;
        justify-content: center;
    }

    .languageButton {
        order: 2;
        justify-content: center;
        align-items: center;
        margin-left: 0px;
    }
}