@import url("fo.css");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "PingFang SC",Arial,"Microsoft YaHei",sans-serif;
    line-height: 1.5;
}

h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    font-weight: 200;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}
.showcase {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: blanchedalmond url(../images/cover.jpg) no-repeat center center/cover;
    z-index: -1;
    overflow: hidden;
}

.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color:rgba(0, 0, 0, 0.6); */
    background-image: linear-gradient( 0deg , rgba(0, 0, 0, 0.6), transparent);
}


.video-container video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.btn {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px ;
    border: 1px solid #fff;
    margin-top: 20px;
    border-radius: 5px;
    letter-spacing: 2px;
    transition: .2s;
}

.btn:hover {
    transform: scale(.9);
    backdrop-filter: blur(5px);
}

#about {
    text-align: center;
    padding: 40px;
}

#about h2 {
    margin: 20px 0;
}

#about a  {
    margin: 0 5px;
    color: #3a4052;
}


.ih-item.circle.effect {
    margin: 0 auto;
    -webkit-perspective: 900px;
    -moz-perspective: 900px;
    perspective: 900px;
  }
  .ih-item.circle.effect .img {
    z-index: 11;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  .ih-item.circle.effect .info {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  
  .ih-item.circle.effect .info .info-back {
    opacity: 1;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: #333333;
  }
  
  .ih-item.circle.effect .info h2 {
    color: #fff;    
    position: relative;
    font-size: 18px;
    margin: 0 auto;
    padding-top: 40px;
    height: 35px;
    text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .ih-item.circle.effect .info p {
    color: #bbb;
    padding: 0px 0px 0px 0px;
    font-style: italic;
    padding-left: 0px;
    font-size: 10px;
  }
  
  .ih-item.circle.effect.bottom_to_top .img {
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    transform-origin: 50% 0;
  }
  
  .ih-item.circle.effect.bottom_to_top a:hover .img {
    -webkit-transform: rotate3d(1, 0, 0, 180deg);
    -moz-transform: rotate3d(1, 0, 0, 180deg);
    -ms-transform: rotate3d(1, 0, 0, 180deg);
    -o-transform: rotate3d(1, 0, 0, 180deg);
    transform: rotate3d(1, 0, 0, 180deg);
  }
  
  .ih-item.circle.effect.top_to_bottom .img {
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
  
  .ih-item.circle.effect.top_to_bottom a:hover .img {
    -webkit-transform: rotate3d(1, 0, 0, -180deg);
    -moz-transform: rotate3d(1, 0, 0, -180deg);
    -ms-transform: rotate3d(1, 0, 0, -180deg);
    -o-transform: rotate3d(1, 0, 0, -180deg);
    transform: rotate3d(1, 0, 0, -180deg);
  }
  
  .ih-item.circle.effect.left_to_right .img {
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
  }
  
  .ih-item.circle.effect.left_to_right a:hover .img {
    -webkit-transform: rotate3d(0, 1, 0, 180deg);
    -moz-transform: rotate3d(0, 1, 0, 180deg);
    -ms-transform: rotate3d(0, 1, 0, 180deg);
    -o-transform: rotate3d(0, 1, 0, 180deg);
    transform: rotate3d(0, 1, 0, 180deg);
  }
  
  .ih-item.circle.effect.right_to_left .img {
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }
  
  .ih-item.circle.effect.right_to_left a:hover .img {
    -webkit-transform: rotate3d(0, 1, 0, -180deg);
    -moz-transform: rotate3d(0, 1, 0, -180deg);
    -ms-transform: rotate3d(0, 1, 0, -180deg);
    -o-transform: rotate3d(0, 1, 0, -180deg);
    transform: rotate3d(0, 1, 0, -180deg);
  }
  
  .ih-item a {
    color: #333;
  }
  
  .ih-item a:hover {
    text-decoration: none;
  }
  
  .ih-item img {
    width: 100%;
    height: 100%;
  }
  
  .ih-item.circle {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }
  
  .ih-item.circle .img {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }
  .ih-item.circle .img:before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  
  .ih-item.circle .img img {
    border-radius: 50%;
  }
  
  .ih-item.circle .info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  @media all and (max-width: 780px) {
    .ih-item.circle .img {
        position: relative;
        width: 100px;
        height: 100px;
        /*margin-top: 20px;*/
        border-radius: 50%;
    }
    .ih-item.circle {
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }
    .ih-item.circle .info .info-back h2{
      font-size: 0.9em;
    }
    .panel-title {
      margin-bottom: 0.1em !important;
      font-size: 2em !important;
    }
    .panel-subtitle {
      font-size: 1em !important;
    }
  }
  .profilepic {
    text-align: center;
    display: block;
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5), 0px 2px 20px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5), 0px 2px 20px 3px rgba(0, 0, 0, 0.25);
    border-radius: 300px;
    width: 128px;
    height: 128px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #88acdb;
    transition: all 0.2s ease-in;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    text-align: center;
  }