@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');


body,
html {
    height: 100%;
    margin: 0px;
}

body {
    margin: 0px;
    height: 100%;
    color: #ffffff;
    font-family: "Open Sans";
    background: rgb(75, 144, 215);
}

#background-video {
    height: 100vh;
    width: 150%;
    object-fit: cover;
    object-position: bottom;
    position: fixed;
    right: -20%;
    top: 0;
    bottom: 0;
    z-index: -2;
}

.overlay {
    background-color: rgb(75, 144, 215, 60%);
    position: absolute;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    object-position: 70%;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.logo {
    position: absolute;
    top: 0;
    left: 16px;
    width: 180px;
}

.logo img {
    width: 100%;
}

.container {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}


.container .big-logo {
    width: 360px;
}

.container-card {
    transition: transform .2s;
    transform: scale(0.9);
}

.container-card:hover {
    transform: scale(1.1);
}

.container-card a {
    text-decoration: none;
}

.card {
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 30px 10px;
    color: #ffffff;
    min-height: 310px;
    margin-bottom: 20px;
}

.card .title {
    margin: 0px auto;
}

.card .title img {
    height: 100px;
    margin-bottom: 30px;
}

.footer {
    width: 100%;
    padding: 20px;
    position: fixed;
    background: rgb(68, 68, 68, 0.5);
    bottom: 0px;
    font-size: 35px;
    text-decoration: none;
}

.footer a {
    text-decoration: none;
    color: #ffffff;
}

.footer .whatsapp-icon {
    width:39px;
}

.footer .call-icon {
    width:45px;
}

@media only screen and (max-width: 767px) {
    .logo {
        display: none;
    }

    .container .big-logo {
        width:300px;
    }

    .card {
        margin-bottom: 0px;
        min-height: 280px;
    }

    .card .title h2 {
        font-size: 21px;
    }

    .card .title h4 {
        font-size: 17px;
    }

    .card .title img {
        height: 70px;
    }

    .footer {
        background: rgb(68, 68, 68, 0.8);
        font-size: 22px;
    }

    .footer .whatsapp-icon {
        width:27px;
    }
    
    .footer .call-icon {
        width:32px;
    }

}