@import url('https://fonts.googleapis.com/css2?family=Aboreto&family=Cinzel:wght@400;500;600;800;900&family=Josefin+Sans:wght@100;200;300;400;500;600;700&family=Noto+Sans:wght@100;200;300;400;500;800&family=Changa:wght@200;500&display&family=Almarai:wght@300;400&display=swap');
/* Global */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root{
  --fontTitle:'Aboreto', cursive;
  --fontmain:'Josefin Sans', sans-serif;
  --fontSec:'Cinzel', serif;
  --fontText:'Noto Sans', sans-serif;
  --fontAr:'Changa', sans-serif;
  --bgColor: #F7F7F7;
  --textColor:#5C5C5C;
  --lineColor:#BDBDBD;
  --iconColor:#3A3A3A;
}
html{
  scroll-behavior: smooth;
}
ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
}
/* Freamwork */
.row{
  width: 50%;
}
.text{
  color: var(--textColor);
  font-size: 16px;
  font-weight: 400;
  margin-left: 20px;
}
.textLang{
  color: var(--textColor);
  font-size: 16px;
  font-weight: 400;
}
.text-ar{
  font-weight: 400;
  font-size: 14px;
  color: var(--iconColor);
  margin-right: 20px;
}
.text-contact{
  font-family: var(--fontText);
}
.text div{
  margin-bottom: 5px;
}
.text b:hover{
  color: var(--lineColor);
}
.text div span i{
  margin-left:5px;
  margin-right:5px;
}
.small-title{
  color: var(--iconColor);
  font-weight: 800 !important
}
.small-title.text-p{
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
.small-title.text-p p{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  margin: 4px 0
}
.small-title.date{
  font-size: 12px;
  margin-bottom: 3px;
}
.margin-top.en{
  margin-top: 10px;
}
/* Freamwork */
/* Global */
/*Start Heading */
.resume{
  margin:0 auto;
  background-color: var(--bgColor);
  padding:20px;
}

.resume .title .head{
  display: flex;
  justify-content: space-between;
}
.resume .title .head .lang a,
.resume .title .head .pdf a,
.resume .title .head .pdf button {
  font-size: 11px;
  font-weight: 800;
  font-family: var(--fontAr);
  border: 1px solid var(--lineColor);
  border-radius: 5px;
  padding: 0 2px;
  background-color: transparent;
  cursor: pointer;
}
.resume .title .head .pdf{
  display: flex;
  gap: 4px;
}
.resume .title .name{
  display: flex;
  justify-content: center;
  flex-direction: column
}
.resume .title .name .myname{
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
}
.resume .title .name .myname span{
  font-size: 21px;
}
.resume .title .name .myname span.ar{
  font-family: var(--fontAr);
}
.resume .title .name .main{
  font-family: var(--fontmain);
  text-transform: uppercase;
  font-weight: 500;
  font-size:2.5rem;
  text-align: center;
}
.resume .title .name .myname .main.ar{
  line-height: 1;
  font-family: 'Almarai', sans-serif
}
.resume .title .name .address{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.resume .title .name .address.ar{
  margin-top: 0;
}
.resume .title .name .address .details i{
  font-size: 4px
}
.resume .title .name .address .details p{
  display: flex;
  justify-content: center;
  align-content: center;
  font-size: 14px;
  gap:5px
}
.resume .title .name .address .details p i{
  font-size: 16px;
  color: var(--iconColor);
  opacity: .7;
}
/* End Heading */
/* Start Section */
section {
  display: flex;
  gap: 20px;
}
section .education_experiences_goals{
  width: 100%;
}
section .education_experiences_goals .section-title{
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1.5px solid var(--lineColor);
  color: #2C2D2A;
  padding-bottom:4px;
  margin-bottom:4px
}
section .education_experiences_goals .section-title.en{
  margin:5px 0 3px;
}
section .education_experiences_goals .section-title i{
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--iconColor);
  border: 1px solid var(--iconColor);
  border-radius: 50%;
  opacity: .9;
  width: 23px;
  height: 23px;
  font-size: 11px
}
section .education_experiences_goals .section-title h3{
  font-family: var(--fontTitle);
  font-size: 18px;
  font-weight: 600;
}
section .education_experiences_goals .content p.text{
  margin: 0 4px 5px;
}
section .education_experiences_goals .section-title h3.ar{
  font-family: var(--fontAr);
  font-size: 18px;
}
section .education_experiences_goals .info{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.education_experiences_goals .info p i{
  font-size: 6px;
  opacity: .7;
}
/* End Section */
/* Footer */
.resume footer{
  display: flex;
  justify-content: space-between;
  font-family: var(--fontAr);
  font-size: 9px;
  padding: 3px;
  margin: 2px auto;
  border-top: 2px dotted var(--lineColor);
  border-bottom: 2px dotted var(--lineColor);
}
/* Footer */
/* @Media */
@media(min-width:768px){
  .resume{
    width: 746px;
  }
}
@media(min-width:992px){
  .resume{
    width: 881px;
  }
}
@media(max-width:767px){
  .row{
    width: 100%;
  }
  .resume{
    padding: 15px 10px;
  }
  .resume .title .name .main{
    font-size: 1.5rem;
  }
  .resume .title .name .address .details p{
    font-size: 11px;
  }
  .resume .title .lang a{
    font-size: 9px;
  }
  .resume .job .specialization{
    font-size: 11px;
    gap: 4px;
  }
  .resume .job a{
    font-size: 11px;
  }
  section .education_experiences_goals .section-title h3{
    font-size: 16px;
  }
  section .education_experiences_goals .section-title{
    margin-top:10px;
  }
  .small-title{
    font-size: 11px;
  }
  .text{
    font-size: 12px;
    font-family: var(--fontmain);
  }
  .text-ar{
    font-size: 12px;
  }
  .margin-top{
    margin-top: 35px;
  }
}
/* @Media Print */
@media print {
  .resume{
    padding-top: 40px;
  }
  .text{
      font-weight: 300;
  }
  .text-ar{
      font-weight: 400;
  }
  .resume .title .lang{
    display:none
  }
  .resume .title .download{
    display: none;
  }
  .resume .title button.print{
    display: none;
  }
  .margin-top{
    margin-top: 20px;
  }
  .text-ar{
    font-size: 12px;
  }
  .resume .title .name .myname .main.ar{
    font-size: 1.5rem;
  }
  section .education_experiences_goals .section-title.ar{
    margin-bottom: 0;
    padding-bottom: 0;
  }
  section .education_experiences_goals .section-title h3.ar{
    font-size: 16px;
  }
  .resume.ar{
    padding: 0;
  }
}
/* @Media Screen */
@media screen {
  @media(max-width:767px) {
    section{
      display: flex;
      flex-direction: column;
    }
  }
}
