*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  height:100vh;
  overflow:hidden;
}

/* PARTICLES CANVAS */
#particles-js{
  position:absolute;
  width:100%;
  height:100%;
  z-index:0;
}

/* LAYOUT */
.layout{
  display:flex;
  height:100vh;
  position:relative;
  overflow:hidden;
}

/* LEFT SIDEBAR */
.sidebar{
  width:300px;
  min-width:220px;
  background:#f6f3ef;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:50px 40px;
}

.logo{
  width: 220px;
}

/* SOCIALS */
.socials{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.socials a{
  text-decoration:none;
  color:#333;
  font-size:14px;
  letter-spacing:2px;
  transition: all 0.3s ease;
}

.socials a:hover{
  color:#ff6764;
}

.line{
  width:25px;
  height:1px;
  background:#dcdcdc;
}

/* RIGHT SIDE */
.main{
  position:relative;
  width:calc(100% - 300px);
  background-image:url('mresidence.jpg');
  background-repeat: no-repeat;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* DARK OVERLAY */
.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  z-index:1;
}

/* CONTENT */
.content{
  position:relative;
  z-index:2;
  margin-left: 12N0px;
  max-width:720px;
  color:white;
  opacity:0;
  animation: fadeInText 1.5s forwards;
}

@keyframes fadeInText{
  to {opacity:1;}
}

h1{
  font-size:48px;
  margin-bottom:20px;
}

.subtitle{
  font-size:20px;
  margin-bottom:20px;
  color:#d0d0d0;
}

.description{
  line-height:1.6;
  margin-bottom:40px;
  color:#cfcfcf;
}

.contact{
  line-height:1.8;
}

.footer{
  display: block;
  margin-top: 45px;
  color: #ff6764;
}

/* BUSINESS IMAGE */
.business-img{
  position:absolute;
  right:60px;
  bottom:0;
  height:80%;
  z-index:2;
}

/* RESPONSIVE MOBILE */
@media (max-width: 992px){
  .layout{
    flex-direction:column;
  }
  .sidebar{
    width:100%;
    min-width:unset;
    flex-direction:row;
    justify-content:space-between;
    padding:20px 30px;
  }
  .main{
    width:100%;
    padding:30px;
    margin-top:20px;
  }
  .content{
    margin-left:0;
  }
  .business-img{
    display:none;
  }
}