_header.scss 1.05 KB

  
  .hero-container {
    background-position: top right;
    background-size: cover;
    width: 100%;
    background-color: #ccc;
    height: 530px;
  
  }
  
  .header-section,
  .full-image,
  .image-loaded {
    height: 530px;
    background-position: center;
    background-size: cover;
    width: 100%;
    position: relative;
  }
  .full-image::after {
    content: "";
    display: block;
    position: absolute;
    background-size: cover;
    background-position: top right;
    bottom: -20px;
    right: 0px;
    width: 100%;
    height: 120px;
    background-image: url("../images/logo-border.png");
  }
  
  .hero-content {
    width: 60%;
    height: 530px;
    //margin-left: 48px;
    @media only screen and (max-width: 900px) {
      width: 95%;
      margin: auto;
    }
    h1 {
      color: #fff;
      font-size: 39px;
      font-weight: bold;
    }
    .first-name{
      color: #fff;
      font-size: 39px;
      font-weight: bold;
    }
    p {
      color: #fff;
      font-size: 20px;
      line-height: 28px;
      margin-bottom: 25px;
    }
   
  }