/* ABOUT */

.about-left{
   background-image: url(/images/MOSHED-2021-5-24-6-54-40.gif);
   background-size: cover;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   height: calc(100vh - 88px);
}
.about-left-content > div{
   background: #212121;
   padding: 4rem 4rem 2.5rem 5rem;
   text-align: center;
}
.about-left-content{
   box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
   -webkit-box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
   -moz-box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
}
.about-img img{
   display: block;
   width: 200px;
}
.about-img{
   width: 200px;
   height: 200px;
   overflow: hidden;
   border-radius: 50%;
}
.shadow{
   margin-left: auto;
   margin-right: auto;
   border-radius: 50%;
   width: 200px;
   height: 200px;
   position: relative;
}

.about-left-content h2{
   font-size: 2rem;
   margin: 2.2rem 0 0.6rem 0;
   line-height: 1.2;
   padding-bottom: 1rem;
   border-bottom: 2px solid #edffec;
}
.about-left-content h3{
   text-transform: uppercase;
   font-weight: 300;
   letter-spacing: 5px;
   margin-top: 1.2rem;
}
.icons{
   background: #fff;
   display: flex;
   justify-content: center;
   padding: 0.8rem 0;
}

.icons a {
   color: #fff;
   transition: all 0.5s ease-in-out;
}

.icons a:hover {
   color: #000;
}

.icons li {
   list-style-type: none;
   background: #212121;
   color: #fff;
   width: 40px;
   height: 40px;
   margin: 0 0.5rem;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 1.2rem;
   cursor: pointer;
   transition: all 0.5s ease-in-out;
}
.icons li:hover {
   background: #FEDC0D;
   color: #000;
}
.about-right{
   background: #fff;
   height: calc(100vh - 88px);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 0 5rem;
   text-align: center;
}
.about-right h1{
   font-size: 7rem;
   text-transform: uppercase;
}
.about-right h1 span{
   color: #FEDC0D;
}
.about-right h2{
   font-weight: 600;
}
.about-btns{
   display: flex;
   margin: 2rem 0;
}
.btn{
   border: none;
   font-size: 0.9rem;
   text-transform: uppercase;
   border: 2px solid #000;
   border-radius: 20px;
   padding: 0.55rem 0;
   width: 130px;
   font-weight: 600;
   background: transparent;
   margin: 0 0.5rem;
   cursor: pointer;
}
.btn.btn-pink{
   background: #FEDC0D;
   color: #000;
   border-color: #FEDC0D;
   transition: all 0.5s ease-in-out;
}
.btn.btn-pink:hover{
   background: transparent;
   border-color: #FEDC0D;
   color: #000;
}
.btn.btn-white{
   transition: all 0.5s ease-in-out;
}
.btn.btn-white:hover{
   background: #FEDC0D;
   border-color: #FEDC0D;
   color: #000;
}
.about-para p{
   font-weight: 300;
   font-size: 1.2rem;
   padding: 0.5rem;
   opacity: 0.8;
   text-align: left;
}

.contact-me {
   text-align: center;
}

.contact-me a {
   color: #111;
   transition: 0.3s;
}

.contact-me a:hover {
   color: #FEDC0D;
}

@media screen and (min-width: 968px){
   .about-wrapper{
       display: grid;
       grid-template-columns: repeat(2, 1fr);
   }
   .about-left{
       position: relative;
   }
   .about-left-content{
       position: absolute;
       right: -50px;
   } 
}

@media (max-width: 968px) {

}


/* TIMELINE */

.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: #111;
  height: 100%;
}
.timeline {
  width: 80%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline ul {
  list-style: none;
}
.timeline ul li {
  padding: 20px;
  background-color: #1e1f22;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
}
.timeline ul li:last-child {
  margin-bottom: 0;
}
.timeline-content h1 {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
}
.timeline-content .date {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
@media only screen and (min-width: 768px) {
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: gray;
  }
  .timeline ul li {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .timeline ul li:nth-child(odd) {
    float: left;
    clear: right;
    transform: translateX(-30px);
    border-radius: 20px 0px 20px 20px;
  }
  .timeline ul li:nth-child(even) {
    float: right;
    clear: left;
    transform: translateX(30px);
    border-radius: 0px 20px 20px 20px;
  }
  .timeline ul li::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: gray;
    top: 0px;
  }
  .timeline ul li:nth-child(odd)::before {
    transform: translate(50%, -50%);
    right: -30px;
  }
  .timeline ul li:nth-child(even)::before {
    transform: translate(-50%, -50%);
    left: -30px;
  }
  .timeline-content .date {
    position: absolute;
    top: -30px;
  }
}


/* SKILLS */

#skills {
   color: #fff;
}

#skills > h2 {
   font-size: 44px;
   text-transform: uppercase;
   text-align: center;
   padding: 24px;
}

#skills .skill {
   display: grid;
   grid-gap: 16px;
   padding: 16px;
   max-width: 1200px;
   margin-inline: auto;
}

@media screen and (min-width: 1020px) {
   .skill {
      grid-template-columns: repeat(3, 1fr);
   }
}

@media screen and (max-width: 1020px) {
   .skill {
      grid-template-columns: 1fr;
      max-width: 600px;
   }

   #skills {
      margin-bottom: 80px;
   }
}

.skill .set {
   padding: 40px;
}

.set span {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 80px;
   height: 80px;
   font-size: 48px;
   color: #fff;
   border-radius: 35%;
   margin-inline: auto;
}

.set > .title {
   padding-block: 24px;
   font-size: 24px;
   text-align: center;
   text-transform: capitalize;
}

.set .list {
   padding-block: 8px;
   display: grid;
   grid-template-columns: 1fr 28px;
   text-transform: capitalize;
   transition: 0.3s;
}

.set .list p, .set .list i {
   font-size: 1.2rem;
}

.set .list:hover {
   transform: translateX(-10px);
   color: #FEDC0D;
}