html,body{
  background-color: rgba(32,36,45,255);
  margin: 0;
  font-family: Montserrat , sans-serif;
  padding-top: 30px;
  overflow-x: hidden;
}

*{
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  /* border: 1px solid red; */
}

header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Montserrat, sans-serif;
  padding: 6px 50px;
  z-index: 1;
  position:fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color:rgba(32,36,45,255) ;
}

nav{
  overflow: hidden;
}


h1{
  margin: 0;
  font-size: 24px;
  color: white;
  padding: 10px 0px;
  cursor: pointer;
}

h1>span{
  font-size: 10px;
  color:white;
}

.nav-links>li{
  width: 80px;
  float: left;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: white;
  padding: 8px 16px;
  white-space: nowrap;
}

.nav-links a:hover{
  color: #39FF14;
  font-size: 12px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.div-nav-sidebar{
  display: none;
}

.div-nav-sidebar img{
  height: 25px;
}
.home-page-wrapper{
  display: flex;
  justify-content: space-around;
  margin: 100px 80px;
}

@keyframes popup{
  0%{transform: translateY(-10px);}
  25%{transform: translateY(0px);}
  50%{transform: translateY(10px);}
  75%{transform: translateY(0px);}
  100%{transform: translateY(-10px);}
}

.say-hello{
  box-sizing: border-box;
  height: 300px;
  width: 450px;
  border-radius: 10px;
  background-image: linear-gradient(to right,#292d3e , transparent);
  border-left: 2px solid white ;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(212, 211, 211, 0.2);
  transition: transform 1s ease, box-shadow 0.3s ease;
  animation: popup 4s linear 1s infinite;
  color: white;
  padding: 50px;
  font-weight: 400;
  font-size: 16px;
}

.title-1{
  margin: -30px 0px 35px -65px;
  font-size: 20px;
  font-weight: 550;
  color: rgb(255, 255, 255);
}

.title-1 span,.title-6 span,.title-2 span , .title-3 span,.title-5 span,.title-4 span{
  color: #37ff14;
  font-size: 30px;
  font-weight: bold;
}

.intro h2{
  color: white;
  font-size: 30px;
  margin-bottom: 14px;
}

.whoiam{
  color: rgb(198, 195, 195);
  font-weight: 600;
  margin-bottom: 30px;
}

.whoiam span{
  color: #39FF14;
  font-size: 18px;
  font-weight: 700;
}
.job::after{
  content:'';
  background-image: url('../images/insert.png');
  display: inline-block;
  height: 14px;
  width: 2px;
  margin-left: 5px;
  margin-bottom: -3px;
  border: 2px solid rgb(194, 194, 194);
  background-color: rgb(156, 156, 156);
  animation: blink 1s linear infinite ;
}

@keyframes blink{
  0%{opacity: 1;}
  25%{opacity: 0.5;}
  50%{opacity: 0; }
  100%{opacity: 0.5;}

}
.quote{
  color: rgba(255, 255, 255, 0.772);
  font-size: 15px;
  font-style: italic;
  padding: 4px 12px;
  background-color: #00000080;
  border-radius: 2px 10px;
  line-height: 30px;
}

.social-icons{
  overflow: hidden;
  padding: 0;
}

.social-icons>li{
  display: inline-block;
  width: 70px;
}

.social-icons li a img{
  height: 24px;
  padding: 8px;
  border-radius: 30px;
  box-sizing: content-box;
  border: 2px solid white;
  margin: 10px 8px;
  cursor: pointer;
}

.social-icons li a img:hover{
  background-color: #39FF14;
  border: none;
  padding: 10px;
  transition: all 0.3s ease 0s;
}


.btn-div{
  height: 50px;
}
.btn-hm{
  padding: 9px 25px;
  background-color:#39FF14 ;
  color: black;
  font-weight: bold;
  border: none;
  border-radius:3px 12px;
  cursor: pointer;
  opacity: 0.8;
}

.btn-cm{
  border: 1px solid #39FF14;
  border-radius: 12px 3px;
  background-color: transparent;
  color: white;
   padding: 8px 16px;
   cursor: pointer;
   margin-right: 10px;
   font-weight: bold;
}



.btn-cm:hover{
  background-color:#39FF14 ;
  color: black;
  padding: 10px 20px;
  font-size: 15px;
  opacity: 1;
  transition: all 0.2s ease 0s;
}

.btn-hm:hover{
  padding: 10px 30px;
  font-size: 15px;
  opacity: 1;
  transition: all 0.2s ease 0s;
  border: 1px solid #39FF14;
  background-color: transparent;
  color: white
}


