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-01.scss
@import "../variables";
@import "../mixin";

/*===========================
  teams css 
===========================*/

.team-style-one {
  position: relative;
  margin-top: 30px;
  box-shadow: var(--shadow-2);
  border-radius: 8px;
  overflow: hidden;
  @include transition(0.4s);

  &:hover {
    box-shadow: var(--shadow-4);
  }

  & .team-image {
    & img {
      width: 100%;
    }
  }

  & .team-content {
    padding: 20px 15px;
    width: 100%;
    background-color: var(--white);

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

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

    & .sub-title {
      font-size: 15px;
      line-height: 24px;
      color: var(--dark-3);
      margin-top: 2px;
      display: block;
    }

    & .social {
      margin-top: 12px;

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

        & a {
          font-size: 16px;
          color: var(--gray-1);
          height: 35px;
          width: 35px;
          text-align: center;
          line-height: 35px;
          border: 1px solid var(--gray-4);
          border-radius: 50%;
          @include transition(0.4s);

          &:hover {
            background-color: var(--primary);
            color: var(--white);
            border-color: transparent;
          }
        }
      }
    }
  }
}