/* RESRT */
*, ul, ol, li{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}
ul, ol, li{
    list-style-type: none;
}
a{
  text-decoration: none;
}
ul, ol, li, h1, h2, h3, h4, h5, p, span{
  padding-inline: 0;
  margin-block: 0;
  padding: 0;
  margin: 0;
  outline: 0;
  list-style: none;
}
a, button{
  cursor: pointer !important;
  border: none !important;
}
body{
    background: #f4f7ff;
    font-family: 'Poppins', 'Cairo', sans-serif;
    direction: rtl;
}

/*start animation styles*/
.os-animation {
  opacity: 0;
}
.os-animation.animated {
  opacity: 1;
}

/* Scroll */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #999; 
}
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

main{
    width: 1366px;
    height: 100vh;
    margin: 0 auto;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

body::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 55%;
    width: 6px;
    background: #2e598e;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

body::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 35%;
    width: 6px;
    background: #2e598e;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.flx_bx{
    display: flex;
    align-items: center;
    justify-content: center;
}
    
    .flx_btwn{
        justify-content: space-between;
    }

    .flx_end{
        justify-content: flex-end;
    }

    header{
        height: 80px;
    }

    .soc_lst li a{
        color: #2e598e;
        margin-inline-start: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
    }

    .soc_lst li a i{
        font-size: 2rem;
        transition: all 0.3s ease-in-out;
    }

    section{
        height: calc(100vh - 370px);
        margin: 76px 0px;
    }

    section img{
        width: 60%;
        margin: 28px auto;
        display: block;
    }

    article{
        text-align: center;
        margin-top: -120px;
    }

    article h3, article h4{
        font-weight: 700;
        line-height: 34px;
        color: #333;
    }

    article h3, a{
        color: #2e598e;
    }

    footer{
        height: 104px;
    }

    footer  a{
        display: block;
        width: fit-content;
    }
    footer a p{
        margin-inline-end: 8px;
        font-size: 0.9rem;
        font-weight: 700;
        color: #333;
    }
    footer img{
        width: 60px;
    }