
.btnOpen{
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    padding: 10px 43px 10px 43px;
    border: none;
    border-radius: 32px 0 0 32px;
    font-size: 20px;
    background-color: rgb(1, 170, 133);
    color: #fcfcfc;
    width: 2%;
    height: 80px;
}

.btnOpen span{
    display: none;
}
.btnOpen i{
    display: block;
}

.btnOpen:hover span, .btnOpen:focus span{
    display: block;
}
.btnOpen:hover i, .btnOpen:focus i{
    display: none;
}

.btnOpen:hover, .btnOpen:focus{
    background-color: rgb(1, 145, 144);
    outline: rgb(2, 137, 108) 2px solid;
    cursor: pointer;
    width: 13%;
    transition: .4s;
}

.btnOpen{
    position: fixed;
    right: 0;
    bottom: 50px;
    }

.callme{
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    max-height: 100vh;
    transition: .8s;
}
.callme .box{
        position: relative;
        top: 100px;
        border-radius: 12px;
        width: 330px;
        margin: auto;
        text-align: center;
        padding: 18px;
        background-color: #fcfcfc;
        display: none;
        box-shadow: 0px 0px 18px #222;

        /*display: none;*/
    }
    
    .callme .circle .contact-head{
        display: inline-block;
        width: 18px;
        height: 20px;
        margin: 0 auto;
        margin-top: 6px;
        border-radius: 50%;
        left: 0;
        right: 0;
        background-color: #fff;
    }
    
    .callme .close{
        display: block;
        position: absolute;
        width: 40px;
        height: 40px;
        top: 0;
        right: 0;
        color: tomato;
        font-size: 34px;
    }
    .callme .close:hover{
        background-color: red;
        border-radius: 0 12px 0 0;
        color: #fcfcfc;
        cursor: pointer;
    }
    
    .callme .contact-box{
        margin-top: 43px;
    }
    
    .callme .callmelabel{
        display: block;
        position: absolute;
        font-size: 18px;
        color: rgb(169, 171, 170);
        margin-top: -70px;
        padding-left: 18px;
        text-align: left;
        pointer-events: none;
        transition: .4s;
    }
    
    .callme .callmeinput{
        width: 95%;
        height: 42px;
        margin: 10px 1px 28px 1px;
        padding: 9px;
        font-size: 18px;
        color: #555;
        border: rgb(65, 118, 97) 1px solid;
        outline: none;
        border-radius: 5px;
    }
    
    .callme .callmeinput:focus~label,
    .callme .callmeinput:valid~label{
        margin-top: -115px;
        padding-left: 8px;
        color: #026948;
        font-weight: 500;
    
    }
    
    .callme .callmeh1{
        margin-top: 28px;
        margin-bottom: 28px;
        font-size: 21px;
        font-weight: 300;
    }
    
    .callme .circle{
        position: absolute;
        margin: 0 auto;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        top: -35px;
        right: 0;
        left: 0;
        background-color: rgb(1, 170, 133);
        border: 2px #fff solid;
    }
    
    .callme .box .circle, .box span{
        display: inline-block;
        position: absolute;
    }
    
    .callme .box span{
        height: 2px;
        background-color: rgb(1, 170, 133);
    }
    
    .callme .body-text{
        font-size: 17px;
        line-height: 25px;
    }
    
    .callme .callmep{
        margin-top: 28px;
        font-size: 16px;
    }
    
    .callme .callmebutton{
        display: block;
        margin: 0 auto;
        margin-top: 25px;
        padding: 10px 43px 10px 43px;
        border: none;
        border-radius: 32px;
        font-size: 20px;
        background-color: rgb(1, 170, 133);
        color: #fcfcfc;
    }
    
    .callme .callmebutton:hover, button:focus{
        background-color: rgb(1, 145, 144);
        outline: rgb(2, 137, 108) 2px solid;
        cursor: pointer;
    }
    
    .callme .circle .slant-right{
        width: 29px;
        top: 27px;
        left: 16px;
        transform: rotate(-45deg);
        display: none;
        animation: slant-animate 1s ease-in forwards;
    }
    
    .callme .circle .slant-left{
        width: 16px;
        top: 32px;
        left: 8px;
        transform: rotate(50deg);
        display: none;
        animation: slant-animate .8s ease-in forwards;
    }
    @keyframes slant-animate{
        to{
            background-color: #fff;
        }
    }
    
    /* for small device*/
    
    @media(max-width: 350px){
        .callme .box{
            width: 90%;
        }
    }


