.home{
    position: relative;
    display: flex;
    height: 100vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: rgb(189, 189, 189);
    min-height: 500px;
    border-bottom: 1px solid rgba(188, 175, 69,0.3);
}

.home .max-width{
    margin:auto 0 auto 40px;
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home .home-content .text-1{
    font-size: 25px;
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600px;
    margin-left: -3px;
}

.home .home-content .text-3{
    font-size: 25px;
    margin: 5px 0;
}

.home .home-content .text-3 #designer{
    color:rgb(188, 175, 69);
    font-weight: 500px;
}

.home .home-content a{
width: 50%;
}

.home-social {
    list-style: none;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    position: absolute;
    top: 10rem;
    right: 6rem;
  }
  
  .home-social a {
    color: #FFFFFF;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  .home-social li {
    position: relative;
    padding: .6rem 0;
  }
  
  .home-social li a {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  
  .home-social i,
  .home-social span {
    position: absolute;
    top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  .home-social i {
    display: inline-block;
    font-size: 20px;
    text-align: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    right: 0;
  }
  
  .home-social span {
    background-color: #151515;
    font-size: 10px;
    line-height: 30px;
    color: rgb(188, 175, 69);
    right: 50px;
    padding: 0 15px;
    margin: 3px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
  }
  
  .home-social span::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #151515;
    position: absolute;
    top: 50%;
    right: -6px;
    margin-top: -6px;
  }
  
.home-social li:hover span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }