/*-- ======================================================================|
--   ____      _      __  __   _____      ____    ___    ____    _____   |
--  / ___|    / \    |  \/  | | ____|    / ___|  / _ \  |  _ \  | ____|  |
-- | |  _    / _ \   | |\/| | |  _|     | |     | | | | | | | | |  _|    |
-- | |_| |  / ___ \  | |  | | | |___    | |___  | |_| | | |_| | | |___   |
--  \____| /_/   \_\ |_|  |_| |_____|    \____|  \___/  |____/  |_____|  |
--                                                                       |
-- @ Author Enctype | www.gamecode.com.br                                |
-- ======================================================================|*/

@font-face {
    font-family: Poppins;
    src: url("../fonts/Poppins-Regular.ttf");
}
@font-face {
    font-family: Poppins-Bold;
    src: url("../fonts/Poppins-Bold.ttf");
}

@keyframes arrowUpDown {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

body {
    padding: 0px;
    margin: 0px;
    background: #fff;
}
.img-card {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 273px;
    margin: 20px 0px;
    position: relative;
}
.img-card .heart {
    position: absolute;
    right: 35px;
    top: 5px;
}
.img-card .heart i {
    color: #ff3040;
}
.img-card img {
    width: 365px;
    height: 273px;
    display: block;
    margin: 0px auto;
}
.title-large {
    font-family: "Poppins-Bold", 'sans-serif';
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    color: #54595F;
    margin: 30px 0px 0px 0px;
}
.sub-title {
    font-family: "Poppins", 'sans-serif';
    font-size: 18px;
    text-align: center;
    color: #818181;
    margin: 0px 0px 0px 0px;
}
.arrow {
    border: solid #818181;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 6px;
    margin: 10px auto 30px;
    transform: rotate(45deg);
    animation: arrowUpDown 2s infinite alternate;
}
.title {
    font-family: "Poppins-Bold", 'sans-serif';
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    color: #54595F;
    margin: 30px 0px;
}
.separator {
    width: 6px;
    height: 130px;
    background-color: #54595F;
    box-shadow: 0px 0px 10px 4px rgba(51, 51, 51, 0.12);
    border-radius: 40px;
    margin: 30px auto;
}
.desc {
    width: 365px;
    line-height: 40px;
    position: relative;
    bottom: 0px;
    background: rgba(0,0,0,0.5);
    font-family: "Poppins", 'sans-serif';
    color: #fff;
    text-align: center;
    margin: -40px auto 0px;
}
.footer {
    margin: 30px 0px;
    text-align: center;
    font-family: "Poppins", 'sans-serif';
    color: #818181;
}
.wpp-fixed {
    display: flex;
    flex-direction: row;
    position: fixed;
    z-index: 2;
    bottom: 12px;
    right: 12px;
    height: 60px;
    min-width: 60px;
    background: #25d366;
    color: inherit;
    border-radius: 30px;
    box-shadow: 1px 6px 24px 0 rgba(7, 94, 84, .24);
    cursor: pointer;
    transition: background-color .2s linear;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.wpp-fixed:hover {
    background: #128c7e;
    transition-duration: 1.5s;
}
.wpp-fixed i {
    color: #fff;
    font-size: 40px;
}
.shadow-c {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

@media only screen and (max-width: 1024px) and (max-width: 820px) {
    .img-card img {
        width: 100%;
        height: 273px;
        display: block;
        margin: 0px auto;
    }

    .img-card .heart {
        position: absolute;
        right: 15px;
        top: 5px;
    }
    .img-card .heart i {
        font-size: 18px;
        color: #ff3040;
    }

    .desc {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {

    .img-card img {
        width: 100%;
        height: 273px;
        display: block;
        margin: 0px auto;
    }

    .shadow-c {
        box-shadow: none !important;
    }

    .arrow {
        margin: 10px auto 10px;
    }

    .img-card .heart {
        position: absolute;
        right: 15px;
        top: 5px;
    }
    .img-card .heart i {
        font-size: 18px;
        color: #ff3040;
    }

    .desc {
        width: 100%;
    }
}