main .h-main {
  width: 100%;
  height: 100vh;
  background-color: #262626;
  position: relative;
  display: flex;
  flex-direction: column;
}

.main-text {
  width: 60%;
  position: absolute;
  top: 250px;
  left: 250px;
  text-align: left;
  line-height: 70px;
}

.main-text h3 {
  font-size: 15px;
  font-weight: 100;
  color: #fff;
  line-height: 22px;

}

.main-text h1 {
  font-size: 66px;
  font-weight: 900;
  color: #57b0e3;

}

.main-text h2 {
  font-size: 66px;
  font-weight: 700;
  color: #fff;

}

.main-text .para {
  font-size: 17px;
  color: #fff;
  font-weight: 100;
  justify-content: flex-start;
  line-height: 24px;
  margin-top: 10px;
}

.main-text a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  background-color: #262626;
  border: 3px solid #fff;
  padding: 8px 25px;
  color: #fff;
  border-radius: 5px;
  transition: all 0.5s;
}

.main-text a:hover {
  background-color: ;
  border: 3px solid #57b0e3;
  color: #57b0e3;
  border-radius: 13px;
  transition: all 0.5s;
}

.main-text .line {
  color: #57b0e3;
  font-size: 17px;
}

.main-text a .line:hover {
  color: #fff;
}

/* Social Icons Left Side */

.social-icons {
  position: absolute;
  position: fixed;
  z-index: 999;
  top: 40%;
  left: 0;
  display: flex;
  flex-direction: column;
}

.social-icons i {
  font-size: 30px;
  padding: 8px 4px;
  text-align: center;
  cursor: pointer;
  color: #57b0e3;
  background-color: #262626;
  /* border: 0.5px solid #fff; */
  transition: all 0.5s;
}

.social-icons i:hover {
  width: 100px;
  color: #fff;
  background-color: #57b0e3;
  border: 1px solid #57b0e3;
  border-top-right-radius: 25px;
  transition: all 0.5s;
}