@font-face {
    font-family: chiq;
    src: url("fonts/Chiq_Reduced_Regular.otf");
}

@font-face {
    font-family: menlo;
    src: url("fonts/Menlo_Regular.ttf");
}

body, h1, h2, h3, h4, h5 {
    font-family: chiq;
}

.text-green.text-large {
    font-family: menlo;
    font-weight: bold;
}

body {
    background: #2C3240 url('../images/logo-bg.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom left;
    color: #D2D2D2;
    position: relative;
}

.body-gradient {
    background: linear-gradient(to right top, #83b3293b, transparent, transparent);
    position: fixed;
    bottom: 0;
    height: 50%;
    width: 100%;
    left: 0;
    z-index: -1;
}

.social-cont {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social i {
    color: #D1D1D1;
    margin: 15px;
}

.social a:hover i {
    transition: 0.7s ease;
}

.social a:hover i.fa-twitter {
    color: #00ABEF;
}

.social a:hover i.fa-facebook-f {
    color: #3B579D;
}

.social a:hover {
    text-decoration: none;
}

.text-green {
    color: #A5FD00;
}

.player {
    cursor: pointer;
    background: #A5FD00;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}

.player:hover {
    cursor: pointer;
}

.player, .player i {
    transition: 0.2s ease-in;
}

.player:hover {
    border: 1px solid #a4fd01;
    background: #2B3240;
}

.player:hover i {
    color: #A4FD01;
}

.player-cont {
    justify-content: center;
    margin: 2em 0;
}

.player i {
    color: #2F3C3D;
}

#btn-play {
    margin-left: 7px;
}

.main-content {
    margin: 6em 0 2em 0; 
    text-align: center;
    padding-bottom: 20px;
}

.card {
    position: relative;
    display: inline-block;
    background: transparent;
    border: none;
}

.main-content .card:nth-last-child() {
    margin-right: 0;
}

.card img {
    border-radius: 10px;
    max-width: 340px;
}

.card-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #FFF;
    background: rgba(43, 50, 64, 0.76);
    padding: 10px;
    text-align: center;
    white-space: initial;
}

.card-title h4, .card-title h2 {
    margin-bottom: 0;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    width: 30px;
    height: 30px;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 769px) {
    .text-large {
        font-size: 3.7em;
    }

    .footer-info {
        padding-left: 30px;
    }

    .footer {
        margin-top: 4em;
    }

    .copyright {
        border-right: 1px solid #707070;
    }
}

@media screen and (max-width: 768px) {
    .social i {
        transform: scale(0.7);
        margin: 7px;
    }

    .footer h5 {
        font-size: 0.8em;
    }

    .player-cont {
        text-align: center;
    }

    .player {
        margin-bottom: 1em;
    }

    .main-content {
        margin: 1.5em 0 0.3em 0;
        padding: 0;
    }

    .info {
        border-left: 1px solid #707070;
        padding-left: 25px;
    }

    .copyright-cont {
        text-align: center;
    }

    .footer {
        margin-bottom: 1.2em;
    }
}

@media screen and (max-width: 430px) {
    .owl-stage .owl-item:first-child {
        margin-left: -70px;
    }
}