
@import url('https://fonts.googleapis.com/css2?family=Borel&family=Cairo:wght@200;400;500;600;700;800;900;1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Cairo',sans-serif;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
    direction: rtl;
}
iframe{
    height: 100vh;
}
.box{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 70%;
    height: auto;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 10px;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    min-height: 50vh;
}
.hader{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hader h1{
    font-size: 22px;
    color: rgba(0,48,72,1.00);
    margin-top: 10px;
}
.logo{
    width: 150px;
    height: 150px;
}
.logo img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.content{
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
.content .left{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.content .left a{
    color: rgba(0,48,72,1.00);
    font-size: 16px;
    text-decoration: none;
    margin-right: 15px;
}
.content .right{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content .right iframe{
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}
@media screen and (max-width: 1000px){
    .content{
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .content .left{
        width: 100%;
    }
    .content .right{
        width: 100%;
    }
    .hader h1{
        font-size: 16px;
        text-align: center;
    }
    .left h2{
        font-size: 16px;
    }
    .content .left a{
        font-size: 13px;
        margin-right: 0px;
    }
    .box{
        padding: 60px 20px 20px 20px;
        width: 95%;
    }
    .content .left{
        gap: 10px;
    }
    .content .right iframe{
        height: 200px;
    }
}