
/*-------------------------------------------------------
1. Theme default css
---------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Roboto+Condensed:wght@400;700&display=swap');
body {
  font-family: 'Lora', serif;
  font-weight: normal;
  font-style: normal;
  width:100%;
  width: 100%;
  background-color:#f0f0f0;
}
.img{
 max-width:100%;
 transition: all 0.3s ease-out 0s;
}
a,.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}
a:focus,
a:hover
{
  text-decoration:none;
}
a,
button {
  outline: medium none;
}
.uppercase { 
  text-transform: uppercase;
}
.capitalize { 
  text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora', serif;
  font-weight: normal;
  margin-top:0px;
  margin-bottom:0px;
  font-style: normal;
  font-weight:700;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a { 
    color: inherit;
}
h1 {
    font-size: 40px;

}
h2 {
    font-size: 35px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
ul {
  margin: 0px;
  padding: 0px;
}
li { 
	list-style: none
 }
p {
  font-size:15px;
  font-weight:500;
  color:#05396B;
  margin-bottom:20px;
  line-height:normal;
}
hr{
  margin: 60px 0;
  padding: 0px;
  border-bottom: 1px solid #eceff8;
  border-top: 0px;
}
.fix{
	overflow:hidden
	}
.f-left{
	float:left;
	}
.f-right{
	float:right;
	}

label {
  color: #7e7e7e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}
*::-moz-placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}
*::placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}
.btn{
  background-image: -moz-linear-gradient( 178deg, rgb(255,153,165) 0%, rgb(255,96,163) 100%);
  background-image: -webkit-linear-gradient( 178deg, rgb(255,153,165) 0%, rgb(255,96,163) 100%);
  background-image: -ms-linear-gradient( 178deg, rgb(255,153,165) 0%, rgb(255,96,163) 100%); 
  color:#fff;
  cursor:pointer;
  display:inline-block;  
  text-transform:uppercase; 
  font-size:19px;
  font-weight:700; 
  padding:20px 70px; 
  display:inline-block;
  border-radius:40px;
  border:2px soloid transparent;
  }
  
.btn-border{
  border-color:#fff;
  background:transparent;
}
.btn-border:hover{
 background:#fff;
 color:#ff63a3;
}

.btn-theme-border{
  border-color:#ff60a3;
  background:transparent;
  color:#000;
}

.btn-theme-border:hover{
 background:#ff60a3;
 color:#000;
}




/* Header area */
.header-area{}
.head-bg{
  background-image: url(../images/header-bg.jpg);
  min-height: 270px;
  background-position: center center;
  background-size: cover;	
  box-shadow: 10px 10px 20px rgba(0,0,0,0.15);  
  position: relative;
}

.header-area 
h1,
h2,
h3,
h4,
h5,
h6{color:#033b78;}

.header-area h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:8px;
}

.header-area h3{
  font-size:24px;
  font-weight:700;
  margin-bottom:0px;
  display:inline-block;
}
.logo{margin-right:10px}
.header-area h4{
  font-weight:700;
  font-style: italic;
  font-size:20px;
}
.main-menu li{
  display:inline-block; 
  margin:0px 7px;
  position:relative;
}
.main-menu li a{
  font-family: 'Lora', serif;
  color:#033b78;
  font-size:15px; 
  font-weight:700;
  padding:20px 0px;
  display:block;
  line-height:1;
  position:relative;
}
.main-menu li a.active{color:#800000;}

.main-menu li a:hover{
 color:#800000;
}
.main-menu i{color:#fff}
.main-menu li a:before{
	content:"";
	position:absolute;
	width:0%;
	height:2px;
	background:#800000;
	left:0;
	bottom:5px;
	transition:.2s;
	}
.main-menu li:hover a:before{
	width:100%;
	}


.main-menu ul li ul.submenu{
  position:absolute;
  top:110%;
  background:#fff;
  width:230px;
  padding:15px;
  visibility:hidden;
  opacity:0;
  transition: all 0.3s ease-out 0s;
  box-shadow:5px 5px 5px rgba(68, 68, 68, 0.6);
  text-align:left;
}
.main-menu ul li ul.submenu li:hover> a{color:#ff63a3} 
.main-menu ul li:hover> ul.submenu{
  visibility:visible;
  opacity:1;
  top:100%;
}

.main-menu ul li ul.submenu li{
  display:block;
  margin-bottom:15px;
} 
.main-menu ul li ul.submenu li:last-child{
  margin-bottom:0px;
} 
.main-menu ul li ul.submenu li a{
  padding:0px;
  color:#033b78; 
} 
.main-menu ul li ul.submenu li ul.submenu{
  top:0%;
  left:100%;
}

.main-menu li:hover:nth-child(7) a:before{width:0}

/********************** MAIN AREA *******************************/
.main-bg{
  background-image: url(../images/inner_sec_back.jpg);
  background-size: cover;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.15); 
  position: relative;
  }


.content_wrapper{padding:30px 10px;}
.content-text h1{margin-bottom:20px; font-size:24px; color:#800000;}
.content-text h3{margin-bottom:20px; font-size:20px; color:#2909b4;}
.content-text p{line-height:1.4; color:#033b78;}
.content-text a{color:#033b78; font-weight:700; font-size:15px}
.content-text a:hover{color:#2909b4;}
.content-text ol{padding:0 0 0 25px;}
.content-text ol li{list-style-type:decimal; padding:5px 0 5px 10px; color:#033b78; font-size:15px; font-weight:500}
.abstract-image{margin:0 10px}
.sub-heading h4{margin-bottom:10px; font-size:16px; display:inline-block; color: #2909b4;}
.sub-heading span{width:50px; height:3px; background-color:#50C6D8; display:inline-block; margin-right:10px}

.journal_table .table{margin-bottom:0; width:80%; margin:auto}
.journal_table .table td, .table th{border-top:none !important; padding:5px}
.journal_table .table th{color:#B2382C; padding-top:10px}
.journal_table .table td{font-size:15px; color:#033b78;}
.journal_table .table td span{font-size:13px; display:block}
/* .journal_table .table tr td:first-child,.journal_table .table tr th:first-child{border-left: none !important;}
.journal_table .table tr td:last-child,.journal_table .table tr th:last-child{border-right: none !important;}
.journal_table .table tr:first-child td,.journal_table .table tr:first-child th{border-top:none !important;}
.journal_table .table tr:last-child td,.journal_table .table tr:last-child th{border-bottom:none !important;}
.journal_table{margin:10px 0; outline: 1px solid #AFAFFF; outline-offset: 8px;} */
/*.content-table{width:90%; margin-top:30px; font-size:15px; color:#033b78; font-weight:500} */
.content-table a{color:#033b78;}

/* .research_table{padding:0 !important; margin-bottom:100px;  font-family: 'Montserrat', sans-serif; font-size:15px;}
.research_table .table tr td,.research_table .table tr th{padding: 10px 15px;}
.research_table .table tr th{border-bottom: none; font-size: 15px;}
.research_table .table tr td{background:#a5a5f5;}
.research_table .table tr:first-child td{background: none;} 
.blank_table{background:none;} */





.footer-area{}
.foot-bg{background: url(../images/footer-bg.jpg);
  min-height: 190px;
  background-position: center center;
  background-size: cover;
  padding:10px 0;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.15);
  position: relative;
  }

.footer-area .main-menu li a{font-size:13px}

.footer-text p { color:#1E428C; font-size:13px}
.social-icon a {
    margin-left: 20px;
    color:#1E428C;
    font-size: 24px;
}
.social-icon a:hover{color:#fcf305;}

