
/*-------------------------------------------------------
1. Theme default css
---------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800|Nunito:400,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700&display=swap');
body {
  font-family: 'Nunito', sans-serif;
  font-weight: normal;
  font-style: normal;
  width:100%;
}
.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: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  color: #232332;
  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: normal;
  color: #7e7e7e;
  margin-bottom:10px;
  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{
  background: url(../images/header.png);
  min-height: 443px;
  background-position: center center;
  background-size: cover;		
}

.header-area h2{
  font-size:42px;
  font-weight:700;
  line-height:1.1
}

.header-area h3{
  font-size:24px;
  font-weight:700;
  border:1px dashed #fff;
  display:inline-block;
  padding:10px;
  box-sizing: border-box;
}


.main-menu li{
  display:inline-block; 
  margin:0px 4px;
  position:relative;
}
.main-menu li a{
  font-family: 'Roboto Condensed', sans-serif;
  color:#202020; 
  font-size:17px; 
  font-weight:700;
  padding:15px 0px;
  display:block;
  line-height:1;
  position:relative;
}
.main-menu li a:hover{
 color:#fcf305;
}

.main-menu li a:before{
	content:"";
	position:absolute;
	width:0%;
	height:2px;
	background:#fcf305;
	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:180px;
  padding:20px;
  visibility:hidden;
  opacity:0;
  transition: all 0.3s ease-out 0s;
  box-shadow:0 0 10px 3px rgba(0, 0, 0, 0 .8)
}
.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:#7e7e7e;
} 
.main-menu ul li ul.submenu li ul.submenu{
  top:0%;
  left:100%;
}
/* .main-menu li:hover:nth-child(6) a:before{width:0} */
/********************** MAIN AREA *******************************/
.content_wrapper:not(:last-child) {
    margin-bottom: 30px;
}
.content-part h1{margin-bottom:20px; font-size:24px;}
.content-part h3{margin-bottom:10px; font-size:22px; }
.br{
	border-radius:5%;
	}

.content-text ol {
    padding: 0 0 0 25px;
}
.content-text ol li {
    list-style-type: decimal;
    padding: 5px 0 5px 10px;
    color: #7e7e7e;
    font-size: 15px;
    font-weight: 500;
}

.content-teble{width:80%;}

.optics_table .table tr td:first-child,.optics_table .table tr th:first-child{border-left: none !important;}
.optics_table .table tr td:last-child,.optics_table .table tr th:last-child{border-right: none !important;}
.optics_table .table tr:first-child td,.optics_table .table tr:first-child th{border-top:none !important;}
.optics_table .table tr:last-child td,.optics_table .table tr:last-child th{border-bottom:none !important;}


.journal_table .table{margin-bottom:0; width:90%; margin:auto}
.journal_table .table td, .table th{}
.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}

.blank_table{background:none;}
.optics_table{margin:10px 0;color:#3B3B3B; outline: 1px solid #AFAFFF; outline-offset: 8px;}

.B p{color:#fff}


.footer-area{
  background: url(../images/footer.png);
  min-height: 230px;
  background-position: center center;
  background-size: cover;		
}
.footer-area p {color:#000; font-size:14px}
.social-icon a{margin-right:10px; color:#fcf305; font-size:25px;}
.social-icon a:hover{color:#fff;}

