/*кнопка обратной связи*/

.email-btn {
    background:#c1558b;
    border:2px solid #c1558b;
    border-radius:50%;
    box-shadow:0 8px 10px rgba(249,92,24,0.3);
    cursor:pointer;
    height:60px;
    text-align:center;
    width:60px;
    position: fixed;
    right: 100px;
    bottom: 256px;
    z-index:999;
    transition:.3s;
    -webkit-animation:email-an linear 1s infinite;
    animation:email-an linear 1s infinite;
}
.email-btn > a{
    display: block;
    text-decoration: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.btnm-Image{
    width: 60px;
    height: 60px;
    position: relative;
    right: 18px;
    bottom: 10px;
}

.email-btn .text-call-mail{
    height:68px;
    width:68px;
    border-radius:50%;
    position:relative;
}

.email-btn .text-call-mail span {
    text-align: center;
    color:#F95C18;
    opacity: 0;
    font-size: 8px;
    position:absolute;
    right: 18px;
    top: 23px;
    line-height: 14px;
    text-transform: uppercase;
    transition: opacity .3s linear;
    font-family: 'montserrat', Arial, Helvetica, sans-serif;
}

.email-btn .text-call-mail:hover span {
    opacity: 1;
    font-size: 11px;
}
.email-btn:hover i {
    display:none;
}

.email-btn:hover {
    z-index:1;
    background:#fff;
    transition:.3s;
}
.email-btn:hover i {
    color:#38a3fd;
    font-size:40px;
    transition:.3s;
}
.email-btn i {
    color:#fff;
    font-size:29px;
    transition:.3s;
    line-height: 66px;
}

.email-btn i  {
    -webkit-animation: opsimple 3s infinite;
    animation: opsimple 3s infinite;
}



@keyframes opsimple {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes opsimple {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media screen and (max-width:960px) {
 .email-btn {
  bottom:175px !important;
  right:10px!important;
 }
/* конец кнопки звязи */