﻿
/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300,400,500,600,700,800,900&display=swap');
/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}



body {
    min-height: 100vh;
    background: linear-gradient(to bottom, #000428, #004683);
}



.container {
    margin-top: 20px;
}



    .container .row .col-lg-4 {
        display: flex;
        justify-content: center;
    }



.card {
    position: relative;
    padding: 0;
    margin: 0 !important;
    border-radius: 20px;
    overflow: hidden;
    max-width: 300px;
    max-height: 340px;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



    .card .card-image {
        width: 100%;
        max-height: 340px;
    }



        .card .card-image img {
            width: 100%;
            max-height: 340px;
            object-fit: cover;
        }

.card-content {
    margin-top: 5px;
    border: 1px solid black;
    min-height: 140px;
    border-radius: 0px;
    background-color: #13233b;
    opacity: 0.9;
    box-shadow: 5px 5px 5px #aaaaaa;
}

    .card-content h4, h6 {
        color: White;
        text-align: center;
    }

    .card-content:hover {
        background-color: #13233b;
        opacity: 0.7;
    }


/*.card .card-content {

    position: absolute;

    bottom: 180px;

    color: #fff;

    background: rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(15px);


    width: 100%;*/

/*transition: bottom .4s ease-in;*/

/*box-shadow: 0 -10px 10px rgba(255, 255, 255, 0.1);

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    margin-top: 00px;

}*/

.card .card-content {
    bottom: 0px;
}



    /*.card:hover .card-content h4,

        .card:hover .card-content h5 {

            transform: translateY(10px);

            opacity: 1;

        }*/



    /*.card-content h4,

     .card-content h5 {

        color:black;

        font-size: 1.1rem;*/

    /*text-transform: uppercase;*/

    /*letter-spacing: 3px;

        text-align: center;*/

    /* transition: 0.8s;*/

    /*font-weight: 500;

        opacity: 0;*/

    /*transform: translateY(-40px);*/

    /*transition-delay: 0.2s;

    }*/



    /*.card .card-content h5 {

        transition: 0.5s;

        font-weight: 200;

        font-size: 0.8rem;

        letter-spacing: 2px;

    }

 

    .card .card-content .social-icons {

        list-style: none;

        padding: 0;

    }*/





    .card .card-content .social-icons li {
        margin: 10px;
        transition: 0.5s;
        transition-delay: calc(0.15s * var(--i));
        transform: translateY(50px);
    }





.card:hover .card-content .social-icons li {
    transform: translateY(20px);
}



.card .card-content .social-icons li a {
    color: #fff;
}



    .card .card-content .social-icons li a span {
        font-size: 1.3rem;
    }







@media(max-width: 991.5px) {

    .container {
        margin-top: 20px;
    }



        .container .row .col-lg-4 {
            margin: 20px 0px;
        }
}
