:root {
    --bg-color: #3399ff;
}
a{
    color:#fff;
}
:not([type=text]):not([type=number]):not([type=email]):not([type=tel]):not([type=search]):not([type=password]):not(textarea):not(.as) {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
html{
    font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size:16px;
    color:#fff;
    background: var(--bg-color);
}
body{
    margin:0;
}
img{
    width:100%;
    height:auto;
    border-radius:4px;
}
.main-wrap{
    max-width:700px;
    margin:0 auto;
}
.main-wrap > .inner{
    margin:25px;
    text-align: justify;
    margin-top:45px;
}
.head-img{
    margin-bottom:25px;
}
#header{
    background-color:#0000c4;
}
#header .inner{
   margin:0 auto;
   max-width:fit-content;
   overflow: hidden;
   min-height:60px;
   padding:15px 10px;
}
.img-dl{
    max-width:62px;
    float:left;
    margin-right:10px;
    margin-top:3px;
}
.dl-lnk{
    color:#fff;
    text-decoration: none;
    text-align: left;
    font-size:18px;
}
.txt-lnk{
    float:left;
    max-width: calc(100% - 72px);
}
.logo{
    max-width:200px;
    margin:45px auto;
    display:block;
    margin-bottom: 30px;
}
.lnks{
    text-align:justify;
    display:none;
    overflow-y: auto;
}
.lnks a{
    display:block;
    margin:25px 0;
    color: var(--bg-color);;
    font-size:16px;
}
.lnks h2{
    margin-top:0;
    color:#222;
}
.lnks{
    position:fixed;
    bottom:0;
    max-width:500px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background:#fff;
    -webkit-box-shadow: 0px -10px 25px -10px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px -10px 25px -10px rgba(0, 0, 0, 1);
    box-shadow: 0px -10px 25px -10px rgba(0, 0, 0, 1);
    border-radius: 4px 4px 0 0;
    padding:25px;
    height:100%;
    max-height:70%;
    z-index: 10;
}
.lnks ul{
    color:var(--bg-color);
    padding-left:10px;
}
.overlay{
    position:fixed;
    width:100%;
    height:100%;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background:rgba(0,0,0,.5);
    display:none;
    z-index:2;
    cursor:pointer;
    animation: fadeIn 0.6s forwards;
}
.lnks > .inner{
    position:relative;
}
.cls{
    cursor:pointer;
    position:absolute;
    top:0;
    right:0;
}
.cls img{
    width:16px;
    margin-top:4px;
}
.cont{
    position: relative;
    margin: 30px auto;
    width: 150px;
    border: 2px solid #9fccff;
    height: 30px;
    border-radius:4px;
  }
  .bits{
    display: block;
    position: absolute;
    float: left;
    width: 100%;
    height: 0;
    cursor: pointer;
    left: 0px;
    z-index: 1;
    border-radius: 4px;
  }
  .bits:hover{
    border-bottom: 30px solid #9fccff;
    color: var(--bg-color);
    border-radius:0;
  }
  .bits span{
    position: relative;
    float: left;
    top: 7px;
    width: 100%;
    height:auto;
    text-align: center;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
  }
  .bits:hover span{
    color: #3399ff;
  }
  .bits:nth-child(2) span{
     top: -24px;
  
  }


.ripple-background{
    position:fixed;
    bottom:0;
    right:0;
    z-index:-1;
}
.circle{
    position: absolute;
    border-radius: 50%;
    background: white;
    animation: ripple 15s infinite ease-out;
    box-shadow: 0px 0px 1px 0px #508fb9;
  }
  
  .small{
    width: 100px;
    height: 100px;
    left: -50px;
    bottom: -50px;
  }
  
  .medium{
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: -100px;
  }
  
  .large{
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: -150px;
  }
  
  .shade1{
    opacity: 0.1;
  }
  .shade2{
    opacity: 0.2;
  }
  
  .shade3{
    opacity: 0.3;
  }
  
  @keyframes ripple{
    0%{
      transform: scale(0.8);
    }
    
    50%{
      transform: scale(1.2);
    }
    
    100%{
      transform: scale(0.8);
    }
  }

  @keyframes fadeIn {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}