.content .mytitle {
    font-size: 30px;
    letter-spacing: 3px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.content .mytitle {
    position: relative;
}

.content .mytitle:after,
.content .mytitle:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 80px;
    height: 3px;
    background-color: var(--mainColor);    
}

.content .mytitle:before {
    bottom: unset;
    left: 55%;
}

.content .problem {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px;
    background-color: var(--bgColor2);
    border-radius: 20px;
    margin-bottom: 50px;
}

.content .problem .photo {
    width: 450px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 5px;
}

.content .problem .explain {
    padding: 10px;
}

.content .problem .explain > h1 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 35px;
    /* position: relative; */
    background-color: var(--mainColor);
    width: fit-content;
}

.content .problem .explain div {
    margin-bottom: 30px;
}

.content .problem .explain div[class*="arabic"] {
    text-align: right;
    font-size: 16px;
}

.content .problem .explain div h1{
    font-weight: normal;
    margin-bottom: 10px;
}

.content .problem .explain div a {
    padding: 5px;
    width: 90px;
    background-color: var(--mainColor);
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    text-align: center;
    color: white;
    text-decoration: none;
}

.content .problem .explain div[class*="arabic"] a {
    font-size: 18px;
    padding: 0px 5px;
}

.content .problem .explain div a:hover {
    background-color: var(--mainColor);
    color: white;
    box-shadow: inset 0 0 5px 3px var(--bgColor2);
}

.content .problem .explain div a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to top, #00000010,#ffffff30);
}

/* screen width under 1024 */
@media screen and (max-width:1024px) {
    .content .problem {
        width: 93%;
        margin: 0 auto 50px;
        padding: 30px 15px;
    }
}