body{
  margin: 0;
}
:root{
  --primary-color: #04aa6d;
}    
*{
    font-family: 'Source Sans Pro', sans-serif;

  }

  .btn{
    outline: none;
    padding: 7px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    transition: transform .3s ease, box-shadow .3s ease;
    border: none;
  }
  .btn a{
    text-decoration: none;
  }
  .btn:hover{
    box-shadow: 0px 2px 11px 0px rgb(29 29 29 / 65%);
    transform: translateY(-2px);
  }
  .btn-primary{
    color: white;
    background: var(--primary-color);
  }


.first_div{
  background-color: #282a35;
  font-family: 'Source Sans Pro', sans-serif;
  
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
}
.first_div h1,.first_div h3{
color: beige;

}
.first_div a{
  color:white ;
  margin:20px 0 5px 0;
}
.first_div h1{
  font-size: 70px;
  margin-bottom:0;
}
.first_div h3{
  font-size: 40px;
  margin-top: 5px;
}
.search_bar{
  margin-top: 20px;
 display: flex;
max-width: 500px;
width: 100%;
background-color: blue;
  border-radius: 55px;
}
.search_bar input{
  padding: 10px 15px;
  border: none;
  border-radius: 50px;
  border-top-right-radius:0;
  border-bottom-right-radius:0;
  width: 100%;
}
.search_bar button{
  padding: 10px 15px;
  background-color: #04aa6d;
  border: none;
  color: aliceblue;
  border-radius: 50px;
  border-top-left-radius:0;
  border-bottom-left-radius:0;
 margin-left: -3px;
}

.second_div{
  background-color:#d9eee1 ;
  padding-top: 40px;
}
.second_div_inner{
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  /* background-color: aqua; */
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 576px) {
  .second_div_inner{
    flex-direction: column;
  }
  .first_div h1{
    font-size: 40px;
  }
  .first_div h3{
    font-size: 30px;
  }
}

.second_div_inner h1{
  font-size: 100px;
}

.second_left_div{
  width: 100%;
  

  /* width: 509px; */
  display: flex;
  flex-direction: column;
  
}
.second_right_div{
  box-sizing: border-box;
  width: 100%;
  margin: 40px 0px;
  box-shadow: 1px 1px 20px -2px gray; 
  padding: 10px;
  background-color: rgb(223, 223, 223);
 
}

.second_left_div button{
  width: 200px;
  border: none;background-color: green;
  padding: 10px 10px;
  font-size: 18px;
  color: white;
  border-radius: 100px;
  margin: 10px auto;
  
}

.container-1000{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}
  .nav_div{
    background-color:rgb(204, 204, 204);
    width: 100%;
    position:fixed;
    top: 0;
    padding: 8px 0px;
    
    justify-content: space-between;
    align-items: center;
  }
  .logo{
    display: flex;
    align-items: center;
  }
  .logo img{
    border-radius: 100%;
    width: 50px;
  }
  .logo_link{
    margin-left: 30px;
  }
  .logo_link a:hover{
    background-color: var(--primary-color);
    color: white;
  }

  .logo_link a{
    margin-right: 20px;
    text-decoration:none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 25px 10px;
  }


  .menu-btn{
    display: none;
  }
  
  @media (max-width: 800px){
    .logo_link{
      display: none;
    }
    .menu-btn{
      display: block;
    }
  } 

 

