@-webkit-viewport {
	width: device-width;
}
@-moz-viewport {
	width: device-width;
}
@-ms-viewport {
	width: device-width;
}
@-o-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

@-moz-keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	60% {
		-moz-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}
@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	60% {
		-moz-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}
@keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-moz-keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* ----------------------------------------------------------------
	GENERAL
-----------------------------------------------------------------*/

/* global reset */

*,
*::after,
*::before {
	box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	border: 0;
	margin: 0;
	padding: 0;
}
html {
	/*font-size: 62.5%;*/
}
body {
	margin: 0;
	z-index: 1;
	color: #3c4b55;
	font: 16px "Barlow", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Barlow", sans-serif;
	margin-bottom: 8px;
}
p {
	font-size: 1.125rem;
	line-height: 1.75rem;
}
p:not(:last-child) {
	padding-bottom: 20px;
}
a {
	color: #5191ab;
	font-weight: 500;
}
a:hover {
	color: #2d667d;
	text-decoration: underline;
}
a:active {
	color: #2d667d;
	background: none;
}
a:focus {
	color: #2d667d;
}
img {
	max-width: 100%;
}
iframe {
	border: none !important;
}
strong {
	font-weight: 700;
}

::-moz-selection {
	background-color: #c9e5f2;
	color: #3c4b55;
}
::selection {
	background-color: #c9e5f2;
	color: #3c4b55;
}

:active,
:focus {
	outline: none !important;
}

.link-blue {
	color: #5191ab;
	font-weight: 500;
	cursor: pointer;
}
.link-blue:hover {
	color: #2d667d;
}

.link-white {
	color: #ffffff;
	font-weight: 500;
	cursor: pointer;
}
.link-white:hover {
	color: #a1d0e3;
	text-decoration: underline;
}

.link-gray {
	color: #3c4b55;
	font-weight: 500;
	cursor: pointer;
}
.link-gray:hover {
	color: #3e7b94;
}

/* underline animation */
.hover-line {
	background-size: 0px 2px;
	background-position: center bottom;
	background-repeat: no-repeat;
	transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	padding: 2px 0px;
}
.hover-line:hover {
	background-size: 100% 2px;
}
.hover-line-thick {
	background-size: 0px 4px;
	background-position: center bottom;
	background-repeat: no-repeat;
	transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	padding: 2px 0px;
}
.hover-line-thick:hover {
	background-size: 100% 4px;
}
.hover-line-white {
	background-image: linear-gradient(#ffffff, #ffffff);
}
.hover-line-gray {
	background-image: linear-gradient(#637380, #637380);
}
.hover-line-blue {
	color: #5191ab;
	background-image: linear-gradient(#2d667d, #2d667d);
}
.hover-line-blue:hover {
	color: #2d667d;
}
.hover-line-yellow {
	background-image: linear-gradient(#fce2ac, #fce2ac);
	background-position: center 84%;
}

.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}

.text-xs {
	font-size: 12px;
}
.text-sm {
	font-size: 14px;
}
.text-base {
	font-size: 16px;
}
.text-lg {
	font-size: 20px;
}
.text-xl {
	font-size: 24px;
}
.text-2xl {
	font-size: 30px;
}
.text-3xl {
	font-size: 36px;
}
.text-4xl {
	font-size: 40px;
}

.font-normal {
	font-weight: 400;
}
.font-medium {
	font-weight: 500;
}
.font-semibold {
	font-weight: 600;
}

.text-white {
	color: #ffffff;
}
.text-gray-700 {
	color: #637380;
}
.text-gray-500 {
	color: #93a2b0;
}
.text-gray-300 {
	color: #ced6de;
}
.text-yellow-500 {
	color: #ffc859;
}
.text-yellow-400 {
	color: #ffd176;
}
.text-blue-300 {
	color: #86bdd1;
}
.text-blue-700 {
	color: #3e7b94;
}

.tracking-wide {
	letter-spacing: 0.05rem;
}
.tracking-wider {
	letter-spacing: 0.075rem;
}
.tracking-widest {
	letter-spacing: 0.1rem;
}

.leading-snug {
	line-height: 1.375;
}
.leading-normal {
	line-height: 1.5;
}
.leading-relaxed {
	line-height: 1.625;
}

.bg-white {
	background: #ffffff;
}

.bg-gray-100 {
	background: #f0f4f7;
}
.bg-gray-200 {
	background: #e2e7ed;
}
.bg-gray-300 {
	background: #ced6de;
}
.bg-gray-700 {
	background: #637380;
}
.bg-gray-900 {
	background: #3c4b55;
}

.bg-blue-100 {
	background: #e3f1f7;
}
.bg-blue-200 {
	background: #c9e5f2;
}
.bg-blue-300 {
	background: #a1d0e3;
}
.bg-blue-500 {
	background: #67a5be;
}
.bg-blue-600 {
	background: #5191ab;
}
.bg-blue-700 {
	background: #3e7b94;
}

.w-full {width: 100%;}

/* Buttons */
.button {
	user-select: none;
	cursor: pointer;
	transition: all 0.2s;
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);

	padding: 12px 20px;
	border-radius: 4px;
	letter-spacing: 0.05rem;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}
.button:focus,
.button:active,
.button:hover {
	text-decoration: none;
	outline: none;
}

.blue-filled {
	background-color: #5191ab;
	color: #ffffff;
}
.blue-filled:hover {
	background-color: #67a5be;
}

.blue-outline {
	background-color: transparent;
	border: 2px solid #5191ab;
	color: #5191ab;
}
.blue-outline:hover {
	background-color: #5191ab;
	color: #ffffff;
}

.gray-filled {
	color: #3c4b55;
	background-color: #ced6de;
}
.gray-filled:hover {
	color: #3c4b55;
	background-color: #e2e7ed;
}

.gray-outline {
	background-color: transparent;
	color: #637380;
	border: 2px solid #637380;
}
.gray-outline:hover {
	color: #fff;
	background-color: #637380;
}

.white-filled {
	color: #3c4b55;
	background-color: #ffffff;
}
.white-filled:hover {
	color: #3c4b55;
	background-color: #f0f4f7;
}
.white-outline {
	background-color: transparent;
	border: 2px solid #ffffff;
	color: #ffffff;
}
.white-outline:hover {
	background-color: #ffffff;
	color: #3c4b55;
}

.disabled-filled,
.disabled-filled:hover,
.disabled-filled:active,
.disabled-filled:focus {
	cursor: not-allowed;
	color: #93a2b0;
	background-color: #e2e7ed;
}

.yellow-filled {
	background-color: #ffc859;
	color: #3c4b55;
}
.yellow-filled:hover,
.yellow-filled:active,
.yellow-filled:focus {
	background-color: #ffd176;
	color: #3c4b55;
}

#bannersection {
	padding-bottom: 0;
}

.colorful {
	background-color: #3e7b94;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	background-image: url(../_IMG/bg_polygons.png),
		-webkit-radial-gradient(0 0, circle, #3e7b94, #86bdd1);
	background-image: url(../_IMG/bg_polygons.png),
		radial-gradient(circle at 0 0, #3e7b94, #86bdd1);
}

.two-column p {
	padding-bottom: 20px;
}

.medium-6L {
	padding-right: 3rem;
	width: 50%;
}
.medium-6R {
	padding-left: 3rem;
	width: 50%;
}

.c4 {
	color: #ffffff;
	border-radius: 4px;
	padding: 30px 40px;
	background: rgba(33, 84, 104, 0.4);
}

.right-align {
	text-align: right;
}
.paddtop40 {
	padding-top: 40px;
}
a.liveleads {
	color: #ffffff;
	font-weight: 500;
	letter-spacing: 0.05rem;
	padding-top: 10px;
	display: inline-block;
}
.smallerfont {
	font-size: 0.8rem;
}

header a,
.navigation,
.navigation nav,
.navigation nav li,
.navigation nav li a,
.navigation svg,
#offCanvasLeft a.btnPhone,
#offCanvasLeft a.btnJoin,
#offCanvasLeft a.offCanvasLink,
footer .social a svg .twitterB,
footer .social a svg .instagramB,
footer .social a svg .vineB,
footer .social a svg .tumblrB,
footer .social a svg .googleB,
footer .social a svg .pinterestB,
footer .social a svg .facebookB,
.bleubtn,
#Video .video img,
#corefour input[type="radio"] + label span,
#corefour input[type="radio"]:checked + label span,
#Questionnaire input[type="radio"] + label span,
#Questionnaire input[type="radio"]:checked + label span,
#corefour input[type="radio"] + label,
#Questionnaire input[type="radio"] + label {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.fontRed {
	color: #f00;
}

/* HEADER / NAVIGATION TEMPLATE BLOCK */
.header-topline {
	background-color: #3c4b55;
	padding-top: 8px;
	padding-bottom: 8px;
	color: #ffffff;
}

.header-topline .header-message {
	display: inline-block;
	line-height: 1.5;
	font-size: 15px;
}

.header-topline a.btnJoin {
	display: inline-block;
	font-size: 0.8rem;
	color: #86bdd1;
	background: none;
	border: solid 1px #86bdd1;
	text-transform: uppercase;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 3px 12px;
	margin-left: 16px;
	letter-spacing: 0.05rem;
	font-weight: 600;
}
.header-topline a.btnJoin:hover {
	color: #3c4b55;
	border: solid 1px #86bdd1;
	background: #86bdd1;
	text-decoration: none;
} 

/* 
.header-topline {
	background-color: #FFC859;
	padding-top: 8px;
	padding-bottom: 8px;
}

.header-topline .header-message,
.header-topline .header-message a {
	display: inline-block;
	line-height: 1.5;
	font-weight: 600;
}

.header-topline a.btnJoin {
	display: inline-block;
	font-size: 0.8rem;
	color: #3c4b55;
	background: none;
	border: solid 1px #3c4b55;
	text-transform: uppercase;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 3px 12px;
	margin-left: 16px;
	letter-spacing: 0.075rem;
	font-weight: 600;
}
.header-topline a.btnJoin:hover {
	color: #ffffff;
	border: solid 1px #3c4b55;
	background: #3c4b55;
	text-decoration: none;
}*/

.navigation {
	width: 100%;
	color: #ffffff;
	margin: 0;
	padding: 12px 0;
}
.navigation.smaller {
	height: 55px;
	top: 0;
	background: rgba(57, 75, 87, 0.9);
}

.navigation .logo a img {
	width: 150px;
	height: 50px;
}
.navigation.smaller .logo a img {
	width: auto;
	height: 32px;
}

/* Mobile Screens (640) and Down */
@media only screen and (max-width: 40em) {
	.navigation .logo a img {
		width: auto;
		height: 30px;
	}
}

.cruise-critic-logo {
	padding-left: 4px;
	margin-left: 16px;
	float:left;
	border-left: 1px solid #aaa;
}
.cruise-critic-logo img {
	width: 180px;
	padding: 12px;
}
.smaller .cruise-critic-logo img {
	width: 100px;
	padding: 8px;
}

/* Mobile Screens (640) and Down */
@media only screen and (max-width: 40em) {
	.cruise-critic-logo {
		display:none;
	}
}

.navigation .menu li > a {
	color: #ffffff;
}
.navigation
	.dropdown.menu
	.is-dropdown-submenu-parent.is-down-arrow
	> a::after {
	border: 0;
}
.reveal-overlay {
	z-index: 201;
}
.reveal {
	z-index: 202;
}
.is-dropdown-submenu {
	top: 35px !important;
}

/* HERO TEMPLATE BLOCK */
#hero {
	padding: 180px 0 140px 0;
	height: 600px;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	position: relative;
}
#hero h1 {
	margin-bottom: 16px;
	font-weight: 400;
	font-size: 50px;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	word-spacing: 0.25rem;
	line-height: 1.1;
}
#hero .hero-subheader {
	font-size: 30px;
	margin-bottom: 30px;
}
#hero .hero-subheader p {
	font-size: 24px !important;
	letter-spacing: 0.075rem;
	line-height: 1.25;
}
#hero .button {
	display: inline-block;
}

#hero .tag-typer {
	font-size: 3rem;
	margin: auto;
	text-align: center;
	height: 100%;
	line-height: 1em;
}
#hero .tag-typer .main,
#hero .tag-typer .word {
	display: inline-block;
}
#hero .tag-typer .word {
	margin-left: 10px;
	color: #ffffff;
}
#hero .typed-cursor {
	opacity: 1;
	-webkit-animation: blink 0.7s infinite;
	-moz-animation: blink 0.7s infinite;
	animation: blink 0.7s infinite;
}
#hero h2 {
	color: #fff;
	font-weight: 600;
	padding-bottom: 50px;
	text-align: left;
	width: 75rem;
	margin: 0 auto;
}
#hero h2.homepage {
	font-weight: 500;
}
#hero small sup {
	color: #ffffff;
}
#hero img {
	min-width: 100%;
}
#hero video#VideoBG {
/* 	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto; */
	z-index: 10;
}
#hero .row {
	position: relative;
	z-index: 11;
}
#hero div.text-home {
	z-index: 99;
	text-align: center;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	padding-top: 75px;
	display: table;
}
#hero div.text-home > .row {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}
#hero div.text {
	z-index: 99;
	text-align: left;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	margin-top: calc(10% + 2em);
}
#hero div.heroChevron {
	width: 75rem;
	margin: 0 auto;
}
#hero a.smoothscroll:link,
#hero a.smoothscroll:hover,
#hero a.smoothscroll:visited,
#hero a.smoothscroll:active {
	float: left;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	background-color: transparent !important;
	background-size: contain;
}
#hero a.bounce {
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}
#hero a.bounce:hover {
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	animation-play-state: paused;
}

.navigation svg {
	width: 290px;
}

/* medium only */
@media only screen and (min-width: 40.062em) and (max-width: 64em) {
	#hero {
		padding: 140px 0 0 0;
		height: 390px;
	}
	#hero h1 {
		font-size: 30px;
		word-spacing: 0.2rem;
	}
	#hero .hero-subheader {
		font-size: 24px;
	}
	.navigation svg {
		width: 195px;
	}
}
/* small only */
@media only screen and (max-width: 40em) {
	#hero {
		padding: 100px 0 0 0;
		height: auto;
	}
	#hero-video {
		height: 260px;
	}
	#hero-video.elite-100 {
		height: 290px;
	}
	#hero h1 {
		font-size: 30px;
		word-spacing: 0.2rem;
	}
	#hero .hero-subheader {
		font-size: 20px;
	}
}

/* BREADCRUMBS BLOCK */
#breadcrumbs .bc {
	padding: 15px 0;
}
#breadcrumbs .bc li {
	display: inline-block;
	margin-right: 5px;
	padding-right: 15px;
	position: relative;
}
#breadcrumbs .bc li:after {
	font-family: "FontAwesome";
	content: "\f105";
	top: 0px;
	right: 0;
	position: absolute;
}
#breadcrumbs .bc li:last-child:after {
	font-family: "FontAwesome";
	content: "";
	top: 0px;
	right: 0;
	position: absolute;
}
#breadcrumbs .bcnav {
	padding: 15px 0;
	text-align: right;
}
#breadcrumbs .bcnav .fa-angle-left {
	padding-right: 6px;
}
#breadcrumbs .bcnav .fa-angle-right {
	padding-left: 6px;
}

/* small only */
@media only screen and (max-width: 40em) {
	#breadcrumbs .bcnav {
		padding: 0 0 15px 0;
		text-align: left;
	}
}
#bannersection,
.exclusive-banner {
	display: none;
}
.exclusive-banner img {
	width: 100%;
	margin-bottom: 50px;
}
#bannersection .exclusive-banner img {
	margin-bottom: 0;
}

/* HOMEPAGE */
#home-intro h2 {
	margin-top: 60px;
	margin-bottom: 40px;
}
#home-intro .text {
	margin-bottom: 8px;
}

#chartsection h2 {
	margin-bottom: 40px;
}

#products-services h2 {
	margin-bottom: 60px;
}
#products-services .product {
	margin-bottom: 20px;
}
#products-services .text > div {
	margin-bottom: 8px;
}
#products-services .icon {
	text-align: center;
}
#products-services .icon img {
	margin: 0 auto 20px;
	width: 160px;
}

#testimonial-slider .name {
	margin-top: 16px;
	margin-bottom: 8px;
}
#testimonial-slider .title {
	margin-bottom: 8px;
}

.partner-slider .slick-prev:before {
	display: inline-block;
	content: url(https://res.cloudinary.com/avoya-travel/image/upload/v1582304771/layout/icons/arrow.svg);
	height: 50px;
	width: 30px;
	opacity: 0.5;
}
.partner-slider .slick-next:before {
	display: inline-block;
	content: url(https://res.cloudinary.com/avoya-travel/image/upload/v1582304771/layout/icons/arrow.svg);
	height: 50px;
	width: 30px;
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	opacity: 0.5;
}

/* AVOYA DIFFERENCE BLOCK */
#AvoyaDifference h5 {
	margin-top: 20px;
}
#AvoyaDifference h5:first-child {
	margin-top: 0;
}
#AvoyaDifference p,
#AvoyaDifference2 p {
	text-align: justify;
}
#AvoyaDifference2 h3,
#tabsection h3 {
	margin: 10px;
	padding-bottom: 20px;
	border-bottom: 1px solid #3c4b55;
}
#AvoyaDifference ul,
#AvoyaDifference2 ul,
#AvoyaDifference ol,
#AvoyaDifference2 ol {
	padding: 0 0 30px 40px;
}
#AvoyaDifference li,
#AvoyaDifference2 li {
	padding: 10px 0 0 0;
	font-size: 1rem;
}
#AvoyaDifference2 h6 {
	padding-top: 20px;
}
#AvoyaDifference2 .newslog {
	border-bottom: 1px solid #ced6de;
	padding: 30px 0;
	margin: 0 0.9375rem;
}
#AvoyaDifference2 .media-object-section:first-child {
	padding-right: 2rem;
}
#AvoyaDifference2 .date {
	display: block;
	width: 150px;
	height: 100px;
	background: #fff;
	text-align: center;
	position: relative;
}
#AvoyaDifference2 .date .month {
	background: #3c4b55;
	display: block;
	text-transform: uppercase;
	padding: 8px 0;
	color: #fff;
	font-weight: 700;
	border-bottom: 2px solid #333;
	box-shadow: inset 0 -1px 0 0 #666;
}
#AvoyaDifference2 .date .day {
	display: block;
	margin: 0;
	border-bottom: none;
	padding: 5px 10px 0 10px;
	font-size: 2.5rem;
	line-height: 2.5rem;
	box-shadow: 0 0 3px #ccc;
	position: relative;
}
#AvoyaDifference2 .date .day .year {
	display: block;
	margin: 0;
	padding: 0 0 10px 0;
	line-height: 1rem;
	font-size: 1rem;
	position: relative;
}

/* Privacy Policy Readability Fixes */
#privacy-policy h3 {
	margin-top: 25px;
}
#privacy-policy ul {
	margin: 15px 30px 0;
}
#privacy-policy ul li {
	margin-bottom: 10px;
}

/* Testimonials Page */
#testimonials-page {
	background-color: #d1d7de;
}
.testimonials-page-wrapup {
	background-color: #ffffff;
}
.testimonials-page-wrapup p {
	line-height: 2;
	margin-top: 20px;
}
.testimonials-page-wrapup p i {
	padding-right: 10px;
}
.testimonials-page-wrapup p span {
	display: block;
	margin-bottom: 10px;
	line-height: 1.3;
}

#testimonials-page-slider1 {
	max-height: 430px;
	padding: 30px 0;
	margin-bottom: 0;
}
#testimonials-page-slider1 > div {
	position: relative;
	z-index: 1;
}
#testimonials-page-slider1 > button {
	z-index: 2;
}
#testimonials-page-slider1 .three,
#testimonials-page-slider1 .single {
	height: 370px;
}
#testimonials-page-slider1 .three > div {
	padding: 0 1.6rem;
}
#testimonials-page-slider1 .three img {
	margin-bottom: 15px;
	height: 120px;
	width: 120px;
	border-radius: 150px;
	border: 5px solid white;
	-webkit-box-shadow: 0 0 3px 1px rgba(100, 100, 100, 0.2);
	box-shadow: 0 0 3px 1px rgba(100, 100, 100, 0.2);
}
#testimonials-page-slider1 .three .t-text {
	margin-bottom: 12px;
	text-align: left;
	line-height: 1.5;
}
#testimonials-page-slider1 .three .t-name {
	margin-bottom: 12px;
	text-align: center;
	line-height: 1.3;
	font-size: 12px;
}
#testimonials-page-slider1 .three .t-name span {
	display: block;
	margin-bottom: 2px;
	font-size: 19px;
	font-weight: normal;
}
#testimonials-page-slider1 .three .t-name strong {
	display: block;
	font-size: 14px;
}
#testimonials-page-slider1 .three .t-shout {
	text-align: center;
	line-height: 1.3;
	font-size: 15px;
	color: #3e7b94;
}

#testimonials-page-slider1 .single img {
	margin-top: 60px;
	height: 200px;
	width: 200px;
	border-radius: 200px;
	border: 5px solid white;
	-webkit-box-shadow: 1px 1px 5px 2px rgba(100, 100, 100, 0.3);
	box-shadow: 1px 1px 5px 2px rgba(100, 100, 100, 0.3);
}
#testimonials-page-slider1 .single > div:last-child {
	padding-top: 60px;
}
#testimonials-page-slider1 .single .t-text {
	font-size: 17px;
	line-height: 1.6;
	margin-bottom: 20px;
}
#testimonials-page-slider1 .single .t-name {
	margin-bottom: 20px;
	line-height: 1.3;
	font-size: 14px;
}
#testimonials-page-slider1 .single .t-name span {
	display: block;
	margin-bottom: 5px;
	font-size: 24px;
	font-weight: normal;
}
#testimonials-page-slider1 .single .t-name strong {
	display: block;
	font-size: 17px;
}
#testimonials-page-slider1 .single .t-shout {
	margin-bottom: 10px;
	line-height: 1.3;
	font-size: 18px;
	color: #3e7b94;
}

#testimonials-page-slider1 .slick-prev,
#testimonials-page-slider1 .slick-next {
	height: 50px;
	width: 40px;
}
#testimonials-page-slider1 .slick-prev::before,
#testimonials-page-slider1 .slick-next::before {
	font-size: 30px;
	color: #7a8793;
}
#testimonials-page-slider1 .slick-arrow {
	top: 40%;
}
#testimonials-page-slider1 .slick-prev.slick-arrow {
	left: -3rem;
}
#testimonials-page-slider1 .slick-next.slick-arrow {
	right: -3rem;
}

/* Medium Only */
@media only screen and (min-width: 40.062em) and (max-width: 64em) {
	#testimonials-page-slider1 {
		max-height: 450px;
	}
	#testimonials-page-slider1 .three,
	#testimonials-page-slider1 .single {
		height: 450px;
	}

	#testimonials-page-slider1 .three > div > img {
		display: none;
	}
	#testimonials-page-slider1 .three .t-name,
	#testimonials-page-slider1 .three .t-shout {
		text-align: left;
	}

	#testimonials-page-slider1 .single > div:last-child {
		padding-top: 30px;
	}
}

/* Small Only */
@media only screen and (max-width: 40em) {
	#testimonials-page-slider1 {
		max-height: 620px;
	}
	#testimonials-page-slider1 .three,
	#testimonials-page-slider1 .single {
		height: auto;
	}

	#testimonials-page-slider1 .slick-arrow {
		top: 75px;
	}
	#testimonials-page-slider1 .slick-prev.slick-arrow {
		left: 1rem;
	}
	#testimonials-page-slider1 .slick-next.slick-arrow {
		right: 1rem;
	}

	#testimonials-page-slider1 .single > div {
		padding: 0 1.6rem;
	}
	#testimonials-page-slider1 .single img {
		margin: 0 0 15px 0;
		height: 120px;
		width: 120px;
	}
	#testimonials-page-slider1 .single .t-name {
		margin-bottom: 12px;
		font-size: 12px;
	}
	#testimonials-page-slider1 .single .t-name span {
		margin-bottom: 2px;
		font-size: 19px;
	}
	#testimonials-page-slider1 .single .t-text {
		margin: 0 0 12px;
		font-size: 14px;
		line-height: 1.5;
	}
	#testimonials-page-slider1 .single > div:last-child {
		padding-top: 0;
	}
	#testimonials-page-slider1 .single .t-shout {
		font-size: 15px;
		line-height: 1.3;
	}

	#testimonials-page-slider1 .single .t-name strong,
	#testimonials-page-slider1 .three .t-name strong {
		font-size: 14px;
		display: inline;
	}
	#testimonials-page-slider1 .three .t-name,
	#testimonials-page-slider1 .three .t-shout {
		text-align: left;
	}
	#testimonials-page-slider1 .three .t-shout br {
		display: none;
	}
}

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* INLINE FORM BLOCK */
#corefour > .row {
	padding-top: 75px;
	padding-bottom: 75px;
}
.arrowsMcGhee {
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	margin: 0 auto;
	border-top: 30px solid #3c4b55;
}

.addt-question {
	margin-bottom: 17px;
	text-align: left;
}

.select-dropdown {
	height: 55px;
	padding: .75rem 1rem;
	font-weight: 600;
	color: #3c4b55;
}


/* Medium Screens - min-width 641px and max-width 1024px, use when QAing tablet-only issues */
@media only screen and (min-width: 40.062em) and (max-width: 64.063em) {
	.core4 {
		width: 50%;
	}
	.core4btn {
		width: 100%;
	}

	.addt-question {
		padding-top: 8px;
		text-align: right;
	}
}

/* Large Screens - min-width 1025px and max-width 1440px, use when QAing large screen-only issues */
@media only screen and (min-width: 64.063em) {
	.core4 {
		width: 25%;
	}
	.core4btn {
		width: 25%;
	}

	.addt-question {
		padding-top: 18px;
		text-align: right;
	}
}

#corefour p {
	padding-bottom: 25px;
}
#corefour input[type="radio"]:checked + label span:after {
	margin: -4px 0 0 1px;
	position: absolute;
	content: "\f00c";
}
#corefour .field-group {
	border: 0;
	clear: both;
	width: 100%;
	float: left;
	margin: 0 0 15px 0;
	padding: 0;
	position: relative;
	z-index: 1;
}
#corefour .field.text {
	background: #fff;
	margin: 0 auto;
	padding: 6px 15px;
	position: relative;
	text-align: center;
	border-color: #b1bec4;
	border-style: solid;
	box-shadow: none;
	border-width: 1px;
	clear: both;
	height: 55px;
}
#corefour .field.text input {
	background: transparent;
	position: absolute;
	z-index: 2;
	color: #3c4b55;
	font-weight: 700;
	height: 36px;
	margin: 10px 0 0 0;
	padding: 0;
	border: 0;
	outline: 0;
	width: 85%;
	box-shadow: none;
}
#corefour .field.text label,
#corefour .field.text .input-select .chosen-single span {
	position: absolute;
	z-index: 1;
	top: 15px;
	left: 0;
	margin: 0 15px !important;
	color: #93a2b0;
	transition: all 0.2s;
	cursor: text;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
}
#corefour .field.text.has-value label {
	font-size: 11px;
	font-weight: 700;
	line-height: 12px;
	left: 0;
	top: 10px;
	color: #3c4b55;
}
#corefour .field.text.has-value label.error,
#corefour .field.text label.error {
	font-size: 11px;
	font-weight: 700;
	line-height: 12px;
	left: 0;
	top: 10px;
	color: #f00000;
}
#corefour .field.text.has-value label.valid {
	color: #6bba38;
}
#corefour form input[type="submit"] {
	display: inline;
	margin: 0;
	padding: 16px 20px;
}
label.isExperienced_Error.error {
	font-size: 11px;
	font-weight: 700;
	line-height: 12px;
	left: 0;
	top: 10px;
	color: #f00000;
	padding: 5px;
	background: #fff;
	margin-top: 5px !important;
}

/* QUESTIONNAIRE FORM BLOCK */

#questionnaire {
	text-align: left;
	color: #3c4b55;
	background: #f2f4f5;
}
#inlineform > .row,
#experiencedAgent > .row,
#newAgent > .row {
	margin-bottom: 1.2rem;
}
#questionnaire .nombtm {
	margin-bottom: 0;
}
#questionnaire h2 {
	margin-bottom: 10px;
}
#questionnaire form .large-12 > p {
	padding-bottom: 20px;
}
#questionnaire form {
	margin-bottom: 10px;
}
#questionnaire form input[type="text"],
#questionnaire form input[type="email"],
#questionnaire form input[type="number"],
#questionnaire form input[type="tel"],
#questionnaire form select,
#questionnaire form textarea {
	width: 100% !important;
	display: inline;
	border: 1px solid #b1bec4;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
}
#questionnaire form input[type="text"]:hover,
#questionnaire form input[type="email"]:hover,
#questionnaire form input[type="tel"]:hover,
#questionnaire form select:hover,
#questionnaire form textarea:hover {
	border: 1px solid #5191ab;
}
#questionnaire form label {
	text-align: center;
}
#questionnaire form,
#questionnaire label  {
	font-size: 1.2rem !important;
}
#questionnaire label.error {
	background: #ffc859;
	color: #3c4b55;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/*
	#corefour form input[type="text"]:hover, #corefour form input[type="email"]:hover, #corefour form input[type="tel"]:hover, #corefour form select:hover, #corefour form textarea:hover {border: 1px solid #f98700;}
	#corefour input.error, #questionnaire input.error, #questionnaire textarea.error, #questionnaire select.error, #corefour input[type="radio"].error + label span, #questionnaire input[type="radio"].error + label span  {border: 1px solid #f98700 !important}
	#corefour input.error, #questionnaire input.error, #questionnaire textarea.error, #questionnaire select.error, #questionnaire input[type="number"].error {border-bottom: 0px !important;}

	#corefour form label {text-align: center;}
	#corefour form, #corefour label {color: #ffffff !important; font-size: 1.2rem !important;}
	#questionnaire form input[type="text"], #questionnaire form input[type="email"], #questionnaire form input[type="tel"], #questionnaire form select, #questionnaire form textarea {border: 1px solid #b1bec4; border-radius: 0; box-shadow: none;}
	*/

#corefour div.radiodiv,
#questionnaire div.radiodiv {
	padding-bottom: 15px;
}
#corefour label,
#questionnaire label {
	margin: 0;
}
#corefour input[type="radio"],
#questionnaire input[type="radio"] {
	visibility: hidden;
}
#corefour input[type="radio"] + label {
	color: #f2f4f5;
	cursor: pointer;
}
#questionnaire input[type="radio"] + label {
	color: #3c4b55;
	cursor: pointer;
}
#corefour input[type="radio"] + label span,
#questionnaire input[type="radio"] + label span {
	font-family: "FontAwesome";
	display: inline-block;
	width: 19px;
	height: 19px;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	cursor: pointer;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
#corefour input[type="radio"] + label span,
#questionnaire input[type="radio"] + label span {
	background-color: #f2f4f5;
	border: 1px solid #b1bec4;
}
#corefour input[type="radio"] + label:hover span,
#questionnaire input[type="radio"] + label:hover span {
	border: 1px solid #5191ab;
}
#corefour input[type="radio"]:checked + label span,
#questionnaire input[type="radio"]:checked + label span {
	background: #ffffff;
	color: #3c4b55;
}
#questionnaire input[type="radio"]:checked + label span:after {
	margin: 0 0 0 -5px;
	position: absolute;
	content: "\f00c";
	font-size: 75%;
}
.bnOrange,
input[type="submit"].bnOrange,
.bnOrig,
input[type="submit"].bnOrig {
	display: inline-block;
	width: 100%;
	position: relative;
	padding: 8px 20px;
	overflow: visible;
	cursor: pointer;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 21px;
	text-align: center;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 2px;
	outline: none;
	transition: all 0.05s;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-shadow: 1px 1px 1px #ff6600;
	box-shadow: inset 0 0 1px #ffcb6e;
	background: #f98700;
	background: -moz-linear-gradient(top, #f98700 0%, #ea7d00 100%);
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, #f98700),
		color-stop(100%, #ea7d00)
	);
	background: -webkit-linear-gradient(top, #f98700 0%, #ea7d00 100%);
	background: -o-linear-gradient(top, #f98700 0%, #ea7d00 100%);
	background: -ms-linear-gradient(top, #f98700 0%, #ea7d00 100%);
	background: linear-gradient(to bottom, #f98700 0%, #ea7d00 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f98700', endColorstr='#ea7d00',GradientType=0 );
}
.bnOrange:hover,
input[type="submit"].bnOrange:hover,
.bnOrig:hover,
input[type="submit"].bnOrig:hover {
	background: #ff9900;
	background: -moz-linear-gradient(
		top,
		#ff9900 0%,
		#ff930f 49%,
		#ff7007 100%
	);
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, #f90),
		color-stop(49%, #ff930f),
		color-stop(100%, #ff7007)
	);
	background: -webkit-linear-gradient(
		top,
		#f90 0%,
		#ff930f 49%,
		#ff7007 100%
	);
	background: -o-linear-gradient(top, #ff9900 0%, #ff930f 49%, #ff7007 100%);
	background: -ms-linear-gradient(top, #ff9900 0%, #ff930f 49%, #ff7007 100%);
	background: linear-gradient(to bottom, #f90 0%, #ff930f 49%, #ff7007 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9900', endColorstr='#ff7007',GradientType=0 );
}

/* TABS */
#tabsection h2 {
	padding-bottom: 25px;
}
#tabsection .tabs {
	border: none;
	text-align: center;
}
#tabsection .tabs li {
	display: inline-block;
}
#tabsection .tabs a {
	border-radius: 5px 5px 0 0;
	margin-right: 2px;
}

#tabsection .tabs-content {
	border: 1px solid #f2f4f5;
}
#tabsection .tabs-title > a {
	border: 1px solid #f2f4f5;
	border-bottom: none;
	font-size: 1.2rem;
	font-family: "Roboto Slab", sans-serif;
	background: #f2f4f5;
	color: #3c4b55;
}
#tabsection .tabs-title > a:focus,
#tabsection .tabs-title > a[aria-selected="true"]:hover,
#tabsection .tabs-title > a[aria-selected="true"] {
	border: 1px solid #67a5be;
	border-bottom: none;
	background: #67a5be;
	color: #fff;
}
#tabsection .tabs-title > a:hover {
	border: 1px solid #afb9c3;
	border-bottom: none;
	background: #afb9c3;
}

#tabsection li.is-active .accordion-title {
	background: #67a5be;
	color: #ffffff;
}
.accordion-title:focus,
.accordion-title:hover {
	background: #f2f4f5;
	color: #3c4b55;
}

#News .newslog,
#Press .newslog {
	border-bottom: 1px solid #e2e7ed;
	padding: 0 0 30px 0;
	margin: 0 0 30px 0;
}
#News .newslog img {
	max-width: 165px;
}

#Press .media-object-section:first-child {
	padding-right: 2rem;
}
#Press h4 {
	padding-bottom: 0px;
}
#Press p.byline {
	padding-bottom: 20px;
	font-style: italic;
}
#Press .date {
	display: block;
	width: 100%;
	background: #fff;
	text-align: center;
	position: relative;
	box-shadow: 0 0 3px #ccc;
}
#Press .date .month {
	background: #3c4b55;
	display: block;
	padding: 8px 0;
	color: #fff;
	font-weight: 700;
}
#Press .date .day {
	display: block;
	margin: 0;
	min-width: 100px;
	padding: 5px 20px 0 20px;
	font-size: 2.5rem;
	border-bottom: none;
	line-height: 2.5rem;
	position: relative;
}
#Press .date .day .year {
	display: block;
	margin: 0;
	padding: 0 0 10px 0;
	line-height: 1rem;
	font-size: 1rem;
	position: relative;
}

#Blog .blog-container {
	border: 1px solid #ced6de;
	padding: 3rem;
}
/* Small Only */
@media only screen and (max-width: 40em) {
	#Blog .blog-container {
		padding: 30px;
	}
}

#Blog .newslog {
	border-bottom: 1px solid #e2e7ed;
	padding: 0 0 30px 0;
	margin: 0 0 30px 0;
}
#Blog .media-object-section:first-child {
	padding-right: 2rem;
}
#Blog h4 {
	padding-bottom: 0px;
}
#Blog p.byline {
	padding-bottom: 20px;
	font-style: italic;
}
#Blog .date {
	display: block;
	width: 100%;
	background: #fff;
	text-align: center;
	position: relative;
	box-shadow: 0 0 3px #ccc;
}
#Blog .date .month {
	background: #3c4b55;
	display: block;
	padding: 8px 0;
	color: #fff;
	font-weight: 700;
}
#Blog .date .day {
	display: block;
	margin: 0;
	min-width: 100px;
	padding: 5px 20px 0 20px;
	font-size: 2.5rem;
	border-bottom: none;
	line-height: 2.5rem;
	position: relative;
}
#Blog .date .day .year {
	display: block;
	margin: 0;
	padding: 0 0 10px 0;
	line-height: 1rem;
	font-size: 1rem;
	position: relative;
}

.news-loading {
	padding: 20px 0;
}

/* CIRCLE BLOCK */
#Video .progressbar-text {
	top: 50% !important;
	font-weight: 100;
	color: #1d242d !important;
	text-align: center;
}
#Video .progressbar-text:before {
	display: block;
	font-size: 1rem;
	padding-bottom: 10px;
}
#Video .cirle1 .progressbar-text:before {
	content: "As Little As";
}
#Video .cirle2 .progressbar-text:before {
	content: "UP TO";
}
#Video .vs {
	padding: 15% 0;
	text-align: center;
}
.circle1,
.circle2,
.circle3,
.circle4 {
	height: 100%;
	padding: 0 20px;
}
.circle1 > svg,
.circle2 > svg,
.circle3 > svg,
.circle4 > svg {
	height: 100%;
	display: block;
}
p.circletext {
	font-weight: 700;
	padding: 20px 0;
	text-align: center;
}
.VideoCircle h2 {
	border-bottom: 2px solid #3c4b55;
	padding-bottom: 15px;
	margin-bottom: 30px;
}

.lgrey .data {
	font-size: 0.8rem;
	font-style: italic;
	color: #7a8793;
}
.lgrey .data strong {
	color: #f98700;
}
.dgrey .data {
	font-size: 0.8rem;
	font-style: italic;
	color: #cacaca;
}
.dgrey .data strong {
	color: #f98700;
}
.dgrey .progress {
	position: relative;
	background: #445560 !important;
}
.lgrey .progress {
	position: relative;
	background: #dbdddf;
}
.progress .meter {
	-moz-transition: width 0.7s ease;
	-webkit-transition: width 0.7s ease;
	-transition: width 0.7s ease;
}
.progress .progress-meter-text {
	position: absolute;
	top: 50%;
	right: 0%;
	-webkit-transform: translate(-5%, -50%);
	-ms-transform: translate(-5%, -50%);
	transform: translate(-5%, -50%);
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	white-space: nowrap;
}
.lgrey .progress-meter-text {
	color: #3c4b55;
}
.dgrey .progress-meter-text {
	color: #ffffff;
}
.progress.avoya .progress-meter {
	background-color: #f98700;
}
.progress.company .progress-meter {
	background-color: #7a8793;
}

/* BUTTON CLASSES */

.btnBlue,
.btnBlue-o,
.btnBlack-o,
.btnOrange {
	position: relative;
	display: inline-block;
	padding: 3px 8px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	color: white;
	background-color: #5191ab;
	border-radius: 2px;
	letter-spacing: 0;
	border: 1px solid transparent;
	cursor: pointer;
}
.btnBlue-o {
	color: #5191ab;
	background-color: #fff;
	border: 1px solid #5191ab;
}
.btnBlue-o:hover {
	color: #3e7b94;
	border: 1px solid #3e7b94;
}
a.btnBlue.disabled,
input.btnBlue.disabled,
button.btnBlue.disabled,
input.btnBlue[disabled],
button.btnBlue[disabled] {
	background-color: #afb9c3;
}
a.btnBlue.disabled:hover,
input.btnBlue.disabled:hover,
button.btnBlue.disabled:hover,
input.btnBlue[disabled]:hover,
button.btnBlue[disabled]:hover {
	background-color: #afb9c3;
	cursor: default;
}
.btnBlue:hover,
a.btnBlue:hover,
a.btnBlue:active,
a.btnBlue:focus {
	background-color: #67a5be;
	color: #fff;
}
.btnBlue.medium,
.btnBlue-o.medium {
	padding: 0.325rem 0.9rem;
}
.btnBlue-o.small,
.btnBlue.small {
	padding: 0.1rem 0.35rem;
	font-size: 0.75rem;
	font-weight: 400;
}
.btnBlue.big,
.btnBlue-o.big,
.btnOrange.big {
	padding: 1.2rem 1.5rem;
	font-size: 1.2rem;
}
a.btnBlue-o.light,
input.btnBlue-o.light,
button.btnBlue-o.light {
	border: 1px solid #b9deff;
}
a.btnBlue-o.light:hover,
input.btnBlue-o.light:hover,
button.btnBlue-o.light:hover {
	border: 1px solid #67a5be;
}

/* PARTNERS / TESTIMONIAL SLIDER BLOCK */

#InfographicSection svg {
	width: 100%;
}
#partners .slick-slide img,
#awards .slick-slide img,
#events .slick-slide img {
	padding: 0 40px;
}
#partners .partner-slider,
#testimonial .testimonial-slider,
#awards .awards-slider,
#events .events-slider,
.timeline-slider,
.featured-slider {
	padding: 0 20px;
}

#testimonial h2,
#awards h2,
#featured h2,
#winner h2,
#AvoyaHistory h2,
#Infographic h2,
#Progress h2 {
	border-bottom: 2px solid #3c4b55;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
#testimonial .testpic img {
	border-radius: 50%;
	border: 5px solid #67a5be;
}
#testimonial .testtitle {
	font-style: italic;
	font-size: 1rem;
}
#testimonial .testshout {
	font-weight: 700;
	font-size: 1rem;
	line-height: 0.9rem;
}
#testimonial .testtitle strong {
	color: #86bdd1;
	font-style: normal;
	font-size: 1.2rem;
}
#testimonial .testquote.regular {
	font-size: 1.4rem;
	line-height: 2.5rem;
}
#testimonial .testquote.long {
	font-size: 1.2rem;
	line-height: 2.5rem;
}
#testimonial .testquote.short {
	font-size: 1.6rem;
	line-height: 2.5rem;
}
.awards {
	padding: 25px;
}
.partner-of-the-year {
	margin: 15px 30% 5px 30%;
	text-align: center !important;
	margin-bottom: 10px !important;
}
.partner-of-the-year > div img {
	margin-top: 20px;
	text-align: center;
	width: 100%;
}

.partner-of-the-year .slick-prev {
	left: -80px;
}
.partner-of-the-year .slick-next {
	right: -80px;
}
.slick-prev,
.slick-next {
	font-size: 30px;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: transparent;
	outline: none;
	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: 0.25;
}
.slick-prev:before,
.slick-next:before {
	font-family: "FontAwesome";
	font-size: 40px;
	line-height: 1;
	opacity: 0.75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.lgrey .slick-prev:before,
.lgrey .slick-next:before {
	color: #7a8793;
}
.white .slick-prev:before,
.white .slick-next:before {
	color: #7a8793;
}
.slick-prev {
	left: 0px;
}
.slick-prev:before {
	content: "\f053";
}
.slick-next {
	right: 0px;
}
.slick-next:before {
	content: "\f054";
}
/* .slick-slider {
	margin-bottom: 30px;
} */
.slick-dots {
	position: absolute;
	bottom: -45px;
	display: block;
	width: 100%;
	padding: 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: none;
	background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
}
.slick-dots li button:before {
	font-family: "FontAwesome";
	font-size: 8px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "\f10c";
	text-align: center;
	opacity: 0.25;
	color: black;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
	opacity: 0.75;
	color: black;
	content: "\f111";
}

/* VIDEO PDF TEXT BLOCK */
/* VIDEO TAB SECTION */
#Video .video {
	position: relative;
}
#Video .video.link img:hover {
	background-color: #67a5be;
}

.video {
	padding: 10px;
	width: 100%;
	max-width: 600px;
	background-color: #d1d7de;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.video:hover {
	background-color: #67a5be;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.video .vid {
	height: 100%;
	width: 100%;
	position: relative;
	display: block;
}
.video .vidimg {
	height: 100%;
	width: 100%;
}
.video .vidplay {
	position: absolute;
	top: 31%;
	opacity: 0.8;
	left: 31%;
}
.video:hover .vidplay {
	opacity: 1;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.video .vidplay i.fa-circle {
	color: #ffffff;
}
.video .vidplay i.fa-play-circle {
	color: #d1d7de;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.video a:hover i.fa-play-circle {
	color: #67a5be;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

#Videos .row {
	padding-bottom: 30px;
}
#Videos .row:last-child {
	padding-bottom: 0px;
}

#Video ul,
#Video li,
#winner ul,
#winner li {
	padding: 0;
	margin: 0;
	list-style: none;
}
#Video ul,
#winner ul {
	margin: 2em 0 0 0;
}
#Video li,
#winner li {
	margin: 1em;
	margin-left: 3em;
}
#Video li:before {
	content: "\f00c";
	font-family: "FontAwesome";
	float: left;
	margin-left: -1.5em;
	color: #67a5be;
}
#winner li:before {
	content: "\f054";
	font-family: "FontAwesome";
	float: left;
	margin-left: -1.5em;
	color: #67a5be;
}
#Video .halfgraph {
	padding: 20px;
}
#Video .halfgraph h4 {
	padding-bottom: 20px;
}
#Video .halfgraph .row {
	padding-bottom: 10px;
}
#Videos div.column:last-child:not(:first-child),
#Videos div.columns:last-child:not(:first-child) {
	float: left;
}

#Webinars .webinar {
	margin: 20px 0;
}
#Webinars .webinar p {
	padding-top: 0;
	padding-bottom: 10px;
}
#Webinars h5 {
	font-weight: bold;
}
#Webinars div.column:last-child:not(:first-child),
#Webinars div.columns:last-child:not(:first-child) {
	float: left;
}

/* CHART BLOCK */
#chartsection .chartrowhead {
	font-size: 16px;
	padding: 0 0 20px 0;
	border-bottom: 2px dotted #fff;
	font-weight: 700;
}
#chartsection .chartrow {
	padding: 15px 0;
	border-bottom: 2px dotted #fff;
}
#chartsection i.fa-check {
	font-size: 25px;
	margin-top: -5px;
}
#chartsection i.fa-check-circle {
	color: #00ff00;
}
#chartsection i.fa-times-circle {
	color: #ff003f;
}
#chartsection i.fa-minus-circle {
	color: #fffe00;
}
#chartsection .orange {
	color: #f98700;
}
#chartsection .chartrow:nth-child(even) {
	background: rgba(206, 212, 219, 0.1);
}
#chartsection .chartrow:nth-child(odd) {
	background: rgba(206, 212, 219, 0.05);
}
/* small only */
@media only screen and (max-width: 40em) {
	.chartrow > div:first-child {
		margin-bottom: 12px;
	}
}

#chartsection.no-fee .chartrow:nth-child(n + 13) {
	display: none;
}

#chartsection .show-more {
	display: none;
	cursor: pointer;
	margin-top: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
	text-align: center;
	background: rgba(206, 212, 219, 0.1) none repeat scroll 0 0;
}
#chartsection .show-more:hover {
	background: rgba(206, 212, 219, 0.2) none repeat scroll 0 0;
}

/* FOOTER BLOCK */
footer {
	background: #ced6de;
	text-align: center;
	margin: 0;
}
footer.section {
	padding: 40px 0;
}
footer h4 {
	margin: 0;
	color: #4e5e69;
	padding: 0 0 25px 0;
	font-weight: 700;
	font-size: 1.2rem;
}
footer p {
	margin: 0;
	color: #4e5e69;
	padding: 0 !important;
	text-align: center !important;
}
footer div.social {
	padding-bottom: 0;
}
footer div.social a:hover {
	text-decoration: none;
}
footer .social a:hover svg .twitterB {
	fill: #65ccef;
}
footer .social a:hover svg .instagramB {
	fill: #6b441a;
}
footer .social a:hover svg .vineB {
	fill: #00b489;
}
footer .social a:hover svg .tumblrB {
	fill: #5b8daa;
}
footer .social a:hover svg .googleB {
	fill: #df4b38;
}
footer .social a:hover svg .pinterestB {
	fill: #f1605c;
}
footer .social a:hover svg .facebookB {
	fill: #517cbe;
}
footer .social a:hover svg .twitterL,
footer .social a:hover svg .instagramL,
footer .social a:hover svg .vineL,
footer .social a:hover svg .tumblrL,
footer .social a:hover svg .googleL,
footer .social a:hover svg .pinterestL,
footer .social a:hover svg .facebookL {
	fill: #ffffff;
}
footer i {
	margin-top: 15px;
}
footer div.affiliates {
	padding: 35px 0 20px 0;
}
footer div.affiliates li {
	display: inline-block;
	padding: 0px 10px;
	min-height: 25px;
}
footer div.affiliates li svg,
footer div.affiliates li img {
	display: table-cell;
	vertical-align: middle;
	height: 50px;
}
footer div.affiliates li.bbb svg {
	width: 145px;
}
footer div.affiliates li.asta svg {
	width: 95px;
}
footer div.affiliates li.clia img {
	width: 147px;
}
footer div.affiliates li.path img {
	width: 109px;
}
footer div.affiliates li.iatan svg {
	width: 58px;
}
footer div.affiliates li.nacta svg {
	width: 50px;
}
footer div.affiliates li.ccra svg {
	width: 190px;
}
div.footfooter {
	background: #3c4b55;
	color: #ced6de;
	padding: 15px;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.05rem;
}
div.footfooter .text-left {
	margin-top: 8px;
}
div.footfooter img {
	height: 25px;
	margin-bottom: 5px;
	margin-left: 4px;
}

#TandC li,
#TandC ul {
	text-align: justify;
	font-size: 0.9rem !important;
	padding: 5px 0;
	margin-bottom: 5px;
}

/* GO TO TOP */
.gotoTop {
	font-size: 20px;
	color: #3c4b55;
	cursor: pointer;
}
body:not(.device-touch) .gotoTop {
	transition: background-color 0.2s linear;
	-webkit-transition: background-color 0.2s linear;
	-o-transition: background-color 0.2s linear;
}
.gotoTop:hover {
	color: #67a5be;
}

#hero-video video {
	position: absolute;
	object-fit: cover;
    top: 0;
    left: 0;
	margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%;
}

/* Mobile Screens (640) and Down */
@media only screen and (max-width: 40em) {
	
	.navigation .logo a img {
		width: auto;
		height: 30px;
	}

	#products-services .icon {
		padding: 20px;
		max-width: 200px;
		margin: 0 auto;
	}

	header a.liveleads {
		display: inline-block;
		padding: 4px 0 9px !important;
		text-align: center;
		width: 100%;
	}
	footer.section {
		padding: 50px 0 25px 0;
	}
	.section {
		padding: 50px 0;
	}
	#corefour > .row {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.colorful {
		background-color: #3e7b94;
		background-image: url(../_IMG/bg_polygons.png),
			-webkit-radial-gradient(0 0, circle, #3e7b94, #67a5be);
		background-image: url(../_IMG/bg_polygons.png),
			radial-gradient(circle at 0 0, #3e7b94, #67a5be);
	}
	#corefour input {
		margin-top: 10px !important;
	}
	.c4 {
		background: none;
		box-shadow: none;
		padding-top: 0;
		padding-bottom: 0;
	}
	.medium-6L,
	.medium-6R {
		width: 100%;
	}
	.medium-6L {
		padding-left: 0.9375rem;
		padding-right: 0.9375rem;
		padding-bottom: 2.9375rem;
	}
	.medium-6R {
		padding-left: 0.9375rem;
		padding-right: 0.9375rem;
	}

	/* NAVIGATION TEMPLATE BLOCK */
	.logo {
		text-align: center;
	}
	.navigation.smaller svg .a,
	.navigation.smaller svg .b,
	.navigation.smaller svg .c,
	.navigation.smaller svg .d,
	.navigation.smaller svg .e,
	.navigation.smaller svg .f {
		display: none;
	}
	.navigation.smaller svg {
		padding: 3px 0 0 40%;
	}
	.navigation a.btnJoin {
		padding: 5px;
		font-size: 0.8rem;
		color: #86bdd1;
		border: solid 1px #86bdd1;
		text-transform: uppercase;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		padding: 6px 8px;
	}
	.navigation a.btnJoin:hover {
		color: #3c4b55;
		border: solid 1px #86bdd1;
		background: #86bdd1;
		text-decoration: none;
	}
	.off-canvas-wrapper {
		background: #3c4b55;
	}
	.mobile-ofc {
		font-size: 0.8125rem;
		padding: 1rem;
		font-weight: 700;
		background: #3c4b55;
		color: #ffffff;
	}
	#offCanvasLeft .close-button {
		color: #ffffff;
		background: none;
	}
	#offCanvasLeft .close-button:hover {
		color: #afb9c3;
		background: none;
	}
	#offCanvasLeft .mobile-btn:first-child {
		margin-top: 40px;
	}
	#offCanvasLeft .mobile-btn {
		margin-bottom: 6px;
	}

	#offCanvasLeft li.title {
		color: #ffffff;
		padding: 10px 0 0 0;
		font-size: 16px;
	}
	#offCanvasLeft .mobile-ofc .submenu {
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		background: #ffffff;
	}
	#offCanvasLeft .mobile-ofc .submenu li {
		border-top: 1px dashed #3c4b55;
	}
	#offCanvasLeft .mobile-ofc .submenu li:first-child {
		border-top: none;
	}
	#offCanvasLeft .mobile-ofc .submenu a:hover {
		color: #67a5be;
	}
	#offCanvasLeft .mobile-ofc .submenu a {
		color: #3c4b55;
		line-height: 1.2;
	}
	.navigation {
		overflow: hidden;
		position: fixed;
		top: 1;
		left: 0;
		height: 50px;
		z-index: 100;
		background: rgba(57, 75, 87, 0.8);
		color: #fff;
		padding: 0;
		margin: 0;
	}
	.navigation .small-6 {
		padding: 10px 0 0 0;
	}
	.navigation.smaller {
		position: fixed;
		height: 50px;
		top: 0;
		background: rgba(57, 75, 87, 0.9);
		z-index: 100;
	}
	.navigation svg {
		max-width: 210px;
	}
	.navigation.smaller svg {
		max-width: 210px;
	}
	.navigation .title-bar-right {
		margin: 0;
		text-align: right;
		background: none;
		padding: 15px 0;
	}
	.navigation .title-bar-left {
		margin: 0;
		text-align: center;
		background: none;
		padding: 10px 0;
	}
	.navigation i {
		font-size: 22px;
	}
	.navigation .title-bar-title {
		font-size: 8px;
		line-height: 10px;
		cursor: pointer;
	}
	.navigation .title-bar-title:hover {
		color: #afb9c3;
	}
	.title-bar-title:after {
		display: none;
	}
	#hero div.text h1,
	#hero div.text-home h1 {
		margin: 0;
		padding: 0;
		font-size: 2rem;
		color: #fff;
		font-weight: 700;
		text-shadow: 0 0 8px #1d242d;
		letter-spacing: -0rem;
	}
	#hero div.text h2,
	#hero div.text-home h2 {
		font-weight: 700;
		font-size: 1rem;
		color: #fff;
		margin-bottom: 20px;
		text-shadow: 0 0 8px #1d242d;
		text-transform: uppercase;
	}
	#Video h2 {
		margin-top: 30px;
	}
	.video {
		padding: 10px;
	}
	#Video li {
		margin: 1em;
		margin-left: 1.5em;
	}
	#Video li:last-child {
		margin-bottom: 0;
	}
	.video .vidplay {
		top: 23%;
		left: 33%;
	}
	footer .social a {
		margin-right: 0;
	}
	p.data {
		margin-top: 0;
	}
	#Video .progressbar-text {
		font-size: 1.8rem;
	}

	#testimonial .testquote.short,
	#testimonial .testquote.regular,
	#testimonial .testquote.long {
		padding: 20px 0;
		font-size: 1.2rem;
		line-height: 2rem;
	}
	#chartsection .small-12 {
		text-align: center;
		padding-bottom: 10px;
	}
	.colabel {
		text-align: center;
		padding-right: 0;
	}

	#AvoyaDifference p,
	#AvoyaDifference2 p {
		text-align: left;
		line-height: 1.5;
	}

	footer div.footfooter .text-left,
	footer div.footfooter .text-right {
		text-align: center;
	}
	.section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}

/* Medium and up */
@media only screen and (min-width: 40.062em) {
	#navigation.menu > li.is-dropdown-submenu-parent > a {
		padding: 0.7rem 1.25rem 0.7rem 0.5rem;
	}
	.navigation {
		position: absolute;
		z-index: 100;
		background: rgba(57, 75, 87, 0.9);
	}
	.navigation .logo {
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.navigation .logo a {
		float: left;
	}
	.navigation.smaller .logo {
		padding-top: 0;
		padding-bottom: 0;
	}

	.navigation.smaller svg .a,
	.navigation.smaller svg .b,
	.navigation.smaller svg .c,
	.navigation.smaller svg .d,
	.navigation.smaller svg .e,
	.navigation.smaller svg .f {
		display: none;
	}
	.navigation.smaller svg .g,
	.navigation.smaller svg .h,
	.navigation.smaller svg .i,
	.navigation.smaller svg .j {
		fill: #fff;
	}

	.navigation.smaller {
		position: fixed;
		top: 1;
		left: 0;
	}
	.navigation.smaller .medium-5 {
		width: 16.66667%;
	}
	.navigation.smaller .medium-7 {
		width: 83.33333%;
	}
	.submenu {
		display: none;
	}
	.navigation ul.menu {
		margin: 6px 0 0 0;
	}
	.navigation.smaller ul.menu {
		margin: 0;
	}
	.navigation .menu a:hover {
		text-decoration: none;
	}
	.navigation .menu .is-dropdown-submenu-parent {
		display: inline-block;
		vertical-align: top;
		text-transform: uppercase;
		letter-spacing: 0.05rem;
		font-size: 14px;
		font-weight: 500;
	}
	.navigation .menu .is-dropdown-submenu-item {
		text-transform: capitalize;
		font-weight: 400;
		line-height: 1.5;
		letter-spacing: 0.03rem;
	}
	.navigation.smaller ul.menu {
		border-spacing: 10px 0;
	}
	.navigation.smaller ul.submenu > li:not(.menu-text) > a {
		line-height: 1rem;
	}
	.navigation ul.submenu,
	.navigation.smaller ul.submenu {
		margin: 0;
	}
	.navigation .menu li.home:hover > a {
		background: rgba(57, 75, 87, 0.9);
		color: #ffffff;
		-moz-border-radius: 3px 3px 3px 3px;
		-webkit-border-radius: 3px 3px 3px 3px;
		border-radius: 3px 3px 3px 3px;
	}
	.navigation .menu li.is-active > a {
		background: rgba(57, 75, 87, 0.9);
		color: #ffffff;
		-moz-border-radius: 3px 3px 0 0;
		-webkit-border-radius: 3px 3px 0 0;
		border-radius: 3px 3px 0 0;
	}
	.navigation .dropdown.menu li.last .submenu.first-sub {
		left: auto;
		right: 0;
	}
	.navigation .dropdown.menu .submenu {
		z-index: 200;
		border-top: 3px solid #67a5be;
		width: 220px;
	}
	.navigation .dropdown.menu .submenu a {
		z-index: 200;
		color: #3c4b55;
		line-height: 1.3;
	}
	.navigation .dropdown.menu .submenu a:hover {
		background: #3c4b55;
		color: #ffffff;
	}
	.dropdown.menu .is-dropdown-submenu-parent.is-down-arrow a {
		padding-left: 1.5rem;
	}
	.dropdown.menu > li.is-dropdown-submenu-parent > a:after {
		content: "\f078";
		font-family: "FontAwesome";
		font-size: 0.4rem;
		margin: -3px 9px 0 0;
		color: #ffffff;
		display: block;
		width: 0;
		height: 0;
		border: none;
	}
	.navigation li.is-dropdown-submenu-parent > a {
		cursor: default;
	}
	.navigation .menu li.home:after {
		content: none;
	}
	.navigation.smaller .menu li:after {
		margin: 13px 13px 0 0;
	}
	.navigation .menu li.stickybtn {
		display: none;
	}
	.navigation .menu li.stickybtn:after {
		content: "";
	}
	.navigation.smaller .menu li.stickybtn {
		display: inline-block;
		position: relative;
		top: -4px;
	}
	.navigation.smaller .menu li.stickybtn a {
		color: #86bdd1;
		border: solid 1px #86bdd1;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		font-weight: 600;
	}
	.navigation.smaller .menu li.stickybtn a:hover {
		color: #3c4b55;
		background: #86bdd1;
	}
	#breadcrumbs .bc {
		font-size: 1rem;
	}

	/* HERO TEMPLATE BLOCK */
	#hero div.text h2,
	#hero div.text-home h2 {
		padding-top: 10px;
		font-size: 1.4rem;
	}
	#hero-video {
		max-height: 550px;
	}
	#hero-video.elite-100 {
		max-height: 600px;
	}
	#hero {
		position: relative;
	}



	/* AVOYA DIFFERENCE BLOCK */
	#AvoyaDifference h2,
	#AvoyaDifference2 h2,
	#Video h2,
	#partners h2,
	#tabsection h2,
	#testimonial h2,
	#awards h2,
	#corefour h2,
	#Progress h2 {
		font-size: 2rem;
	}
	#testimonial .testquote {
		padding-top: 0;
		min-height: 120px;
		overflow: hidden;
	}

	#Video ul,
	#Video li {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	#Video ul {
		margin: 2em 0 0 0;
	}
	#Video li {
		margin: 1em;
		margin-left: 3em;
	}
	#Video li:before {
		content: "\f00c";
		font-family: "FontAwesome";
		float: left;
		margin-left: -1.5em;
		color: #67a5be;
	}
	.colabel {
		text-align: right;
		padding-right: 0;
	}

	#Video .progressbar-text {
		font-size: 1.8rem;
	}

	.data {
		font-size: 0.8rem;
		font-style: italic;
		color: #7a8793;
	}
	#Progress .data {
		margin-top: 25px;
	}
	#chartsection .chartrow > div,
	#chartsection .chartrowhead > div {
		padding-top: 5px;
	}
	#Progress h4 {
		padding-bottom: 25px;
	}

	.section {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}

/* Large and up */
@media only screen and (min-width: 64.063em) {
	.section {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.two-column {
		column-count: 2;
		text-align: justify;
		column-gap: 3rem;
	}
	.navigation ul.menu {
		margin: 12px 0 0 0;
	}
	.navigation .menu .is-dropdown-submenu-parent {
		margin-right: 8px;
	}
	.navigation .menu .is-dropdown-submenu-parent.last {
		margin-right: 0;
	}
	.slick-prev {
		left: -20px;
	}
	.slick-next {
		right: -20px;
	}
}

/* XLarge - min-width 1441px */
@media only screen and (min-width: 90.063em) {
	/* #hero-video {
		max-height: 800px;
	} */
}

/* @media only screen and (min-width: 40.062em) and (max-width: 50em) {}  Medium Screens - min-width 641px and max-width 1024px, use when QAing tablet-only issues */
/* @media only screen and (min-width: 64.063em) and (max-width: 90em) { }  Large Screens - min-width 1025px and max-width 1440px, use when QAing large screen-only issues */
/* @media only screen and (min-width: 120.063em) { }  XXLarge screens - min-width 1921px, xxlarge screens */

/* NEW AGENCY PROCESSING  */
.affiliation-shell {
	min-height: 80vh;
	padding-top: 60px;
	padding-bottom: 100px;
}

.affiliation.navigation {
	position: relative;
	background-color: #3c4b55;
}
.affiliation.navigation .logo {
	text-align: left;
}
#affiliation-navigation {
	float: right;
	list-style-type: none;
}

#affiliation-navigation li {
	margin-left: 30px;
	float: left;
}
#affiliation-navigation a {
	color: #ddd;
}
#affiliation-navigation a:hover {
	color: #fff;
}

.affiliation-home .intro {
	font-size: 20px;
	margin-bottom: 20px;
}
.affiliation-home h1 {
	font-size: 32px;
	margin-bottom: 20px;
}

.form-container {
	margin: 0 auto;
	padding: 40px;
	border: 1px solid #b1bec4;
	box-shadow: 4px 4px 5px rgba(100, 100, 100, 0.3);
	background: repeat
		url("https://res.cloudinary.com/avoya-travel/image/upload/v1562777111/layout/texture/concrete-gray-100.png");
}

/* affiliation Index */
.sidebar {
	padding: 20px;
}
.affiliation-step {
	border: 1px solid #ced6de;
	padding: 20px;
	border-radius: 6px;
}
.progress-bar {
	padding: 12px 16px;
	text-align: center;
}
.progress-bar-first {
	border-radius: 20px 0px 0px 20px;
	border-right: 3px solid #fff;
}
.progress-bar-last {
	border-radius: 0 20px 20px 0;
	border-left: 3px solid #fff;
}

.status-pill {
	display: flex;
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04rem;
	border-radius: 50px;
	border: 1px solid #ced6de;
	padding: 4px 12px;
	background-color: #ffffff;
}

.status-pill-muted {
	background-color: #cccccc;
}

.status-pill i {
	text-align: right;
}
.status-pill span {
	padding-left: 4px;
}
.status-success {
	color: #567c41;
}
.status-fail {
	color: #a84c31;
}

.step-header {
	font-size: 30px;
}

/* affiliation Forms */
.affiliation-form label {
	color: #3c4b55;
}
.affiliation-form .hint {
	position: relative;
	top: -8px;
	color: #637380;
	font-weight: 500;
	font-style: italic;
	font-size: 14px;
}
.form-action {
	margin-bottom: 40px;
	border: 1px solid #ced6de;
	padding: 20px;
	background-color: #f0f4f7;
}

.affiliation.footfooter {
	width: 100%;
	bottom: 0;
}

.account-radio {
	float: left;
	margin-right: 16px;
	margin-bottom: 16px;
	padding: 8px 16px 4px;
	border: 1px solid #ddd;
}
.account-radio:hover {
	border: 1px solid #bbb;
}

/* Mobile Screens (640) and Down */
@media only screen and (max-width: 40em) {
	.affiliation-shell {
		padding-top: 20px;
		padding-bottom: 30px;
	}

	.affiliation.navigation {
		padding: 0 12px;
	}

	.affiliation-home .intro {
		font-size: 20px;
	}
	.affiliation-home h1 {
		font-size: 28px;
	}

	.progress-bar {
		padding: 12px 16px;
		text-align: center;
	}
	.progress-bar-first {
		border-radius: 20px 20px 0 0;
		border-bottom: 3px solid #fff;
		border-right: 0;
	}
	.progress-bar-last {
		border-radius: 0 0 20px 20px;
		border-top: 3px solid #fff;
		border-left: 0;
	}

	.affiliation-step {
		padding: 16px;
		margin-bottom: 16px;
	}

	.step-header {
		font-size: 24px;
	}

	/* .status-pill {
		margin-bottom: 20px;
	} */
	.form-container {
		width: 100%;
		padding: 30px;
	}
	.account-radio {
		float: none;
		padding-bottom: 0;
	}
}

/* Medium and up */
@media only screen and (min-width: 40.062em) {
	#affiliation-navigation {
		margin-top: 16px;
	}
	.form-container {
		width: 50%;
	}
}

/* Large and up */
@media only screen and (min-width: 64.063em) {
}
