/* ==========================================================================
   1. IMPORT GOOGLE FONTS
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Montserrat:500,700|Open+Sans");
/* ==========================================================================
   2. GENERAL
   ========================================================================== */

@media screen and (min-width: 1280px) {
    .container {
        max-width:1280px;
    }
} 
body {
  font-family: 'Open Sans', sans-serif;
  color: #546E7A;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

p {
  font-size: 14px;
  color: #546E7A;
  line-height: 26px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0;
}

a:hover, a:focus {
  color: #F97794;
}

a {
  color: #F97794;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #263238;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

a:not([href]):not([tabindex]) {
  color: #fff;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: #fff;
}
.default-color {
	color:#650312;
}

.bg-transparent {
  background: transparent !important;
}

.bg-defult {
  background: #F97794 !important;
}
.mb50{
	margin-bottom: 50px;
}
/* ==========================================================================
   2.1 Section Title
   ========================================================================== */
.section {
  padding: 40px 0;
}

.section-header {
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
}

.section-header .section-title {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  
  color: #333;
  position: relative;
}
.section-header  > a {
top:0;
    position: absolute;
    right: 0;
	text-decoration: none;
	font-size: 14px;
	color: #333;
	line-height: 28px;
	padding: 5px 30px;
	border: 1px solid #880015;
	transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
}
.section-header  > a:hover {
	background-color: #880015;
	border-color: #880015;
	color:#FFF;
}
/* .section-header .section-title:before {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: #880015;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
} */

.section-header .section-title span {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  color: #CCC;
  position: relative;
  margin-left: 20px;
  top:0;
}

.section-header .section-title2 {
  font-size: 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;  
  color: #333;
  position: relative;
  text-align: center;
}
.section-header .section-title2:before {
  content: '';
  position: absolute;
  height: 2px;
  background: #880015;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.section-header .section-title2 span {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ccc;
  position: relative;
  margin-left: 20px;
  top:0;
}



.section-header b {
  font-size:13px;
  color: #FFFFFF;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  position: absolute;
  top: 3px;
  right: 0;
  padding:0px 3px;
  
  background-color: #993333;
}
.tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
/* ==========================================================================
   2.2 Buttons
   ========================================================================== */
.btn {
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.btn-search{
	 border-radius:0 5px 5px 0 ;
	 background-color: #993333;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  color: #fff;
}

.btn-common {
  background-color: #F97794;
  position: relative;
  z-index: 1;
  padding: 12px 32px;
  border-radius: 30px;
}

.btn-common:hover {
  color: #fff;
}

.btn-effect {
  overflow: hidden;
}

.btn-effect:after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-effect:hover:after {
  width: 100%;
}

.btn-border {
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-border:hover {
  color: #ffffff;
  background-color: #F97794;
}

.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-rm {
  padding: 7px 10px;
  text-transform: capitalize;
}

button:focus {
  outline: none !important;
}

.clear {
  clear: both;
}
.float_left {
    float: left;
}
.float_right {
    float: right;
}

/* ==========================================================================
   2.3 Social Iocns
   ========================================================================== */
.social-icons {
  margin-bottom: 20px;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline;
}

.social-icons ul li a {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid rgba(255, 254, 254, 0.07);
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
}

.social-icons ul li a:hover {
  color: #fff;
}

.facebook a {
  color: #4867AA;
}

.facebook a:hover {
  background: #4867AA;
}

.twitter a {
  color: #1DA1F2;
}

.twitter a:hover {
  background: #1DA1F2;
}

.google-plus a {
  color: #DD4D42;
}

.google-plus a:hover {
  background: #DD4D42;
}

.youtube a {
  color: #DF2926;
}

.youtube a:hover {
  background: #DF2926;
}

.linkedin a {
  color: #007BB6;
}

.linkedin a:hover {
  background: #007BB6;
}

.pinterest a {
  color: #BD081C;
}

.pinterest a:hover {
  background: #BD081C;
}

.dribbble a {
  color: #EA4C89;
}

.dribbble a:hover {
  background: #EA4C89;
}

.behance a {
  color: #0B7CFF;
}

.behance a:hover {
  background: #0B7CFF;
}

/* ==========================================================================
   2.4  Pre Loader
   ========================================================================== */
/* #loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #263238;
  z-index: 9999999999;
}

.spinner {
  width: 40px;
  height: 40px;
  top: 45%;
  position: relative;
  margin: 0px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #F97794;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
} */

/* ========================================================================== 
  -2.5 Scroll To Up 
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 30px;
  background-color: #650312;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay-2 {
  background: rgba(0, 0, 0, 0.9) !important;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #F97794;
  opacity: 0.5;
  filter: alpha(opacity=80);
}
/**/
.top-bar {
  position: relative;
  background: #0E4C92;
  /* border-bottom: 1px solid rgba(4,59,121,0.4); */
  line-height: 40px;
}

.top-bar .top-bar-text li {
  color: #FFF;
  margin-right: 20px;
  display: inline-block;
  font-size: 14px;
}
.top-bar .top-bar-text li i {
    color: #FFF;
    margin-right: 10px;
    font-size: 16px;
    position: relative;
    top: 0px;
}


/* ==========================================================================
   Navbar Style
   ========================================================================== */
.bg-faded {
  background-color: #0E4C92;
}

.mainmenu-area {
  padding: 10px 0;
  border: none;
  margin: 0;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.mainmenu-area .menu-button {
  position: relative;
  color: #263238;
  line-height: 58px;
  top: 0;
  outline: none;
}

.logo-menu a {
  font-size: 20px;
  color: #fff;
}

.menu-bg {
  background-color: #fff !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  z-index: 999;
  padding: 3px;
}

.menu-bg .menu-button {
  top: 0;
}

.menu-bg .menu-button:hover {
  cursor: pointer;
  color: #F97794;
}

.menu-bg .logo-menu a {
  color: #F97794;
}

.menu-bg .navbar-nav .nav-link {
  color: #263238 !important;
  cursor: pointer;
}

.menu-bg .navbar-nav .nav-link:hover {
  color: #F97794 !important;
}

.menu-bg .navbar-nav .active {
  color: #F97794 !important;
}

.menu-button:hover {
  cursor: pointer;
  opacity: #eee;
}
.topnav{
	background-color: rgba(14,76,146,1);
	height: 120px;
	display: block;
    padding: 10px 0;
}
.topnav li{
	display: inline-block;
}
.header-links{
	padding:5px 0;
	text-align: right;
}
.header-links a{
    color:#fff;
    text-decoration: none;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.header-links span{
    color:#FFF;
    margin:0 10px;
}

.search form {
  position: relative;
  width: auto;
  float: right;
  top:30px;
  right:20px;
}
.search:after {content:""; clear:both; display:table}
.search input {
  width: 250px;
  height: 42px;
  padding-left: 15px;
  border-radius: 42px;
  border: 1px solid #ccc;
  background: #FFF;
  outline: none;
  position: relative;
  transition: .3s linear;
}
.search input:focus {
  width: 300px;
}
.search button {
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 18px;
}
.search button:before{
  font-family: FontAwesome;
  color: #324b4e;
}

.bg-white {
  background-color: #fff !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  z-index: 999;
  padding: 0px;
}

.bg-white .menu-button {
  top: 0;
}

.bg-white .menu-button:hover {
  cursor: pointer;
  color: #993333;
}

.bg-white .logo-menu a {
  color: #993333;
}

.bg-white .navbar-nav .nav-link {
  color: #263238 !important;
}

.bg-white .navbar-nav .nav-link:hover {
  color: #993333 !important;
}

.bg-white .navbar-nav .active {
  color: #993333 !important;
}

.close-button {
  cursor: pointer;
}
.bg-white .navbar-nav  ul li {
  position: relative;
  cursor: pointer;
}
.bg-white .navbar-nav  ul li::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #993333;
  transform: scaleX(0);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.bg-white .navbar-nav  ul li:hover::after, ul li.active::after {
  transform: scaleX(1);
}
.bg-white .navbar-nav .nav-link:hover  {
  color: #993333 !important;
  background:#FFF;
}
.navbar-expand-md .navbar-nav .nav-link::after  {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #993333;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.bg-white .navbar-nav  ul li a {
  position: relative;
  display: flex;
  color: white;
  font-family: Lato, sans-serif;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar-expand-md .navbar-nav .nav-link {
  color: #333;
  font-size: 14px;
  padding: 15px 5px;
  margin-left: 0px;
  position: relative;
}
.navbar-expand-md .navbar-nav .active::before,
.navbar-expand-md .navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-brand img {
  height: 56px;
}

.navbar-expand-md .navbar-nav .nav-link:focus,
.navbar-expand-md .navbar-nav .nav-link:hover,
.navbar-expand-md .navbar-nav .nav-link:hover:after {
  color: #993333;
}



.navbar-expand-md .navbar-toggler i {
  color: #000 !important;
}

.mainmenu-area .navbar-nav .nav-link {
  color: #263238 !important;
}
.navbar .nav>li:hover .dropdown-menu {
	display: block;
	-webkit-animation-name: fadeIn; 
	-webkit-animation-duration: 1s; 
	-webkit-animation-iteration-count: 1; 
	-webkit-animation-delay: 0s; 
			
}
.navbar .nav li .dropdown-menu{
	-webkit-animation-name: fadeOut; 
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1; 
	-webkit-animation-delay: 0s; 
			
}
.navbar-expand-md .navbar-nav .dropdown-menu {
	margin-top: 1px;
	background:rgba(255,255,255,0.8);
	text-align: center;
}
.navbar-expand-md .navbar-nav .dropdown-menu li{
	/* display:inline-block; */
    height:30px;
	line-height: 30px;
	font-size:14px;	
}
.navbar-expand-md .navbar-nav .dropdown-menu li a{
	display: block;
	color:#333;
	padding:0  10px;
	text-align: center;
}
.navbar-expand-md .navbar-nav .dropdown-menu li a:hover{	
	color:#993333 !important;
	
}


.navbar-expand-md .navbar-nav .active > .nav-link,
.navbar-expand-md .navbar-nav .nav-link.active,
.navbar-expand-md .navbar-nav .nav-link.active:before,
.navbar-expand-md .navbar-nav .nav-link.open,
.navbar-expand-md .navbar-nav .open > .nav-link {
  color: #993333;
}

.navbar-expand-md .navbar-toggler {
  background: rgba(255,255,255);
  border-radius: 0px;
  margin: 5px;
  cursor: pointer;
  float: right;
  border: 1px solid #993333;
  color:#993333;
}
.navbar-expand-md .navbar-nav .nav-link  i {
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    margin-left: 3px;
    position: relative;
    top: 0px
}
.navbar-expand-md .navbar-nav .nav-item:hover a.nav-link{
	color:#993333;
}
.navbar-expand-md .navbar-nav .nav-item:hover a i{
	-webkit-transition: -webkit-transform 0.3s ease-out;
		-moz-transition: -moz-transform 0.3s ease-out;
		-o-transition: -o-transform 0.3s ease-out;
		-ms-transition: -ms-transform 0.3s ease-out;
		-webkit-transform: rotateZ(180deg);
		-moz-transform: rotateZ(180deg);
		-o-transform: rotateZ(180deg);
		-ms-transform: rotateZ(180deg);
		transform: rotateZ(180deg);
		color:#993333;
}

.collapse.show {
  background: #3e3a3a;
  margin-bottom: 10px;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.menu-bg .collapse.show {
  background: #fff;
  margin-bottom: 10px;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
}

/**/
#banners{
	margin-top: 60px;
}
/*about*/
.about {
    padding: 0px 0;
    background-color: #FFFFFF;
    /* background-color: #993333; */
	/* height: 510px; */
}

.about .container-fluid {
    padding: 0px
}

.about .left_side {
    /* position: relative; */
    /* background:url(../img/bg/bg.jpg); */
    background-size: cover;
    background-position: center;
}

.about .we_are_opacity {
    background: rgba(47,45,55,0.1);
    width: 100%;
}

.about .we_are_border {
    background: rgba(0,0,0,0.4);
    height: 100%;
    width: 100%;
}

.about .we_are_border h2 {
    font-weight: 700;
    font-size: 1.625em;
    color: #666666;
    color:;
    background: #993333;
    background: #000000;
}

.about .right_side {
    /* position: relative; */
    overflow: hidden;
	 background-color: #F3F3F3;
}

.about .we_are_deatails {
	padding-top:50px;
    padding-left: 30px;
	padding-right: 30px;
}

.about .right_side h2 {
    font-weight: 700;
    font-size: 1.625em;
    color: #fff;
    position: relative;
    padding-top: 30px;
    word-spacing: 6px;
    padding-bottom: 20px
}

.about .right_side h2 a {
    color: #333333;
    /* color: #ffffff */
}

.about .right_side h2:before {
    content: '';
    width: 45px;
    height: 3px;
    background: #FFFFFF;
}

.about .right_side .we_are_deatails .about_index_content > p {
    color: #666666;
    /* color: #ffffff; */
    width: 100%;
	text-align: justify;
	text-indent:2em;
}
/*news */
.news_list .c-top {
	margin-top:30px;
    margin-bottom: 30px;
}

.news_list .datetime {
    width: 60px;
    background: #993333;
    text-align: center;
    line-height: 20px;
    float: left;
    font-size: 14px;
    font-family: Arial;
    padding: 8px 0
}

.news_list .datetime,.news_list .chakan {
    color: #666666;
    color: #ffffff
}

.news_list .tit {
    background: #fff;
    margin-left: 60px;
    padding-left: 5px
}

.news_list .c-top .fltitle {
    margin: 0px;
    padding: 0px 8px 5px 8px;
    border-bottom: 1px solid #dfdfdf;
    line-height: 2;
    overflow: hidden;
	font-size:15px;
	font-weight: 400;
}

.news_list .c-top .fltitle a:hover,.news_list .c-top .fltitle a:hover span {
    color: #993333 !important;
    /* color: #333333 !important */
}
.news_list .c-bots  {
    
	border-top: 1px dotted #dfdfdf;
}
.news_list .c-bots a:hover {
    color: #993333;
    color: #333333;
    color:
}

.news_list .c-top .fltitle_a {
    font-size: 18px;
    line-height: 20px;
    color: #333333;
    color:;
    width: 90%;
    float: left
}

.news_list .c-top .fltitle_a,.news_list .c-top .fltitle_a span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block
}

.news_list .tit .iititle {
    color: #999;
    height: 16px;
    line-height: 16px;
    font-size: 12px;
    margin-top: 10px;
    overflow: hidden
}

.news_list .iititle span {
    padding-left: 5px
}

.news_list .c-top .myspan {
    margin-right: 30px;
    height: 18px
}

.news_list .cb_bq,.news_list .c-top .myspan {
    color: #993333;
	
}
.news_list .cb_bq{
	font-size:9px;	
}

.news_list .c-con {
    line-height: 28px;
    font-size: 14px;
    margin-top: 5px;
    
    padding-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis
}

.news_list .img_box {
    /* float: left;
    width: 34%; */
	/* margin-right: 10px; */
}

.news_list .img_box img {
    margin-right: 10px;
    width: 100%;
}

.news_list .boxdiv li {
    margin-bottom: 50px
}

.news_list .chakan {
    float: right;
    height: 20px;
    padding: 0 10px;
    background: #993333;
    line-height: 18px;
    right: 0;
    bottom: -30px;
    text-align: center;
    -webkit-transition: 0;
    transition: all 0.5s;
    display: block;
    margin-right: 4%
}

.news_list .chakan:hover {
    padding: 0 30px;
	color:#FFF;
}

.news_list .desc_box {
    /* width: 60%;
    float: left */
}

.news_list .mydesc {
    color: #666666;
    color:
}

.news_list .desc {
    width: 100%;
    padding: 0px;
	line-height: 26px;
    display: block;
    color: #666666;
    color:
}

.news_list .mytit_box {
    text-align: center;

}
.news_list .mytitle {
    color:#333333;
    color:;
    font-size: 30px
}

.news_list .title_hot {
    font-size: 12px;
    font-family: Arial;
    color: #ffffff;
    background: #333333;
    background:;
    background: #993333;
    padding: 1px 3px;
    margin-left: 5px
}

.news_list.met-index-body {
    background-color: #ffffff;
    background-color:;
    background-image: url();
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0px
}

.news_list .teshu {
    width: 100%
}



/* glimpse */
#glimpse .box{
	font-family: 'Varela Round', sans-serif;
	text-align: center;
	overflow: hidden;
	perspective: 800px;
	position: relative;
	padding: 0px;
}


/* glimpse of activities */
.grid {
	position: relative;
	margin: 0 auto;
	padding: 0.5em;
	max-width: 1000px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	/* min-width: 320px;
	max-width: 480px;
	max-height: 360px; */
	width: 100%;
	/* background: #3085a3; */
	text-align: center;
	cursor: pointer;
	/* overflow: hidden; */
}

/* .grid figure img {
	position: relative;
	display: block;
	max-width: 100%;
	height: 160px;
	opacity: 1;
} */
.grid figure img.index {
	position: relative;
	display: block;
	height: 160px;
	max-width: 100%;
	opacity: 1;
}
.grid figure img.list {
	position: relative;
	display: block;
	
	height: 240px;
	width: 100%;
	opacity: 1;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}
.grid figure.effect-lily img {
	/* max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	
	opacity: 1;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0); */
}

.grid figure.effect-lily figcaption {
	text-align: left;
}

.grid figure.effect-lily figcaption > div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0.5em;
	width: 100%;
	height:40%;
}

figure.effect-lily h2,
figure.effect-lily p {
	/* -webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0); */
}

figure.effect-lily h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	font-size:14px;
	background-color: rgba(168,0,1,0.7);
	display:block;
	line-height: 30px;
	padding:5px;
	color:#FFF;
	/* overflow: hidden; */
}

figure.effect-lily p {
	color: rgba(255,255,255,0.8);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
}

figure.effect-lily:hover img,
figure.effect-lily:hover p {
	/* opacity: 1;
	background-color: rgba(0,0,0,0.6);
	display: inline-block;
	padding:0 10px; */
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
	/* -webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0); */
}

figure.effect-lily:hover p {
	/* -webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s; */
}




/* ==========================================================================
    call to action
   ========================================================================== */
#cta {
  background: url(../img/bg/bg-cta.jpg) fixed;
  background-size: cover;
}

#cta h5 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
}

#cta .btn {
  margin: 30px 10px;
}

.call-action {
  background: #f9f9f9 url(../img/bg/bg-cta.png) center no-repeat;
}

.call-action .cta-trial h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 1px;
  color:#650312;
}

.call-action .cta-trial p {
  margin-bottom: 30px;
  
}

/* ==========================================================================
 Video promo Style
 ========================================================================== */
.video-promo {
  position: relative;
  height: 400px;
  background:  url(../img/bg/aboutbg1.jpg) no-repeat center;
  background-size: cover;
}

.video-promo .video-promo-content {
  color: #fff;
}

.video-promo .video-promo-content .video-popup {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border: 3px solid #fff;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  font-size: 26px;
}

.video-promo .video-promo-content h2 {
  margin-top: 30px;
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
}

.video-promo .video-promo-content p {
  color: #fff;
}
.box-image {
  margin: 0;
}

.box-image {
  position: relative;
  margin: 20px 0;
}

.box-image:hover .overlay {
  opacity: 1;
}

.box-image:hover h3, .box-image:hover p, .box-image:hover .buttons {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.box-image:hover p {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.box-image:hover .buttons {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.box-image .name {
  margin-bottom: 20px;
}

.box-image a {
  text-decoration: none !important;
}

.box-image h3 {
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.box-image .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(79, 191, 168, 0.1);
  padding: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.box-image .buttons {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.box-image .buttons a {
  margin: 0 3px;
}

.box-image p {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.box-image-text .content2 {
  text-align: center;
}

.box-image-text p {
  color: #777;
  font-size: 0.9rem;
}


/* ==========================================================================
   Portfolio Section
   ========================================================================== */
#portfolios {
  background: #f9f9f9;
}

#portfolios .mix {
  padding: 0px;
}

#portfolios .portfolio-item {
  padding: 10px;
}

#portfolio .mix {
  display: none;
}

.controls {
  text-align: center;
  padding: 0px 0px 20px;
}

.controls .active {
  color: #F97794 !important;
  border-color: #F97794;
  background: transparent;
}

.controls .btn {
  text-transform: uppercase;
  margin: 2px;
}

.controls:hover {
  color: #fff;
  cursor: pointer;
}

.shot-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.shot-item img {
  width: 100%;
  height: 100%;
  -webkit-transition-duration: 4000ms;
  -o-transition-duration: 4000ms;
  transition-duration: 4000ms;
}

.shot-item .single-content {
  background-color: rgba(22, 26, 39, 0.7);
  opacity: 0.90;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  width: 100%;
}

.shot-item .single-content .fancy-table {
  display: table;
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 2;
}

.shot-item .single-content .fancy-table .table-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.shot-item .single-content .zoom-icon a {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
}

.shot-item .single-content a {
  color: #fff;
  font-size: 16px;
}

.shot-item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shot-item:hover .single-content {
  opacity: 0.8;
}

/* Notices Item */
 

.notices{
	padding:0 10px;
}
.notices .item h4 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0;
}
.notices  .item h4 a {
  display: block;
  overflow: hidden;
  line-height: 30px;
  height: 30px;
  color:#333;
 
}
.more a{ color:#FFF; }

.owl-theme .owl-controls .owl-nav .owl-next,.owl-theme .owl-controls .owl-nav .owl-prev {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #993333;
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.owl-theme .owl-controls .owl-nav .owl-next:hover,.owl-theme .owl-controls .owl-nav .owl-prev:hover {
    color: #fff;
    background: #000000;
    
}
.item-boxes p {
  margin: 0;
}


.notices-item {
  padding: 5px 0;
  background: #fff;
  margin-bottom: 0px;
  position: relative;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}


.featured-bg {
  background: #fafafa;
}

.featured-bg .intro-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.featured-bg .title-sub {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 36px;
}

.featured-bg .intro-desc {
  margin-bottom: 20px;
}

.featured-bg .featured-item {
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.featured-bg .featured-item .icon {
  float: left;
  padding-right: 15px;
}

.featured-bg .featured-item .icon i {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #F97794;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.featured-bg .featured-item h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
}

.featured-bg .featured-item h3 a {
  color: #272727;
}

.featured-bg .featured-item h3 a:hover {
  color: #F97794;
}

/* ==========================================================================
   Featured Section Start
   ========================================================================== */
.featured-box {
  margin-top: 15px;
  margin-bottom: 15px;
}

.featured-box .featured-icon {
  float: left;
}

.featured-box .featured-icon i {
  font-size: 30px;
  color: #F97794;
  text-align: center;
  float: left;
  margin-right: 25px;
  margin-bottom: 85px;
  display: block;
}

.featured-box .featured-content {
  padding-left: 40px;
  position: relative;
}

.featured-box .featured-content .icon-o {
  font-size: 86px;
  color: rgba(0, 0, 0, 0.07);
  z-index: 2;
  font-weight: 400;
  text-transform: capitalize;
  position: absolute;
  top: 0px;
  left: 50px;
  width: 100%;
}

.featured-box .featured-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.featured-box .featured-content p {
  font-size: 14px;
}

/* ==========================================================================
 Team Section
   ========================================================================== */
.single-team:hover .team-details {
  opacity: 1;
}

.single-team {
  position: relative;
  background: #f9f9f9;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.15);
  border-radius: 0px;
  overflow: hidden;
}

.single-team:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.35);
}

.single-team img {
  width: 100%;
}

.single-team .team-inner {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team .team-details {
  padding: 20px;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.single-team .team-details .team-title {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
  color: #263238;
}

.single-team .team-details p {
  margin-bottom: 15px;
}

.single-team .social-list li {
  display: inline-block;
}

.single-team .social-list li a {
  display: block;
  height: 34px;
  line-height: 34px;
  text-align: center;
  width: 34px;
  color: #F97794;
  font-size: 14px;
  background: #fff;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.single-team .social-list .facebook a:hover {
  background: #4867aa;
  color: #fff;
}

.single-team .social-list .twitter a:hover {
  background: #1da1f2;
  color: #fff;
}

.single-team .social-list .google-plus a:hover {
  background: #dd4d42;
  color: #fff;
}

.single-team .social-list .linkedin a:hover {
  background: #007bb6;
  color: #fff;
}



/* notice  */
.notice-item {
  padding: 10px;
  margin: 5px;
  background: #fff;
  border-radius: 4px;/* 
  border: 1px solid rgba(0, 0, 0, 0.06); */
}

.notice-item .author {
  display: inline-block;
  margin-bottom: 5px;
}

.notice-item .notice-img .img-thumb {
  overflow: hidden;
  position: relative;
}

.notice-item .notice-img .img-thumb img {
  width:100%;
}

.notice-item .content-inner {
  overflow: hidden;
}

.notice-item .content-inner p {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin-top: 10px;
  text-align: center;
}
.notice-item .content-inner p a {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin-top: 10px;
  text-align: center;
}

.owl-pagination {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -20px;
}

.owl-theme .owl-controls .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-controls .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 2px 4px;
  filter: alpha(opacity=50);
  opacity: 1;
  border-radius: 30px;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0px 0px 2px rgba(103, 3, 17, 0.8);
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.owl-theme .owl-controls .owl-dot.active span, .owl-theme .owl-controls.clickable .owl-dot:hover span {
  background: #993333;
}
#specialty{
	
}
#specialty{
	
}
#notices{
	background-color: #FFFFFF;
}

/* #notices .sub-item-box {
  padding: 5px;
  margin-bottom: 5px;
  background: #fff;
}
#notices .sub-item-box:hover{
	background:#F3F3F3;
	cursor: pointer;
}

#notices .sub-item-box .icon-box {
  float: left;
}

#notices .sub-item-box .icon-box i {
  font-size: 16px;
  color: #990000;
}

#notices .sub-item-box .text-box {
  margin-left: 40px;
}

#notices .sub-item-box .text-box h4 {
  font-size: 16px;
  font-weight: 500;
}
#notices .sub-item-box .text-box h4 a {
  color:#333;
  
}

#notices .sub-item-box .text-box p {
  margin-bottom: 0;
}

#notices .sub-item-box:last-child {
  margin-bottom: 0;
} */
ul.news-list {
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; 
}
ul.news-list li {
	display:flex;
	justify-content:space-between
	color:#333;
    line-height: 1.75rem;
    padding-bottom: .275rem; 
	border-bottom:1px #FFF solid;
}
ul.news-list li:before {
    color: #993333;
    margin: 0 12px 0 0; 
}
ul.news-list li a{
	line-height: 1.75rem;
	color:#333;
	font-size: 16px;
}
ul.news-list li:hover{
	color:#993333;
	border-bottom:1px #993333 solid;
}
ul.news-list li a:hover{
	color:#993333;
}
ul.news-list li span{
	width:60px;
	display: inline-block;
	line-height: 1.75;
}
.news-item{
	display:flex;
	justify-content:space-between;
	line-height: 2rem;
	border-bottom:1px #F3F3F3 solid;
	margin-bottom: 5px;
}
.news-item:hover{
	color:#993333;
	border-bottom:1px #993333 solid;
}
.news-item  a{
	line-height: 1.75rem;
	color:#333;
	font-size: 16px;
}
.news-item  a:hover{
	color:#993333;
}
.news-item div.icon{
	flex: 0 0 30px;
}
.news-item div.date{
	flex: 0 0 50px;
}

.news-item div.title{
	flex:1;
	overflow: hidden;
}


/* ==========================================================================
  Pricing Table
  ========================================================================== */
.pricing-table {
  padding: 20px 0px 0px;
  margin: 0 auto;
  margin-bottom: 5px;
  border: 1px solid #eaeaea;
  text-align: center;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.15);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 30px;
}

.pricing-table:hover {
  box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.35);
}

.pricing-table .pricing-details h2 {
  font-size: 18px;
  color: #546E7A;
  font-weight: 500;
  padding-top: 15px;
  padding-bottom: 15px;
}

.pricing-table .pricing-details .price {
  color: #263238;
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  background-color: #fff !important;
  border-bottom: 1px solid #e9edf2;
  padding-bottom: 40px;
}

.pricing-table .pricing-details .price span {
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: #A2A2A2;
}

.pricing-table .pricing-details ul li {
  padding: 12px;
  font-size: 14px;
}

.pricing-table .pricing-details ul li:nth-child(even) {
  background-color: #f9f9f9;
}

.pricing-table .plan-button {
  padding: 30px 0;
  background: #f9f9f9;
}

.pricing-big {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  -moz-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

/* ==========================================================================
  Slider
   ========================================================================== */
#carousel-area {
  
  overflow: hidden;
  background: #000;
}

#carousel-area .carousel-item {
  
  
}
#carousel-area .carousel-item img{
  width: 100%;
}

#carousel-area .carousel-item .carousel-caption {
  top: 32%;
  right: 10%;
  left: 12%;
  text-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}

#carousel-area .carousel-item .carousel-caption h3 {
  color: #fff;
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
}

#carousel-area .carousel-item .carousel-caption h2 {
  font-size: 50px;
  font-weight: 700;
  color: #FFF;
  text-shadow: .2rem 0rem .5rem #650312,-.2rem 0rem .5rem #650312,0rem .2rem .5rem #650312,0rem -.2rem .5rem #650312;
}

#carousel-area .carousel-item .carousel-caption h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}

#carousel-area .carousel-control {
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#carousel-area:hover .carousel-control {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

#carousel-area .carousel-control-next, #carousel-area .carousel-control-prev {
  opacity: 1;
}

#carousel-area .carousel-control-next i, #carousel-area .carousel-control-prev i {
  width: 48px;
  line-height: 48px;
  height: 48px;
  color: #993333;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  background: rgba(255,255,255,0.6);
  font-family: "arial black";
  /* border-radius: 30px; */
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#carousel-area .carousel-control-next i:hover, #carousel-area .carousel-control-prev i:hover {
  opacity: 0.9;
}

#carousel-area .carousel-indicators li:hover,
#carousel-area .carousel-indicators li.active {
  opacity: 1;
}

#carousel-area .carousel-indicators {
  bottom: 10px;
}

#carousel-area .carousel-indicators li {
  width: 30px;
  height: 7px;
  border-radius: 4px;
}

#slider-area {
  margin-top: -1px;
}

#slider-area .btn {
  margin-right: 15px;
}

#slider-area .large_white {
  color: #fff;
}

#slider-area .about-info p {
  color: #333;
}

.contents p {
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
}

.contents .header-button .btn i {
  margin-left: 10px;
}

/* ==========================================================================
   news 
   ========================================================================== */
#news .news-item-wrapper {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 5px 10px 0px rgba(101, 3, 17, 0.35);
  -webkit-transition: transform 0.2s linear, -webkit-box-shadow 0.2s linear;
  -moz-transition: transform 0.2s linear, -moz-box-shadow 0.2s linear;
  transition: transform 0.2s linear, box-shadow 0.2s linear;
}

#news .news-item-wrapper:hover {
  box-shadow: 0px 5px 10px 0px rgba(101, 3, 17, 0.65);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

#news .news-item-wrapper:hover .news-item-img:before {
  opacity: 1;
}

#news .news-item-img {
  position: relative;
}

#news .news-item-img img {
  width: 100%;
  border-radius: 4px;
}

#news .news-item-text {
  padding: 20px 30px;
}

#news .news-item-text .date {
  font-size: 14px;
  margin-bottom: 10px;
}

#news .news-item-text .date i {
  margin-right: 7px;
}

#news .news-item-text h3 {
  line-height: 26px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

#news .news-item-text h3 a {
  color: #263238;
}

#news .news-item-text h3 a:hover {
  color: #F97794;
}

.meta-tags {
  margin-bottom: 10px;
}

.meta-tags span {
  color: #999;
  font-size: 14px;
  margin-right: 10px;
}

.meta-tags span i {
  margin-right: 5px;
}

.meta-tags span a {
  color: #999;
}

.meta-tags span a:hover {
  color: #F97794;
}

/* ==========================================================================
    Single Page Style
   ========================================================================== */
#news-single {
  padding: 80px 0;
  background: #ECF0F1;
}

#news-single .news-post {
  background: #fff;
  overflow: hidden;
  margin-bottom: 40px;
}

#news-single .news-post .post-thumb img {
  width: 100%;
}

#news-single .news-post .post-content {
  padding: 30px;
}

#news-single .news-post .post-content h3 {
  font-size: 30px;
  padding-bottom: 10px;
}

.news-comment {
  background: #fff;
  padding: 50px 30px;
  margin-top: 30px;
  overflow: hidden;
}

.news-comment h4 {
  font-size: 24px;
  margin-bottom: 30px;
}

.news-comment .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 50px;
}

.news-comment .comment-list .the-comment {
  border-bottom: 1px solid #e7e6e6;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.news-comment .comment-list .children {
  padding-left: 40px;
}

.news-comment .avatar {
  float: left;
  margin-right: 15px;
  padding: 5px;
  border-radius: 3px;
  background: #ffffff;
  border: 1px dashed #346AFE;
}

.news-comment .comment-author {
  margin-bottom: 10px;
}

.news-comment .meta {
  margin-bottom: 10px;
  color: #999;
}

.post-meta {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 15px;
}

.post-meta ul li {
  display: inline-block;
  margin-right: 8px;
  margin-left: 8px;
}

.post-meta ul li i {
  margin-right: 5px;
}

.post-meta ul li a {
  color: #fff;
}

.post-meta ul li a:hover {
  color: #F97794;
}

/* ==========================================================================
   Contact Us
  ========================================================================== */
.form-control {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 30px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid transparent;
  background: #f5f5f5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.form-control:focus {
  border: 1px solid #993333;
  outline: none;
  box-shadow: none;
}
.form-search {
  width: 300px;
  margin-bottom: 20px;
  padding: 10px 30px;
  font-size: 14px;
  border-radius: 5px 0 0 5px;
  border: 1px solid transparent;
  background: #f5f5f5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.form-search:focus {
  border: 1px solid #993333;
  outline: none;
  box-shadow: none;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
}

textarea {
  border-radius: 4px !important;
}

.contact-info {
  margin-bottom: 15px;
}

.contact-info i {
  font-size: 20px;
  color: #F97794;
}

.contact-info h5 {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 0;
}

#contact {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

#contact .contact-block {
  overflow: hidden;
}

.text-danger {
  font-size: 14px;
  margin-top: 10px;
}

.list-unstyled li {
  color: #d9534f;
}

/* Contact Map */
#conatiner-map {
  width: 100%;
  height: 480px;
}

#google-map-area {
  position: relative;
}

#google-map-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.toggle-map {
  height: 5px;
  width: 100%;
  background-color: #F97794;
  bottom: 0px;
  text-align: center;
  position: absolute;
  z-index: 106;
}

.toggle-map .map-icon {
  width: 50px;
  height: 50px;
  display: inline-block;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: #fff;
  border: #F97794 3px solid;
  position: relative;
  top: -46px;
}

.toggle-map .map-icon i {
  width: 44px;
  height: 44px;
  display: inline-block;
  line-height: 44px;
  text-align: center;
  font-size: 20px;
}

#google-map {
  text-align: center;
  background-color: #fff;
  height: 465px;
  position: absolute;
  bottom: -460px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 101;
  width: 100%;
  border-top: #F97794 3px solid;
}

#google-map.panel-show {
  bottom: -20px !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* ==========================================================================
  19. Subscribe Style
  ========================================================================== */
#subscribe {
  background: url(../img/bg/bg-subs.jpg);
  position: relative;
}

.subscribe-form .sub-title {
  margin-bottom: 30px;
}

.subscribe-form .sub-title h3 {
  font-size: 30px;
  margin-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.subscribe-form .form-wrapper {
  background-color: #ffffff;
  padding: 58px 40px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.subscribe-form .form-wrapper .form-group {
  margin-bottom: 0px;
}

.subscribe-form .form-wrapper .form-control {
  display: block;
  width: 100%;
  font-size: 14px;
  box-shadow: none;
  color: #848484;
  text-transform: capitalize;
  background: #f7f7f7;
  border: 1px solid transparent;
  padding: 15px 30px;
  border-radius: 30px;
  background-image: none;
  background-clip: padding-box;
}

.subscribe-form .form-wrapper .form-control:focus {
  color: #212121;
  background-color: #fff;
  border-color: #F97794;
  box-shadow: none;
  outline: 0;
}

.subscribe-form .form-submit .btn {
  width: 100%;
  padding: 13px 30px;
}

#subscribe .sub-item-box {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 4px;
  background: #fff;
}

#subscribe .sub-item-box .icon-box {
  float: left;
}

#subscribe .sub-item-box .icon-box i {
  font-size: 30px;
  color: #F97794;
}

#subscribe .sub-item-box .text-box {
  margin-left: 60px;
}

#subscribe .sub-item-box .text-box h4 {
  font-size: 16px;
  font-weight: 500;
}

#subscribe .sub-item-box .text-box p {
  margin-bottom: 0;
}

#subscribe .sub-item-box:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Footer Style
   ========================================================================== */
.block-title {
  font-size: 14px;
  font-weight: 500;
  color: #263238;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
}
footer{
  background-color: #f3f3f3;
}
footer .footer-Content {
  background-color: #ffffff;
  padding: 60px 0;
  color: #546E7A;
}

.textwidget {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

.textwidget p {
  color: #546E7A;
}

footer .menu {
  padding-left: 0;
}

footer .menu li {
  padding-bottom: 12px;
}

footer .menu li a {
  color: #546E7A;
}

footer .menu li a:hover {
  color: #F97794;
}

.contact-footer {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.contact-footer li {
  padding: 3px 0;
  margin-bottom: 15px;
}

.contact-footer li strong {
  float: left;
}

.contact-footer li span {
  margin-left: 73px;
  display: block;
}

.contact-footer li span a {
  color: #546E7A;
}

.contact-footer li span a:hover {
  color: #F97794;
}

.instagram-footer {
  padding: 0;
}

.instagram-footer li {
  display: block;
  width: 33%;
  float: left;
  padding: 0 5px 5px 0;
  margin: 0;
}

.instagram-footer li a img {
  width: 100%;
}

.footer-social li {
  display: inline-block;
  margin-right: 12px;
}

.footer-social li a {
  background-color: #F97794;
  border-radius: 50%;
  color: #fff;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  display: inline-block;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.footer-social li .facebook:hover {
  background-color: #3b5998;
}

.footer-social li .twitter:hover {
  background-color: #55acee;
}

.footer-social li .linkedin:hover {
  background-color: #007bb5;
}

.footer-social li .google-plus:hover {
  background-color: #dd4b39;
}
#links {
  background-color: #FFF;
  border-top: 1px #EFEFEF solid;
  padding: 20px 0 10px;
  color: #000;
}
#links .weixin{
	display:inline-block;
	text-align: center;
	margin-right: 0px;
	
}

#links .weixin p{
	color:#000;	
}
.footerlinks a{
  text-transform: uppercase;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline;
  line-height: 1.75rem;
}
/* .footerlinks li{
	display: inline-block;
	margin-right:20px;
} */

.footerlinks a:before, .footerlinks a:after {
  content: '';
  border-bottom: solid 1px #993333;
  position: absolute;
  bottom: -2px;
  width: 0;
}

.footerlinks a:before { left: 0; }
.footerlinks a:after { right: 0; }

.footerlinks a:hover:before, .footerlinks a:hover:after {
  width: 50%;
}

.footerlinks a:before, .footerlinks a:after {
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
}
#copyright {
  background-color: #993333;
  padding: 20px 0 10px;
  /* border-top: 1px solid #eaeaea; */
  color: #FFF;
}

#copyright p {
  margin-bottom: 0;
  line-height: 40px;
  color:#FFF;
}

#copyright p a {
  color: #FFF;
}

#copyright p a:hover {
  color: #FFF;
}

#copyright .nav-inline .nav-link {
  color: #FFF;
  padding: 10px 0;
  margin-left: 10px;
}

#copyright .nav-inline .nav-link:hover {
  color: #FFF;
}

/* ==========================================================================
 iteminter Section Style
 ========================================================================== */
.iteminter {
  background: url(../img/bg/bg-item.jpg) fixed center;
  position: relative;
}

.iteminter .facts-item {
  text-align: center;
  color: #000;
  transition: all 0.3s;
}


.iteminter .facts-item .icon {
  margin-bottom: 15px;
}

.iteminter .facts-item .icon i {
  font-size: 40px;
  color: #650312;
}
.iteminter .facts-item .icon i img {
  width:50px;
}

.iteminter .facts-item .fact-count h3 {
  font-size: 16px;
  color: #650312;
  font-weight: 400;
  line-height: 40px;
}

.iteminter .facts-item .fact-count h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
}

.iteminter-item {
  text-align: center;
  padding: 30px;
  background: #f9f9f9;
  border: 1px solid #eaeaea;
  margin: 15px 0;
}

.iteminter-item .icon {
  margin-bottom: 20px;
}

.iteminter-item .icon i {
  font-size: 40px;
  color: #F97794;
}

.iteminter-item .fact-count h3 {
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
}

.iteminter-item .fact-count h4 {
  font-size: 18px;
  margin-bottom: 0;
}


/*新增 内页*/
/* 5.1 Subheader */
#section-subheader img{
    width: 100%;
    height: 234px;
    object-fit: cover;
}

/* 5.2 Breadcrumb */
#section-breadcrumb{
    padding: 15px 0;
	height: 50px;
	border-bottom: 1px #ccc solid;
}
#section-breadcrumb ul{
    padding: 0;
}
#section-breadcrumb ul > li > img{
    float: left;
    margin-right: -26px;
}
#section-breadcrumb li{
    float: left;
    margin-right: 40px;
}
#section-breadcrumb li:last-child{
    margin-right: 0px;
}
#section-breadcrumb li a{
    font-family: "Raleway-Medium";
    font-size: 13px;
    color: #072643;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#section-breadcrumb li a:hover{
    color: #670311;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#section-breadcrumb li:not(:last-child) a:after{
    content: '';
    background: url(../img/arrow-red.png);
    width: 18px;
    height: 5px;
    position: absolute;
    margin-top:8px;
    margin-left:10px;
}
.panel-heading {
	margin-bottom: 10px;
}

.sidebar .nav-link{
	padding: 0.5rem 1rem;
	color:#333;
}

.sidebar .nav-link:hover {
  background: #eee;
}
.banner {
	margin-top: 20px;
}

.panel-heading h3 {
	margin-top: 5px;
	font-size:20px;
}

.about-content img{
	max-width: 100%;
	max-height: 100%;
	text-align: center;
}
.about-content p{
	text-indent:2em ;
	margin-bottom: 1em;
	text-align: justify;
	/* text-align-last: justify; */
}
.about-content p:has(img){
	text-indent:0em;
}

/* specialty */
#section-specialtylist .list-specialtys{
    margin-top: 20px;
}
#section-specialtylist .list-specialtys .specialty-item{
    /* background-color: #F3F3F3; */
	border-bottom:1px #F3F3F3 solid;
    padding: 27px;
    margin-bottom: 8px;
}
#section-specialtylist .list-specialtys .specialty-item:last-child{
    /* background-color: #F3F3F3; */
	border-bottom:0px #F3F3F3 solid;
    padding: 27px;
    margin-bottom: 8px;
}
#section-specialtylist .list-specialtys .specialty-item .specialtycontent{
    padding: 9px 0px 9px 15px;
    text-align: left;
}
#section-specialtylist .list-specialtys .specialty-item .media{
    padding: 0 27px 0 0;
	overflow: hidden;
}
#section-specialtylist .list-specialtys .specialty-item .media img {
	width: 100%;
	height: auto;
	transition: all 0.5s ease-in-out;
}
#section-specialtylist .list-specialtys .specialty-item:hover .media img {
	transform: scale(1.2) ;
}
#section-specialtylist .list-specialtys .specialty-item .specialtycontent h1{
    font-family: "Raleway-Light";
    font-size: 22px;
    color: #283e56;
}
#section-specialtylist .list-specialtys .specialty-item .specialtycontent p{
    font-family: "Raleway-Regular";
    font-size: 13px;
    color: #586a7e;
    line-height: 1.4;
	text-align: justify;
}
#section-specialtylist .list-specialtys .specialty-item .specialtycontent .btn-caret{
    margin: 12px 0 8px;
}
#section-specialtylist .list-specialtys .specialty-item .specialtycontent .btn-caret i {
    left: -16px;
}
#section-specialtylist .list-specialtys .specialty-item .specialtycontent hr{
    width: 278px;
    margin-left: 0;
}
#section-specialtylist .list-specialtys .specialty-item .specialtycontent .date i{
    color: #1a99d5;
    margin-right: 8px;
}
.title-link {
	color:#586a7e;
}
.btn-caret {
    font-family: "Raleway-Regular";
    font-size: 11px;
    padding: 4px 16px 6px;
    background-color: transparent;
    border-color: #993333;
    border-radius: 0px;
    color: #993333;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-caret i {
    font-size: 18px;
    color: rgba(101,3,17);
    position: relative;
    left: -17px;
    top: 2px;
}
.btn-caret:hover, .btn-caret:hover i{
    color: #ffffff;
    background-color:rgba(101,3,17);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


/* ==========================================================================
   forum 
   ========================================================================== */
#forum .forum-item-wrapper {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.15);
  -webkit-transition: transform 0.2s linear, -webkit-box-shadow 0.2s linear;
  -moz-transition: transform 0.2s linear, -moz-box-shadow 0.2s linear;
  transition: transform 0.2s linear, box-shadow 0.2s linear;
}
#forum .forum-item{
	margin-bottom: 50px;
}

#forum .forum-item-wrapper:hover {
  box-shadow: 0px 10px 50px 0px rgba(84, 110, 122, 0.35);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#forum .forum-item-wrapper:hover .forum-item-img:before {
  opacity: 1;
}

#forum .forum-item-img {
  position: relative;
}

#forum .forum-item-img img {
  width: 100%;
  border-radius: 4px;
}

#forum .forum-item-text {
  padding: 20px 30px;
}

#forum .forum-item-text .date {
  font-size: 14px;
  margin-bottom: 10px;
}

#forum .forum-item-text .date i {
  margin-right: 7px;
}

#forum .forum-item-text h3 {
  line-height: 26px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

#forum .forum-item-text h3 a {
  color: #263238;
}

#forum .forum-item-text h3 a:hover {
  color: #F97794;
}


#news_list .newCont  {
	margin-bottom:40px;
}
#news_list .newCont .nDate {
	
	font-family:'Courier New';
	text-align:center;
}
#news_list .nDate .riSet {
	color:#993333;
	color:;
	font-size:25px;
	font-weight:600
}
#news_list .nDate .yueSet {
	font-size:16px;
	color:#993333;
	color:
}
#news_list .newCont .newPic {
	
	overflow:hidden;
	position:relative;
}
#news_list .newCont .newPic img {
	width:100%;
	height: auto;
	background-color:#e5e5e5
	transform: scale(1);
	transition: all 0.3s ease-in-out 0s;
}
#news_list .newCont:hover .newPic img {
	transform: scale(1.08);
	background-color:#e5e5e5;
}
#news_list .newCont .newName {
	/* width:calc(100% - 100px - 220px); */
	padding:0 .5em
}
#news_list .newCont .titleSet {
	margin:0;
	transition:all 0.2s es;
	-webkit-transition:all 0.2s;
	-moz-transition:all 0.2s;
	-o-transition:all 0.2s
}
#news_list .newCont .titleSet a {
	display:block;
	font-size:20px;
	color:#333333;
}
#news_list .newCont .titleSet a:hover,#news_list .newCont .titleSet a:hover span {
	color:#993333 !important
}
#news_list .newCont .newDetail {
	font-size:16px;
	line-height:2rem;
	color:#666666;
	padding:10px 0;
}
#news_list .newCont .btnaSet {
	transition:all 0.2s es;
	-webkit-transition:all 0.2s;
	-moz-transition:all 0.2s;
	-o-transition:all 0.2s;
	display:inline-block;
	border:1px solid;
	border-color:#993333;
	border-color:;
	color:#993333;
	color:;
	font-size:14px;
	padding:5px 15px
}
#news_list .sumary_list .titleSet:hover {
	text-decoration:underline;
	margin-left:5px
}
#news_list .newCont .btnaSet:hover {
	background-color:#993333;
	background-color:;
	color:#ffffff
}

.xuxian a{
	color:#333;
}
.xuxian a:hover{
	color:#993333;
}
.huizi02{
	padding-right:15px;
}

