*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body{
    font-family: "Miniver", cursive;
    font-weight: 400;
    direction: rtl;
}

main{
    width: 100%;
    height: 100%;
    background-color: #EAEFEF;
}

header{
    width: 100%;
    height: 100%;
}

.navbar{
    width: 100%;
    height: 100px;
    background-color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
}

.nav-part-1{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-left: 26px;
}

.nav-part-1 ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.nav-part-1 ul li{
    display: flex;
    padding: 30px;
    margin-left: 10px;
}

.link-nav{
    color: rgb(90, 90, 90);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}



.nav-part-1 .login-link::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #ff7a00;
    opacity: 1;
}

.nav-part-1 .login-btn{
    background-color: aliceblue;
    color:  rgb(90, 90, 90);
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    border: 3px;
    border-style: solid;
    border-color: #ff7a00;
    border-radius: 20px;
    transition: 0.3s ease;
}

.nav-part-1 .login-btn:hover{
    color: #ff7a00;
    box-shadow: 0 0 10px;
}

.nav-part-2{
    width: 13%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 26px;
}

.nav-part-2 h2{
    color: #ff7a00;
}

.nav-part-2 img{
    width: auto;
    height: 32px;
}

.content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.content-left{
    margin: 0 auto;
    line-height: 2.1;
    margin-top: 20px;
    text-align: center;
}

.content-left h1{
    font-size: 42px;
    font-weight: 800;
    color: #ff7a00;
}

.content-left h3{
    font-size: 26px;
    font-weight: 800;
    color: #728d9d;
    word-spacing: 10px;
}

.content-left h4{
    width: 562px;
    font-size: 28px;
    font-weight: 600;
    background-color: #a9becb;
    color: aliceblue;
    padding-right: 30px;
    word-spacing: 6px;
}


.content-left .content-btn{
    width: 200px;
    font-size: 20px;
    font-weight: 600;
    padding: 12px;
    margin-top: 20px;
    border-radius: 50px;
    border: 3px;
    border-style: solid;
    border-color: #ff7a00;
    color: #ff7a00;
    cursor: pointer;
    transition: 0.2s ease;
}

.content-left .content-btn:hover{
    background-color: #ff7a00;
    color: #EAEFEF;
}

.content-right img{
    width: auto;
    height: 550px;
    margin-top: 120px;
    margin-right: 60px;
    margin-bottom: 50px;
}

.away{
    width: 100%;
    height: 100%;
    background-color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.away-part-1{
    width: 46%;
    line-height: 2;
}

.away-part-1 h2{
    font-size: 44px;
    font-weight: 800;
    color: #3f4d56;
}

.away-part-1 h3{
    font-size: 28px;
    font-weight: 800;
    color: #ff7a00;

}

.away-part-1 p{
    font-size: 20px;
    font-weight: 600;
}

.away-part-1 .away-btn-1{
    width: 180px;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    border: 3px;
    border-radius: 50px;
    border-style: solid;
    border-color: #ff7a00;
    background-color: #ff7a00;
    color: #fff;
    cursor: pointer;
    transition: 0.2s ease;
}

.away-part-1 .away-btn-1:hover{
    background-color: #fff;
    color: #ff7a00;
}

.away-part-1 .away-btn-2:hover{
    background-color: #ff7a00;
    color: #EAEFEF;
}

.away-part-1 .away-btn-2{
    width: 220px;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    border: 3px;
    border-radius: 50px;
    border-style: solid;
    border-color: #ff7a00;
    background-color: #fff;
    color: #ff7a00;
    cursor: pointer;
    transition: 0.2s ease;
}

.away-part-2 img{
    width: auto;
    height: 600px;
    margin-right: 86px;
}

.brands{
    width: 100%;
    height: 100%;
    background-color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    line-height: 2;
    
}

.brands-part-1 img{
    width: auto;
    height: 550px;
    margin-right: 20px;
}

.brands-part-2 h2{
    width: 600px;
    margin: 0 auto;
    font-size: 36px;
    font-weight: 800;
    color: #3f4d56;
}

.brands-part-2 p{
    font-size: 20px;
    font-weight: 600;
    color: #728d9d;
}
