/* Minification failed. Returning unminified contents.
(23,2): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(24,2): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(25,2): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(31,35): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(32,27): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(197,35): run-time error CSS1034: Expected closing parenthesis, found ','
(197,35): run-time error CSS1042: Expected function, found ','
(197,40): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
 */
@charset 'UTF-8';.slick-loading .slick-list{background:#fff url('./ajax-loader.gif') center center no-repeat}@font-face{font-family:'slick';font-weight:normal;font-style:normal;src:url('./fonts/slick.eot');src:url('./fonts/slick.eot?#iefix') format('embedded-opentype'),url('./fonts/slick.woff') format('woff'),url('./fonts/slick.ttf') format('truetype'),url('./fonts/slick.svg#slick') format('svg')}.slick-prev,.slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;color:transparent;border:0;outline:0;background:transparent}.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus{color:transparent;outline:0;background:transparent}.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before{opacity:1}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:.25}.slick-prev:before,.slick-next:before{font-family:'slick';font-size:20px;line-height:1;opacity:.75;color:white;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir='rtl'] .slick-prev{right:-25px;left:auto}.slick-prev:before{content:'←'}[dir='rtl'] .slick-prev:before{content:'→'}.slick-next{right:-25px}[dir='rtl'] .slick-next{right:auto;left:-25px}.slick-next:before{content:'→'}[dir='rtl'] .slick-next:before{content:'←'}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:0;background:transparent}.slick-dots li button:hover,.slick-dots li button:focus{outline:0}.slick-dots li button:hover:before,.slick-dots li button:focus:before{opacity:1}.slick-dots li button:before{font-family:'slick';font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:black;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{opacity:.75;color:black}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 100%;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.6;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto !important;
	vertical-align: middle;
}

/* ///animate */
:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;
}

.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.animate__fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.animate__fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}



@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.animate__fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}



/* animate/// */
.login__page {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	height: calc(100% - 65px);
}

.login__left {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	padding: 30px;
	width: 33%;
	height: 100%;
}

.login__right {
	width: 67%;
}

.login__leftBx {
	margin-right: auto;
	margin-left: auto;
	width: 80%;
}

.form__logo {
	display: block;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	width: 200px;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.header_text {
	display: block;
	color: #222;
	text-align: center;
	font-weight: 600;
	font-size: 24px;
	line-height:1.5;
	margin-bottom: 20px;
}

.login_message, .login_message2 {
	display: block;
	background-color: rgb(255, 153, 0, .15);
	padding: 10px 10px 0 10px;
	border: 4px dotted #F60;
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 20px;
}

.login_message .head {
	color: #036;
	text-align: center;
	font-size: 14px;
	font-weight:bold;
	padding-bottom: 4px;
	border-bottom:1px solid #666;
	margin-top: 0;
}

.login_message .time {
	text-align: right;
	font-size: 12px;
	line-height: 1;
}

.login_message2 {
	background-color: #EEE;
	padding: 10px 10px 10px 10px;
	border: none;
}

.login_message a, .login_message2 a {
	display: inline-block;
	padding: 3px 8px;
	border: none;
	border-radius: 13px;
	background: #F60;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.login_message a:hover, .login_message2 a:hover {
	background: #fff;
	color: #f60;
}


.error_text {
	display: block;
	color: #222;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	padding-bottom: 20px;
}

.hero-input {
	display: block;
	padding: 0 10px;
	width: 100%;
	height: 50px;
	outline: transparent;
	border: 2px solid #e8e8e8;
	border-radius: 6px;
	background: #e8e8e8;
	color: #222;
	text-align: center;
	font-size: 1rem;
	font-family: 'Open Sans', sans-serif;
	transition: all .3s;
}

.hero-input::placeholder {
	color: #666;
}

.hero-input:hover, .hero-input:focus {
	background: #fff;
}

a.link_orange {
	display: block;
	text-align: center;
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 5px;
	color: #f60;
	text-decoration: none;
	background-color: #fff;
}

a.link_orange::before {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 auto;
	width: 0;
	height: 1px;
	background: #f60;
	content: '';
	transition: width .3s;
}

a.link_orange:hover::before {
	width: 100%;
}

.login__rightBx {
	height: 100%;
}

.slick-track, .slick-list {
	height: 100%;
}

.slick-slide {
	position: relative;
	display: -webkit-inline-flex !important;
	display: -ms-inline-flex !important;
	display: inline-flex !important;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}

.slick-slide:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 51, 102, 0.7);
	content: '';
}

.slick-dots {
  bottom: 5px;
	z-index: 3;
}

.slick-dots li {
	width: auto;
	height: auto;
}

.slick-dots li button {
	padding: 0;
	width: 30px;
	height: 2px;
	background: rgba(255, 255, 255, 0.6);
	transition: background .3s;
}

.slick-dots li button:hover {
	background: rgba(255, 255, 255, 0.9);
}

.slick-dots li button:before {
	display: none;
}

.slick-dots li.slick-active button {
	background: #f60;
}

.content-holder {
	position: relative;
	z-index: 2;
	margin-right: auto;
	margin-left: auto;
	max-width: 90%;
	width: 700px;
	color: #fff;
}

.content-holder__title {
	margin-top: 0;
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 36px;
	font-family: inherit;
}

.content-holder__smaller {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 30px;
}

.content-holder__text {
	font-size: 1.1rem;
}

.btn_orange, .btn_blue {
	display: inline-block;
	width: 100%;
	height: 50px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: #ff6600;
	color: #fff !important;
	text-transform: lowercase;
	text-decoration: none;
	text-align: center;
	line-height: 48px;
	font-weight: 600;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	cursor: pointer;
	transition: all .3s;
	margin-bottom: 15px;
}

.btn_orange:hover {
	border: 1px solid #f60;
	background: #fff;
	color: #f60 !important;
}

.btn_blue {
	background: #036;
}

.btn_blue:hover {
	border: 1px solid #036;
	background: #fff;
	color: #036 !important;
}



.det_contact {
	color: #F60;
	font-size: 16px;
	cursor: pointer;
	transition: all .3s;
	text-align: center;
	margin-top:10px;
	margin-bottom: 1em;
	width: auto;
}

.det_contact summary {
	width: auto;
	margin-bottom: 6px;
	cursor: pointer;
}

.det_contact summary::before {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 auto;
	width: 0;
	height: 1px;
	background: #f60;
	content: '';
	transition: width .3s;
}
.det_contact summary:hover::before {
	width: 100%;
}

.det_contact p {
	background-color: #f3f3f3;
	font-size: 16px;
	line-height: 30px;
	margin: 0;
	padding: 10px;
	border-top: 1px solid #F60;
	border-bottom: 1px solid #F60;
}

.det_contact p a {
	color: #036;
	font-weight: bold;
}

.det_contact p a:hover {
	color: #F60;
}

.cta {
	display: inline-block;
  margin-top: 5px;
	padding: 8px 22px;
	border: none;
	border-radius: 25px;
	background: #ff6600;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	transition: all 0.4s ease;
}

.cta:hover {
	background: #fff;
	color: #f60;
}

.footer {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	text-align:right;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	height: 65px;
	background: #043464;
	color: #fff;
	z-index: 100;
}


.menu__list {
	display: -webkit-inline-flex;
	display: -ms-inline-flex;
	display: inline-flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}

.menu__item {
	margin-right: 30px;
	list-style-type: none;
}

.menu__item--account {
	padding-left: 30px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.menu__link {
	color: #f60;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: color .3s;
}

.menu__link:hover {
	color: #fff;
}

.copyright {
	color: #999;
	font-size: .8rem;
	line-height: 1.2;
}
.copyright a {
	color: #999;
	font-size: .7rem;
	text-decoration: none;
}

.copyright a:hover {
	color: #F60;
}

.fixed-phone {
	position: fixed;
	top: 15px;
	right: 15px;
	z-index: 10;
	padding: 10px 22px;
	border-radius: 32px;
	background: #002b55;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all .3s;
}

.fixed-phone .bi {
	position: relative;
	top: -2px;
	margin-right: 4px;
	vertical-align: middle;
}

.fixed-phone:hover {
	background: #f60;
	color: #fff;
}

.fixed-phone--footer {
	position: relative;
	top: auto;
	right: auto;
	display: block;
	display: none;
	padding: 15px;
	width: 100%;
	border-radius: 0;
	background: #f60;
	text-align: center;
}

.fixed-phone--footer:hover {
	background: #003b77;
}

.login-form {
	margin-top: 30px;
}

.login-form__input {
	margin-bottom: 15px;
}

.popup {
	position: fixed;
	top: 50%;
	right: 0;
	left: 0;
	z-index: 991;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	display: none;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
	margin: 0 auto;
	max-height: 100%;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	transform: translateY(-50%);
	backdrop-filter: blur(4px);
}

.popup-content {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	margin: 0 auto;
	max-width: calc(100% - 30px);
	width: 1200px;
	transform: translateY(-50%);
}

.popup-close, .popup-video-close {
	position: absolute;
	top: -36px;
	right: -7px;
	color: #fff;
	text-decoration: none;
	transition: color .3s;
}

.popup-close:hover, .popup-video-close:hover {
	color: #f60;
}

.popup-close svg, .popup-video-close svg {
	width: 32px;
	height: 32px;
}

.embed-container {
	position: relative;
	overflow: hidden;
	padding-bottom: 56.25%;
	max-width: 100%;
	height: 0;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.schedule-image a:hover {
	cursor: zoom-in;
}

.video-image {
	position: relative;
}

.video-image img {
	border-radius: 6px;
}

.open-video {
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.6);
	color: #043464;
	opacity: 0;
	transition: all .3s;
}

.open-video svg {
	width: 60px;
	height: 60px;
}

.open-video:hover {
	color: #f60;
}

.video-image:hover .open-video {
	opacity: 1;
}

.required-field {
	position: relative;
}

.tooltip {
	position: absolute;
	top: 0;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	top: -30px;
	text-align: center;
	z-index: 10;
	display: none;
}

.tooltip__text {
	width: auto;
	background: #f60;
	color: #fff;
	padding: 5px 15px;
	font-size: .9rem;
	border-radius: 3px;
	position: relative;
}

.tooltip__text:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -6px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 8px 0 8px;
	border-color: #f60 transparent transparent transparent;
}

@media(max-width:1600px) {
	.popup-content {
		width: 900px;
	}

	.login__left {
		width: 420px;
	}

	.login__leftBx {
		width: 100%;
	}

	.login__right {
		width: calc(100% - 420px);
	}
}

@media(max-width:1200px) {
	.menu__link {
		font-size: .9rem;
	}

	.copyright {
		font-size: .8rem;
	}
}

@media(max-width:992px) {
	.login__left {
		padding: 10% 15px;
		width: 100%;
		height: auto;
	}

	.login__right {
		width: 100%;
		height: auto;
	}

	.login__page {
		height: auto;
	}

	.fixed-phone {
		display: none;
	}

	.fixed-phone--footer {
		display: block;
	}

	.footer {
		text-align: center;
		justify-content: center;
		padding: 15px;
		height: auto;
	}

	.menu {
		margin-bottom: 15px;
		width: 100%;
	}

	.content-holder {
		padding-top: 70px;
		padding-bottom: 100px;
	}

	.login__leftBx {
		width: 400px;
	}

	.menu__list {
		justify-content: center;
		width: 100%;
	}

	.menu__item {
		margin-right: 15px;
		margin-bottom: 15px;
		margin-left: 15px;
	}

	.menu__item--account {
		padding-top: 15px;
		padding-left: 0;
		width: 100%;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-left: none;
		text-align: center;
	}
}

@media(max-width:768px) {
	.header_text {
		font-size: 20px;
	}

	a.link_orange, .det_contact summary {
		font-size: .9rem;
	}

	.form__logo {
		width: 160px;
	}

	.content-holder {
		padding-top: 50px;
	}

	.content-holder__title {
		font-size: 22px;
	}

	.content-holder__smaller {
		font-size: 16px;
	}

	.content-holder__text {
		font-size: .9rem;
	}

	.cta {
		font-size: .9rem;
	}

	.login__left {
		padding-top: 15%;
		padding-bottom: 15%;
	}

	.menu__link {
		font-size: .9rem;
	}

	.menu__item {
		margin-right: 8px;
		margin-bottom: 8px;
		margin-left: 8px;
	}

	.menu__item--account {
		padding-top: 8px;
	}

	.copyright {
		text-align: center;
		font-size: .8rem;
	}
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.login__page {
  overflow: hidden;
}

@media(min-width:992px) {
  .twitter-tweet {
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 5px;
  }

  .twitter-tweet {
    scrollbar-width: auto;
    scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
  }

  .twitter-tweet::-webkit-scrollbar {
    width: 6px;
  }

  .twitter-tweet::-webkit-scrollbar-track {
    background: transparent;
  }

  .twitter-tweet::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 3px solid transparent;
  }
}

