@charset "UTF-8";
/* CSS Document */


.btn-primary:hover,
.btn-primary:focus {
	background-color: #DC4635;
	box-shadow: none;
	outline: none;
	color: #f6f6f6;
}

.btn-primary {
    color: #E78D33;
    background-color: #f6f6f6;
    border: #DC4635 solid thin;
	margin-bottom: 1rem;
}
.btn-outline-primary {
	color: #DC4635;
	background-color: transparent;
	background-image: none;
	border:  #DC4635 solid thin;
}

.card {
	height:100%;
	background-color:#f6f6f6;
    cursor:pointer;
    overflow:hidden;
	box-shadow: 5px 7px 9px -4px #0e426e;
	text-align:center

}
 .card .card-title {
    color: #DC4635 !important;
	width: inherit;
}

 .card .card-body img {
    width: 150px;
    height: 150px;
    border-radius: 10%;
}
.card-footer {
    background-color: transparent; 
    border-top: none;
	margin-top:auto;
}
.modal-header{
	background-color: #DC4635;
	color: #FFFFFF;	
}
.modal-content{
	cursor: all;
}
.modal-body {
	padding:2rem;
}
	


@media screen and (max-width: 768px) {
	.modal-body{
		padding:1rem;
	}
	
}

