html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
/*        overflow: hidden;*/
    }
}

html {
    position: relative;
/*    min-height: 100%; */
}

.btnMail {
    text-decoration: none;
    border: 2px solid #DA0812;
    color: #DA0812;
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
    transition: all 1s;
    overflow: hidden;
}

    .btnMail::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #DA0812;
        transition: all 1s;
        z-index: -1;
        transform: translateX(-100%);
    }

    .btnMail:hover::before {
        transform: translateX(0);
    }

    .btnMail:hover {
        color: #fff;
    }


.social-btns .btn,
.social-btns .btn:before,
.social-btns .btn .fa {
    transition: all 0.35s;
    transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

    .social-btns .btn:before {
        top: 90%;
        left: -110%;
    }

    .social-btns .btn .fa {
        transform: scale(0.8);
    }

    .social-btns .btn.facebook:before {
        background-color: #3b5998;
    }

    .social-btns .btn.facebook .fa {
        color: #3b5998;
    }

    .social-btns .btn.instagram:before {
        background-color: #F56040;
    }

    .social-btns .btn.instagram .fa {
        color: #F56040;
    }

    .social-btns .btn.twitter:before {
        background-color: #3cf;
    }

    .social-btns .btn.twitter .fa {
        color: #3cf;
    }

    .social-btns .btn.google:before {
        background-color: #dc4a38;
    }

    .social-btns .btn.google .fa {
        color: #dc4a38;
    }

    .social-btns .btn.dribbble:before {
        background-color: #f26798;
    }

    .social-btns .btn.dribbble .fa {
        color: #f26798;
    }

    .social-btns .btn.skype:before {
        background-color: #00aff0;
    }

    .social-btns .btn.skype .fa {
        color: #00aff0;
    }

    .social-btns .btn:focus:before,
    .social-btns .btn:hover:before {
        top: -10%;
        left: -10%;
    }

    .social-btns .btn:focus .fa,
    .social-btns .btn:hover .fa {
        color: #fff;
        transform: scale(1);
    }

.social-btns {
    margin: auto;
    text-align: center;
}

    .social-btns .btn {
        display: inline-block;
        background-color: #fff;
        width: 90px;
        height: 90px;
        line-height: 90px;
        margin: 0 10px;
        text-align: center;
        position: relative;
        overflow: hidden;
        border-radius: 28%;
        box-shadow: 0 5px 15px -5px rgba(0,0,0,0.1);
        opacity: 0.99;
    }

        .social-btns .btn:before {
            content: '';
            width: 120%;
            height: 120%;
            position: absolute;
            transform: rotate(45deg);
        }

        .social-btns .btn .fa {
            font-size: 38px;
            vertical-align: middle;
            margin-top: -10px;
        }
