* { padding: 0; margin: 0; box-sizing: border-box;list-style: none;}
input[type="text"] { all: unset; box-sizing: border-box;}
html, body {
    background-color: #fff;
    color: #1E2128;
    padding: 0;
    margin: 0;
    /* font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif; */
}
body {
    overflow-x: hidden;
}
a, a:visited { color: #fff; text-decoration: none;}

.hidden {
    display: none !important;
}
@font-face{
    font-family:Inter-SemiBold;
    src:url(../fonts/Inter-SemiBold-600.otf)
}
@font-face{
    font-family:Inter-Medium;
    src:url(../fonts/Inter-Medium-500.otf)
}
@font-face{
    font-family:Inter-Regular;
    src:url(../fonts/Inter-Regular-400.otf)
}

.dg-header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px;
    z-index: 10;
    transition: all 1s ease-out .4s;
}
.dg-header h1 {
    text-indent: -9999px;
    width: 200px;
    height: 80px;
    background-image: url(../images-fbh/logo.png);
    background-size: cover;
}

.dg-bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images-fbh/bg1.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 0;
    overflow:hidden;
    transition: all 12s ease;
}
.dg-kv {
    position: absolute;
    width: 845px;
    height: 381px;
    top: calc( 50% - 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../images-fbh/bg1.png) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 22px 72px 20px;
    z-index: 10;
}
.open .dg-kv{
    background: none;
}
.dg-date{
    display: block;
    width: 91px;
    height: 28px;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
    font-family:Inter-Medium;
    text-align: center;
    background: linear-gradient(269.32deg, #B550FF -2.75%, #226FFC 33.44%, #0098FC 61.71%, #00CFFC 104.55%);
    border-radius: 2px;
    opacity: 1;
    filter: alpha(opacity=100);
    filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    margin-bottom: 16px;
    overflow: hidden;
}
.open .dg-date{
    opacity: 0;
    filter: alpha(opacity=0);
    filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
}
.dg-ring {
    position: absolute;
    width: 436px;
    height: 436px;
    left: 0;
    top: 0;
    transition: all .4s cubic-bezier(.25,-1,.46,2);
    animation: ring 8s ease-in-out alternate infinite;
}
@keyframes ring {
    0%      { transform: translate(-2%, -2%); }
    100%    { transform: translate(2%, 2%); }
}
.dg-ring.right {
    z-index: 0;
}
.dg-ring.left {
    z-index: 2;
}
.dg-gpt {
    width: 700px;
    height: 128px;
    line-height: 128px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    line-height: 48px;
    font-size: 40px;
    font-weight: 700;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0px 10px 20px rgba(101, 115, 165, 0.12);
    border: 1px solid;
    border-image: linear-gradient(to right, rgba(209, 209, 253, 1), rgba(209, 209, 253, 0),rgba(255, 255, 255, 0.8)) 1;
    position: relative;
    margin: 0 auto;
    /*animation: gpt 2s ease-in-out alternate infinite;*/
}
@keyframes gpt {
    0%      { transform: translate(0%, -4%); }
    100%    { transform: translate(0%, 4%); }
}
.dg-keyword {
    display: inline-block;
    max-height: 96px;
    font-family:Inter-SemiBold;
    position: absolute;
    left: 76px;
    top: 50%;
    right: 20px;
    overflow: hidden;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
/*.dg-keyword::after {
    content: " ";
    position: absolute;
    display: inline-block;
    right: -8px;
    top: 30px;
    width: 2px;
    height: 32px;
    background-color: #1E2128;
    animation: cursor .8s ease-in-out infinite;
}*/
@keyframes cursor {
    0%      { opacity: .8; }
    50%     { opacity: .8; }
    100%    { opacity: .0; }
}
.dg-animated-logo {
    position: absolute;
    width: 36px;
    height: 36px;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dg-animated-logo .box{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: rotate_3922 1.2s linear infinite;
    background-color: #9b59b6;
    background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
}
.dg-animated-logo span{
    position: absolute;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    background-color: #9b59b6;
    background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
}
.dg-animated-logo span:nth-of-type(1) {
  filter: blur(5px);
}

.dg-animated-logo span:nth-of-type(2) {
  filter: blur(10px);
}

.dg-animated-logo span:nth-of-type(3) {
  filter: blur(25px);
}

.dg-animated-logo span:nth-of-type(4) {
  filter: blur(50px);
}
.dg-animated-logo::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: #fff;
  border: solid 5px #ffffff;
  border-radius: 50%;
}

@keyframes rotate_3922 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.dg-main-text {
    position: absolute;
    width: 0px;
    height: 80px;
    left: 76px;
    top: 24px;
    background: url(../images-fbh/logo.png) no-repeat center center;
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    -ms-background-size: auto 100%;
    -o-background-size: auto 100%;
    background-size: auto 100%;
}
.dg-powered {
    font-size: 20px;
    color: #394560;
    line-height: 1.5em;
    text-align: center;
    font-family:Inter-Regular;
    z-index: 1;
    margin-top: 20px;
    /*animation: gpt 2s ease-in-out alternate infinite;*/
    transition: all 1s ease-out .6s;
}


/* CTA-------------------------------------- */
.dg-btn-group {
    font-size: 0;
    text-align: center;
    z-index: 20;
    margin: 40px -6px 0;
    transition: all .6s ease-out .4s;
}
.dg-btn {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    color: #0074FC;
    line-height: 56px;
    text-align: center;
    font-family:Inter-Medium;
    border: 2px #0074FC solid;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    padding: 0 40px;
    margin: 0 6px;
    transition: all .1s;
}
.dg-btn:hover {
    background: rgba(0, 57, 252, .05);
}
.dg-btn.dg-primary {
    background-color: #0074FC;
    color: #fff;
}
.dg-btn.dg-primary:hover{
    background: linear-gradient(92.75deg, #00A1FC 1.87%, #0074FC 91.88%);
}
.dg-secondary img {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin-top: -2px;
    margin-right: 8px;
}

/* BG */
.dg-footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    line-height: 40px;
    font-family:Inter-Regular;
    font-size: 12px;
    color: #435173;
    opacity: 80%;
    text-align: center;
    transition: all 1s ease-out .4s;
}
.dg-footer a{
    color: #435173;
}



/* Modal-------------- */
.dg-modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0,0,0,.6);
    transition: all .8s;
    color: #000;
}
.dg-modal-overlay.closed {
    background: rgba(0,0,0,0);
    transition: all .4s;
}
.dg-modal {
    position: absolute;
    top: calc( 50vh - 360px );
    left: calc( 50vw - 640px );
    width: 1280px;
    height: 720px;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    border-radius: 12px;
    z-index: 1000;
    opacity: 1;
    transition: all .8s;
    overflow: hidden;
}
.closed .dg-modal {
    transform: translateY(100px);
    opacity: 0;
    transition: all .4s;
}
.dg-close {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 28px;
    height: 28px;
    background: url(../images-fbh/close.png) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 10;
    cursor: pointer;
}
.dg-video {
    display: block;
    width: 100%;
    height: 100%;
}

/* waitlist modal & form*/
.dg-waitlist {
    
}
.dg-waitlist .dg-modal {
    top: calc( 50vh - 253px );
    left: calc( 50vw - 240px );
    width: 480px;
    height: 506px;
    background-image: url(../images-fbh/bg2.jpg);
}
.dg-form-wrapper {
    padding: 48px 60px 60px;
    overflow: hidden;
}
.dg-waitlist h2{
    font-size: 16px;
    color: #1E2128;
    line-height: 1.375em;
    font-weight: normal;
    font-family:Inter-Medium;
    margin-bottom: 50px;
    overflow: hidden;
}
.dg-form .item{
    margin-bottom: 20px;
    overflow: hidden;
}
input[type="text"] {
    display: block;
    width: 100%;
    border: 1px solid #D1DAE8;
    border-radius: 100px;
    font-size: 16px;
    color: #1E2128;
    line-height: 52px;
    padding: 0 24px;
}
input[type="text"]::placeholder {
    color: rgba(30, 33, 40, 0.3);
}
input[type="email"] {
    display: block;
    width: 100%;
    border: 1px solid #D1DAE8;
    border-radius: 100px;
    font-size: 16px;
    color: #1E2128;
    line-height: 52px;
    padding: 0 24px;
}
input[type="email"]::placeholder {
    color: rgba(30, 33, 40, 0.3);
}
.empty[type="text"] {
    border-color: #eb5757;
}
.empty[type="text"]::placeholder {
  color: #eb5757; 
}
.dg-checkbox-list label {
    font-size: 16px;
    font-weight: 700;
    line-height: 34px;
}
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px; 
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 36px;
  cursor: pointer; 
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  border: 3px solid #111;
  background: #fff;
  box-sizing: border-box;
}
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  top: -3px;
  left: -1px;
  width: 24px;
  height: 24px;
  background: url(../images-fbh/checked.svg) no-repeat;
  transition: all .2s;
  font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial; 
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0); 
}

[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1); 
}

[type="submit"] {
    display: block;
    background: #0074FC;
    width: 100%;
    font-size: 20px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    border-radius: 100px;
    border: none;
    cursor: pointer;
}
.dg-form .sub-btn:hover{
    background: linear-gradient(92.75deg, #00A1FC 1.87%, #0074FC 91.88%);
}



/* opening transition ------ */
.open .dg-header {
    transform: translateY(-90px);
}
.open .dg-footer {
    transform: translateY(80px);
}
.open .dg-btn-group {
    opacity: 0;
    top: calc( 50% + 240px );
}
.open .dg-powered {
    opacity: 0;
}
.open .dg-keyword {
    transform: translateY(0px);
    transition: all .4s cubic-bezier(.25,-1,.46,2);
}
.open .dg-main-text {
    width: 0;
    transition: all .4s cubic-bezier(.25,-1,.46,2);
}
.open .dg-gpt {
    /* width: ; */
    transition: all .4s cubic-bezier(.25,-1,.46,2);
    
}
.open .dg-bg {
    opacity: 1;
    transition: all 4s;
}
.open .dg-ring {
    left: 0px;
    opacity: 1;
    transition: all .8s;
}
/* opening steps ------ */
.open.step1 .dg-gpt {
    width: 1px;
    opacity: 0;
}
.open.step1 .dg-animated-logo {
    left: -240px;
}
.open.step1 .dg-btn-next {
    right: -80px;
}
.open.step1 .dg-main-text {
    transform: translateY(0);
}
.open.step1 .dg-keyword {
    opacity: 0;
}
.open.step1 .dg-ring {
    opacity: 0;
}
.open.step1 .dg-bg {
    opacity: 0;
    transition: all 4s ease;
}


.open.step2 .dg-gpt{
    width: 400px;
    transition: all 1s ease-in-out;
}
.open.step2 .dg-main-text {
    left: 76px;
    width: 200px;
    transform: translateY(0);
}
.open.step2 .dg-keyword {
    opacity: 0;
}
.open.step2 .dg-ring {
    left: 100px;
    transition: all .4s cubic-bezier(.25,-1,.46,2);
    opacity: 0;
}
.open.step2 .dg-bg {
    opacity: 0;
    transition: all 4s;
}





@media only screen and (max-width:768px){
    .dg-bg{
        background-image: url(../images-fbh/bg1-1.jpg);
    }
    .dg-header {
        padding: 0;
    }
    .dg-header h1 {
        width: 140px;
        height: 56px;
    }
    .dg-footer {display: none;}
    .dg-kv {
        width: 333px;
        height: 277px;
        background-image: url(../images-fbh/bg1-1.png);
        top: 45%;
        left: 50%;
        padding: 30px 16px;
    }
    .dg-date{
        width: 62px;
        height: 20px;
        font-size: 10px;
        line-height: 20px;
        margin-bottom: 12px;
    }
    .dg-gpt {
        width: 303px;
        height: 66px;
        line-height: 25px;
        font-size: 16px;
    }
    .dg-keyword {
        max-height: 50px;
        left: 40px;
        right: 5px;
    }
    .dg-keyword::after {
        top: 15px;
        height: 16px;
    }
    .dg-animated-logo {
        width: 24px;
        height: 24px;
        left: 10px;
    }
    .dg-animated-logo::after{
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }
    .dg-main-text {
        height: 46px;
        top: 10px;
        left: 50px;
    }
    .dg-btn-next {
        top: 16px;
        right: 12px;
        opacity: .5;
        width: 32px;
        height: 32px;
    }
    .dg-powered {
        font-size: 12px;
        margin-top: 16px;
    }
    .dg-btn-group{
        margin-top: 20px;
    }
    .dg-btn{
        font-size: 16px;
        line-height: 38px;
        border-width: 1px;
        padding: 0 15px;
    }
    .dg-secondary img{
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

    /* opening steps ------ */

    .open.step2 .dg-gpt{
        width: 240px;
        transition: all 1s ease-in-out;
    }
    .open.step2 .dg-main-text {
        left: 50px;
        width: 140px;
    }
    .open.step2 .dg-ring {
        left: 100px;
        transition: all .4s cubic-bezier(.25,-1,.46,2);
        opacity: 0;
    }


    /* Modal-------------- */
    .dg-modal-overlay {
        
    }
    .dg-modal {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .closed .dg-modal {
        transform: translateY(50px);
    }
    .dg-close{
        right: 14px;
        top: 14px;
    }
    .dg-video {
        width: 100%;
        height: auto;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    /* waitlist modal & form*/
    .dg-waitlist .dg-modal {
        width: 319px;
        height: 360px;
        top: calc(50vh - 180px);
        left: 50%;
        margin-left: -159px;
    }
    .dg-form-wrapper {
        padding: 28px;
    }
    .dg-waitlist h2{
        font-size: 16px;
        margin-bottom: 16px;
    }
    .dg-form .item{
        margin-bottom: 12px;
    }
    input[type="text"]{
        font-size: 14px;
        line-height: 38px;
        padding: 0 20px;
    }
    [type="submit"]{
        font-size: 18px;
        line-height: 48px;
    }


}

@media only screen and (max-width:350px){
    .dg-kv{
        width: 90%;
    }
    .dg-gpt{
        width: 100%;
        font-size: 16px;
    }
    .dg-btn{
        padding: 0 14px;
    }
    .dg-waitlist .dg-modal{
        width: 90%;
        margin-left: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}