* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.welcome-area {
    position: relative;
    display: flex;
    align-items: center;
    height: auto;
    padding: 75px 0 40px;
}

.welcome-area:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
}

.welcome-area .container {
    position: relative;
    z-index: 10;
}

.bg5 {
    background: #fff;
    background-position: center center;
    background-size: cover;
}

.title.title2 h1 {
    font-weight: 600;
    color: #ffffff;
    font-size: 50px;
    line-height: 65px;
    margin-bottom: 10px;
}

.title p {
    font-size: 20px;
    line-height: 34px;
    color: #fff;
}

.theme-btn-2 {
    background: #000000;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    align-items: center;
    color: #ffffff;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    transform: translateY(0);
}

.theme-btn-2:nth-child(2) {
    margin-left: 15px;
}

.theme-btn-2:hover {
    color: #ffffff;
    background: #000000;
    transition: all 0.3s;
    transform: translateY(-3px);
}

@media screen and (max-width: 991px) {
    .welcome-area {
      height: auto;
      padding: 80px 0 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .title.title2 h1{
      font-size: 32px;
      line-height: 50px;
    }
    .title.title2 p {
      font-size: 18px;
    }
  }

@media screen and (max-width: 767px) {
    .title.title2 {
      text-align: center;
    }
    .title.title2 h1 {
      font-size: 32px;
      line-height: 46px;
    }
  }