/*css file */
*{
	padding:0;
	margin:0;
}
body{
	border-top: 2px solid #04b3a2;
	background-repeat: no-repeat;
	background-size:contain;
	background-attachment: scroll;
	background-origin: content-box;
	font-family: 'Montserrat', sans-serif;
}
/*overriding container width*/
.container{
	width: 75%;
}
hr {
    display: block;
    height: 2px;
    border: 0;
    border-top: 2px solid #100e72;
    margin: 1em 0;
    padding: 0; 
    width:20%;
}
.banner{
	height:465px;
	background-image: url("../img/bg.jpg");
	background-size: cover;
	background-attachment: scroll;
	background-position:fixed;
	background-repeat: no-repeat;
}
.logo{
	margin:0px;
	color:#fff;
	padding-bottom: 0px;
}
.logo h3{
	font-size:40px;
	font-family: 'Dancing Script', cursive;
	text-shadow: 2px 1px #000;
	transform: rotate(-10deg);
	transform-origin: center;
	margin-left: 60px;
}
.social_media{
	color:#fff;
	font-size:24px;
	margin:20px 60px 0px 0px;
	padding-bottom: 0px;
}
.social_media a {
	color:#fff;
	padding-right:4px;
}
/*top social icons style*/
.fa-facebook:hover{
	color:#3B5998;
	transition: 0.5s ease;
}
.fa-twitter:hover{
	color:#0084b4;
	transition: 0.5s ease;
}
.fa-instagram:hover{
	color:#e95950;
	transition: 0.5s ease;
}
.fa-linkedin:hover{
	color:#0077B5;
	transition: 0.5s ease;
}
/*about section home page */

.media_about_me{
	padding:20px;
	margin-top: 20px;
}
.about_me_row{
	margin:20px;
}
.media-left{
	margin-right:50px;
}

.intro_part{
	text-align: center;
	margin:0;
	padding:0;
	color:#fff;
	margin-top: 35px;
}
.intro_part h3{
	font-family: 'Dancing Script', cursive;
	font-weight: bold;
	font-size:29px;
}
.intro_part p{
	font-family: 'Josefin Slab', serif;
	font-size: 20px;
}
.ms{
	font-size:14px;
	font-family: 'Josefin Slab', serif;
	font-style: italic;
}
.btn-default{
	color:#fff;
	border-radius: 0px;
	background-color: #100e72;
	font-size:15px;
}
.btn-default:hover{
	color:#000;
	border:1px solid #000;
	background-color: transparent;
}
.btn-primary{
	background-color:transparent !important;
	border:1px solid #fff;
	color:#fff;
	width:150px;
	border-radius: 0px;
	overflow: hidden;
	position: relative;
}
.btn-primary:hover{
	border-color:#090d8d;
	transition: all .5s ease;
}
.navigation{
	color:#fff;
	margin-bottom: 0px;
	padding:0;
	margin:0;
	margin-top: 100px;
}
.nav{
	background-color:#100e72;
}
.nav li a{
	color:#fff;
	margin:5px;
	position: relative;
	margin-left:30px;
}
.nav li a:hover{
	background: rgba(255,255,255,0.2);
}
/* navigation effect 
.nav li a:before {
	content:'';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 0px;
	height: 42px;
	background: rgba(255,255,255,0.2);
	border-radius: 2px;
	transition: all 1s ease;
} 
.nav li a:hover:before {
	width: 100%;
}
.nav li a:hover{
	border-radius:4px;
}
*/
.about_paragraph{
	line-height:1.8;
}
.gallery_wrapper{
	background:#f7f5f5;
	padding-bottom: 10px;
}
.body_content{
	padding: 30px;
	margin-top: 20px;
}
/* gallery */
.photo h1{
	font-size: 27px;
	color:#000;
	text-align: center;
}
.image{
	margin-top:30px;
}
.gallery-image{
	padding:0;
}
/*contact page */
.contact_info{
	padding: 40px;
	margin-top: 20px;
}
.contact_info h3{
	margin-bottom: 20px;
}
/*about me page*/
.about_me{
	padding:30px;
	margin-top:20px;
}
.about_me p{
	line-height: 1.8;
}
.about_me h3{
	margin-bottom: 20px;
}
.education_section{
	padding:30px;
}
/*blogs_container*/
.blogs_container{
	padding:40px;
}
.blogs_container h3{
	margin:10px 0px 30px 0px;
}
.blogs_container h5{
	padding:20px 0px 0px 0px;
}
footer{
	margin:100px 0px 0px 0px;
	padding:40px 0px 20px;
	background-color:#cbcbcb;
	color:#fff;
	border-bottom: 12px solid #100e72;
}
footer p{
	color:#4e4f50;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */

}
/* Add Animation */
@-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}
}
/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    transition:(all 0.25s ease-in-out);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
    color:#000;
    text-align: left;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align: right;
}
.close:hover,
.close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}
form input[type=text]{
	width: 90%;
	margin-bottom: 30px;
	margin-right: 30px;
	height:40px;
	font-size: 16px;
	padding-left: 5px;
}
form input[type=email]{
	width: 90%;
	height:40px;
	font-size: 16px;
	padding-left: 5px;
	margin-right: 30px;
	margin-bottom: 10px;
}
form input[type=button]{
	width:110px;
	background-color: #100e72;
	border: none;
	height:40px;
	font-size: 14px;
	margin-top: 15px;
	color:#fff;
}
form input[type=button]:hover{
	background-color: transparent;
	color:#000;
	border:1px solid #100e72;
}
textarea{
	width:90%;
	height:150px;
	padding:5px;
	margin-top:15px;
}