*{
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.load{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(175, 171, 169, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.load::after{
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid #0ac7e0;
    border-top-color: #052caa;
    animation: spin 1s linear infinite;
}

@keyframes spin{
    to {
        transform: rotate(360deg);
    }
}

.navbar{
    position: fixed;
    top: 0;   
    left: 30px;
    right: 30px;
    background-color: rgb(172, 183, 194);
    padding: 0;
    font-size: large;
    font-weight: bold;
    z-index: 1;
}
.navbar .hor_items{
    display: flex;
    justify-content: space-between;
    align-content: center;
}
.navbar .hor_items .nav_left{
    margin: 0;
}
.navbar .hor_items .nav_left .menu{
    margin: 0;
    padding: 5px 10px;
    font-size: 20px;
    border: none;
    color: rgb(3, 131, 131);
    background-color: rgb(172, 183, 194);
    cursor: pointer;
    display: none;
}
.navbar .hor_items .nav_left .menu:hover{
    background-color: rgb(65, 60, 55);
}
.navbar .hor_items .nav_left .items_active{
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-start;
}
.navbar .item{
    padding: 10px;
    color: rgb(2, 110, 110);
    cursor: pointer;
    list-style: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.navbar .item:hover{
    background-color: rgb(65, 60, 55);
    color: white;
}
.navbar .hor_items .nav_right{
    display: flex;
    justify-content: space-between;
    align-content: center;
    background-color: rgb(172, 183, 194);
    direction: rtl;
    transition: 0.3s;
}
.navbar .hor_items .nav_right p{
    margin: auto;
    padding: 0 5px;
    color: white;
    display: none;
    font-size: medium;
}
.navbar .hor_items .nav_right .language_but{
    margin: 0;
    padding: 5px;
    font-size: 30px;
    border: none;
    color: rgb(3, 131, 131);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-content: center;
}
.navbar .hor_items .nav_right .language_but i{
    margin: auto;
}
.navbar .hor_items .nav_right:hover{
    background-color: rgb(65, 60, 55);
    width: 80px;
}
.navbar .hor_items .nav_right:hover p{
    display: block;
}
.navbar .ver_items{
    margin: 0;
}
.navbar .ver_items .items_click{
    margin: 0px;
    padding: 0px;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

@media only screen and (max-width: 700px){
    .navbar .hor_items .nav_left .items_active{
        display: none;
    }
    .navbar .hor_items .nav_left .menu{
        display: block;
    }
    .navbar .ver_items .item{
        width: 100%;
        font-size: 12px;
    }
    .navbar .hor_items .nav_right .language_but{
        font-size: 20px;
    }
    .navbar .hor_items .nav_right .language_but i{
        margin: 0;
    }
}

.page{
    margin: 0px 30px 10px;
    padding: 10px 0px 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.home{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 20px 0px;
    padding: 15px 0;
    background-color: rgb(233, 229, 229);
}
.home .image{
    margin: 20px;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    animation: outline_pic 0.7s;
    -webkit-animation: outline_pic 0.7s;
    animation-iteration-count: infinite;
    animation-direction: inherit;
}

.home .image img{
    margin: 0px;
    padding: 0px;
    max-width: 100%;
    height: 350px;
}
.home .window{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    margin: 0 15px;
    padding: 0px 5px;
}
.home .window p{
    margin: 0px;
    padding: 0px;
    font-size: small;
    font-weight: bold;
    color: rgb(170, 145, 74);
}
.home .window h2{
    margin: 5px 0;
    text-align: left;
    font-weight: bolder;
    color: rgb(155, 46, 46);
}
.social_media{
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 40px 0;
    padding: 5px;    
}
.social_media .item{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 15px grey;
    transition: 0.3s;
    list-style: none;
    background-color: aqua;
}
.social_media .item:hover{
    box-shadow: 0 2px 5px grey;
}
.social_media .item .fab{
    color: #188a84;
    font-size: 40px;
}
.social_media .item .linkedin{
    font-size: 30px;
}
.social_media .item .fab:hover{
    color: rgb(24, 104, 141);
}

.social_media .item .tooltip{
    position: relative;
    display: inline-block;
}
  
.social_media .item .tooltip .tooltiptext{
    visibility: hidden;
    width: 100px;
    background-color: #b6c8cc;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 7px 0;
    position: absolute;
    bottom: 50px;
    left: 75%;
    margin-left: -60px;
    font-size: 18px;
    font-weight: bold;
}
  
.social_media .item .tooltip:hover .tooltiptext{
    visibility: visible;
}
.social_media .item .tooltip .tooltiptext::after{
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: #b6c8cc transparent transparent transparent;
}
.border_style{
    margin: 30px 15px;
    padding: 15px;
    box-sizing: border-box;
    border-style: groove;
    border-color: #d2e3e7;
    border-width: 3px;
    border-radius: 10px;
}
.border_style h2{
    font-weight: bold;
    color: rgb(106, 210, 241);
    margin: 10px 5px 20px;
    padding: 0px;
}

.about{
    font-size: large;
    font-weight: bold;
    direction: ltr;
    text-align: left;
    color: rgb(87, 84, 84);
}
.about .items{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 10px;
    padding: 0;
}
.about .items .item{
    margin: 15px;
    padding: 5px;
}
.about .items .item p{
    margin: 0px 10px;
    text-align: justify;
    line-height: 25px;
    word-spacing: 5px;
}
.about .items .item .features{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.about .items .item .features i{
    display: flex;
    justify-content: flex-start;
    margin: 5px;
    padding: 3px 5px;
    font-size: 25px;
    color: rgb(3, 131, 131);
    background-color: #e5f0ef;
    border-radius: 10px;
}
.about .items .item .features p{
    font-size: medium;
}
.about .items .item .features .language p{
    background-color: rgb(171, 196, 218);
    border-radius: 10px;
    padding: 0 5px;
}

.education .items{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0;
    padding: 10px;
}
.education .items .item{
    max-width: 500px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px;
    padding: 5px;
    border: 2px groove rgb(189, 187, 187);
    border-radius: 20px;
}
.education .items .item p{
    margin: 0 10px;
    padding: 5px;
    text-align: justify;
    font-size: medium;
    color: grey;
}
.education .items .item .logo{
    margin: 0 10px;
    padding: 0;
    min-width: 100px;
}
.education .items .item .logo .pic_box{
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    flex-grow: 3;
}
.education .items .item .logo .pic_box img{
    width: 100%;
}

.projects .items{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.projects .items .item{
    min-width: 220px;
    max-width: 450px;
    height: auto;
    margin: 20px 30px;
    padding: 0px;
    box-sizing: border-box;
    border-style: groove;
    border-color: aliceblue;
    border-radius: 20px;
}

.projects .items .item .picturs{
    height: 300px;
    margin: 5px;
    padding: 0;
    box-sizing: border-box;
    border-radius: 20px;
    border-color: rgb(53, 125, 189);
    border-width: 2px;
    border-style: inherit;
    position: relative;
    overflow: hidden;
}
.projects .items .item .picturs .back_pic{
    height: 100%;
}
.projects .items .item .picturs .back_pic img{
    width: 100%;
    height: 100%;
    display: none;
}
.projects .items .item .picturs .back_pic .active{
    display: block;
}
.projects .items .item .picturs .button{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
    width: 100%;
    height: 100%;
    padding: 0px;

}
.projects .items .item .picturs .button .butt{
    display: flex;
    align-items: center;
    background-color: rgb(221, 221, 233);
    height: 50%;
    padding: 0 10px;
    text-align: center;  
    opacity: 0.3;
    cursor: pointer;
    user-select: none;
}
.projects .items .item .picturs .button .butt:hover{
    transition: 0.5s;
    opacity: 0.7;
}
.projects .items .item .picturs .button .but1{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.projects .items .item .picturs .button .but2{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.projects .items .item .discription{
    margin: 20px 5px;
    padding: auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    color: rgb(112, 112, 112);
}
.projects .items .item .discription p{
    direction: ltr;
    line-height: 20px;
    word-spacing: 5px;
}

.skills .items{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.skills .items .item{
    margin: 10px;
    padding: 5px;
    min-width: 200px;
    border-style: groove;
    border-width: 1px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
}
.skills .items .item .title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 5px 5px 5px 0;
    padding: 0;
    color: grey;
}
.skills .items .item .title .tit{
    margin: 0;
    padding: 0;
}
.skills .items .item .title .val{
    margin: 0;
    opacity: 0;
    transition: 1s;
}
.skills .items .item .box{
    margin: 5px 0;
    padding: 0;
    height: 7px;
    border-style: groove;
    border-width: 1px;
    border-color: #b6c8cc;
    width: 100%;
    position: relative;
}
.skills .items .item .box .bar{
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: green;
    transition: 1s;
}

.blogs .items{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: auto;
    padding: 0;
}
.blogs .items .item{
    position: relative;
    width: 200px;
    height: 200px;
    margin: 20px 15px;
    padding: 0;
    border-radius: 30px;
    background-color: rgb(73, 204, 204);
    overflow: hidden;
}
.blogs .items .item img{
    width: 100%;
    height: 100%;
}
.blogs .items .item .title{
    position: absolute;
    top: 0;
    margin: auto;
    padding: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(218, 209, 209);
    opacity: 0.8;
    font-size: large;
    font-weight: bold;
    color: rgb(53, 53, 52);
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0 0;
    padding: 15px;
    background-color: #b6c8cc;
}
.footer p{
    color: rgb(75, 74, 74);
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    margin: auto;
    padding: 0;
}

