input:focus{
    outline:none ;
}

/* just the same */

.firstContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin:5dvh auto;


}

.firstContainer .imgLeftPart{
    width: 45%;
    padding: 10px;
    box-sizing: border-box;
    align-self: center;
    text-align: center;
    
}

.firstContainer .imgLeftPart .actualImg{
    width: 100%;
    
}

.firstContainer .stufRightPart{
    width: 45%;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    direction: rtl;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.firstContainer .stufRightPart .txtTop{
    direction: rtl;
    width: 90%;
    padding: 10px;
    box-sizing: border-box;

}

.firstContainer .stufRightPart .txtTop h3{
    font-size: 40px;
    color: #EF9035;
    font-weight: lighter;
    padding: 20px;
    padding-right: 0%;
}

.firstContainer .stufRightPart .txtTop p{
    font-size: 23px;
    /* color: #EF9035;
    font-weight: lighter;
    padding: 20px;
    padding-right: 0%; */
}

.searchDown{
    /* display: flex; */
    border: none !important;
}

.leftPartSearch{
    flex-grow: 1;
    background-color: #FFFF;
    margin: 0 auto;
    display: flex;
    justify-content: right;
    border-radius: 20px;
    margin-left: 10vh;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 9px 0px;/* new part */

}
.leftPartSearch h3{
    color: #FFCE20;
    font-weight: 100;
    
}

.leftPartSearch .imgSearchContainer{
    padding: 1vh;
    align-content: center;
    box-sizing: border-box;

}

.leftPartSearch .imgSearchContainer img{
    width: 80%;
    
}
/* end of first section  */

/* collapsibles styles */
.secondContainer{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin: auto;
    margin-bottom: 10dvh;
}
.secondContainer .rightSecCon{
    padding: 40px;
    margin: 40px auto;
    width: 65%;
}
.secondContainer .leftSecCon{
    /* padding: 20px; */
    /* margin: 40px auto; */
    width: 45%;
    align-self: center;

}
.secondContainer .leftSecCon img{
    /* padding: 20px; */
    /* margin: 40px auto; */
    width: 80%;
}
.collapsible {
    background-color: rgb(251 246 238);
    /* color: white; */
    cursor: pointer;
    padding: 18px;
    margin-top: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    text-align: right;
    border-bottom: solid #EF9035;
}  
.active, .collapsible:hover {
    /* background-color: #555; */
    border-bottom: solid #EF9035;

}   
.content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    text-align: right;
    margin-top: 20px;
    transition: max-height 0.4s ease-out;
    direction: rtl;
    /* background-color: #f1f1f1; */
}

/* for phone version */
.showPhone{
    display: none;
}

@media screen and (max-width: 840px) {
    .firstContainer .stufRightPart .txtTop h3{
        font-size: 30px !important;
    }
    
    .firstContainer .stufRightPart .txtTop p{
        font-size: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    .showPhone{
        display: block;
        text-align: center;
        font-size: 26px;
        color: #EF9035;
        margin-bottom: 20px;
    }
    .hidePhone{
        display: none;
    }
    .firstContainer{
        flex-direction: column;
        align-items: center;
    }
    .imgLeftPart{
        width: 70% !important;
    }
    .txtTop{
        text-align: center;
    }
    .stufRightPart{
        align-items: center;
        width: 75% !important;
    }
    .searchDown{
        width: 100%;
    }
    .leftPartSearch{
        margin-left: 0;
    }
    .secondContainer .rightSecCon{
        width: 95%;
    }
}
@media screen and (max-width: 490px) {
    .stufRightPart{
        width: 90% !important;
    }
    .secondContainer .rightSecCon{
        padding: 20px;
    }
}


/* @media screen and (max-width: 290px) {
    body{
        display: none;
    }
} */