@import "header.css";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html{

    font-size: 16px;

}

*{

    font-family:"Poppins","PingFang SC", "Calibri", "opensans", "GothicArial", "Arial", "Microsoft YaHei", "San Francisco", 'Hiragino Sans GB', "Helvetica Neue", Helvetica, sans-serif;

}

/*::-webkit-scrollbar{width:0;}*/

body,ul,li,p,a,*{

    margin: 0;

    padding: 0;

    list-style: none;

}

/*::-webkit-scrollbar{width:0;}*/

a{

    text-decoration: none;

    color:inherit;

}

*{

    outline:none;

    -webkit-tap-highlight-color:rgba(0,0,0,0) ;

    box-sizing: border-box;

}

img{

    vertical-align: middle;

    max-width: 100%;

}

.home .fixed_side {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: 1s;
  }
  
  .home .fixed_side.on {
    opacity: 1;
    pointer-events: auto;
  }
  
  .home .fixed_side .item {
    width: 4.8958333333vw;
    height: 4.6875vw;
    background: #B4CFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5208333333vw 0 0 0.5208333333vw;
    cursor: pointer;
  }
  
  .home .fixed_side .item svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
    margin: auto;
    display: block;
  }
  
  .home .fixed_side .item p {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: Poppins;
    font-size: 0.7291666667vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .home .fixed_side .hide {
    position: absolute;
    right: 0;
    top: 100%;
    width: 20.0520833333vw;
    height: 21.6666666667vw;
    border-radius: 1.0416666667vw 0px 0px 1.0416666667vw;
    background: #F4F4F4;
    overflow: hidden;
    display: none;
  }
  
  .home .fixed_side .hide>div {
    margin: 1.5625vw 2.0833333333vw;
  }
  
  .home .fixed_side .hide h1 {
    color: #000;
    font-size: 1.6666666667vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.0333333333vw;
    text-transform: capitalize;
    margin: 0 0 0.7291666667vw;
  }
  
  .home .fixed_side .hide .message .list {
    display: flex;
    align-items: center;
    gap: 0 0.3125vw;
  }
  
  .home .fixed_side .hide .message .list:not(:last-child) {
    margin: 0 0 0.4166666667vw;
  }
  
  .home .fixed_side .hide .message .list p {
    color: #000;
    font-size: 1.0416666667vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875vw;
    /* 180% */
    letter-spacing: 1px;
  }
  
  .home .fixed_side .hide .message .line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 1.4583333333vw 0;
  }
  
  .home .fixed_side .hide .more {
    display: flex;
    width: fit-content;
    padding: 0.4166666667vw 1.5625vw;
    justify-content: center;
    align-items: center;
    gap: 1.0416666667vw;
    border-radius: 4.7395833333vw;
    border: 1px solid #000;
    background: #000;
    transition: all 600ms;
    color: #FFF;
    font-size: 1.0416666667vw;
    margin: 20px 0 0 0;
  }
  
  .home .fixed_side .hide .more p {
    line-height: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .home .fixed_side .hide .more svg {
    width: 0.8333333333vw;
    display: block;
  }
  
  .home .fixed_side .hide .more:hover {
    background: #5E9EFF;
    border-color: #5E9EFF;
  }

  @media screen and (max-width: 1024px) {
    .home .fixed_side {
        display: none;
      }
  }