ROOTPLOIT
Server: LiteSpeed
System: Linux in-mum-web1878.main-hosting.eu 5.14.0-570.21.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 11 07:22:35 EDT 2025 x86_64
User: u435929562 (435929562)
PHP: 7.4.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //home/u435929562/domains/butanking.com/public_html/public/scss/teams/team-02.scss
@import "../variables";
@import "../mixin";

/*===========================
  teams css 
===========================*/
.team-area {
  margin-bottom: 70px;
}

.team-style-two {
  position: relative;
  margin-top: 30px;

  & .team-image {
    border-radius: 8px;
    overflow: hidden;

    & img {
      width: 100%;
      @include transition(0.3s);
    }
  }

  &:hover {
    .team-image {
      img {
        @include transform(scale(1.1));
      }
    }
  }

  & .team-content {
    padding: 16px;
    box-shadow: var(--shadow-2);
    border-radius: 8px;
    position: absolute;
    left: 50%;
    width: 90%;
    bottom: 20px;
    background-color: var(--primary);
    @include transition(0.3s);
    @include transform(translateX(-50%));

    &:hover {
      background-position: right center;
    }

    & .name {
      font-size: 22px;
      font-weight: 600;
      line-height: 30px;
      color: var(--white);
      @include transition(0.3s);

      @media #{$lg} {
        font-size: 20px;
      }
    }

    & .sub-title {
      font-size: 16px;
      line-height: 24px;
      color: var(--white);
      opacity: 0.7;
      margin-top: 5px;
      display: block;
    }

    & .social {
      margin-top: 12px;

      & li {
        display: inline-block;
        margin: 0 8px;

        & a {
          font-size: 20px;
          color: var(--white);
          @include transition(0.4s);

          &:hover {
            opacity: 0.7;
          }
        }
      }
    }
  }
}