*{
    margin: 0;
    padding: 0;
  }
  .slider{
    overflow: hidden;
    width: 100%;
    height:100vh;
  }
  .slider figure div{
    float: left;
    width: 20%;
  }
  .slider figure img{
    width: 100%;
    height:100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    float: left;
  }
  .slider figure{
    position: relative;
    width: 500%;
    margin: 0;
    animation: animate 20s infinite;
  }
  @keyframes animate
  {
    0%{left: 0%;}
    10%{left: 0%;}
    12%{left: -100%;}
    22%{left: -100%;}
    24%{left: -200%;}
    34%{left: -200%;}
    36%{left: -300%;}
    46%{left: -300%;}
    48%{left: -400%;}
    58%{left: -400%;}
    60%{left: -300%;}
    70%{left: -300%;}
    72%{left: -200%;}
    82%{left: -200%;}
    84%{left: -100%;}
    94%{left: -100%;}
    96%{left: 0%;}
  }
  .logo{
    width: 100%;
    height: 64px;
    background-color: white;
    text-align: center;
  }
  .logo img{
    width: 185px;
  }
  .box{
    width: 285px;
    height: 500px;
    background-color: #ffffffdb;
    border-radius: 10px;
    padding: 20px 20px;
    margin-top: 30px;
  }
  @media (max-width:500px){
    .box{
        margin-top:0;
    }
  }
  .pic-back{
    width: 120px;
    height: 120px;
    background: none;
    margin-left: 65px;
    border-radius: 60px;
    border: 1px solid #fca311;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pic{
    width: 100px;
    height: 100px;
    background-image: url(../img/boss1new.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
  }
  .menu{
    text-align: center;
    margin-top: 20px;
  }
  .menu ul li{
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #80808057;
    margin-bottom: 10px;
    padding: 15px;
  }
  .menu ul li a{
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size:15px ;
  }
  .menu ul li a:hover{
    color: #fca311;
  }
  .name{
    text-align: center;
    margin-top: 15px;
  }
  .ic{
    display: flex;
    justify-content: end;
    align-items: end;
  }
  @media (max-width:500px){
    .ic{
        justify-content: left;
    }
  }
  .icon{
    margin-bottom:-9px;
    display: flex;
    margin-left: 30px;
  }
  .icon1{
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 60px;
    margin:10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .icon1:hover{
    width: 275px;
  }
  .icon2 i{
    font-size: 45px;
    color: #1877f2;
  }
  .icon2 p{
    display: none;
    font-size: 17px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    transition: .5s ease;
  }
  .icon1:hover .icon2 p{
    display: block;
  }
  .icon1:hover .icon2 i{
    display: none;
  }
  
  @media (max-width:550px) {
    .icon{
        display: block;
    }
  }