

.hero{
    height: 60vh ;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url(../img/b3.jpg);
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 80px;
}
.brand{

    color: white;
   	

    font-family: 'Noto Sans Arabic', sans-serif;

    font-size: 70px;
    max-width: 800px;
    text-align: center;
    margin: 0;
    padding: 0;
text-transform: capitalize;
font-weight: 900;
line-height: 1.2;
}
.title{
    color: white;
    font-size: 22px;
    text-transform: capitalize;
    text-align: center;
}
@media (max-width: 767px) {
    .hero{
        height: 80vh;
    }
 .brand{
    font-size: 48px;
 }
}

/* COVER */
.button-cover {
    position: relative;
    overflow: hidden;
  border: none;
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    line-height: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    background: #4056ff;
    border-radius: 5px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    padding: 20px 25px;
  
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-top: 10px;
  }
  @media (max-width: 767px) {
    .button-cover {
        display: none;
    }
  }

  .button-cover span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
  }

  .button-cover span:last-child {
    color: white;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 13px;
    width: 100%;
  }

  .button-cover:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0914ea;
    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
    transition: 0.6s;
  }

  .button-cover:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
    background-color: #0914ea;
  }

  .button-cover:hover span:last-child {
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
  }
