i {
    opacity: 0;
    font-size: 28px;
    color: var(--orange);
    will-change: transform;
    -webkit-transform: scale(.1);
            transform: scale(.1);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.btn_wrap {
    margin-top: 48px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    cursor: pointer;
    width: 240px;
    height: 60px;
    font-weight: 600;
    background-color: var(--white);
    border-radius: 24px;
    padding: 0 0px;
    will-change: transform;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn_wrap:hover {
    /* transition-delay: .4s; */
    /* -webkit-transform: scale(1.1);
            transform: scale(1.1) */
}

.btnspan {
    position: absolute;
    z-index: 99;
    width: 240px;
    height: 60px;
    border-radius: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    text-align: center;
    line-height: 54px;
    letter-spacing: 2px;
    color: var(--orange);
    background-color: var(--white);
    padding: 0 18px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btncontainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 240px;
    height: 64px;
    border-radius: 24px;
}

.btncontainer i:nth-of-type(1) {
            -webkit-transition-delay: 0.01s;
                    transition-delay: 0.01s;
                    font-size: 50px;
                    margin-bottom: 0px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    
}



.btn_wrap:hover .btnspan {
    -webkit-transition-delay: .01s;
            transition-delay: .01s;
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px)
}

.btn_wrap:hover i {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
}


.dr {
position: absolute;
  bottom: 16px; 
  right: 16px;
  width:100px;
}

@media screen and (max-width: 450px) {

    i {
        opacity: 0;
        font-size: 5.5vw;
        color: var(--orange);
        will-change: transform;
        -webkit-transform: scale(.1);
                transform: scale(.1);
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }
    
    .btn_wrap {
        margin-top: 48px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        overflow: hidden;
        cursor: pointer;
        width: 60vw;
        height: 40px;
        font-weight: 600;
        background-color: var(--white);
        border-radius: 30px;
        padding: 0 0px;
        will-change: transform;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }
    
    .btn_wrap:hover {
        /* transition-delay: .4s; */
        /* -webkit-transform: scale(1.1);
                transform: scale(1.1) */
    }
    
    .btnspan {
        position: absolute;
        z-index: 99;
        width: 60vw;
        height: 40px;
        border-radius: 30px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 5vw;
        text-align: center;
        line-height: 40px;
        letter-spacing: 1.2px;
        color: var(--orange);
        background-color: var(--white);
        padding: 0 18px;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    
    .btncontainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 240px;
        height: 64px;
        border-radius: 24px;
    }
    
    .btncontainer i:nth-of-type(1) {
                -webkit-transition-delay: 0.01s;
                        transition-delay: 0.01s;
                        font-size: 50px;
                        margin-bottom: 0px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        
    }
    
    
    
    .btn_wrap:hover .btnspan {
        -webkit-transition-delay: .01s;
                transition-delay: .01s;
        -webkit-transform: translateY(-70px);
                transform: translateY(-70px)
    }
    
    .btn_wrap:hover i {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    
    
    .dr {
    position: absolute;
      bottom: 16px; 
      right: 16px;
      width:100px;
    }
    

}