@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;  
    background-color:#edf2fc;  
  
}
.hero{
    width: 100%;
    height: 100vh;
    background: #edf2fc;
    font-family: 'Poppins', sans-serif;
    position: relative;
    
}
nav{
    width: 84%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    text-decoration: none;
    color: #606163;
}
nav ul li a:hover, a.active{
    color: #ff4321;
}
.btn{
    background: #ff4321;
    border-radius: 5px;
    padding: 10px 18px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}
.btn:hover{
    background: transparent;
    color: #ff4321;
    border: 1px solid #ff4321;
}
.info{
    background-color:#edf2fc;
    margin-left: 8%;
    margin-top: 10%;
}
.info h1{
    font-size: 40px;
    color: #444242;
}
.info h1 span{
   color: #ff4321;
}
.info p{
    color: #606163;
    line-height: 30px;
   font-size: 16px;
   
}
.img-box{
    width: 45%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 100px;
    background-color:#edf2fc;
}
.img-box img{
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s;
    background-color: transparent;
}
.img-box:hover .back-img{
    bottom: 40px;
}
.img-box:hover .man-img{
    left: 54%;
}
.social{
    
    margin-left: 8%;
    margin-top: 50px;
}
.social a{
    font-size: 28px;
    color: #606163;
    margin-right: 20px;
}
.social a:hover{
    color: #ff4321;
}
.logo1{
    font-size: 25px;
    color: rgb(82, 4, 4);
    text-decoration: none;
    font-weight: 600;

}
.pro{
    color:rgb(228, 148, 51);
    text-decoration:underline;

}
.pro:hover{
    color: rgb(162, 255, 0);
}
.edd{
    margin: auto;
  }
  .code-img{
    width: 11%;
    float:left;
    margin-right:30px;
  
}
.food-img{
    width: 15%;
    float:left;
}
.code-skill-description
{
    font-size: large;
    margin:auto;
}
.code-img1{
    width: 15%;
    float:left;
    margin:auto;
  
}
.logo{
    margin: 10px 20px 10px 20px;
    width:5%;
    margin-left: auto;
    background-color:#edf2fc;
  }
  .copyright{
    color:#606163;
    margin-left: 90px;
    font-size:0.8rem;
    font-family: 'Montserrat', sans-serif;    
    padding:20px 5px;
    background-color:#edf2fc;
}
.get
{
    margin-left: 670px;
    font-family: 'Montserrat', sans-serif;
    font-size:3rem;
    color:#606163;
    font-weight: normal;
    padding-bottom:10px;
    background-color:#edf2fc;
}
.social1
{
    background-color:#edf2fc;
    margin-left: 45%;
    margin-top: 50px;
}
.hey
{
    background-color:#edf2fc;
}

@media screen and (max-width: 1024px) {
    .img-box {
      width: 40%;
      right: 50px;
    }
    
    .info {
      margin-top: 5%;
    }
  }
  
  @media screen and (max-width: 768px) {
  
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: auto;
      padding-bottom: 30px;
    }
  
    nav {
      width: 100%;
      padding: 20px;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
    }

    nav ul {
      display: flex;
      flex-direction: row;
      align-items: center;
      margin: 0;
      padding: 0;
    }
  
    .info {
      order: 1;
      text-align: center;
      margin: 30px 0;
      padding: 0 20px;
    }

    
  
    .social {
      order: 2;
      display: flex;
      justify-content: center;
      margin: 20px 0;
      width: 100%;
    }
  
    .social a {
      font-size: 32px;
      margin: 0 15px;
    }
  
    .img-box {
        order: 3;
        width: 100%;
        height: auto;
        position: static;
        margin-top: 20px;
        text-align: center;
      }
  
    .img-box img {
      position: static;
      transform: none;
      max-width: 80%;
      height: auto;
      display: inline-block;
    }
  
    .img-box .back-img,
    .img-box .man-img {
      display: none;
    }

    .mobile-img {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 20px auto;
      }

    .back-img, .man-img {
        display: none;
    }
  }

  @media screen and (max-width: 480px) {
    .info h1 {
      font-size: 30px;
    }
    
    .info p {
      font-size: 14px;
    }
    
    .social a {
      font-size: 22px;
      margin-right: 10px;
    }
  }