﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
/*
    font-family: 'Playfair Display', serif;
    font-family: 'Montserrat', sans-serif;
*/


/*general styles*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #5E0506;
}
/*end of general styles*/

/*page title & header*/
#demo {
    text-align: center;
    color: white;
    font-size:55px;
    font-family: 'Montserrat', sans-serif;
}
#countdown-promo{
    display:block;
    margin:0 auto;
    width:40%;
}
@media only screen and (max-width: 850px) {
    #countdown-promo {
        width: 65%;
    }
}
#title-box {
    background-color: #5E0506;
    width: 100%;
    padding-top: 3vh;
    padding-bottom: 3vh;
}

#page-title {
    font-family: 'Playfair Display', serif;
    margin-left:3%;
    margin-right:3%;
    font-style: italic;
    font-weight: bold;
    font-size: 47px;
    text-align: center;
    background: -webkit-linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    background: linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #title-box {
        padding-top: 4vh;
        padding-bottom: 4vh;
    }

    #page-title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #title-box {
        padding-top: 4vh;
        padding-bottom: 4vh;
    }

    #page-title {
        font-size: 55px;
    }
}

@media only screen and (max-width: 500px) {
    #title-box {
        padding-top: 1.5vh;
        padding-bottom: 1.5vh;
    }

    #page-title {
        font-size: 40px;
    }
}
#header-video-container {
    width: 100%;
    background-color: #5E0506;
}

#header-video {
    width: 70%;
    display: block;
    margin: 0 auto;
    padding: 5px;
    background-color: #240000;
}
#header-text-container {
    width: 80%;
    display:block;
    margin:0 auto;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    background-color: #240000;
    border-radius: 50px;
    text-align:center;
    margin-top:3%;
}

#hl-t1 {
    font-family: 'Playfair Display', serif;
    font-size: 31px;
    text-align: center;
    background: -webkit-linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    background: linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#hl-t2 {
    margin-top: 1.5%;
    margin-left: 5%;
    margin-right: 5%;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 18px;
    text-align: center;
}

@media only screen and (min-width: 1400px) and (max-width: 1549px) {

    #hl-t1 {
        font-size: 35px;
    }

    #hl-t2 {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {

    #hl-t1 {
        font-size: 40px;
    }

    #hl-t2 {
        font-size: 22px;
    }
}
@media only screen and (max-width: 500px) {
    #header-video {
        width:90%;
    }
    #header-text-container {
        width: 90%;
    }
}
@media screen and (min-width: 501px) and (max-width: 949px) {
    #header-video {
        width:80%;
    }
    #header-text-container {
        width: 90%;
    }
}
/*end of page title & header*/

/*first payment prompt section*/
#payment-prompt1 {
    width: 100%;
    padding-top: 2%;
    background-color: #5E0506;
    text-align: center;
}

    #payment-prompt1 a {
        text-decoration: none;
        background-color: #5ec41a;
        border-radius: 25px;
        padding: 10px;
        box-shadow: 0 0 25px #154a16;
    }

.hvr-grow-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

    .hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
        box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

#payment-link1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 35px;
    font-weight: bold;
}
#payment-link1-1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 35px;
    font-weight: bold;
}


#pp1-t1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 19px;
}

#pp1-images img {
    height: 45px;
}

@media only screen and (max-width: 500px) {
    #payment-link1 {
        font-size: 28px;
    }
    #payment-link1-1 {
        font-size: 28px;
    }

    #payment-prompt1 {
        width: 95%;
        display: block;
        margin: 0 auto;
    }

        #payment-prompt1 a {
            padding: 7px;
        }
}
@media only screen and (max-width: 900px) {
        #payment-prompt1 a {
            width:75%;
        }
}
/*end of first payment prompt section*/

/*three column section*/
#column-intro {
    width: 100%;
    background-color: #5E0506;
    padding-top: 2%;
    padding-bottom: 2%;
    text-align: center;
}

#column-intro-text {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 18px;
    margin-left: 10%;
    margin-right: 10%;
}

#column-wrapper {
    width: 100%;
    background-color: #5E0506;
    padding-top: 1.5%;
    padding-bottom: 3%;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#column1 {
    float: left;
    background-color: #240000;
    width: 28%;
    margin-left: 5%;
    border: 4px solid #0f0101;
    box-shadow: 10px 10px 5px black;
}

#column2 {
    float: left;
    background-color: #240000;
    width: 28%;
    border: 4px solid #0f0101;
    box-shadow: 10px 10px 5px black;
}

#column3 {
    float: left;
    background-color: #240000;
    width: 28%;
    margin-right: 5%;
    border: 4px solid #0f0101;
    box-shadow: 10px 10px 5px black;
}

@media only screen and (max-width: 500px) {
    #column1 {
        float: none;
        width: 85%;
        margin-left: 0%;
    }

    #column2 {
        float: none;
        width: 85%;
        margin-top: 7%;
    }

    #column3 {
        float: none;
        width: 85%;
        margin-right: 0%;
        margin-top: 7%;
    }

    #column-wrapper {
        padding-bottom: 5%;
        flex-direction: column;
        align-items: center;
    }
}

#c1-t1, #c2-t1, #c3-t1 {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    margin-top: 5%;
    margin-bottom: 5%;
    border-bottom: 2px solid #140000;
    background: -webkit-linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    background: linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#c1-t2, #c2-t2, #c3-t2 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    margin-top: 1%;
    margin-bottom: 5%;
    margin-left: 5%;
    margin-right: 5%;
}
/*three column section*/

/*module section*/
.module-heading {
    width: 100%;
    padding-top: 0.5vh;
    padding-bottom: 0.5vh;
    background-color: white;
    text-align: center;
}

.module-wrapper {
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

@media only screen and (max-width: 500px) {
    .module-wrapper {
        flex-direction: column;
        align-items: center;
    }

        .module-wrapper img {
            width: 100px;
        }

    .small-module-heading {
        width: 65%;
        display: block;
        margin: 0 auto;
    }

    .big-module-heading {
        width: 100%;
        display: block;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 800px) {
    .module-wrapper {
        flex-direction: column;
        align-items: center;
    }

        .module-wrapper img {
            width: 100px;
        }

    .small-module-heading {
        width: 65%;
        display: block;
        margin: 0 auto;
    }

    .big-module-heading {
        width: 100%;
        display: block;
        margin: 0 auto;
    }
}

.module-text {
    margin-left: 10%;
    margin-right: 10%;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 5%;
    padding-top: 5%;
}

.module-wrapper img {
    width: 150px;
}

#module1-1, #module1-2, #module1-3, #module1-4 {
    width: 20%;
    border: 1px solid #5E0506;
    border-radius: 35px;
    float: left;
    box-shadow: 0 0 25px #b6b6b8;
}

#module1-1 {
    margin-left: 5%;
}

#module1-4 {
    margin-right: 5%;
}

@media only screen and (max-width: 500px) {
    #module1-1, #module1-2, #module1-3, #module1-4 {
        width: 85%;
        float: none;
        margin-top: 2%;
    }

    #module1-1 {
        margin-left: 0%;
    }

    #module1-4 {
        margin-right: 0%;
    }

    .module-text {
        padding-bottom: 1%;
        padding-top: 1%;
    }
}

@media only screen and (max-width: 800px) {
    #module1-1, #module1-2, #module1-3, #module1-4 {
        width: 85%;
        float: none;
        margin-top: 2%;
    }

    #module1-1 {
        margin-left: 0%;
    }

    #module1-4 {
        margin-right: 0%;
    }

    .module-text {
        padding-bottom: 1%;
        padding-top: 1%;
    }
}

#module2-1, #module2-2, #module2-3, #module2-4 {
    width: 20%;
    border: 1px solid #5E0506;
    border-radius: 35px;
    float: left;
    box-shadow: 0 0 25px #b6b6b8;
}

#module2-1 {
    margin-left: 5%;
}

#module2-4 {
    margin-right: 5%;
}

@media only screen and (max-width: 500px) {
    #module2-1, #module2-2, #module2-3, #module2-4 {
        width: 85%;
        float: none;
        margin-top: 2%;
    }

    #module2-1 {
        margin-left: 0%;
    }

    #module2-4 {
        margin-right: 0%;
    }
}

@media only screen and (max-width: 800px) {
    #module2-1, #module2-2, #module2-3, #module2-4 {
        width: 85%;
        float: none;
        margin-top: 2%;
    }

    #module2-1 {
        margin-left: 0%;
    }

    #module2-4 {
        margin-right: 0%;
    }
}

#module3-1, #module3-2, #module3-3, #module3-4 {
    width: 20%;
    border: 1px solid #5E0506;
    border-radius: 35px;
    float: left;
    box-shadow: 0 0 25px #b6b6b8;
}

#module3-1 {
    margin-left: 5%;
}

#module3-4 {
    margin-right: 5%;
}

@media only screen and (max-width: 500px) {
    #module3-1, #module3-2, #module3-3, #module3-4 {
        width: 85%;
        float: none;
        margin-top: 2%;
    }

    #module3-1 {
        margin-left: 0%;
    }

    #module3-4 {
        margin-right: 0%;
    }
}

@media only screen and (max-width: 800px) {
    #module3-1, #module3-2, #module3-3, #module3-4 {
        width: 85%;
        float: none;
        margin-top: 2%;
    }

    #module3-1 {
        margin-left: 0%;
    }

    #module3-4 {
        margin-right: 0%;
    }
}

#module4-1, #module4-2, #module4-3, #module4-4 {
    width: 20%;
    border: 1px solid #5E0506;
    border-radius: 35px;
    float: left;
    box-shadow: 0 0 25px #b6b6b8;
}

#module4-1 {
    margin-left: 5%;
}

#module4-4 {
    margin-right: 5%;
}

@media only screen and (max-width: 500px) {
    #module4-1, #module4-2, #module4-3, #module4-4 {
        width: 85%;
        float: none;
        margin-top: 2%;
    }

    #module4-1 {
        margin-left: 0%;
    }

    #module4-4 {
        margin-right: 0%;
    }
}

@media only screen and (max-width: 800px) {
    #module4-1, #module4-2, #module4-3, #module4-4 {
        width: 85%;
        float: none;
        margin-top: 2%;
    }

    #module4-1 {
        margin-left: 0%;
    }

    #module4-4 {
        margin-right: 0%;
    }
}
/*end of module section*/

/*second payment prompt section*/
#payment-prompt2 {
    width: 100%;
    padding-top: 3%;
    text-align: center;
    background-color: white;
}

    #payment-prompt2 a {
        text-decoration: none;
        background-color: #5ec41a;
        border-radius: 25px;
        padding: 10px;
        box-shadow: 0 0 25px #154a16;
    }

#payment-link2 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 30px;
    font-weight: bold;
}

#pp2-t1 {
    font-family: 'Montserrat', sans-serif;
    color: #5E0506;
    font-size: 19px;
}

#pp2-images img {
    height: 45px;
}

@media only screen and (max-width: 500px) {
    #payment-prompt2 {
        padding-top: 5%;
    }

        #payment-prompt2 a {
            padding: 4px;
        }

    #payment-link2 {
        font-size: 27px;
    }
}
/*end of second payment prompt section*/

/*side by side image & text section*/
#sidebyside-header {
    background-color: #5E0506;
    width: 100%;
    text-align: center;
    padding-top: 1%;
    padding-bottom: 3%;
}

#sidebyside-header-text {
    font-size: 45px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-align: center;
    background: -webkit-linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    background: linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sidebyside-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #5E0506;
}

.sidebyside-type1-l {
    width: 40%;
    background-color: #5E0506;
    text-align: center;
}

    .sidebyside-type1-l img {
        height: 55vh;
    }

.sidebyside-type1-r {
    width: 60%;
    background-color: #5E0506;
    text-align: center;
}

    .sidebyside-type1-r p {
        color: white;
        font-size: 21px;
        font-family: 'Montserrat', sans-serif;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 8%;
        font-style: italic;
    }
.sidebyside-type2-l {
    width: 60%;
    background-color: #5E0506;
    text-align: center;
}
    .sidebyside-type2-l p {
        color: white;
        font-size: 21px;
        font-family: 'Montserrat', sans-serif;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 10%;
        font-style: italic;
    }
.sidebyside-type2-r {
    width: 40%;
    background-color: #5E0506;
    text-align: center;
}
    .sidebyside-type2-r img {
        height: 55vh;
    }
#mobile-sidebyside-image {
    display: none;
}

@media only screen and (max-width: 600px) {
    #mobile-sidebyside-image {
        display: block;
        height: 55vh;
        margin: 0 auto;
    }

    .sidebyside-wrapper {
        flex-direction: column;
    }

    .sidebyside-type1-l {
        width: 100%;
    }

        .sidebyside-type1-l img {
            height: 55vh;
        }

    .sidebyside-type1-r {
        width: 100%;
        padding-bottom: 2%;
    }

        .sidebyside-type1-r p {
            margin-top: 2%;
        }

    .sidebyside-type2-l {
        width: 100%;
        padding-bottom: 2%;
    }

        .sidebyside-type2-l p {
            margin-top: 2%;
        }

    .sidebyside-type2-r {
        display: none;
    }
}
/*end of side by side image & text section*/

/*reviews section*/
#review-wrapper {
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#review-container1, #review-container2, #review-container3, #review-container4 {
    width: 25%;
    float: left;
    background-color: black;
    padding-top: 1%;
    padding-bottom: 1%;
}

    #review-container1 img, #review-container2 img, #review-container3 img, #review-container4 img {
        width: 100%;
    }

.review2-addspace {
    margin-top: 31.5%;
}

.review3-addspace {
    margin-top: 15%;
}

.review4-addspace {
    margin-top: 21%;
}

@media only screen and (max-width: 950px) {
    #review-wrapper {
        flex-direction: column;
        align-items: center;
    }

    #review-container1, #review-container2, #review-container3, #review-container4 {
        width: 75%;
    }

    .review2-addspace {
        margin-top: 0%;
    }

    .review3-addspace {
        margin-top: 0%;
    }

    .review4-addspace {
        margin-top: 0%;
    }
}
/*end of reviews section*/

/*third payment prompt section*/
#payment-prompt3 {
    width: 100%;
    padding-top: 3%;
    text-align: center;
    background-color:#5E0506;
}

    #payment-prompt3 a {
        text-decoration: none;
        background-color: #5ec41a;
        border: 2px solid #5ec41a;
        border-radius: 25px;
        padding: 10px;
    }

        #payment-prompt3 a:hover {
            color: #5ec41a;
            background-color: white;
            border: 3px solid #5ec41a;
            transition: all 0.4s;
        }

#payment-link3 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 27px;
    font-weight: bold;
}

#pp3-t1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 18px;
    margin-left: 10%;
    margin-right: 10%;
}

#pp3-t2 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 18px;
}

#pp3-images img {
    height: 45px;
}

@media only screen and (max-width: 500px) {
    #payment-prompt3 a {
        padding: 5px;
    }

    #payment-link3 {
        font-size: 22px;
    }

    #pp3-t1 {
        font-size: 16px;
    }

    #pp3-t2 {
        font-size: 16px;
    }
}
/*end of third payment prompt section*/

/*video section*/
#video-container1, #video-container2, #video-container3, #video-container4 {
    width: 50%;
    padding-top: 1%;
    padding-bottom: 1%;
    background-color: #5E0506;
    float: left;
}

#video-container5 {
    margin: 0 auto;
    display: block;
    width: 100%;
    padding-top: 1%;
    padding-bottom: 1%;
    background-color: #5E0506;
}

    #video-container1 video, #video-container2 video, #video-container3 video, #video-container4 video, #video-container5 video {
        display: block;
        margin: 0 auto;
        border: 2px solid #240000;
        width:40vw;
    }


@media only screen and (max-width: 900px) {
    #video-container1, #video-container2, #video-container3, #video-container4, #video-container5 {
        width: 100%;
        padding-top: 0.5%;
        padding-bottom: 0.5%;
        background-color: #5E0506;
    }

        #video-container1 video, #video-container2 video, #video-container3 video, #video-container4 video, #video-container5 video {
            display: block;
            margin: 0 auto;
            padding-top: 0%;
            padding-bottom: 0%;
            padding-left: 0%;
            padding-right: 0%;
            width:90%;
            max-width: 100%;
        }
}
/*end of video section*/

/*about section*/
#about-heading {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid black;
    background-color: white;
}

#about-wrapper {
    width: 100%;
    background-color: white;
}

#about-image img {
    width: 30%;
    float: left;
    margin: 5px;
    padding-right: 5%;
    margin-top: 3%;
    margin-left: 3%;
}

#about-wrapper p {
    text-align: justify;
    font-size: 19px;
    font-family: 'Montserrat', sans-serif;
    margin-left: 2%;
    margin-right: 2%;
    line-height: 32px;
    padding-top: 3%;
}

#about-signoff {
    width: 100%;
    display: block;
    margin: 0 auto;
    background-color: white;
}

#about-heading img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

#about-signoff img {
    max-width: 100%;
    display:block;
    margin:0 auto;
}

@media only screen and (max-width: 600px) {
    #about-image img {
        width: 50%;
        padding-right: 3%;
    }

    #about-wrapper p {
        font-size: 18px;
        margin-left: 1%;
        margin-right: 1%;
    }

    #about-signoff img {
        max-width: 80%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 900px) {
    #about-image img {
        width: 40%;
    }

    #about-signoff img {
        max-width: 70%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #about-wrapper p {
        font-size: 21px;
    }
}
@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #about-wrapper p {
        font-size: 24px;
    }
}

#article-container {
    width: 100%;
    background-color: white;
}

    #article-container img {
        width: 80%;
        display: block;
        margin: 0 auto;
    }

@media only screen and (max-width: 900px) {
    #article-container img {
        width: 100%;
    }
}
/*end of about section*/

/*guarantee & fourth payment prompt section*/
#guarantee-container {
    background-color: #5E0506;
    width: 100%;
    text-align: center;
    padding-top: 1%;
    padding-bottom: 1%;
}

#guarantee {
    width: 65%;
    display: block;
    margin: 0 auto;
    background-color: white;
    border-radius: 25px;
}

#guarantee-t1 {
    font-size: 45px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-align: center;
    background: -webkit-linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    background: linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 3%;
    margin-bottom: 3%;
}

#guarantee-t2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-left: 15%;
    margin-right: 15%;
}

#guarantee img {
    height: 55vh;
}

#guarantee a {
    text-decoration: none;
    background-color: #5ec41a;
    border: 2px solid #5ec41a;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 0 25px #154a16;
}

#payment-link4 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 27px;
    font-weight: bold;
}

#pp4-t1 {
    font-family: 'Montserrat', sans-serif;
    color: #5E0506;
    font-size: 19px;
}

#pp4-images img {
    height: 45px;
}

@media only screen and (max-width: 500px) {
    #guarantee {
        width: 90%;
    }

    #guarantee-t1 {
        font-size: 35px;
    }

    #guarantee-t2 {
        margin-left: 5%;
        margin-right: 5%;
        font-size: 19px;
    }

    #guarantee img {
        height: 45vh;
    }

    #guarantee a {
        padding: 5px;
    }

    #payment-link4 {
        font-size: 22px;
    }

    #pp4-images img {
        height: 45px;
    }
}

@media only screen and (max-width: 900px) {
    #guarantee {
        width: 85%;
    }

    #guarantee-t1 {
        font-size: 39px;
    }

    #guarantee-t2 {
        margin-left: 5%;
        margin-right: 5%;
        font-size: 19px;
    }

    #guarantee img {
        height: 45vh;
    }

    #guarantee a {
        padding: 5px;
    }

    #payment-link4 {
        font-size: 27px;
    }

    #pp4-images img {
        height: 45px;
    }
}
/*end of guarantee & fourth payment prompt section*/

/*hover effects*/
.hvr-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

    .hvr-float:hover, .hvr-float:focus, .hvr-float:active {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

@-webkit-keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

.hvr-buzz-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

    .hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
        -webkit-animation-name: hvr-buzz-out;
        animation-name: hvr-buzz-out;
        -webkit-animation-duration: 0.75s;
        animation-duration: 0.75s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
    }
/*end of hover effects*/