* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.capital-first  {
	color: #666;
	display: inline-block;
	float: left;
	font-size: 18px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 40px;
	border-radius: 50%;
	padding-left: 1px;
	background-attachment: scroll;
	background-color: #eeeeee;
	background-image: none;
	background-repeat: repeat;
	background-position: 0 0;
	margin: -3px 4px 0 0;
}

.smaller-title {
	font-size: 80%;
}

h2.small-title {
	font-size: 18px;
	line-height: 21px;
	font-weight: 700;
	font-family: Lato;
}

.author {
	background: #ff7918;
	display: inline-block;
	color: #fff;
	padding: 1px 10px;
	margin: 10px 0;
	font-size: 80%;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: unset;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	text-rendering: optimizeLegibility
}

p > a {
	color: #ff7918;
	text-decoration: underline;
}

ul{
	list-style-type: none;
	list-style-image: url(../images/bullet-orange.svg);
	padding-left: 25px;
}

ul.checklist {
	list-style: none;
	padding-left: 10px;
}

ul.checklist li {
	margin-left: 2.2em;
}

ul.checklist li:before {
	font-family: "FontAwesome";
	content: '\f00c';
    float: left;
	margin-left: -2.2em;
}

.bg-green-50 ul.checklist li:before {
	color: #61b8b4;
}

ul.l2,
ul ul {
	list-style-type: none;
	list-style-image: url(../images/bullet-orange-arrow.svg);
	padding-left: 28px;
}

ol {
	padding-left: 25px;
}

ul.numbered-list {
  counter-reset: li;
  list-style-type: none;
  list-style-image: none;
  font-size: 16px;
  line-height: 18px;
  padding-left: 10px;
}
  
ul.numbered-list li {
	position: relative;   
	padding: 5px 5px 5px 30px;
}

ul.numbered-list li:before {
  content: counter(li);
  counter-increment: li;
  height: 22px;
  width: 22px;
  background: #ff7918;
  border: 0;
  border-radius: 50%;
  text-align:center;
  padding-top: 1px;
  color: #ffffff;
  text-align: center;
  position: absolute;      
  left: 0;
  top: 5px;
}


.bg-grey {
	background-color: #eee !important;
	color: #444;
}

.bg-dark-grey {
	background-color: #dedede !important;
	color: #444;
}
.bg-grey-50 {
	background-color: rgba(238,238,238,0.5) !important;
	color: #444;
}

.bg-blue {
	background-color: #442779 !important;
	color: #ffffff;
}

.bg-blue .sprocket-strips-s-title a,
.bg-blue .sprocket-strips-s-text {
	color: #ffffff;
}

.bg-brown {
	background-color: #6a615a;
	color: #ffffff;
}

.bg-orange {
	background-color: #ff7918;
	color: #ffffff;
}

.bg-green {
	background-color: #61b8b4;
	color: #ffffff;
}

.bg-green-50 {
	background-color: #e5f2f2;
	color: #444;
}

.bg-blue h3,
.bg-brown h3,
.bg-orange h3,
.bg-green h3,
.bg-blue h2,
.bg-brown h2,
.bg-orange h2,
.bg-green h2,
.bg-blue .qx-btn-outline,
.bg-brown .qx-btn-outline,
.bg-blue blockquote
 {
	color: #fff !important;
}


.bg-orange .qx-btn-outline
 {
	color: #fff !important;
	border-color: #442778;
}

.white {
	color: #fff;
}

.accent {
	color: #ff7918;
}

.button, .qx-btn {
	background-color: #442778;
    transition: background-color .5s ease-in-out;
	color: #fff !important;
	font-size: 1.6rem;
	padding: 10px;
	-webkit-animation: pulse 8s infinite;
}



.button, .qx-btn:hover {
	background-color: #ff7918;
	border: 0;
}

.btn-margin {
	margin: 15px 8px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
	width: 80%;
}

img.mfp-img {
	width: 100%;
	min-width: 480px;
}

/*.icon-video {
	position: relative;
	display: inline-block;
	cursor: pointer;
	&: before {
	    position:absolute;
		top: 50%;
		left: 50%;
		content: "\f01d";
		font-family: FontAwesome;
		font-size: 100px;
		color: #fff;
		opacity: .8;
		text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

&:hover:before {
	color: #eee;
}

}*/

.no-border {
	border: 0 !important;
}

.no-margin {
	margin: 0!important;
}

.no-padding {
	padding: 0!important;
}

ul.sq,
ul.sq li {
	list-style-type: square;
	list-style-position: inside;
	padding-left: 0;
}

/* TABLE STYLE */

caption {
	background: #999;
	color: #fff;
	padding: 5px;
	margin-bottom:2px;
}

.content-table
{
    border-collapse: collapse;
    border: 1px solid #eee;
    margin: 10px auto 0 0;
    background: none;
    overflow:hidden;
    width: 90%;
    table-layout: fixed;
}

.content-table thead th,
.content-table tbody tr th
{
    background: #ccc;
    text-align:left;
    color:#333;
	font-weight: bold;
}

.content-table th,
.content-table td
{
	padding: 5px;
}

.content-table tbody tr:nth-child(odd)
{
	background: #eee;
}

.content-table td
{
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
}



/* mntk grid */

.mix-sorts .button.active, .inner-mix .button.active,
.mix-filters .drop_down.expanded .label {
	background: #ff7918 !important;
}

.h3-small-art .regridart .inner-mix h3,
.h3-small-art .regridart .inner-mix h3 a {
	font-size: 11px !important;
}

.regridart .inner-mix h3,
.regridart .inner-mix h3 a {
	font-size: 14px !important;
}


/*drpfls correction */

.dropfiles-single-file {
	margin-top: 30px;
}

.dropfiles-single-file .dropfiles-file-link {
	font-family: Lato !important;
	font-weight: 400 !important;
	font-size: 1.2rem !important;
	background-color: #442778 !important;
	color: #fff !important;
}

.dropfiles-single-file .dropfiles-file-link a {
	color: #fff !important;
}

.drop_down .label:hover div {
	color: #ff7918 !important;
}

/* anchor link correction */

a.anchor {
	display: block;
	position: relative;
	top: -80px;
	visibility: hidden;
}

.orange {
	color: #ff7918 !important;
}

.green  {
	color: #61b8b4 !important;
}

.blue {
	color: #442779 !important;
	
}



/* breadcrumb white */

.btborder-white {
	border-bottom: 1px solid #eee;
}

/* menu */

#main-menu .navbar .nav  li  a {
	text-transform: uppercase;
}

.top-menu {
	margin: 0 30px;
}


.top-menu-item {
	background-color: #fff;
	border: 1px solid #eee;
	padding: 3px 9px;
	font-size: 11px;
	font-family: Lato;
	font-weight: 500;
	text-transform: uppercase;
}

.top-menu-item:hover,
.top-menu-item a:hover {
	background-color: #ff7918;
	color: #fff;
}

.header-1 #main-menu .navbar .nav > li.selected.parent ul > li.selected.parent > a,
.header-1 #main-menu .navbar .nav li.current.selected > a {
	color: #ff7918;
	padding-left: 7px;
}

.header-1 #main-menu .navbar .nav > li.selected.parent > a {
	border-bottom: 2px solid #2D4E53;
}

.black-header #main-menu .navbar .nav > li.parent.selected > a {
	border-bottom: 2px solid #fff;
}

.fes7-img {
	background: url(../images/Tandem_120dpi.jpg) 50% 50% no-repeat !important;
	background-size: cover;
	list-style-image: url(../images/bullet-orange.svg);
}

.client-img {
	background: url(../images/efeso-client-services.jpg) 50% 50% no-repeat !important;
	background-size: cover;
}

/**/

.pt-130-cont {
	padding-top: 130px;
}

.pt-140-cont {
	padding-top: 140px;
}

.read-more-front {
	font-weight: 700;
	font-size: 90%;
	color: #442779;
}

/* acy mailing */

.nl-email-input {
	float: left;
	width: auto !important;
}

#mc-embedded-subscribe {
	float: right;
}

.newsletterform {
	float: none;
}

ul.no-bullet {
	list-style-type: none;
	list-style-image: none;
	padding-left: 0;
}

/* Flex + revo */

.tp-caption .flex-top-bot,.tp-caption .flex-bot-top {
	opacity: 1;
}

/* FOOTER */

#footer-offset,
footer {
	background: #eee;
	text-align: left !important;
}

.bt-boder-top {
	border-top: 1px solid #eee;
}

#cd-search > div {
	height: 100%;
}

#mod-finder-searchform .finder {
	width: 100%;
	height: 100%;
}

.ql-menu .nav > li > a {
	text-transform: uppercase;
	font-size: 12px;
	color: #5c6066;
	z-index: 1;
	text-shadow: none;
	transition: padding .4s ease 0s, border-color .6s ease 0s;
	transform: translateZ(0);
	padding: 5px;
	line-height: 18px;
}

.ql-menu .nav > li > a:hover {
	border-bottom: 1px dotted #6a615a;
	background-color: #6a615a;
	color: #fff;
}

.ql-menu li {
	float: none;
}

/* YUMPU CONTAINER */

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* PARALLAX HOME PAGE */

.parallax-home-bg {
	will-change: background-position;
	margin: 0;
	padding: 0;
	background: url(../images/EFESO_parallax.jpg) fixed 50% 50% no-repeat;
	transform: translateZ(-1px);
}

/* WDGTKT */

.uk-subnav-pill > .uk-active > * {
	background: #ff7918 none repeat scroll 0 0 !important;
	box-shadow: none;
	color: #fff;
}

h3.uk-h3 {
	font-size: 13px;
	margin-top: -30px;
	margin-bottom: 0;
}

h3.uk-h3 > a.uk-link-reset {
	font-size: 13px;
	line-height: 1em;
}

.uk-panel-title,
.uk-margin h2 {
	font-size: 16px !important;
	margin-bottom: 0 !important;
}

.uk-grid+.uk-grid, .uk-grid-margin, .uk-grid>*>.uk-panel+.uk-panel {
	margin-top: 15px !important;
}

.uk-panel > p {
	min-height: 20px !important;
}

.uk-panel .uk-margin p.statement,
.uk-panel .uk-margin p.statement a {
	font-size: 14px;
	color: #442799;
	font-family: Lato;
	font-weight: 300;
}

.uk-panel > p > a {
	color: #ff7918;
	text-transform: uppercase;
	font-size: 90%;
	font-weight: 700;
	position: absolute;
	bottom: 0px;
}

.uk-panel-title > a {
	pointer-events: none;
	cursor: default;
}

.uk-list img {
	background: white;
	color: white;
	font-size: 1px;
}

div.uk-flex {
	margin-bottom: 10px !important;
}

div.uk-flex-item-1 {
	text-transform: uppercase;
	font-size: 95%;
}

div.uk-flex-item-1 {
	text-transform: uppercase;
}

.uk-panel-box-secondary {
	background-color: #eee !important;
	color: #000 !important;
}

.uk-panel-box-secondary h3 {
	color: #ff7918 !important;
}

.mix-controls .button, .inner-mix .button,
.mix-filters .drop_down.expanded .label,
.drop_down .label {
	border-radius: 0 !important;
}

.uk-subnav-pill>*>* {
	border-radius: 0 !important;
	padding: 15px !important;
	font-family: Lato !important;
	text-transform: uppercase;
	font-size: 12px;
	width: 100%;
	height: 100%;
}

/* Testimonials */

.ts-name span {
	word-wrap: normal;
}

/* Image hotspot */

.hover-popup .point {
	z-index: 1;
}

.jai-map-wrap .top-right .cd-dropdown {
	float: right;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

div.cd-dropdown.cd-active {
	min-height: 400px;
	height: auto;
	overflow-y: scroll;
}

.cd-dropdown > span,
.cd-active.cd-dropdown > span {
	color: #ff7918;
	font-family: Lato;
}

.cd-dropdown > span::after {
	color: #fff;
	background-color: #ff7918;
}

.cd-dropdown ul {
	background-color: #6a615a;
	color: #fff;
}

.cd-dropdown li {
	display: inline-block !important;
}

.cd-dropdown ul li span {
	color: #ccc;
	font-family: Lato;
}

/* anchor link correction */

a.anchor {
	display: block;
	position: relative;
	top: -80px;
	visibility: hidden;
}

.orange {
	color: #ff7918 !important;
}

/* breadcrumb white */

.btborder-white {
	border-bottom: 1px solid #eee;
}

/* menu */

#main-menu .navbar .nav  li  a {
	text-transform: uppercase;
}

.top-menu {
	margin: 0 30px;
}

@media screen and (max-width : 478px) {

.top-menu {
	width: 100%;
	margin: 0;
}

.top-menu-item {
	width: 50%;
	text-align: center;
}

}

.top-menu-item {
	background-color: #fff;
	border: 1px solid #eee;
	padding: 3px 9px;
	font-size: 11px;
	font-family: Lato;
	font-weight: 500;
	text-transform: uppercase;
}

.top-menu-item:hover,
.top-menu-item a:hover {
	background-color: #ff7918;
	color: #fff;
}

.header-1 #main-menu .navbar .nav > li.selected.parent ul > li.selected.parent > a,
.header-1 #main-menu .navbar .nav li.current.selected > a {
	color: #ff7918;
	padding-left: 7px;
}

.header-1 #main-menu .navbar .nav > li.selected.parent > a {
	border-bottom: 2px solid #2D4E53;
}

.black-header #main-menu .navbar .nav > li.parent.selected > a {
	border-bottom: 2px solid #fff;
}

.fes7-img {
	background: url(../images/Tandem_120dpi.jpg) 50% 50% no-repeat !important;
	background-size: cover;
}

.client-img {
	background: url(../images/efeso-client-services.jpg) 50% 50% no-repeat !important;
	background-size: cover;
}

/**/

.pt-130-cont {
	padding-top: 130px;
}

.pt-140-cont {
	padding-top: 140px;
}

.read-more-front {
	font-weight: 700;
	font-size: 90%;
	color: #442779;
}

/* acy mailing */

.nl-email-input {
	float: left;
	width: auto !important;
}

#mc-embedded-subscribe {
	float: right;
}

.newsletterform {
	float: none;
}

ul.no-bullet {
	list-style-type: none;
	padding-left: 0;
}

/* Flex + revo */

.tp-caption .flex-top-bot,.tp-caption .flex-bot-top {
	opacity: 1;
}

/* FOOTER */

#footer-offset,
footer {
	background: #eee;
}

.bt-boder-top {
	border-top: 1px solid #eee;
}

#cd-search > div {
	height: 100%;
}

#mod-finder-searchform .finder {
	width: 100%;
	height: 100%;
}

.ql-menu .nav > li > a {
	text-transform: uppercase;
	font-size: 12px;
	color: #5c6066;
	z-index: 1;
	text-shadow: none;
	transition: padding .4s ease 0s, border-color .6s ease 0s;
	transform: translateZ(0);
	padding: 5px;
	line-height: 18px;
}

.ql-menu .nav > li > a:hover {
	border-bottom: 1px dotted #6a615a;
	background-color: #6a615a;
	color: #fff;
}

.ql-menu li {
	float: none;
}

/* YUMPU CONTAINER */

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}

@media screen and (max-width : 478px) {

	.embed-container {
		padding-bottom: 100%;
	}

}

.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* PARALLAX HOME PAGE */

.parallax-home-bg {
	will-change: background-position;
	margin: 0;
	padding: 0;
	background: url(../images/EFESO_parallax.jpg) fixed 50% 50% no-repeat;
	transform: translateZ(-1px);
}

/* widgetkit styles */

li.uk-active {
	margin-top: 15px;
}

.brochure-gallery .uk-panel,
.brochure-overview .sprocket-strips-s-item {
	transition: all 300ms ease-in-out;
}

.brochure-gallery .uk-panel:hover,
.brochure-overview .sprocket-strips-s-item:hover {
	padding: 10px;
	border: 1px solid #eee;
}

.uk-subnav {
	display: flex !important;
	justify-content: flex-start !important;
	flex-flow: row nowrap !important;
}

.uk-subnav>* {
/*	-ms-flex: none;
	-webkit-flex: none;
	flex: none;*/
	padding-left: 6px !important;
	margin-top: 10px !important;
	flex: 1 !important;
}

/*h3.uk-h3 {
		color: #ff7918;
}*/

.brochure-gallery figure,
.brochure-overview .sprocket-strips-s-item img {
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.5);
}

.uk-subnav-pill > .uk-active > * {
	background: #ff7918 none repeat scroll 0 0 !important;
	box-shadow: none;
	color: #fff;
}

.brochure-gallery h3.uk-h3 {
	margin-top: 5px;
	text-align: center;
}

h3.uk-h3 > a.uk-link-reset {
	font-size: 17px;
	line-height: 1em;
}

.uk-panel-title {
	font-size: 16px !important;
	margin-bottom: 0 !important;
}

.uk-margin h4 {
	font-size: 12px;
	line-height: 14px;
	color: #442778;
	font-family: Lato;
	font-weight: 500;
	font-style: normal;
	margin-top: -18px !important;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.uk-grid+.uk-grid, .uk-grid-margin, .uk-grid>*>.uk-panel+.uk-panel {
	margin-top: 15px !important;
}

.uk-panel > p {
	min-height: 20px !important;
}

.uk-panel .uk-margin p.statement,
.uk-panel .uk-margin p.statement a {
	font-size: 14px;
	color: #442799;
	font-family: Lato;
	font-weight: 300;
}

.uk-panel > p > a,
.sprocket-strips-s-content .readon {
	color: #ff7918;
	text-transform: uppercase;
	font-size: 90%;
	font-weight: 700;
	position: absolute;
	bottom: 0px;
}

.sprocket-strips-s-content .hide-summary {
	display: none;
}

.uk-panel-title > a {
	pointer-events: none;
	cursor: default;
}

.uk-list img {
	background: white;
	color: white;
	font-size: 1px;
}

div.uk-flex {
	margin-bottom: 10px !important;
}

div.uk-flex-item-1 {
	text-transform: uppercase;
	font-size: 95%;
}

div.uk-flex-item-1 {
	text-transform: uppercase;
}

.uk-panel-box-secondary {
	background-color: #eee !important;
	color: #000 !important;
}

.uk-panel-box-secondary h3 {
	color: #ff7918 !important;
}

.uk-slidenav-position .uk-slidenav-previous {
	left: -70px !important;
}

.uk-slidenav-position .uk-slidenav-next {
	right: -50px !important;
}

.uk-slidenav-position .uk-slidenav-previous:hover,
.uk-slidenav-position .uk-slidenav-next:hover {
	color: #ff7918;
}

.uk-subnav .uk-active span a {
	color: #fff;
}

/*.uk-subnav li span {
	border-width: 1px !important;
	border-color: #aaa;
	border-style: solid;
}*/

/* Testimonials */

.ts-name span {
	word-wrap: normal;
}

/* Image hotspot */

@media screen and (max-width : 478px) {

.jai-map-wrap .top-right {
	position: relative;
	display: inline;
	float: none;
	width: 100%;
}

}

.hover-popup .point {
	z-index: 0;
}

.jai-map-wrap .top-right .cd-dropdown {
	float: right;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

div.cd-dropdown.cd-active {
	min-height: 400px;
	height: auto;
	overflow-y: scroll;
}

.cd-dropdown > span,
.cd-active.cd-dropdown > span {
	color: #ff7918;
	font-family: Lato;
}

.cd-dropdown > span::after {
	color: #fff;
	background-color: #ff7918;
}

.cd-dropdown ul {
	background-color: #6a615a;
	color: #fff;
}

.cd-dropdown li {
	margin
	display: inline-block !important;
}

.cd-dropdown li {
	display: inline-block !important;
}

.cd-dropdown ul li span {
	color: #ccc;
	font-family: Lato;
}

h3.popover-title {
	background-color: #eee !important;
}

.popover-context {
	padding: 5px !important;
}

/* CMS content overrides */

.page-header,
.page-header h2 {
	padding-bottom: 0;
	margin: 26px 0 16px 0;
	border-bottom: none;
	font-size: 16px;
	font-family: Lato;
	font-weight: 700;
	letter-spacing: normal;
	line-height: 22px;
	font-weight: 700;
	text-transform: uppercase;
}

.item-image {
	margin-left: 0;
	padding-left: 0;
}

.item-image-bg {
	border-top: 0;
	border-bottom: 0;
	/*background: #eee;*/
	border-top: 0;
	border-bottom: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	margin-left: 0;
}

.item-tag-bg {
	background: #eee;
	margin-bottom: 20px;
	margin-top: 20px;
}


[itemprop~="articleBody"] h3 {
	font-weight: 600;
	color: #442778;
}


[itemprop~="articleBody"] h4 {
	font-size: 16px;
	line-height: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: #442778;
}

/* Bootstrap FontAwesome overrides */

/* CSS used here will be applied after bootstrap.css */

input[type="checkbox"] + label:before, input[type="checkbox"]:checked + label:before, input[type="radio"] + label:before, input[type="checkbox"]:checked + label:before,
input[type=checkbox].rsform-checkbox:checked + label::after,
input[type=checkbox].rsform-checkbox + label::after,
input[type=radio].rsform-radio:checked + label::after,
input[type=radio].rsform-radio + label::after {
	visibility: visible;
	font-family: FontAwesome;
	font-size: 20px;
	height: 17px;
	width: 17px;
	position: relative;
	top: -1px;
	left: -1px;
	background-color: #fff;
	display: inline-block;
}


.formResponsive textarea, .formResponsive input[type="text"], .formResponsive input[type="number"], .formResponsive input[type="email"], .formResponsive input[type="tel"], .formResponsive input[type="url"], .formResponsive input[type="password"] {
	background-color: #ffffff;
	border: 1px solid #cccccc;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0;
	padding: 6px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
	width: 100%;
	font-family: lato;
	font-size: 16px;
}

.formResponsive input[type="submit"], .formResponsive button[type="submit"],
.formResponsive input[type="submit"]:hover, .formResponsive button[type="submit"]:hover,
.formResponsive input[type="reset"], .formResponsive button[type="reset"]{
    transition: background-color .5s ease-in-out;
	color: #fff !important;
	border-radius:0;
	font-size: 1.6rem;
	padding: 10px 15px;
	background-color: #442778;
	background-image: none;
    transition: background-color .5s ease-in-out;
}

.formResponsive input[type="reset"], .formResponsive button[type="reset"],
.formResponsive input[type="reset"]:hover, .formResponsive button[type="reset"]:hover {
	background-color: #ff7928;
}

input[type="radio"]:checked + label:before,
input[type=radio].rsform-radio:checked + label::after {
	content: '\f058';
	color: #ff7918;
}

input[type="radio"] + label:before,
input[type=radio].rsform-radio + label::after {
	content: '\f10c';
}

input[type="checkbox"]:checked + label:before,
input[type=checkbox].rsform-checkbox:checked  + label::after {
	content: '\f14a';
	color: #ff7918;
}

input[type="checkbox"] + label:before,
inputinput[type=checkbox].rsform-checkbox + label::after {
	content: '\f096';
}

a.bartistiek-link:hover {
	color: #ff0088;
}

/*a[target="_blank"]:after {
	padding-left: 5px;
	color: #ff7918;
    font-family: 'FontAwesome';
    font-size: 70%;
    content: " \f08e";
}*/

/*a:not( [href*='efeso.com'] ):not( [href^='#'] ):not( [href^='/'] ):not( [href*='bartistiek.nl'] ):not( [href*='linkedin.com'] ):not( [href*='efeso-downloads.com'] ):not( [href^='tel:'] ):not( [href*='youtube.com'] ):not( [href*='paperform.co'] ):not( [href*='yumpu.com'] ):not( [href*='vimeo.com'] ):not( [href^='javascript:void(0)'] ):after {
padding-left: 5px;
	color: #ff7918;
    font-family: 'FontAwesome';
    font-size: 70%;
    content: " \f08e";	
}*/

/* SLIDER PLUGIN */

.rl_sliders.accordion .rl_sliders-scroll {
	display: none;
}

.rl_sliders.accordion > .accordion-group {
	margin-bottom: 2px;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.rl_sliders.accordion >.panel {
	margin-bottom: 10px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.rl_sliders.accordion >.panel span {
	text-transform: uppercase;
	font-family: lato;
}

.rl_sliders.accordion > .accordion-group.active > .accordion-heading > a.accordion-toggle {
	color: #ff7918;
	font-family: Lato;
	background: #eee;
	box-shadow: none;
}

.rl_sliders.accordion > .accordion-group > div > a:focus, .rl_sliders.accordion > div > a:focus,
.rl_sliders.accordion > .accordion-group > div > a:focus, .rl_sliders.accordion > div > a:active {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #eee;
}

.rl_sliders.accordion > .accordion-group.icon > .accordion-heading > a.accordion-toggle span.rl_sliders-toggle-inner::before {
	margin-right: .5em;
}

/* RELATED ITEMS */

.ac .rm {
	color: #ff7918;
	text-transform: uppercase;
	font-size: 90%;
	font-weight: 700;
	background: none;
}

.ac footer {
	background: none;
}

.ac h2.title,
.ac h2.title a {
	color: #4b4e53 !important;
	padding-bottom: 0 !important;
	margin: 0 !important;
	border-bottom: none !important;
	font-size: 12px !important;
	font-family: Lato !important;
	letter-spacing: normal !important;
	line-height: 1.2 !important;
	font-weight: 700 !important;
	text-transform: none !important;
}

/* CONTENT EXPERT PAGES */

.expertname {
	background-color: #333;
	color: #fff;
	width: 100%;
	margin: 0;
	padding: 0;
}

.expertname h2 {
	font-size: 18px;
	line-height: 22px;
	color: #fff;
	padding: 15px;
	margin: 0;
	text-transform: uppercase;
	text-align: center;
}

.item-image-ep img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.expertlink {
	background-color: #ff7918;
	color: #fff;
}

.expertlink li a,
.expertlink li a:active,
.expertlink li a:hover {
	color: #fff;
	background-color: #ff7918;
	border-radius: 0;
	padding: 8px 15px;
	font-size: 10px;
	text-transform: uppercase;
	text-align: center;
	border: none;
}

.expertlink li a::before,
.expertlink li a:active::before,
.expertlink li a:hover::before {
	content: "\f0e1";
	font-family: "FontAwesome";
	color: #333;
	padding-right: 10px;
	font-size: 12px;
	background-color: white;
	border-radius: 50%;
	border: 1px solid grey;
	padding: 6px;
	margin: 6px;
}

/* Roksprocket */

.css-loader-wrapper {
	display: none !important;
}

.sprocket-strips-s-text {
	font-weight: 300;
	color: #555;
	line-height: 1.4;
	margin: 0 0 8px;
	font-size: 14px;
}

.sprocket-strips-s-arrows .arrow {
	background: #eee;
	color: #666;
	border-color: #eee;
}

.sprocket-strips-s-content .readon,
.sprocket-strips-p-content .readon,
.sprocket-strips-s-text h3 {
	display: none;
	/*position: relative;
	bottom: 0;
	color: #ff7918;
	text-transform: uppercase;*/
}

.sprocket-strips-s-overlay .css-loader {
	display: block;
	margin: 0 auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 8px solid rgba(238, 238, 238, 0.6);
	border-right: 8px solid rgba(238, 238, 238, 0.6);
	border-bottom: 8px solid rgba(238, 238, 238, 0.6);
	border-left: 8px solid #eee;
	-webkit-animation: loader 1.1s infinite linear;
	animation: loader 1.1s infinite linear;
}

.sprocket-strips-s-overlay .css-loader-wrapper {
	background: none;
	box-shadow: none;
}

.sprocket-strips-p-item img {
	width: 50%;
	float: right;
	margin-left: 40px;
	margin-bottom: 20px;
}

.sprocket-strips-s-item img {
	/*border: 1px solid #eee;*/
	box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.1);
}

.sprocket-strips-s-container {
	list-style: none;
}

.sprocket-strips-s-block {
	/*flex:0;*/
}

.sprocket-strips-s-content-cat {
	font-weight: 400;
	/*text-transform: uppercase;*/
	font-size: 12px;
}

.sprocket-quotes-item:before,
.sprocket-quotes-item .quotes-bottomleft-arrow,
.sprocket-quotes-item:after {
	display: none;
}

h4.sprocket-strips-s-title,
h2.sprocket-strips-s-title {
	line-height: 1.1;
	font-weight: 600 ;
	margin: 0;
}

h4.sprocket-strips-s-title a,
h2.sprocket-strips-s-title a {
	font-size: 12px !important;
}

.uk-scope .uk-h4, .uk-scope h4,
.uk-scope .uk-h3, .uk-scope h3 {
	font-size: 17px !important;
	font-weight: 300 !important;
}
.sprocket-strips-s-text h2,
.sprocket-strips-s-text h4 {
	font-size: 18px;
	letter-spacing: normal;
	line-height: 25px;
	margin: 21px 0 19px 0;
}


.quote-additional-info {
    background-image: linear-gradient(0deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 100%); 
	padding: 15px 10px;
	color: #888;
	margin-top: 50px;
	text-align: right;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
}

.front-page .quote-additional-info {
	font-size: 10px;
}


.quote-additional-info a {

	/*color: #ff7918;*/
	color: #442799;	
	text-decoration:underline;
}

/* RELATED ARTICLES MODULE */

.ac h2.title, .ac h3.title, .ac h4.title, .ac h5.title, .ac h6.title, .ac h2.title a, .ac h3.title a, .ac h4.title a, .ac h5.title a, .ac h6.title a {
	color: #6a615a !important;
}

.ac h2.title, .ac h3.title, .ac h4.title, .ac h5.title, .ac h6.title, .ac h2.title a, .ac h3.title a, .ac h4.title a, .ac h5.title a, .ac h6.title a {
	color: #6a615a !important;
}

/* Quix overrides */

.qx-element-wrap+.qx-element-wrap {
	margin-top: 0 !important;
}

.qx-container {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

h3.qx-title {
	font-family: Lato !important;
	font-size: 22px;
	font-weight: 300 !important;
}

.qx-row {
	margin-left: 0;
	margin-right: 0;
}

.qx-btn-primary,
.qx-btn-default,
.qx-btn-bg,
.qx-btn-orange {
/*	border-radius: 0px;*/
/*	font-size: 2rem;*/
	font-weight: 300;
	border: 1px solid;
	padding: 10px 20px;
	margin: 18px 8px 18px 0;
}

.sm .qx-btn-primary,
.sm .qx-btn-default,
.sm .qx-btn-bg,
.sm .qx-btn-orange {
	margin:  8px 8px 8px 0;
}

.qx-btn-orange {
	background: #ff7918;
	color: #fff !important;
	font-size: 32px;
	border: none;
}

.qx-btn-orange:hover {
	font-weight:900 !important;
}

.qx-element-dual-button-horizontal {
	flex-wrap: wrap;
}


/*.qx-btn-small-space {
	margin: 5px 5px !important;
}*/

.qx-testimony-person {
	text-align: center;
}

.qx-testimony-person img {
	width: 60%;
	display: inline;
}

.qx-element-blurb__title {
	margin-bottom: 0 !important;
}

@media only screen and (max-width : 990px) {
	.qx-testimony-person img {
		width: 20%;
		display: inline;
	}
}

.qx-testimony-text {
	padding: 50px 10px;
}



.qx-element-testimonial-pro .qx-testimonial p {
	margin: 30px;
}

.qx-btn-bg,
.qx-btn-bg:hover,
.qx-btn-bg:visited {
	padding: 2.4em 1em;
	color: #fff;
	background: transparent !important;
}

.btn-bg:hover {
	border-width: 3px;
	background: transparent !important;
}

.qx-btn-primary,
.qx-btn-primary:visited {
	color: #ffffff;
	border-color: #ffffff;
	background-color: #442779;
}

.qx-btn-secondary,
.qx-btn-secondary:visited {
	color: #ffffff;
	border-color: #ffffff;
	background-color: #ff7918;
	margin-right: 20px;
}

.qx-btn-outline,
.qx-btn-outline:visited {
	color: #ff7918;
	border: 2px solid #ff7918;
	background-color: transparant;
	margin-right: 20px;
}

.qx-btn-default,
.qx-btn-default:visited {
	color: #ffffff !important;
	border-color: #ffffff;
	background-color: #6a615a;
}

.qx-btn-primary:hover,
.qx-btn-primary:active,
.qx-btn-default:hover,
.qx-btn-default:active {
	border-color: #ff7918 !important;
	background-color: #ff7918 !important;
	color: #ffffff !important;
}

.qx-element-block-number .number {
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	float: left !important;
	margin-right: 10px !important;
	margin-bottom: 10px !important;
	background-color: #6a615a !important;
}

.qx-element-block-number h4 {
	font-size: 16px;
	line-height: 18px;
	color: #6a615a;
	font-family: Lato;
	font-weight: 300;
	font-style: normal;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	text-transform: none;
}

.qx-element-block-number .media-content {
	margin-bottom: 20px;
}

.qx-menu .uk-dotnav>li>a, 
.qx-menu .uk-icon-button, 
.qx-menu .uk-list>li>a, 
.qx-menu .uk-nav ul>li>a,
.qx-menu .uk-nav>li>a,
.qx-menu .uk-overlay,
.qx-menu .uk-slidenav,
.qx-menu .uk-subnav>li>a {
	border: none !important;
	background: #ddd;
}

.uk-subnav-pill>*>:focus, .uk-subnav-pill>*>:hover {
	/*background: #fafafa;*/
	color: #444;
	text-decoration: none;
	outline: 0;
	box-shadow: 0 0 2px 2px rgba(0,0,0,.15);
	transition: all 300ms ease-in-out !important;
}


@media screen and (max-width : 478px) {

.qx-menu .uk-subnav {
	flex-flow: column !important;
}

.qx-element-dual-button .btn-wrapper {
	margin: 5px;
	padding: 0 !important;
	width: 100%;
}

.qx-element-dual-button-horizontal .btn-first a,
.qx-element-dual-button-horizontal .btn-second a {
	margin: 0 !important;
}


.qx-menu .uk-subnav>*,
.qx-menu .uk-subnav>li,
.qx-menu .uk-subnav>li>a {
	width: 100% !important;
	margin-right: 10px;
}

.qx-btn-primary, .qx-btn-default {
	font-size: 1.6rem;
	/* white-space: pre-wrap; */
}

h1 span.font-light {
	font-size: 1em;
}

.testimonial-2 p {
	margin-bottom: 24px;
	color: #4b4e53;
	font-family: 'Lato',Arial,Helvetica,sans-serif;
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	font-style: normal;
}

}

.cta-bg-img-1 {
	will-change: background-position;
	height: 100%;
	background: linear-gradient(
      	rgba(0, 0, 0, 0.45), 
      	rgba(0, 0, 0, 0.45)
    	),
		url(/images/static-media/efeso-engage.jpg) fixed;
	/* Create 

the parallax scrolling effect */
    /*backgrou

nd-attachment: fixed;*/
    /*backgrou

nd-position: center;*/
    background-repeat: no-repeat;
	background-size: cover !important;
}

.cta-bg-img-digital {
	will-change: background-position;
	height: 100%;
	background: linear-gradient(
      	rgba(0, 0, 0, 0.45), 
      	rgba(0, 0, 0, 0.45)
    	),
		url(/images/static-media/digital-transformation.jpg) fixed;
	/* Create 

the parallax scrolling effect */
    /*backgrou

nd-attachment: fixed;*/
    /*backgrou

nd-position: center;*/
    background-repeat: no-repeat;
	background-size: cover !important;
}

.cta-bg-img-industry {
	will-change: background-position;
	height: 100%;
	background: linear-gradient(
      	rgba(0, 0, 0, 0.45), 
      	rgba(0, 0, 0, 0.45)
    	),
		url(/images/static-media/digital-transformation.jpg) fixed;
	/* Create 

the parallax scrolling effect */
    /*backgrou

nd-attachment: fixed;*/
    /*backgrou

nd-position: center;*/
    background-repeat: no-repeat;
	background-size: cover !important;
}

.cta-bg-img-expertise {
	will-change: background-position;
	height: 100%;
	background: linear-gradient(
      	rgba(0, 0, 0, 0.45), 
      	rgba(0, 0, 0, 0.45)
    	),
		url(/images/static-media/digital-transformation.jpg) fixed;
	/* Create 

the parallax scrolling effect */
    /*backgrou

nd-attachment: fixed;*/
    /*backgrou

nd-position: center;*/
    background-repeat: no-repeat;
	background-size: cover !important;
}

.cta-bg-img-consultant-quotes {
	will-change: background-position;
	height: 100%;
	/*background: linear-gradient(
      	rgba(0, 0, 0, 0.45), 
      	rgba(0, 0, 0, 0.45)
    	),
		url(/images/consultant-quotes/efeso-consultant-quotes-background-2.jpg) fixed;*/
	background: url(/images/consultant-quotes/efeso-consultant-quotes-background-2.jpg) 0 0 fixed;
	background-repeat: no-repeat;
	background-size: cover !important;
}

.cta-light,
a.cta-light {
	color: #ffffff !important;
	font-family: 'Lato',Arial,Helvetica,sans-serif;
	font-size: 1.3em;
	line-height: 1.8em;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	word-wrap: break-word;
	text-align: center;
}

.cta-light-subtitle,
a.cta-light-subtitle {
	color: #ffffff !important;
	font-family: 'Lato',Arial,Helvetica,sans-serif;
	font-size: 1.5rem;
	line-height: 2.2rem;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	word-wrap: break-word;
}

.cta-light-btn,
.a.cta-light-btn {
	border: 0;
	background: transparent;
	padding: 20px 20px;
}

.cta-light-grey-btn {
	background: rgba(0,0,0,0.40);
}

.cta-light-btn:hover,
a.cta-light-btn:hover {
	background: transparent !important;
	border: 0 !important;
	padding-bottom: 5px !important;
	border-bottom: 3px solid #ff7918 !important;	
}

.cta-dark,
a.cta-dark {
	color: #333333 !important;
	font-family: 'Lato',Arial,Helvetica,sans-serif;
	font-size: 2rem;
	line-height: 3rem;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
}

.cta-dark-btn,
.a.cta-dark-btn {
	border: 1px #333 solid;
	background: transparent;
	padding: 20px 20px;
}

.cta-dark-btn:hover,
a.cta-dark-btn:hover {
	background: #ff7918;
}

.img-40 img,
.img-60 img,
.img-80 img {
	margin: auto !important;
}

.img-40 img {
	width: 40% !important;
}

.img-60 img {
	width: 60% !important;
}

.img-80 img {
	width: 80% !important;
}

ul.bullet-orange,
li.bullet-orange {
	list-style-type: square;
	margin-left: -10px;
}

/* IE 11 BUGFIX */

@media all and (-ms-high-contrast:none) {

.ie-bug-width {
	max-width: 50% !important;
}

}

/* image in article smaller */

.item-image img {
	width: 80%;
	margin-bottom: 20px;
}

@media screen and (max-width : 478px) {

.item-image img {
	width: 100%;
}

}

/* RL Slider */
.rl_sliders.accordion>.accordion-group>.accordion-heading>a.accordion-toggle,
.rl_sliders.accordion>.accordion-group>.accordion-heading>a.accordion-toggle:hover {
color: #666;
}


/* expertise box */

.icon-container,
.icon-container-full {
    border: none;
    display: flex;
    justify-content: flex-start;
    transition: opacity .25s ease-in-out;
    margin-bottom: 10px;
    /*flex-direction: column;*/
    position:relative;
}

.icon-thumb {
	border: none;
    flex-basis: 20%; 
    height: 0; 
    padding-bottom: 20%;
    box-sizing: border-box;
    color: #ffffff;
    /*display: flex;*/
}

.icon-content {
	box-sizing: border-box;
	background-color: rgba(216,216,216,0.4);
	flex-basis: 80%;
	padding-right: 10px;
	padding-left: 10px;
    display: flex;
}

.icon-container-full .icon-thumb {
	flex-basis: 90px;
	padding-bottom: 90px;
}

.icon-container-full .icon-content {
	flex-basis: 100%;
}

.icon-thumb img {
    color: #fff;
    margin: auto;
	/*height: 100%;*/
}

.exp-icon-width {
/*	height: 90px !important;*/
	width: 90px !important;
	max-width: 90px !important;
}

.exp-text-width {
	width: calc(100% - 90px);
	max-width: calc(100% - 90px);
}

svg path {
/*	fill: #fff !important; */
}

.icon-title {
    font-weight: 600;
    line-height: 1.2;
    font-size: small;
    text-align: center;
    text-transform: uppercase;
    margin: auto;
    width: 100%;
}

.icon-subtitle {
	flex-direction: row;
	font-weight:600;
	text-transform: uppercase;
    font-size: small;
	padding:5px 10px;
	border: 1px solid #ff7918;
	margin:auto;
}

.icon-expertise-main {
	background-color: rgba(255,121,24,0.9);
}

.icon-expertise-support {
    background-color: rgba(106,97,90,0.9);
}

.hyperspan {
    position:absolute;
    width:99%;
    height:99%;
    left:0;
    top:0;
    transition: box-shadow 0.7s ease-in-out;
}

.hyperspan:hover {
	box-shadow: 0px 0px 4px 0px rgba(50, 50, 50, 0.75);
}

.triangle-lr:before{
	content: ' ';
	width: 0px;
	height: 0px;
	border-top: 25px solid transparent;
	border-left: 25px solid transparent;
	border-bottom:25px solid transparent;
	border-right:25px solid #ff7918;
	position: absolute;
	right: 100%;
	top: 50%;
	margin-top: -25px;
}

.triangle-lr:after{
	content: ' ';
	width: 0px;
	height: 0px;
	border-top: 25px solid transparent;
	border-left: 25px solid #ff7918;
	border-bottom:25px solid transparent;
	border-right:25px solid transparent;
	position: absolute;
	left: 100%;
	top: 50%;
	margin-top: -25px;
}


/* Read time */
.reading-time {
	font-family: Lato;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	padding-left: 20px;
	color: #ccc;
	
}

.reading-time:before {
	font-family: FontAwesome;
	content: "\f017";
}


/* expert box */

.expert-container {
    border: none;
    display: flex;
    justify-content: flex-start;
    transition: opacity .25s ease-in-out;
    margin-bottom: 10px;
    flow-direction: column;
    position:relative;
    background-color: #eee;
    margin-top: 10px;
}

/*.expert-thumb {
	border: none;
    flex-basis: 30%; 
    height: 0; 
    padding-bottom: 40%;
    box-sizing: border-box;
    color: #ffffff;
}*/

.expert-thumb {
	border: none;
    flex-basis: 30%; 
    height: 40%; 
    /*padding-bottom: 40%;*/
    box-sizing: border-box;
    color: #ffffff;
}


.expert-content {
	box-sizing: border-box;
	flex-basis: 70%;
	padding-right: 10px;
	padding-left: 20px;
    display: flex;
    align-self: flex-end;
	flex-direction: column;
}

.expert-thumb img {
    color: #fff;
    margin: auto;
	/*height: 100%;*/
}

.expert-name {
    font-weight: 600;
    line-height: 1.2;
    font-size: small;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0;
}

.expert-function {
    font-weight: 400;
    line-height: 1.2;
    font-size: small;
    text-align: left;
    text-transform: none;
}

.expert-hyperspan {
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    transition: box-shadow 0.7s ease-in-out;
}

.expert-hyperspan:hover {
	box-shadow: 0px 0px 4px 0px rgba(50, 50, 50, 0.75);
}

.expert-quote {
	position: relative;
	padding-top:  30px;
	padding-bottom: 30px;
	/*background-image: linear-gradient(#ff9d2f, #ff7918);*/
	background: #eee;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 50px;
}

.bg-grey .expert-container,
.bg-grey .expert-quote {
	background: rgba(222, 222, 222, 0.7);
}

	
@media screen and (max-width : 478px) {
	.expert-quote {
		margin-bottom: 70px
	}
}

.expert-quote blockquote {
	font-size: 18px;
	/*color: #fff;*/
	color: #333;
	font-weight: 300;
	line-height: 1.4;
}

.expert-quote::after{
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	background: inherit;
	bottom: 0;
	top: 30px;
	left: 0;
	right: 0;
	transform-origin: top-right;
	transform: skewY(-4deg);
	z-index: -1;
}


/* expert page */

.expert-page-container {
    border: none;
	transition: opacity .25s ease-in-out;
    margin-bottom: 20px;
    position:relative;
    background-color: transparent;
    margin-top: 10px;
}

.expert-page-image-container {
    border: none;
    flex-wrap: no-wrap;
    display: flex;
    justify-content: flex-bottom;
    transition: opacity .25s ease-in-out;
    margin-bottom: 20px;
    /*flex-direction: row;*/
    position:relative;
    background-color: #eee;
    margin-top: 10px;
	flex: 2 2;
	order: 2;
}



.expert-page-content-container {
	flex: 3 3;
	order: 1;
}

@media only screen and (min-width : 479px) {
	.expert-page-container {
	    flex-direction: row;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}	
	.expert-page-image-container {
		margin-left: 30px;
	}
}

.expert-link-profile {
}

.expert-link-profile li a {
	background: rgba(255,121,24,1);
	color: #fff;
	border-radius:0 ;
	margin: 0;
	padding: 5px;
	margin-bottom: 7px;
}

.expert-link-profile li a::before, .expert-link-profile li a:active::before, .expert-link-profile li a:hover::before {
	content: "\f0e1";
	font-family: "FontAwesome";
	color: #333;
	padding-right: 10px;
	font-size: 12px;
	background-color: white;
	border-radius: 50%;
	border: 1px solid grey;
	padding: 6px;
	margin: 6px;
}

.expert-link-profile li a:hover {
	background: rgba(106,97,90,1);
	color: #fff;
}



/* ANIMATIONS */

@-webkit-keyframes pulse {
  0% {
    @include transform(scale(1));
  }
  70% {
    @include transform(scale(0.7));
    box-shadow: 0 0 0 50px rgba(#442778, 0);
  }
    100% {
    @include transform(scale(1));
    box-shadow: 0 0 0 0 rgba(#442778, 0);
  }
}

/* Fade in */
.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1s;
}

delay-s {
	transition-delay: 0.1s;
	animation-delay: 0.1s;
}

delay-m {
	transition-delay: 0.5s;
	animation-delay: 0.5s;
}

delay-l {
	transition-delay: 1s;
	animation-delay: 1s;
}


@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}

}
/* END OF FADE-IN */

/* article layout */

.item-image-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
/*	width: 100%;
	padding-top: 0;
	height: 30vh;
	margin-bottom: 80px;*/
	/*background: linear-gradient(43deg, rgba(68,39,120,0.9), rgba(68,39,120,0.9), rgba(68,39,120,0.9), rgba(255,135,25,0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23404' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23505'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");*/

	/*background: linear-gradient(43deg, rgba(230,230,230,0.8), rgba(240,240,240,0.8)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23404' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23505'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");

	text-align: center;
	animation: hero-gradient 50s ease-in-out infinite;
	perspective: 800px;*/

}

/*.item-image-v2 img {
	height: 100%;
	object-fit: cover;
	object-position: top right;
	margin: auto;
	padding: 0;
	color: #ff8719;
	transform: rotateX(-15deg), scale(0.6);
	transform-origin: bottom;
	border-left: 15px white solid;
	border-right: 15px white solid;
}*/


.item-page .no-top-margin {
	margin-top: -50px !important;
}

div[itemprop="articleBody"] .intro-text {
	font-weight: 900;
}

div[itemprop="articleBody"] .uk-margin .intro-text {
	font-weight: inherit;
}


.item-image-v2 img {
	flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
	margin-bottom: 80px;
/*	
	height: auto;
	object-fit: cover;
	object-position: top right;
	margin: auto;
	padding: 0;
	color: #ff7918;
	transform: rotateX(-15deg), scale(0.6);
	transform-origin: bottom;*/
}


.item-image-v2-text {
	padding-left: 30px;
	padding-right: 30px;
}


/* button with moving background */

.button-orange-animate {
	background: linear-gradient(43deg, rgba(255,135,25,0.8), rgba(255,141,28,0.8), rgba(68,39,120,0.8)), url(https://media.publit.io/file/efeso/expertise.mp4);
	background-size: 200% 200%;
	animation: orange-gradient 20s ease infinite;
	padding: 30px 30px;
}

.button-orange-animate:hover {
	background: linear-gradient(43deg, rgba(255,141,28,1), rgba(255,141,28,1), rgba(68,39,120,1));
}


.button-indigo-animate:hover {
	background: linear-gradient(43deg, rgba(68,39,120,1), rgba(68,39,120,1), rgba(255,141,28,1));
}

.button-indigo-animate {
	background: linear-gradient(43deg, rgba(68,39,120,0.8), rgba(68,39,120,0.8), rgba(255,141,28,0.8)), url(https://media.publit.io/file/efeso/industries.mp4);
	background-size: 200% 200%;
	animation: orange-gradient 20s ease infinite;
	padding: 30px 30px;
}

.button-orange-animate.p50,
.button-indigo-animate.p50 {
	padding: 50px 50px;
}

@keyframes orange-gradient { 
	    0%	{background-position:0% 91%}
	    50%	{background-position:100% 10%}
	    100%{background-position:0% 91%}
}

@keyframes hero-gradient { 
	    0%	{background-position:0% 91%}
	    25% {background-position: 0% 0%}
	    50%	{background-position:100% 10%}
	    100%{background-position:0% 91%}
}


.bg-text {
	text-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.before-text, .after-text {
	text-shadow: 0 0 20px rgba(0,0,0,0.6) !important;
}

.center-text {
	text-shadow: 0 0 20px rgba(255,255,255,0.6) !important;
}

.bg-text {
	opacity: 0;
	animation-name: anim-appear;
	animation-duration: 20s;
	animation-delay: 1s;
	animation-iteration-count: infinite;
}

.before-text {
	opacity: 0;
	animation-name: anim-appear;
	animation-duration: 20s;
	animation-delay: 1s;
	animation-iteration-count: infinite;
}

.center-text {
	opacity: 0;
	animation-name: anim-appear;
	animation-duration: 20s;
	animation-delay: 2s;
	animation-iteration-count: infinite;
}

.after-text {
	opacity: 0;
	animation-name: anim-appear;
	animation-duration: 20s;
	animation-delay: 3s;
	animation-iteration-count: infinite;
}

@keyframes anim-appear {
	0% {opacity:0;}
	40% {opacity:1}
	90% {opacity:1;}
	100% {opacity:0; }
}


/* QUIX OVERRIDE */

#slidetag,
p#slidetag {
	display: none;
	padding: 0;
	/*margin: 0;*/
}


/* ADDTHIS Social Share*/
#social_buttons {
	display: flex; 
	justify-content: center;
}


.a2a_svg, .a2a_count { 
	border-radius: 0 !important;
	padding: 0 10px;
}

/* MINITEK SEARCH */

.mss-search {
	margin: 0 0 !important;
	padding: 30px !important;
}

.mss-query-required {
    background-color: #ff7918 !important;
    border: 1px solid #ff7918 !important;
	color: rgba(255, 135, 25, 0.98);
}

.mss-query-optional {
    background-color: #333 !important;
    border: 1px solid #333 !important;
}

.mss-query-excluded {
    background-color: #442668 !important;
    border: 1px solid #442668 !important;
}


#mss-search-results .pagination .pagination {
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    list-style: none !important;
}

#mss-search-results .pagination li > a, #mss-search-results .pagination li > span {
    position: relative !important;
    float: left !important;
    padding: 6px 12px !important;
    line-height: 20px !important;
    text-decoration: none !important;
    color: #ff7918 !important;
    background-color: #ffffff !important;
    border: 1px solid #eee !important;
    margin-left: -1px !important;
}

#mss-search-results .pagination li:first-child > a, #mss-search-results .pagination li:first-child > span {
    margin-left: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

#mss-search-results .pagination .active > a, #mss-search-results .pagination .active > span, #mss-search-results .pagination .active > a:hover, #mss-search-results .pagination .active > span:hover, #mss-search-results .pagination .active > a:focus, #mss-search-results .pagination .active > span:focus {
    z-index: 2 !important;
    color: #ffffff !important;
    background-color: #ff7918 !important;
    border-color: #ff7918 !important;
    cursor: default !important;
}


.mss-compact-module .mss-search-results-box {
padding: 0 10px 10px !important;
max-height: 100% !important;
overflow-y: auto !important;
overflow-x: hidden !important;
}

.mss-btn.mss-btn-open {
	background-color: #ff7918 !important;
	border-color: #ff7918 !important;
	color: rgb(255, 255, 255) !important;
}

#rl_modals_overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #442668;
}

#rl_modals_close:hover, #rl_modals_loading_graphic, #rl_modals_overlay {
	opacity: .95 !important;
	filter: alpha(opacity=95) !important;
}


.cal {
	background: #ff7918;
	color: #ffffff;
	padding: 10px 15px;
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 900;
}

.cal-year {
	background: #442668;
	color: #ffffff;
	padding: 10px 15px;
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 900;
}


.case-heading h1,
.case-heading h2 {
	font-size: 3em;
	line-height: 1em;
	font-weight: 900;
	color: #ffffff;
	text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}

h2.case-title {
	font-size: 2.5em;
	line-height: 0.9em;
	color: #442668;
	font-weight: 900;
	margin-top: 10px;
	padding-bottom: 30px;
}
	
.case-subtitle {
	font-size: 1.2em;
	font-weight: 900;
	color: #61b8b4;
	text-transform: uppercase;
}


/* Expertise page 2020 */

h3.ex-title {
	font-size: 14px;
	line-height: 16px;
	text-align:center;
	font-weight: 900;
	text-transform: uppercase;
	margin: 8px 5px 3px;
}

h3.ex-title-lg {
	font-size: 16px;
	line-height: 18px;
	text-align:center;
	font-weight: 900;
	text-transform: uppercase;
	margin: 8px 5px 3px;

}

a.ex-title {
	display:block;
}

h3.ex-title:hover {

}

.ex-link:hover h3.ex-title,
.ex-link:hover h3.ex-title-lg {
	text-shadow: 0px 3px 10px #888;
	transition: text-shadow 0.3s ease-in-out;
}

#ex-subtitles {
	align:center;
	padding-left: 6px;
	padding-right: 6px;
	margin:0 auto;
	line-height: 11px;
	display: flex;
}

.ex-subtitles div,
.ex-subtitles a {
	font-size: 12px;
	text-transform: uppercase;
	line-height: 15px;	
	font-weight: 500;
	text-align:center;
	padding-left: 5px;
	padding-right: 5px;
	display: inline-flex;
}

.ex-subtitles a {
	border: 1px solid #ccc;
}

.ex-subtitles a:hover {
	border: none;
	background: #ff8719;
	color: #ffffff;
}

.exp-block {
	margin-top: 3px;
	margin-bottom: 3px;
}

.bg-light-white .sprocket-strips-s-item img {
	background: rgba(250,250,250,0.9);
}


.reveal-text {
	overflow: hidden;
	flex: 1;
	height: 300px;
	transition: all 1s ease-in-out;
}

.reveal-text:hover {
	height: auto;
  	overflow: auto;
}

.more-text {
	width: 100%;
	content: '+';
	text-align: center;
	background-color: #ff7918;
	color: #fff;
}

.reveal-text:hover + div {
	display:none;
} 


/* MOBILE VIEW */

@media only screen and (max-width : 478px) {

	.qx-btn-primary, .qx-btn-default, .qx-btn-bg, qx-btn-secondary,
	span .qx-btn-primary, span qx.btn-secondary, qx-btn-orange {
		font-size: 1.8rem;
		width: 100%;
		margin: 10px auto;
	}
	.qx-testimony-text {
		padding: 10px;
	}
	.qx-testimony-text blockquote {
		font-size: 20px;
		line-height: 1.3;
	}
	.quote-additional-info {
		text-align: center;
		font-size: 13px;
		margin-top: 15px;
	}
	.section-title {
		font-size: 1.5em;
	}
		
	.qx-testimony-person img {
		width: 50%;
	}
	.top-menu {
		width: 100%;
		margin: 0;
	}
	
	.top-menu-item {
		width: 50%;
		text-align: center;
	}
	
	div.st-inner {
		padding: 10px;
	}
	
	.no-padding div.st-inner {
		padding: 0;
	}
	.jai-map-wrap .top-right {
		position: relative;
		display: inline-block;
		float: none;
		width: 100%;
	}
	
	.item-image-v2 {
		/*height: 30vh;*/
		margin-bottom: 20px;
	}
	
	.item-image-v2 img {
		border: 0;
	}

	.col-sm-12 {
		/*padding-left: 10px;
		padding-right: 10px;*/
		padding-right: 15px;
	}
	
	.mss-search {
		margin: 0 0 !important;
		padding: 5px !important;
	}
	
	.mss-input-tools {
		position: relative !important;
		display: flex !important;
		align-items: auto !important;
		justify-items: auto !important;
		top: auto !important;
		bottom: auto !important;
		right: auto !important;
	}
	
	.mss-btn {
		display: flex !important;
		flex-grow: 1 !important;
	}
	
	.case-heading h1,
	.case-heading h2 {
		font-size: 2em;
	}
	
	.cal {
	padding: 5px 5px;
	font-size: 16px;
	}

	.cal-year {
		padding: 5px 5px;
		font-size: 16px;
	}
	
	.p-sm .qx-col-wrap  {
		padding: 0 5px !important;
	}

}



@media only screen and (max-width : 350px) {
	.cal {
		font-size: 13px !important;
	}

	.cal-year {
		font-size: 13px !important;
	}

}


/* FOCUS OVERRIGE */

/* a subtle focus style for keyboard-input elements */
.text-input:focus {
  outline: 1px solid #aaa;
}

/* no focus style for non-keyboard-inputs elements */
button:focus,
select:focus {
  outline: none;
}

/* and for keyboard users, override everything with
   a Big Blue Border when focused on any element */
body.user-is-tabbing *:focus {
  outline: 4px solid #7AACFE !important; /* for non-webkit browsers */
  outline: 5px auto -webkit-focus-ring-color !important;
}

