@import url(https://fonts.googleapis.com/css?family=Calibri:400,300,700);

.modal-content{
   background: none;
}

.card{
    border-radius: 3vh;
    margin: auto;
    max-width: 100%;
    padding-right: 3.5vh;
    padding-bottom: 3vh;
    align-items: center;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card:hover{
    cursor: pointer;
}

.row{
    margin-top: 30px;
    display:flexbox;
}

.img-fluid {max-width: 120%;}

.card-img{
    padding: 10px 0; 
}

.card-img img{
    opacity: 1;
}
.card-title{
    margin-bottom: unset;
}
.card-title p{
    padding-top: 30px;
    color: #0056b3;
    font-weight: 900;
    font-size: 50px;
    margin-bottom: unset;
}
.card-text p{
    color: black;
    font-size: 30px;
    text-align: center;
    padding: 1vh 0;
    font-weight: lighter;
}
.btn{
    margin-top: 30px;
    width: 100%;
    background-color: #0056b3;
    border-color: #0056b3;
    border-radius: 25px;
    color: white;
    font-size: 20px;
}
.btn:focus{
    box-shadow: none;
    outline: none;
    box-shadow: none;
    color: white;
    -webkit-box-shadow: none;
    -webkit-user-select: none;
    transition: none; 
}


.btn a{
    color: white;
}

@media(max-width:767px){
    .card{
        width: 75vw;
        
    }
    .row{
        margin-top: 0px;
        display: grid;
    }

    .img-fluid {max-width: 100%;}

    .card-title p{font-size: 25px;}

    .card-text p{font-size: 25px;}
    
}

.btn:hover{
    color: white;
    cursor: pointer;
}

