.title{
  margin-bottom: 2rem;
}

.project_desc{
  border-radius: 20px;
  text-align: center;
  position: absolute;
  margin: 5.5rem;
  padding: 1rem;
  color: #fff;
  width: 450px;
  bottom: 50; 
  right: 50;
}

.project_desc img{
  margin: 1rem;
  width: 350px;
}

@media only screen and (max-width : 430px){
  .project_desc{
    margin: 4rem;
    width: 250px;
  }
  
  .project_desc img{
    margin: 1rem;
    width: 200px;
  }
}

.info{
  align-items: flex-start;
  margin: 6rem auto;
  width: 90%;
}

.image, .text{
  height: 100%;
  width: 50%;
}


.objects{
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  flex-wrap: wrap;
}

.objects .obj{
  justify-content: flex-start;
  width: 100%;
}

.obj img{
  border-radius: 10px;
  height: 60px;
}

@media only screen and (max-width : 1024px){
  .objects_container{
    flex-direction: column;
    width: 90%;
  }

  .objects{
    width: 100%;
  }

  .obj img{
    border-radius: 10px;
    height: 40px;
  }

  .obj .p_icon{
    margin: 1rem;
  }
}

.info .image img{
  height: 500px;
}

@media only screen and (max-width : 430px){
  .info .image img{
    height: 250px;
    margin: 3rem 0;
  }
}

.text{
  flex-direction: column;
  text-align: justify;
  padding: 3rem;
}

.text p{
  margin: 1.5rem;
}

.image img{
  border-radius: 10px;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width : 1024px){
  .info{
    margin: 6rem auto;
    flex-direction: column;
  }

  .info2{
    flex-direction: column-reverse;
  }

  .image, .text{
    height: 100%;
    width: 100%;
  }

  .text{
    text-align: justify;
    padding: 0;
  }

  .text p{
    margin: 3rem auto;
  }
}

.action{
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  margin-left: 1.5rem;
  margin-bottom: 4rem;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  z-index: 99999;
  height: 50px;
  width: 50px;
  bottom: 0;
}

.action:hover{
  cursor: pointer;
}

.action span{
  transition: 0.3s ease-in-out;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #000000;
  font-size: 2rem;
  display: flex;
  height: 100%;
  width: 100%;
}

.action.active span{
  transform: rotate(135deg);
}

.action img{
  margin: 1rem 0;
  height: 35px;
}

.action ul{
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  position: absolute;
  visibility: hidden;
  min-width: 100px;
  transition: 0.3s;
  padding: 20px;
  bottom: 55px;
  opacity: 0;
}

.action.active ul{
  visibility: visible;
  transition: 0.3s;
  bottom: 65px;
  opacity: 1;
}

.action.active ul li:hover{
  transform: scale(1.05); 
  transition: 0.5s;
}

.action.active ul li:not(:last-child){
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.collage{
  grid-template-columns: auto auto auto;
  height: 90vh;
  width: 100%;
  display: grid;
}

.collage .img1{
  background-position: center;
  background-size: cover;
  grid-row: 1/5;
}

.collage .img2{
  background-position: center;
  background-size: cover;
  grid-row: 1/3;
}

.collage .img3{
  background-position: center;
  background-size: cover;
  grid-row: 1/3;
}

.collage .img4{
  background-position: center;
  background-size: cover;
  grid-row: 1/3;
}

.collage .img5{
  background-position: center;
  background-size: cover;
  grid-row: 3/5;
}

.collage .img6{
  background-position: center;
  background-size: cover;
  grid-row: 3/5;
}

.collage .img7{
  background-position: center;
  background-size:cover;
  grid-row: 3/5;
}

@media only screen and (max-width : 1024px){
  .collage{
    grid-template-columns: auto;
    display: grid;
    height: auto;
  }

  .collage .img1, .collage .img2, .collage .img3, .collage .img4, .collage .img5, .collage .img6 ,.collage .img7{
    height: 300px;
    width: 100%;
    grid-row:auto;
  }
}

.container{
  position: relative;
  background: #fff;
  border-radius: 7px;
  max-width: 500px;
  width: 90%;
}

.container .skill-box{
  margin: 25px 0;
  width: 100%;
}

.skill-box .title{
  font-weight: 600;
  font-size: 14px;
  display: block;
  color: #333;
}

.skill-box .skill-bar{
  background: rgba(0,0,0,0.1);
  border-radius: 6px;
  margin-top: 6px;
  width: 100%;
  height: 8px;
}

.skill-bar .skill-per{
  animation: progress 0.4s ease-in-out forwards;
  border-radius: 6px;
  position: relative;
  display: block;
  height: 100%;
  opacity: 0;
  width: 90%;
}

.skill-per.nodejs{
  animation-delay: 0.3s;
}

@keyframes progress {
  0%{
      width: 0;
      opacity: 1;
  }
  100%{
      opacity: 1;
  }
}

.skill-per .tooltip{
  border-radius: 3px;
  position: absolute;
  font-weight: 500;
  padding: 2px 6px;
  font-size: 20px;
  color: #fff;
  right: -23px;
  top: -45px;
  z-index: 1;
}
.tooltip::before{
  transform: translateX(-50%) rotate(45deg);
  position: absolute;
  bottom: -2px;
  height: 10px;
  width: 10px;
  z-index: -1;
  content: '';
  left: 50%;
}


/* Temp incomplete projects */

@media only screen and (max-width : 1024px){
  .ame{
    margin-top: 6rem;
  }
}

.temp{
  margin: 4rem;
  height: 200px;
}