@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body{
  background: #0a031c;          

}

.vertical-scroll::-webkit-scrollbar {
  width: 2em;
  height: 1em;
}

/*Back to top*/
#top {
  display: inline-block;
  background-color: #faf9f8;
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s,opacity .5s, visibility .5s; 
    
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: 1px solid black;
  opacity: 90%;
}
#top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: rgb(12, 11, 11);
  
}
#top:hover {
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(24, 21, 189);
}
#top:active {
  background-color: rgba(49, 4, 248, 0.726);
}
#top.show {
  opacity: 1;
  visibility: visible;
}

a{
  text-decoration: none;
}
.container{
  margin: auto;
  width: 1100px;
  overflow: auto;
}

/* nav bar */
nav{
  height: 90px;
  width: 100%;
}
.logo{
  width: 150px;
  height: 150px;
  padding: 0 8px;
  margin-top: 23px;
  color: #fff;
  font-size: 30px;
}
.navbar{
  display: flex;
  background-color: #0a031c;
  opacity: 90%;
}
nav ul{
  margin-left: 150px;
}
nav ul li{
  margin: 0 5px;
  line-height: 80px;
  display: inline-block;
}
nav ul li a{

  font-size: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 20px;
  color: #fff;
  opacity: 90%;
  transition: opacity 0.45s, transform 0.25s;
  -webkit-transform: scale(0,1);
	transform: scale(0,1);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
}
nav a:hover{
  color: #fff;
  border-bottom: 1px solid white;
  -webkit-transform: scale(1);
	transform: scale(1);
  opacity: 1;
  
}

.socail-icons{
  margin: 25px 0 0 170px;
}
.socail-icons a{
  margin: 8px;
  color: #fff;
}

/*********HEADERS*******/
.Headers{
  text-align: center;
}
.Headers a {
  position:relative;
  text-decoration:none;
  width: 500px;
  font-size:50px;
  line-height:60px;
  letter-spacing:2px;
  color:transparent;
  -webkit-text-stroke:1px var(--clr);
}
.Headers a::before{
  content:attr(data-text);
  position:absolute;
  color:var(--clr);
  width:0px;
  overflow:hidden;
  transition:1s;
  border-right:8px solid var(--clr);
}
.Headers a:hover::before{
  width:94%;
}
/**/

/*Arrow Down*/
.arrow {
  box-sizing: border-box;
  height: 4vw;
  width: 4vw;
  border-style: solid;
  border-color: white;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
}

.arrow:hover {
  border-bottom-width: 3px;
  border-right-width: 3px;
  
}

.container2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

/**/
/* Body Section */
.body-box{
  display: flex;
  margin: 6rem 0 0 3px;
}
.body-text{
  width:100%;
  padding: 10px;
}
.body-text h1{
  font-size: 3rem;
  color: rgb(255, 255, 255);
}
.body-text h1:hover{

  color:#07bccc;
  transition:all 1s;
  text-shadow: 2px 4px purple;
}

span{
  color: rgb(171, 171, 182);
}
.body-text p{
  margin-top: 15px;
  font-size: 17px;
  color: rgb(165, 160, 159);
}
.learn-more{
  margin-top: 30px;
}

.learn-more button{
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 9px;
  background: rgb(79, 79, 95);
}
button:hover{
  color: #fff;
  background: transparent;
  border: 1px solid rgb(79, 79, 95);
}

.body-pic img{
  width: 650px;
  margin-top: -50px;
  background-image: url("./images/splash.png");
  background-size: 530px;
  background-repeat: no-repeat;
  background-position: center;
  animation: 4s infinite alternate floating;
  margin-left: 0%;
}
@keyframes floating {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-10px);
	}
	100% {
		transform: translatey(0px);
	}
}

/*About Me*/
.container-About{
  margin: auto;
  width: 1100px;
  height:1350px;
  overflow: auto;
}
.AboutMe p{
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 17px;
  color: rgb(165, 160, 159);
}
.AboutMe h1 {
  text-align: center;
  font-size: 3rem;
  color: rgb(255, 255, 255);
}
/*Tech list*/
.row{
  width: 100%;
  display: flex;
  justify-content: space-around;
}

h3{
  color: white;
}
.box{
  padding: 7px 9px;
  margin: 20px;
  width: 115px;
  position: relative;
  background-color: white;
  border-radius: 30px;
  opacity: 80%;
  border: 0.4px solid white;
}

.box:hover {
	opacity: 90%;
}

.box .icon img{
  width:35px;
  height: 35px;
  align-items: center;
  margin-left: 32px;
  
}
.box .text h3 {
  text-align: center;
  color: rgb(20, 19, 19);
  font-size: 15px;
}
.navbar > #nav-check {
  display: none;
}
/**/
@media screen and (max-width: 700px) {

  .ag-format-container{
    width:50%;
  }
  #CV-PDF embed{
    width: 350px;
    height:400px;
  }
  .socail-icons{
    position:absolute;
    top: 0;
    right:50px;
  }
  .navbar > .nav-btn {
    position: absolute;
    right: 0px;
    top: 10px;
  }
  .navbar > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .navbar > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
    flex-direction: column;
  }
  .navbar > .nav-links {
    position: absolute;
    width: 40%;
    max-height: 320px;
    background-color: rgb(20, 19, 19);
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 35px;
    left: 0px;
    align-items: center;
    text-align: center;
  }
  .navbar > .nav-links > a {
    display: block;
    width: 100%;
    
  }
  .navbar > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .navbar > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
.container-About{
  width: 400px;
  height: 3100px;
}
.body-box{
  flex-direction: column;
}
.body-box img{
  margin-top: 15px;
  height:370px;
  width: 400px;
  background-size: 250px;
}
  .contact_form_inner{
    display: none;
  }
  .card1{
    width:90px;
    margin-top: 20px;
    align-items: center;
    position: relative;
    height: 100px;
    margin-left: 30px;
    
  }
  .tags{
    display: none;
  }

  .Certificates-header{
    width: 360px;
    margin-left: 20px;
  }
  .Headers{
    width: 360px;
  }

  .About-intro{
    width: 360px;
    margin-left: 10px;
  }

  .row{
    flex-direction: column;
    margin-left: 8px;
  }
  .card{
    width: 350px;
  }

  
}
/*CV*/
#CV{
  margin: 10px;
  transition: all .35s;
  width: 200px;
  height: 40px;
  font-size: 20px;
  font-family: sans-serif;
  border: 3px solid rgb(240, 241, 245);
  color: white;
  background-color: #0a031c;
  border-radius: 30px;

}
#CV:hover{
  position: relative;
  background: white;
  transition: all .35s;
  color:#0a031c;
  border: 3px solid #0a031c;
}


#CV-PDF{
  display: none;
}

/*Certificates*/
.card{
  margin:10px;
  width: 300px;
  height: 290px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid rgb(247, 247, 247);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  transition: all 0.6s ease;
}

.card:hover{
  box-shadow: rgba(170, 4, 221, 0.808) -10px 10px, rgba(104, 8, 148, 0.904) -20px 20px ;
  border-radius: 0px;
}

.card img{
  height: 180px;
  width: 100%;
  position: relative;
  border: 1px solid whitesmoke;
  
}

.card .content h5{
  width: 270px;
  font-size:18px;
  margin-left:5px;
  margin-top:1px;
  border-bottom: 6px solid #880bad;
  color: #0a031c;
}
.card:hover .content h5 {
  width: 250px;
  border-bottom: 6px solid #81168f;
}

.card .content p{
  font-size: 13px;
  margin-top: 5px;
  margin-left: 5px;
  margin-bottom: 3px;
}
/**/

/*Timeline */
.project-name {
  color: whitesmoke;
  text-align: center;
  padding: 10px 0;
}

.success {
  background: #78AD42 !important;
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
}
h1{
  color: whitesmoke;
}
#timeline .timeline-item:after, #timeline .timeline-item:before {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}

#timeline {
  width: 100%;
  margin-top: 10px;
  margin: 30px auto;
  position: relative;
  padding: 0 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#timeline:before {
  content: "";
  width: 3px;
  height: 100%;
  background: #1C71A4;
  left: 50%;
  top: 0;
  position: absolute;
}
#timeline:after {
  content: "";
  clear: both;
  display: table;
  width: 100%;
}
#timeline .timeline-item {
  margin-bottom: 50px;
  position: relative;
}
#timeline .timeline-item .timeline-icon {
  background: #1C71A4;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  margin-left: -23px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#timeline .timeline-item .timeline-icon svg, #timeline .timeline-item .timeline-icon .fa {
  position: relative;
  top: 13px;
  left: 14px;
  font-size: 24px;
  color: #fff;
}
#timeline .timeline-item .timeline-content {
  width: 45%;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#timeline .timeline-item .timeline-content h2 {
  padding: 15px;
  background: #1C71A4;
  color: #fff;
  margin: -20px -20px 0 -20px;
  font-weight: 300;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  font-size: 22px;
}
#timeline .timeline-item .timeline-content p {
  padding-top: 10px;
  padding-bottom: 10px;
}
#timeline .timeline-item .timeline-content:before {
  content: '';
  position: absolute;
  left: 45%;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #1C71A4;
}
#timeline .timeline-item .timeline-content.right {
  float: right;
}
#timeline .timeline-item .timeline-content.right:before {
  content: '';
  right: 45%;
  left: inherit;
  border-left: 0;
  border-right: 7px solid #1C71A4;
}

/*Running*/
.load-5{
  position: relative;
  align-items: center;
  bottom: 28px;
  right: 6px;
}

.ring-2 {
  position: relative;
  width: 33px;
  height: 33px;
  margin: 0 auto;
  border: 4px solid #4b9cdb;
  border-radius: 100%;
}

.ball-holder {
  position: relative;
  width: 11px;
  height: 11px;
  left: 9px;
  top: 8px;
}

.ball {
  bottom: 2px;
  right: 18px;
  width: 8px;
  height: 8px;
  position: relative;
  border-radius: 100%;
  background: #3a16d6;
}

/* =Animate the stuff
------------------------ */

.load-5 .ball-holder {
  animation: loadingE 1.3s linear infinite;
}




.l-5 {
  animation-delay: 0.96s;
}

@keyframes loadingE {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



@media screen and (max-width: 768px) {
  #timeline {
    margin: 30px;
    padding: 0px;
    width: 90%;
  }
  #timeline:before {
    left: 0;
  }
  #timeline .timeline-item .timeline-content {
    width: 90%;
    float: right;
  }
  #timeline .timeline-item .timeline-content:before, #timeline .timeline-item .timeline-content.right:before {
    left: 10%;
    margin-left: -6px;
    border-left: 0;
    border-right: 7px solid #1C71A4;
  }
  #timeline .timeline-item .timeline-icon {
    left: 0;
  }
}
/**/

/*Projects */

.tags{
  background-color: rgba(167, 158, 158, 0.664);
  color: black;
  font-size: 10px;
  border-radius: 10px;
  width: 70px;
  text-align: center;
  padding: 3px;
  margin: 3px;
  margin-top: 15px;
  bottom: 11px;
  position: relative;

}
.git{
  align-items: center;
  position: relative;
  margin-left: 100px;
}
.git button{
  width: 45px;
  height:45px;
  border-radius: 50px;
  color: white;
  background-color: rgba(19, 18, 18, 0.822);
  animation: 2s infinite alternate floating;
}
.git i{
  margin-top: 5px;
  position: relative;
  bottom: 5px;
}

.card1{
  margin:10px;
  width: 275px;
  height: 470px;
  background-color: white;
  overflow: hidden;
  border: 0.2px solid rgba(222, 222, 233, 0.699);
  box-shadow: rgba(136, 9, 119, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.card1:hover{
  box-shadow: rgba(42, 31, 192, 0.63) -7px 10px, rgba(85, 100, 231, 0.781) -15px 20px ;
  border-radius: 20px;
}

.card1 img{
  height: 180px;
  width: 100%;
  position: relative;
  
}

.card1 .content h5{
  width: 240px;
  font-size:18px;
  margin-left:5px;
  margin-top:1px;
  border-bottom: 6px solid #2c29fd;
  color: #0a031c;
}
.card1:hover .content h5 {
  width: 235px;
  border-bottom: 6px solid #0a20e7;
}

.card1 .content p{
  font-size: 15px;
  margin-top: 5px;
  margin-left: 5px;
  margin-bottom:10px;
  height: 130px;
}
/**/ 
/* Wave */
.ag-format-container {
    width: 100%;
    margin: 0 auto;
  }
  
  
  .ag-wave {
    padding: 100px 0;
    background-color: #0a031c;
  
    position: relative;
  }
  .ag-wave:before {
    content: "";
    height: 125px;
    width: 100%;
    background: url(https://raw.githack.com/SochavaAG/example-mycode/master/pens/animation-wave-shadow/images/wave.svg) repeat-x scroll 0 0;
    background-size: 1600px 198px;
  
    position: absolute;
    left: 0;
    bottom: 0;
  
    -webkit-filter: drop-shadow(5px -10px 3px rgba(0, 0, 0, .2));
    filter: drop-shadow(5px -10px 3px rgba(0, 0, 0, .2));
  
    -webkit-animation: an-wave 8s linear infinite;
    -moz-animation: an-wave 8s linear infinite;
    -o-animation: an-wave 8s linear infinite;
    animation: an-wave 8s linear infinite;
  }
  
  @-webkit-keyframes an-wave {
    100% {
      background-position-x: -1600px;
    }
  }
  @-moz-keyframes an-wave {
    100% {
      background-position-x: -1600px;
    }
  }
  @-o-keyframes an-wave {
    100% {
      background-position-x: -1600px;
    }
  }
  @keyframes an-wave {
    100% {
      background-position-x: -1600px;
    }
  }
  
  
  @media only screen and (max-width: 767px) {
    .ag-format-container {
      width: 96%;
    }
  
  }
  
  @media only screen and (max-width: 639px) {
  
  }
  
  @media only screen and (max-width: 479px) {
  
  }
  
  @media (min-width: 768px) and (max-width: 979px) {
    .ag-format-container {
      width: 750px;
    }
  
  }
  
  @media (min-width: 980px) and (max-width: 1161px) {
    .ag-format-container {
      width: 960px;
    }
  
  }

  /*Contact CSS*/
  
.right_conatct_social_icon{
  background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
}
.contact_us{
 padding: 120px 0px;
 
}

.contact_inner{
 background-color: #fff;
 position: relative;
 border-radius: 25px;
}
.contact_field{
 padding: 60px 340px 90px 100px;
}

.contact_field h3{
color: #000;
 font-size: 40px;
 letter-spacing: 1px;
 font-weight: 600;
 margin-bottom: 10px
}
.contact_field p{
 color: #000;
 font-size: 13px;
 font-weight: 400;
 letter-spacing: 1px;
 margin-bottom: 35px;
}
.contact_field .form-control{
 border-radius: 0px;
 border: none;
 border-bottom: 1px solid #ccc;
 width:450px;
 margin-top: 20px;
}
.contact_field .form-control:focus{
 box-shadow: none;
 outline: none;
 border-bottom: 2px solid #1325e8;
}
.contact_field .form-control::placeholder{
 font-size: 13px;
 letter-spacing: 1px;
}

.contact_info_sec {
 position: absolute;
 font-size: 13px;
 background: linear-gradient(to top right, #000000d2 -5%, #000000e0 80%);
 right: 0.2px;
 top: 18%;
 height: 340px;
 width: 410px;
 padding: 50px;
 border-radius: 25px 0 0 25px;
 color: white;
}
.contact_info_sec h4{
 letter-spacing: 1.5px;
 padding-bottom: 15px;

}
.contact_info_sec i{
  left:20px;
}


.info_single{
 margin: 30px 0px;
}
.info_single i{
 margin-right: 15px;
}
.info_single span{
 font-size: 14px;
 letter-spacing: 1px;
}

button.contact_form_submit {
 background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
 border: none;
 color: #fff;
 padding: 10px 15px;
 width: 200px;
 margin-top: 25px;
 border-radius: 35px;
 cursor: pointer;
 font-size: 14px;
 letter-spacing: 2px;
}

.projects-text{
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 45px;
  font-size: 17px;
  color: rgb(165, 160, 159);
}

/*Cursor*/


.cursor {
  width: 40px;
  height: 40px;
  border: 1.5px solid white;
  border-radius: 50%;
  position: absolute;
  transition-duration: 250ms;
  transition-timing-function: ease-out;
  pointer-events: none;
  opacity: 90%;
}

/*Mohamad Intro*/
@font-face {
  src: url("https://www.axis-praxis.org/fonts/webfonts/MetaVariableDemo-Set.woff2")
    format("woff2");
  font-family: "Meta";
  font-style: normal;
  font-weight: normal;
}
main {
  transition: all 0.5s;
  -webkit-text-stroke: 2px #d6f4f4;
  font-variation-settings: "wght" 900, "ital" 1;
  font-size: 45px;
  text-align: center;
  width: 410px;
  color: transparent;
  font-family: "Meta", sans-serif;
  text-shadow: 3px 3px 0px #07bccc,
    6px 6px 0px #e601c0,
    9px 9px 0px #e9019a,
    12px 12px 0px #f40468,
    15px 15px 8px #482896;
  cursor: pointer;
}

main:hover {
  font-variation-settings: "wght" 100, "ital" 0;
  text-shadow: none;
}
.intro{
  font-size: 50px;
  font-family: "Meta", sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 30px;
}
