.modal {
    display: none; 
    position: fixed;
    z-index: 1000; 
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4);
}
.read_more{
	display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #0c2e8a;
    padding: 8px 0px 8px 0px;
    margin: 0px 0 20px 0;
    position: relative;
    border-radius: 0px 30px 30px 0px;
    border: none;
    width: 25%;
    cursor: pointer;
}
/*.read_more:before{
	    content: " ";
    background: #fff;
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 3px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
}
.read_more:after{
	    content: " ";
    border-top: solid 2px #0c2e8a;
    border-right: solid 2px #0c2e8a;
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 20px;
    width: 0px;
    height: 0px;
    transform: translateY(-50%) rotate(45deg);
    transition-delay: 0.2s;
    opacity: 0;
}
.read_more:hover{
	border-radius: 30px;
    padding: 16px 56px 16px 20px;
}
.read_more:hover:before{
	    transform: translateY(-50%) scale(1);
}
.read_more:hover:after{
	width: 15px;
    height: 15px;
    opacity: 1;
}*/

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius:15px;
}
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: #0c2e8a;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    top: 20px;
    right:20px;
}

.close:hover,
.close:focus {
    color: #0c2e8a;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {padding: 2px 16px;}
.minimize {
    min-height: 110px;
    max-height: 110px;
    margin-bottom: 0;
}
.modal-body p:first-of-type {
      margin-top: 5%;
}
.modal-body h3{
	font-size: 22px;
    color: #0c2e8a;
    margin-top: 25px;
    font-weight: bold;
}
.modal-body h4{
	color: #d41920;
    margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
	.modal-body p:first-of-type {
      margin-top: 25%;
}
}