
html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #fff;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2e3192;
    color: #fff;
    transition: transform 0.2s ease-out;
}

.card-img {
  margin: auto;
}

.card-body:hover {
    -webkit-box-shadow: 10px 7px 21px -1px rgba(0,0,0,0.81);
    -moz-box-shadow: 10px 7px 21px -1px rgba(0,0,0,0.81);
    box-shadow: 10px 7px 21px -1px rgba(0,0,0,0.81);
    transform: scale(1.03);
}
.aspect-ratio-square {
    position: relative;
    padding-top: 100%;
}

.aspect-ratio-square .card-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.card-img
 {
    margin-bottom: 5px !important;
    margin-top: 5px !important;
}        

h1 {
   color: #013e6e;
}

h3 {
   color: rgb(64,64,255);
   font-size: 20px;
   font-weight: 600;
}    
.btn-primary {
    background-color: #0000ff;
    color: #fff;
    font-weight: 600;
}    

.card, .card-body {
    border-radius: 15px;
}

.btn {
    border-radius: 10px;
}

h5 {
   color: rgb(165,165,190)
}

@media (max-width: 767px) {
    .col-space-bottom {
        margin-bottom: 1rem;
    }
    .col-space-left {
        margin-left: 0 !important;
    }   
    h1 {
        font-size: 21px;                
    }     
    
    h3 {
        font-size: 18px;
        margin-top: 15px;
    }
}

	.btn-sm {
	    width: 140px;
	    margin: 0 auto;
	}


	
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");