/*=== HEADER ===*/

#header{
	height: 0;
}
.header-wrapper{
	position: fixed;
	z-index: 9999;
	width: 100%;
	top: 0 !important;
	transition: all 0.3s ease 0s;
}
.fixed .header-wrapper {
  -webkit-box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.30);
  -moz-box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.30);
  box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.30);
}

.social{
	display: inline;
}

.hero-banner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.banner-display {
  background-attachment: fixed;
  background-color: #FFF;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-display .table {
  max-width: 1048px;
  margin: 0 auto;
  position: relative;
  z-index: 9995;
}

.banner-grad {
  display: block;
  height: 100%;
  width: 100%;
  background-image: url(/images/layout/gradient.png);
  background-attachment: scroll;
  background-color: transparent;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.banner-grad:after{
  content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 270px;
	background: url(../images/layout/slider_layer.png) no-repeat;
	background-size: cover;
	z-index: 9990;
}

/*=== MAIN NAVIGATION ===*/
.header-menu{
	position: relative;
	background-color: #046292;
  color: #fff;
	z-index: 1;
}
.header-menu > .table {
  width: auto;
  max-width: none;
  background-color: #1C95B8;
}
.header-menu .cell:first-child{
	background-color: #ffffff;
	padding-left: 28px;
	padding-right: 28px;
}
.header-menu .cell:last-of-type{
	background-color: #1c95b8;
	width: 158px;
  font-size: 23px;
  padding-left: 8px;
}
.header-menu .cell:last-of-type a{
	margin-left: 4px;
}
.header-menu .fa-close{
	width: 21px;
}
.logo{
	width: 292px;
	display: block;
}
.logo img{
	display: block;
}
#nav-btn,
#nav-close-btn{
	display: none;
}
.main-nav, .main-nav nav, .nav-menu,
.nav-menu > li, .nav-menu li a{
  height: 100%;
  font-size: 0px;
}
.nav-menu > li{
	position: relative;
	display: inline-block;
  text-align: center;
}
.nav-menu > li:first-child{
	background: url(../images/layout/striped.png) #b4c24f;
}
.nav-menu > li:nth-child(2){
  background-color: #046292;
}
.nav-menu li a{
	display: block;
	font-size: 16px;
	font-family: 'Raleway-Bold';
	text-transform: uppercase;
	white-space: nowrap;
	position: relative;
	padding: 44px 30px 45px;
}
.nav-menu > li.active > a:after,
.nav-menu > li > a:after {
	content: "";
	display: block;
	height: 8px;
	background: #ffffff;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
}
.nav-menu > li.active > a:after,
.nav-menu > li:hover > a:after{
	opacity: 1;
	visibility: visible;
}
.sub-menu{
    position: absolute;
    top: 100%;
    width: 174px;
    padding: 14px 19px;
    text-align: left;
    background-color: #046292;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    width: calc(100% + 30px);
}
.nav-menu > li:hover .sub-menu{
	opacity: 1;
	visibility: visible;
}
.nav-menu .sub-menu a{
	padding: 9px 0;
	font-family: 'Raleway-Medium';
    font-size: 12px;
}
.nav-menu .sub-menu a:after{
	content: "";
	position: absolute;
	left: -19px;
	bottom: 0;
	width: 110%;
	height: 2px;
	background-color: #b4c24f;
	opacity: 0;
	visibility: hidden;
}

.nav-menu .sub-menu a:hover:after{
	opacity: 1;
	visibility: visible;
}

#search-box {
  background-color: #046292;
  z-index: 0
}
.show .search-box{
	padding: 40px 0;
}
.search-box input[type="text"]{
  vertical-align: middle;
  font-size: 24px;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #ebebeb;

}
.search-box input[type=submit]{
  vertical-align: middle;
  color: transparent;
  width: 26px;
  height: 26px;
  background: url(../images/icons/search.png) no-repeat center center;
  margin-left: 15px;
  cursor: pointer;
}

.search-form  {
  position: absolute;
  top:0px;
  left: 0px;
  height: 100%;
  width: 100%;
}

.search-submit {
  width: 41px;
}

/*=== FIXED & INNER HEADER STYLES ===*/

/*
.fixed .header-wrapper{
	position: fixed !important;
	width: 100%;
	top: 0 !important;
	z-index: 120;
}
.reset .header-wrapper{
	top: -200px;
	-webkit-transition: all 0.5s ease 0s;
	   -moz-transition: all 0.5s ease 0s;
	    -ms-transition: all 0.5s ease 0s;
	     -o-transition: all 0.5s ease 0s;
			transition: all 0.5s ease 0s;
}

.fixed .header-menu{
	height: 82px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
			box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.fixed .logo{
	width: 230px;
}
.fixed .nav-menu li a{
	padding-top: 31px;
}
.fixed .nav-menu .sub-menu a{
	padding: 9px 0;
}
*/

/*=== TOP BANNER ===*/

.main-slider{
	height: 100%;
	min-height: 100%;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.main-slider .banners{
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
}
.main-slider .banners li{
  display: block;
  height: 100%;
  width: 100%;
  background-attachment: fixed;
  background-color: transparent;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.slick-dotted.slick-slider{
    margin-bottom: 0 !important;
}
#slider-dots{
  position: absolute;
  top: 50%;
  z-index: 9991;
  text-align: right;
  right: 44px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 23px;
}
#slider-dots * {
  outline: none;
}
#slider-dots ul {
  position: static;
  display: block;
  font-size: 0px;
  width: 100%;
}
#slider-dots ul li {
  width: 100%;
  display: block;
  height: 23px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#slider-dots ul li:before {
  content: "";
  display: block;
  position: absolute;
  height: 15px;
  width: 15px;
  border: 2px solid #FFF;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
#slider-dots ul li + li {
  margin-top: 7px;
}
#slider-dots ul button {
  border: 4px solid #b4c24f;
  background-color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease 0s;
  display: inline-block;
  width: 23px;
  height: 23px;
  padding: 0px;
}

#slider-dots ul li:hover button,
#slider-dots ul li.slick-active button {
  opacity: 1
}

#slider-dots ul button:before,
#slider-dots ul button:after {
  display: none;
}

.banner{
	min-height: 550px;
}
.banner .relative{
	height: 100%;
	min-height: 100%;
}
.banner > .cell > .relative:before,
.sub-banner > .cell > .relative:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 270px;
	background: url(../images/layout/slider_layer.png) no-repeat;
	background-size: cover;s
}
.banner > .cell > .relative:before {
  z-index: 0
}
.sub-banner > .cell > .relative:before {
  z-index: 9990;
}

.sub-banner > .cell > .relative:before{
	height: 211px;
}
.hero-banner .slick-list, .hero-banner .slick-track{
	height: 100%;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	transform: none !important;
}
.banner-overlay{
  display: block;
  height: 100%;
  width: 100%;
  background-image: url(/images/layout/gradient.png);
  background-attachment: scroll;
  background-color: transparent;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: 0;
  top: 0px;
  left: 0px;
}
.banner-content{
    position: absolute;
    z-index: 8;
    width: 100%;
    height: 100%;
}
.banner-text{
	max-width: 380px;
	font-family: 'Raleway-ExtraBold';
    color: #ffffff;
    text-align: center;
}
#inner .banner-text{
	max-width: 600px;
}
.banner-text .large-text{
	font-size: 48px;
	font-family: 'Raleway-Medium';
	text-transform: uppercase;
}
.banner-text .large-text span{
	display: block;
	font-size: 36px;
	font-family: 'Raleway-ExtraBold';
    margin-bottom: 7px;
    padding: 15px 10px 14px;
    background: url(../images/layout/striped.png) #b4c24f;
}
.banner-text p{
	margin: 12px 0 20px;
}
.banner-text .btn{
	border: 4px solid #ffffff;
	min-width: 192px;
	padding: 11px 10px 9px;
	color: #ffffff;
	font-family: 'Raleway-SemiBold';
	background-color: transparent;
}
.banner-text .btn:hover{
	color: #046292;
	background-color: #ffffff;
}
.sub-banner.table{
	height: 445px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
.sub-banner > .cell > .relative{
	height: 100%;
}
.sub-banner .inner-box{
    width: 100%;
    height: 100%;
    padding: 0 20px;
	z-index: 2;
}
.sub-banner .banner-text .large-text span{
	font-size: 30px;
	padding: 18px 35px;
}
.sub-banner .inner-box .banner-text{
	position: absolute;
	bottom: 110px;
	left: 0;
	padding: 0 20px;
}
/*=== QUICK LINCKS SECTION ===*/

.quick-links-wrapper{
	padding: 85px 0 100px;
	color: #fff;
	background: url(../images/layout/striped.png), url(../images/layout/triangle.png) no-repeat top right  #b4c24f;
}
.quick-links-wrapper ul{
	margin-top: 40px;
}
.quick-links-wrapper li{
	position: relative;
	display: inline-block;
	width: 315px;
	height: 302px;
  font-size: 13px;
  font-family: 'Raleway-SemiBold';
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 2;
}
.quick-links-wrapper li + li {
  margin-left: 34px;
}
.quick-links-wrapper .relative{
	z-index: 2
}
.quick-links-wrapper h2 span,
.quick-links-wrapper h3 span{
	font-family: 'Raleway-Medium';
}
.quick-links-wrapper h2 span{
	font-style: italic;
}
.quick-links-wrapper h3{
    font: 30px/42px 'Raleway-ExtraBold';
    text-transform: uppercase;
    color: #ffffff;
}
.quick-links-wrapper li p {
	line-height: 24px;
}
.quick-links-wrapper li > .table > .cell {
  padding: 80px 30px 0 30px;
  transition: all 0.3s ease 0s;
}
.quick-links-wrapper li:hover > .table > .cell {
  padding: 30px;
}
.quick-links-wrapper .btn{
	position: absolute;
  bottom: -60px;
  left: 50%;
  margin-left: -93px;
  z-index: 2;
  overflow: hidden;
  opacity: 1;
}
.quick-links-wrapper .icon{
	display: block;
	margin: 0 auto 15px;
	height: 82px;
  background-position: center bottom;
  background-size: contain;
/*   transition: all 0.6s ease 0s */
}
.ico-first-aid {
	width: 73px;
	height: 71px;
	background: url(../images/icons/first_aid.png) no-repeat;
}
.quick-links-wrapper li:hover .ico-first-aid{
	width: 42px;
	height: 41px;
}
.ico-hand{
	width: 66px;
	height: 82px;
	background: url(../images/icons/hand.png) no-repeat;
}
.quick-links-wrapper li:hover .ico-hand{
	width: 35px;
	height: 45px;
}
.ico-heart{
	width: 74px;
	height: 70px;
	background: url(../images/icons/heart.png) no-repeat;
}
.quick-links-wrapper li:hover .ico-heart{
	width: 43px;
	height: 41px;
}
.ico-news{
	width: 69px;
	height: 69px;
	background: url(../images/icons/news_icon.png) no-repeat;
}
.quick-links-wrapper li:hover .ico-news{
	width: 38px;
	height: 38px;
}
.ql-info{
	opacity: 0;
}
.ql-info > p {
  margin-bottom: 0px;
}
.quick-links-wrapper li:hover .overlay {
	background: rgba(4, 98, 146, 0.75);
}
.quick-links-wrapper li:hover .ql-info{
  opacity: 1
}
.quick-links-wrapper li:hover .btn{
	bottom: -25px;
}
/*=== EVENTS SECTION ===*/
#events {
  height: 340px;
}
.events-wrapper{
	height: 340px;
	color: #ffffff;
	background-color: #1c95b8
}
.events-wrapper > div:last-child {
	padding-top: 30px;
	background: url(../images/layout/angle_layer.png) no-repeat bottom right;
}
.video-placeholder{    
  font-size: 24px;
  font-family: 'Raleway-ExtraBold';
  text-transform: uppercase;
	background-attachment: scroll;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.video-placeholder a > .table{
	opacity: 0;
  visibility: hidden;
  text-decoration: underline;
  transition: all 0.5s ease 0s;
}
.video-placeholder:hover a > .table,
.video-placeholder.hover a > .table {
	opacity: 1;
  visibility: visible;
}
.events-wrapper .inner-box{
	width: 520px;
	padding: 0 10px 0 115px;
}
.btn-play{
  position: absolute;
  top: 50%;
  left: -55px;
  margin-top: -55px;
	width: 109px;
	height: 110px;
	background: url(../images/icons/btn_play.png) no-repeat;
	cursor: pointer;
}

.vid-overlay {
  background: rgba(4, 98, 146, 0.5);
  display: block;
  width: 100%;
  height: 100%;
}
.video-placeholder:hover .vid-overlay,
.video-placeholder.hover .vid-overlay {
	background: rgba(4, 98, 146, 0.75);
}
/*=== SIGNUP SECTION ===*/

.signup-wrapper{
	background: #00476b;
	height: 170px;
}
#inner .signup-wrapper{
	background-color: #b7c457;
}
.signup-wrapper .page{
	height: 100% !important;
}
.signup-wrapper .page .cell:first-child{
	width: 32%;
	padding: 10px 35px 0;
}
.signup-wrapper h3{
	font-size: 28px;
	font-family: 'Raleway-Bold';
	line-height: 38px;
	padding-top: 5px;
}
.signup-wrapper h3 span{
	display: block;
	font-family: 'Raleway-Medium';
	font-size: 14px;
    line-height: 24px;
}
.sign-form {
	font-size: 0;
	padding: 0 5px 0 15px;
}
.sign-form input:nth-child(1){
	width: 22%;
}
.sign-form input:nth-child(2){
	width: 24%;
}
.sign-form input:nth-child(3){
	width: 38.5%;
}
.sign-form input:nth-child(4){
	width: 15.5%;
}
.sign-form input[type=text]{
	display: inline-block;
	vertical-align: bottom;
	font-size: 14px;
	font-family: 'Raleway-Regular';
	color: #ffffff;
	background: none;
	border: none;
	border-bottom: 1px solid #ffffff;
	padding: 7px 10px 7px 0;
}

.sign-form input[type=submit]{
	display: inline-block;
	vertical-align: bottom;
	color: #ffffff;
	font-family: 'Raleway-ExtraBold';
	font-size: 18px;
	text-transform: uppercase;
    border-bottom: 3px solid #b4c24f;
	text-align: center;
	padding: 14px 10px 10px;
	cursor: pointer;
	background: transparent;
	position: relative;
	top: 1px;
}
#inner .sign-form input[type=submit]{
	border-bottom-color: #1c95b8;
}
.sign-form input[type=submit]:hover{
	background: url(../images/layout/striped.png) #b4c24f;
}
#inner .sign-form input[type=submit]:hover{
	background: url(../images/layout/striped.png) #1c95b8;
}

/*=== STATISTICS SECTION ===*/

.statistics-wrapper > div{
	padding: 22px 50px 17px;
	color: #ffffff;
}
.statistics-wrapper > div:first-child{
	background: url(../images/layout/striped.png) #b4c24f;
}
.statistics-wrapper > div:nth-child(2){
	background-color: #1c95b8;
}
.statistics-wrapper > div:last-child{
	background-color: #046292;
}
.statistics-wrapper .icon{
	position: relative;
    margin: 23px auto 26px;
	width: 81px;
	height: 81px;
	border: 4px solid #fff;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.statistics-wrapper .icon:before,
.statistics-wrapper .icon:after{
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -2px;
	left: -93px;
	width: 75px;
	height: 4px;
	background-color: #fff;
}
.statistics-wrapper .icon:after{
	left: inherit;
	right: -93px;
}
.ico-services {
	background: url(../images/icons/people.png) no-repeat center center;
}
.ico-patients {
	background: url(../images/icons/chart.png) no-repeat center center;
}
.ico-office {
	background: url(../images/icons/family.png) no-repeat center center;
}
.ico-eyes {
	background: url(../images/icons/glasses.png) no-repeat center center;
}
.statistics-wrapper h3{
	font-size: 36px;
}
.statistics-wrapper h3 span{
	display: block;
    margin-bottom: 8px;
    line-height: normal;
	font-size: 72px;
	font-family: 'Raleway-Light';
	-webkit-font-feature-settings: "lnum" 1;
    -moz-font-feature-settings: "lnum" 1;
    font-feature-settings: "lnum" 1;
}

/*=== MAIN CONTENT ===*/

.main-content{
	padding: 90px 0px 80px 0px;
}
.main-content .col-left{
/*     padding-right: 155px; */
}
.main-content .col-right{
  width: 49.7%;
  padding-left: 155px;
}
.main-content h3{
	color: #b0be4b;
}
.main-content ul:not([class]) {
	margin-bottom: 30px;
}
.main-content ul:not([class]) li{
	padding-left: 14px;
	line-height: 30px;
	font-family: 'Raleway-ExtraBold';
}
.main-content ul:not([class]) li:before{
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	vertical-align: super;
    margin: 0px 8px -1px -14px;
	background-color: #046292;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.main-content .btn{
    border: 4px solid transparent;
    padding: 12px 10px;
	color: #fff;
	background-color: #046292;
}
.call-to-action{
	position: relative;
	text-align: center;
	display: block;
}
.call-to-action h2{
	background-color: #046292;
    margin-bottom: 0;
    padding: 16px 10px 13px;
    color: #FFF;
}
.call-to-action h2 span{
	font-family: 'Raleway-Medium';
}

.call-to-action .icon-wrap{
	padding: 45px 10px 75px;
	background: url(../images/layout/striped.png) #b4c24f;
}
.call-to-action .icon{
	width: 144px;
	height: 144px;
	margin: 0 auto;
  background: none !important;
    border: 4px solid #fff;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
    		border-radius: 50%;
    		position: relative;
}
.call-to-action .icon img {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  top:50%;
  -webkit-transform: translateY(-50%);
  -moz-transform:    translateY(-50%);
  -ms-transform:     translateY(-50%);
  -o-transform:      translateY(-50%);
  transform:         translateY(-50%);
}
.call-to-action .btn{
	position: absolute;
    bottom: -26px;
    left: 50%;
    margin-left: -93px;
    z-index: 2;
  background-color: #1C96B9;
  border: 2px solid #1C96B9;
}

.call-to-action:hover .btn {
  background-color: #FFF;
  color: #1C96B9;
}

.call-to-action + * {
  margin-top: 66px !important;
}

/*=== FOOTER ===*/

.footer-wrapper{
	background-color: #00476b;
	color: #ffffff;
	font-size: 12px;
	font-family: 'Raleway-Regular';
	height: 136px;
}
.footer-wrapper .cell:first-child {
	width: 460px;
}
.footer-wrapper .cell:last-child {
	width: 78px;
}
.footer-wrapper p{
	margin: 0;
	line-height: 19px;
}
.footer-wrapper p span{
	margin: 0 4px;
}
.footer-wrapper a{
	text-transform: uppercase;
	color: #0593d1;
}
.footer-wrapper a:hover{
	color: #ffffff;
}
.logo-ugm-tc {
	display: inline-block;
	background: url(../images/icons/logo-ugm-tc.png);
	width: 91px;
	height: 64px;
}
.jbsystem{
	display: inline-block;
	background: url(../images/icons/logo-jb-systems.png);
	width: 78px;
	height: 34px;
}

.popup > .table {
  background-color: #FFF;
}
.popup > .table > .cell {
  padding: 30px;
}

.popup > .table > .cell * {
  color: #000 !important;
}

.newsletter-thanks p { 
  line-height: 22px;
}

.error-message {
  font-size: 14px;
  color: #FFF;
}

#inner #main {
  padding-top: 108px
}

.logos > img + img,
.logos > a + a {
  margin-left: 40px;
  display: inline-block;
}

#inner #statistics {
  border-bottom: 1px solid #ACB94D;
}

#search-results h3 {
  margin-bottom: 50px;
}

h3 + iframe {
  margin-top: 20px;
}