/* 
---------------------------------------------
welcome
--------------------------------------------- 
*/
#welcome {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/home/welcome-bg.png);
    background-repeat: no-repeat;
  /*
  TRY IT ... with or without CENTER CENTER
    background-position: center center; 
  */
    background-size: cover;
    width: 100%;
    height: 105vh;
    margin-top: -10vh;
  }
  
  .welcome-area .header-text {
    position: absolute;
    top: 55%;
    transform: translateY(-60%);
    text-align: left;
    width: 100%;
  }
  
  .welcome-area .header-text .left-text {
    align-self: center;
  }
  
  .welcome-area .header-text h1 {
    font-weight: 400;
    font-size: 32px;
    line-height: 34px;
    letter-spacing: 1.4px;
    margin-bottom: 30px;
    color: #fff;
  }
  
  .welcome-area .header-text p {
    font-weight: 300;
    font-size: 17px;
    color: #fff;
    line-height: 30px;
    letter-spacing: 0.25px;
    margin-bottom: 40px;
    position: relative;
  }
  
  @media (max-width: 991px) {
    .welcome-area .header-text {
      top: 55% !important;
      transform: perspective(1px) translateY(-60%) !important;
    }
    .welcome-area .header-text h1 {
      font-size: 30px;
      line-height: 32px;
      color: #fff;
      margin-bottom: 15px;
    }
    .welcome-area .header-text h1 span {
      color: #fff;
    }
    .welcome-area .header-text p {
      color: #fff;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 820px) {
    .welcome-area .header-text {
      top: 55% !important;
      transform: perspective(1px) translateY(-60%) !important;
    }
    .welcome-area .header-text h1 {
      font-size: 30px;
      line-height: 32px;
      margin-bottom: 15px;
    }
    .welcome-area .header-text p {
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 765px) {
    .welcome-area {
      margin-bottom: 100px;
    }
    .welcome-area .header-text {
      top: 55% !important;
      transform: perspective(1px) translateY(-50%) !important;
      text-align: center;
    }
    .welcome-area .header-text .buttons {
      display: none;
    }
    .welcome-area .header-text h1 {
      font-weight: 600;
      font-size: 24px !important;
      line-height: 30px !important;
      margin-bottom: 20px !important;
    }
    .welcome-area .header-text h1 span {
      color: #fff;
    }
    .welcome-area .header-text p {
      text-align: center;
      color: #fff;
      font-size: 14px;
      line-height: 22px;
      margin-bottom: 40px;
    }
    .welcome-area .header-text img {
      width: 80%;
      margin-top: 20px;
    }
  }
  
  /*
  ---------------------------------------------
  about
  ---------------------------------------------
  */
  
  .home-page-section {
    padding: 80px 0px;
    border-bottom: 1px solid #eee;
  }
  
  @media (max-width: 765px) {
    .home-page-section {
      padding: 40px 0px 40px 0px;
    }
  }
  
  .home-page-section .right-text {
    align-self: center;
  }
  
  .home-page-section .right-text p {
    margin-bottom: 40px;
  }
  
  
  
  .home-page-section h5,
  #about2 h5 {
    font-size: 26px;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 40px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
  }
  
  /* 
  #about2 ul li img {
    display: inline;
    float: left;
  }
  
  #about2 ul li .text {
    margin-left: 80px;
  }
  
  #about2 ul li .text h6 {
    padding-top: 12px;
    font-size: 21px;
    font-weight: 500;
    color: #1e1e1e;
    margin-bottom: 20px;
  } */
  
  /* 
  ---------------------------------------------
  cards-carousel
  --------------------------------------------- 
  */
  
  #home-progress {
    position: relative;
    padding: 120px 0px 90px 0px;
    background: #802727;
    background: -moz-linear-gradient(
      -45deg,
      #4E1313 0%,
      #954848 0%,
      #4E1313 100%
    );
    background: -webkit-gradient(
      left top,
      right bottom,
      color-stop(0%, #4E1313),
      color-stop(0%, #954848),
      color-stop(100%, #4E1313)
    );
    background: -webkit-linear-gradient(
      -45deg,
      #4E1313 0%,
      #954848 0%,
      #4E1313 100%
    );
    background: -o-linear-gradient(
      -45deg,
      #4E1313 0%,
      #954848 0%,
      #4E1313 100%
    );
    background: -ms-linear-gradient(
      -45deg,
      #4E1313 0%,
      #954848 0%,
      #4E1313 100%
    );
    background: linear-gradient(
      135deg,
      #4E1313 0%,
      #954848 0%,
      #4E1313 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0088e8', endColorstr='#0088e8', GradientType=1 );
  }
  
  
  #home-team .card-text{
    font-weight: 400;
    font-size: 13px;
    color: #777;
    line-height: 20px;
    position: relative;
    z-index: 2;
  }
  
  
  .progress-card-footer.card-footer.active{
    background-color:#fff;
    border: none;
    color: #954848;
    padding-bottom: 20px;
    padding-top: 20px;
    margin-top: 20px
  }
  
  .progress-card-footer.card-footer.inactive{
    background-color:#fff;
    border: none;
    padding-bottom: 20px;
    padding-top: 20px;
    margin-top: 20px
  }
  
  .progress-card-footer.card-footer.active:hover{
    font-weight: bold;
    background-color: #edededd7;
    cursor: pointer;
  }
  
  