/*
Theme Name: 	Umi Digital
Description: 	Responsive WordPress Theme based on JS
Version:     	1.0.0
Author:     	Lok Cheng
Author URI:   	http://www.umidigital.co.uk
Site:         	http://www.umidigital.co.uk
Domain Path: 	/languages
Tags:        	grid-layout, blog, custom-menu, featured-images, right-sidebar
License:    	GNU General Public License v3.0
License URI:	http://www.gnu.org/licenses/gpl-3.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Style Tree

    1. Base
    2. Layout
      2.1 Menu
      2.2 Index
      2.3 Sections
      2.4 Sidebar
      2.5 Footer
    3. Modules
      3.1 Slider
    4. WordPress Default Element
    5. Responsive

*/

/* ------------------------------------------------------------------------- *
/* 1 Base */
/* ------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Poppins&family=Tenor+Sans&display=swap');

/* Typography */
body {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #313e4e;
	opacity: 1;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #313e4e;
	margin: 0;
	text-transform: capitalize;
	margin-bottom: 20px;
	font-family: 'Tenor Sans', sans-serif;
}

.gigantic {
	font-size: 56px;
	line-height: 60px;
}

.huge,
h1 {
	font-size: 40px;
	line-height: 60px;
}

.large,
h2 {
	font-size: 36px;
	line-height: 54px;
}

.bigger,
h3 {
	font-size: 32px;
	line-height: 1.38;
}

.big,
h4 {
	font-size: 22px;
	line-height: 1.38;
}

.normal,
h5 {
	font-size: 20px;
	line-height: 1.38;
}

.small,
h6,
small {
	font-size: 14px;
	line-height: 1.2;
}

@media (max-width: 768px) {

	.large,
	h2 {
		font-size: 24px;
	}
}

/* Link color */
a,
.link-color {
	text-decoration: none;
	color: #313e4e;
}

a:focus,
a:hover {
	color: #368db1;
}

/* Buttons */
.btn {
	display: inline-block;
	border: 2px solid #fff;
	border-radius: 4px;
	background-color: transparent;
	text-align: center;
	min-width: 178px;
	min-height: 48px;
	padding: 9px 18px;
	color: #ffff;
	text-transform: uppercase;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4;
	transition: all 0.4s;
}

.btn:hover {
	background-color: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
	color: #313e4e;
}

.btn-1 {
	min-width: 218px;
	min-height: 56px;
	padding: 12px 18px;
	color: #fff;
}

.btn-1:hover {
	background-color: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
}

.blue .btn-1:hover {
	color: #313e4e;
}

.green .btn-1:hover {
	color: #00ae84;
}

.pink .btn-1:hover {
	color: #fd3a83;
}

.btn-2 {
	/* text-transform: capitalize; */
	border: none;
	background-color: rgba(9, 19, 33, 0.06);
	padding: 10px 20px;
	color: #313e4e;
}

.btn-2:hover {
	background-color: #ffe48c;
	color: #313e4e;
}

.btn-3 {
	background-color: transparent;
	border-color: transparent;
	background-color: #ffff;
	border-color: #ffff;
}

.blue .btn-3 {
	color: #368db1;
}

.green .btn-3 {
	color: #00ae84;
}

.pink .btn-3 {
	background-color: #ffff;
	color: #fd3a83;
}

.btn-3:hover {
	background-color: rgba(255, 255, 255, 0.85);
	border-color: rgba(255, 255, 255, 0.85);
}

.btn-4 {
	min-width: 218px;
	min-height: 56px;
	padding: 12px 18px;
	border-color: #c5c7c9;
	color: #313e4e;
	text-transform: capitalize;
}

.btn-4:hover {
	border-color: #368db1;
	background-color: #ffff;
	color: #368db1;
}

.btn-5 {
	text-transform: capitalize;
	border: none;
	background-color: #368db1;
	color: #ffff;
	padding: 10px 20px;
}

.btn-5:hover {
	background-color: rgba(9, 19, 33, 0.06);
	color: #313e4e;
}

@media (max-width: 768px) {
	.btn {
		font-size: 12px;
		min-width: 90px;
		min-height: 15px;
		padding: 8px 30px;
	}

	.btn-4 {
		min-width: 135px;
	}
}

/* Animate */
.animate {
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4;
	transition: all 0.4s;
}

@-moz-keyframes spin {
	50% {
		-moz-transform: rotateY(90deg);
	}
}

@-webkit-keyframes spin {
	50% {
		-webkit-transform: rotateY(90deg);
	}
}

@keyframes spin {
	50% {
		-webkit-transform: rotateY(90deg);
		transform: rotateY(90deg);
	}
}

@keyframes growone {
	0% {
		transform: scale(0);
	}

	33% {
		transform: scale(0.5);
	}
}

@keyframes growtwo {
	0% {
		transform: scale(0);
	}

	33% {
		transform: scale(0.5);
	}

	66% {
		transform: scale(0.75);
	}
}

@keyframes growthree {
	0% {
		transform: scale(0);
	}

	33% {
		transform: scale(0.5);
	}

	66% {
		transform: scale(0.75);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes loadone {
	0% {
		transform: scale(0);
	}

	16% {
		transform: scale(0.5);
	}

	33% {
		transform: scale(0.5);
	}

	50% {
		transform: scale(0.5);
	}

	66% {
		transform: scale(0.5);
	}

	83% {
		transform: scale(0.5);
	}

	100% {
		transform: scale(0);
	}
}

@keyframes loadtwo {
	0% {
		transform: scale(0);
	}

	16% {
		transform: scale(0.5);
	}

	33% {
		transform: scale(0.75);
	}

	50% {
		transform: scale(0.75);
	}

	66% {
		transform: scale(0.75);
	}

	83% {
		transform: scale(0.5);
	}

	100% {
		transform: scale(0);
	}
}

@keyframes loadthree {
	0% {
		transform: scale(0);
	}

	16% {
		transform: scale(0.5);
	}

	33% {
		transform: scale(0.75);
	}

	50% {
		transform: scale(1);
	}

	66% {
		transform: scale(0.75);
	}

	83% {
		transform: scale(0.5);
	}

	100% {
		transform: scale(0);
	}
}

/* ------------------------------------------------------------------------- *
/* 2 Layout */
/* ------------------------------------------------------------------------- */

/* Functional class */
.bold {
	font-weight: bold;
}

.light {
	font-weight: 300;
}

.ttu {
	text-transform: uppercase;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

/* ------------------------------------------------------------------------- *
/* 2.1 Menu */
/* ------------------------------------------------------------------------- */

header {
	width: 100%;
	position: absolute;
	z-index: 3;
	top: 0;
}

.top-bar>div,
.nav-wrap>div {
	margin: 0 17px;
}

.top-bar {
	background-color: #f3f5f6;
	border-bottom: 1px solid #cdd6e1;
}

.top-bar>div {
	display: flex;
	align-items: center;
	min-height: 40px;
	justify-content: space-between;
}

.top-bar a {
	font-weight: bold;
}

.top-bar>div>.left {
	display: flex;
	align-items: center;
}

.top-bar>div>.left .text {
	margin-left: 15px;
}

.top-bar>div>.left .text span,
.top-bar>div>.right span {
	margin-right: 5px;
}

.top-bar>div>.left .tel {
	margin-left: 15px;
}

.top-bar>div>.right .mob-tel,
.top-bar>div>.right .mob-email {
	display: none;
	height: 40px;
	width: 40px;
	padding: 11px;
	border-right: 1px solid #cdd6e1;
}

.top-bar>div>.right .mob-tel>a>img,
.top-bar>div>.right .mob-email>a>img {
	height: 100%;
	width: 100%;
}

.top-bar .wpml-ls {
	flex: 1;
	display: flex;
	margin: 0 15px;
	width: 70px;
}

.top-bar .wpml-ls>ul {
	margin: 0;
}

.top-bar .wpml-ls>ul>li {
	margin: 0 5px;
}

.top-bar .wpml-ls>ul>li.wpml-ls-current-language>a {
	color: #368db1;
}

.top-bar .wpml-ls>ul>li>a {
	background: transparent;
	color: #313e4e;
	border: none;
	padding: 0;
}

.top-bar>div>.left .wpml-ls {
	height: 62px;
	border-right: 1px solid #cdd6e1;
	display: none;
}

.top-bar .wpml-ls>ul>li>a+ul {
	margin: 0;
}

.top-bar .right {
	display: flex;
	align-items: center;
}

.top-bar .right #searchform {
	display: inline-block;
	min-width: 178px;
	min-height: 41px;
	max-width: 178px;
}

.top-bar .right #searchform>div {
	position: relative;
}

.top-bar .right #searchform>div #searchsubmit {
	position: absolute;
	height: 41px;
	width: 20%;
	color: transparent;
	background-color: transparent;
	border: none;
	cursor: pointer;
	background-image: url(images/search.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 35%;
}

.top-bar .right #searchform>div #s {
	background-color: #f3f5f6;
	border-radius: 0;
	border: none;
	height: 41px;
	padding: 6px 0 6px 20%;
}

.top-bar .right #searchform>div #s::placeholder {
	color: #828286;
	font-weight: bold;
	font-family: 'sofia-pro';
}

@media (max-width: 1024px) {
	.top-bar>div>.right .tel {
		display: none;
	}

	.top-bar>div>.right .mob-tel,
	.top-bar>div>.right .mob-email {
		display: block;
	}

	.top-bar>div>.right .btn {
		display: none;
	}
}

@media (max-width: 767px) {
	.top-bar>div>.right .tel {
		display: none;
	}

	.top-bar>div>.right .mob-tel,
	.top-bar>div>.right .mob-email {
		display: block;
	}

	.top-bar>div>.btn {
		display: none;
	}

	.top-bar>div>.left .text {
		display: none;
	}
}

.top-bar>div .btn {
	margin-left: 25px;
	padding: 7px 0;
	min-height: 41px;
	border-radius: 0;
}

.nav-wrap {
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
	background-color: #ffff;
}

.nav-wrap.fixTop {
	position: fixed;
	width: 100%;
	top: 0;
}

.nav-wrap>div {
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-header {
	display: flex;
	align-items: center;
	margin-left: 15px;
}

.nav-header .logo {
	width: 160px;
	height: auto;
}

.nav-header .logo img {
	width: 100%;
	height: 100%;
	display: block;
}

nav {
	width: 100%;
}

nav>#menu-sub-2 li {
	margin: 0;
	position: relative;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
}

nav>#menu-sub-2 li.active>a {
	color: #008bd0;
}

nav>#menu-sub-2 {
	list-style: none;
	position: relative;
	text-align: center;
	margin: 0;
	display: flex;
	font-weight: bold;
	justify-content: flex-end;
}

nav #menu-sub-2,
nav #menu-sub-2 .dropdown-menu {
	-webkit-transition: max-height 0.3s;
	-moz-transition: max-height 0.3s;
	transition: max-height 0.3s;
}

nav>#menu-sub-2>li a {
	display: block;
	padding: 27px 11px;
	margin: 0 20px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4;
	transition: all 0.4s;
	color: #313e4e;
	position: relative;
}

@media (max-width: 1130px) {
	nav>#menu-sub-2>li a {
		margin: 0 16px;
	}
}

nav>#menu-sub-2>li.dropdown.open>a:after {
	content: '';
	display: inline-block;
	position: absolute;
	border-radius: 0.1875rem 0 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 1rem;
	height: 1rem;
	background: #fff;
	z-index: 11;
	top: 71px;
	right: -13px;
	border-top-color: rgba(0, 0, 0, 0.16);
	border-top-style: solid;
	border-top-width: 1px;
	border-left-color: rgba(0, 0, 0, 0.16);
	border-left-style: solid;
	border-left-width: 1px;
}

nav>#menu-sub-2>li a>span {
	width: 16px;
	height: 16px;
	display: inline-block;
	top: 34px;
	right: -13px;
	position: absolute;
	background: url(images/arrow-dark.svg) center center;
	background-size: 22px 22px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4;
	transition: all 0.4s;
}

nav #menu-sub-2>.dropdown>.dropdown-menu {
	position: absolute;
	z-index: 10;
	display: none;
	min-width: 280px;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
	border: 1px solid #cdd6e1;
	border-radius: 4px;
	top: 79px;
	left: 0px;
	background: #ffff;
	flex-direction: column;
	padding: 10px 20px;
	margin: 0;
}

nav #menu-sub-2>.dropdown>.dropdown-menu>li a {
	color: #666;
	padding: 5px;
	text-align: center;
	margin: 10px;
}

nav #menu-sub-2>.dropdown>.dropdown-menu>li a:hover {
	color: #000;
	background: #eee;
}

#menu-sub-2>.mega-menu>.dropdown-menu>li>a:first-child {
	color: #313e4e;
}

nav>#menu-sub-2>li a:hover {
	color: #008bd0;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu {
	flex-direction: row;
}

nav>#menu-sub-2 .mega-menu>.dropdown-menu {
	padding: 32px;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu>li>a {
	cursor: auto;
	color: #313e4e;
	margin: 0;
	padding: 0 20px;
	text-align: left;
	font-size: 18px;
}

#menu-sub-2>.mega-menu>.dropdown-menu>li>a:first-child {
	font-size: 18px;
	color: #313e4e;
	font-family: 'Tenor Sans', sans-serif;
}

#menu-sub-2>.mega-menu>.dropdown-menu>li>a:first-child {
	margin-left: 5px;
	cursor: pointer;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu>li>a:hover {
	color: #313e4e;
	background: unset;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul {
	margin: 0;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li {
	min-width: 210px;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a {
	margin: 0 20px;
	color: #666;
	padding: 5px;
	text-align: left;
	font-size: 14px;
	cursor: pointer;
	transition: 0.3s all linear;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu li>a:before,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>a:after,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:before,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:after {
	content: '';
	height: 2px;
	width: 0%;
	background: #008bd0;
	position: absolute;
	bottom: 0;
	transition: 0.3s all linear;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu li>a:before,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:before {
	left: 50%;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu li>a:after,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:after {
	right: 50%;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu li>a:hover:before,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>a:hover:after,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:hover:before,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:hover:after {
	width: 100%;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu li>a:hover:before,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:hover:before {
	left: 0%;
}

nav>#menu-sub-2 .mega-menu .dropdown-menu li>a:hover:after,
nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:hover:after {
	right: 0%;
}

@media (min-width: 951px) {
	nav>#menu-sub-2>li.open>.dropdown-menu {
		display: flex;
		transform: translate(-9%);
		justify-content: center;
		min-width: 625px;
	}

	nav>#menu-sub-2>li.open>.dropdown-menu>li {
		flex: 1;
	}

	nav>#menu-sub-2 li.open.mega-menu>.dropdown-menu {
		transform: translate(-27%);
	}
}

@media (max-width: 992px) {

	/* change to required break px */
	.nav-wrap nav {
		position: absolute;
		top: 121px;
		right: 0;
		background-color: #f6f8f8;
		/*mobile menu colour */
		z-index: 2;
		width: 100%;
	}

	.nav-wrap ul {
		text-align: left;
	}

	.nav-header {
		width: 100%;
	}

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

	.nav-wrap .primary {
		max-height: 0;
		overflow: hidden;
	}

	/*Changes*/

	nav>#menu-sub-2>li a>span {
		transform: rotate(0deg);
	}

	nav>#menu-sub-2>li.dropdown.open a>span {
		transform: rotate(90deg);
	}

	nav #menu-sub-2>.dropdown>.dropdown-menu>li a:hover,
	nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:hover {
		color: #999;
		background: unset;
	}

	nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:before,
	nav>#menu-sub-2 .mega-menu .dropdown-menu li>ul>li a:after {
		display: none;
	}

	#menu-sub-2>.mega-menu>.dropdown-menu>li>a:first-child:hover {
		color: #313e4e;
	}

	nav>#menu-sub-2>li.dropdown:hover>a:after {
		display: none;
	}

	#menu-sub-2>li {
		border-bottom: 1px solid #ccc;
	}

	nav>#menu-sub-2>li a,
	nav #menu-sub-2>.dropdown>.dropdown-menu>li a {
		text-align: left;
		color: #999;
	}

	#menu-sub-2 .dropdown>ul.dropdown-menu {
		display: block;
		position: static;
		min-width: 100%;
		box-shadow: none;
		border: none;
		border-radius: 0;
		max-height: 0;
		overflow: hidden;
		padding: 0;
		background: #ddd;
	}

	#menu-sub-2 .dropdown>ul.dropdown-menu>li>ul.dropdown-menu {
		display: block;
		max-height: 100vh;
	}

	#menu-sub-2 .dropdown.open>ul.dropdown-menu {
		max-height: 100vh;
	}

	nav #menu-sub-2>.dropdown>.dropdown-menu>li a {
		margin-left: 40px;
	}

	nav>#menu-sub-2 .dropdown .dropdown-menu li>ul>li a {
		border: none;
		color: #999;
		text-align: left;
		font-size: 15px;
		padding: 10px 20px;
	}

	#menu-sub-2 .mega-menu>ul.dropdown-menu {
		padding-left: 15px;
	}

	#menu-sub-2>.mega-menu>.dropdown-menu>li>a:first-child {
		margin-top: 20px;
	}

	.nav-wrap .sub-menu {
		max-height: 0;
		overflow: hidden;
	}

	ul.primary li a {
		color: #ffff;
	}

	.nav-wrap .btn-holder {
		position: absolute;
		right: 65px;
		top: 25px;
	}

	.tog {
		position: absolute;
		right: 15px;
		display: inline-block;
		cursor: pointer;
		transform: rotate(0deg);
		transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
		user-select: none;
		-webkit-tap-highlight-color: transparent;
		background: transparent;
		width: 69px;
		height: 69px;
	}

	.tog>.burger {
		width: 30px;
		height: 8px;
		position: relative;
		display: block;
		margin: -4px auto 0;
		top: 50%;
	}

	.tog>.burger span {
		width: 100%;
		height: 3px;
		display: block;
		position: relative;
		background: #313e4e;
		transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
		transition-delay: 0s;
	}

	.tog>.burger span.top {
		transform: translateY(0px) rotate(0deg);
	}

	.tog>.burger span.bottom {
		transform: translateY(6px) rotate(0deg);
	}

	.tog.x {
		transition: all 0.3s ease-in, background 0.5s ease-in;
		transition-delay: 0.25s;
	}

	.tog.x>.burger {
		transform: rotate(90deg);
		transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
	}

	.tog.x span {
		transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
		transition-delay: 0.35s;
	}

	.tog.x span.top {
		transform: translateY(2px) rotate(45deg);
	}

	.tog.x span.bottom {
		transform: translateY(-1px) rotate(-45deg);
	}

	.nav-wrap .primary.open {
		max-height: 100vh;
	}

	.nav-wrap .primary {
		display: flex;
		flex-direction: column;
		z-index: 5;
	}

	ul.primary li a {
		padding: 30px;
		color: #666;
	}

	.nav-wrap ul.primary li:hover ul {
		display: block;
		color: #fff;
	}

	.no-pad-menu {
		padding: 0;
	}
}

@media (max-width: 767px) {
	.nav-wrap .btn {
		margin: 0 5px;
	}

	.top-bar>div {
		font-size: 14px;
		margin: 0;
		justify-content: flex-start;
	}

	.nav-wrap {
		font-size: 14px;
	}

	.nav-wrap nav {
		top: 121px;
	}

	.nav-wrap.fixTop nav {
		top: 80px;
	}
}

/*
Rewrite Header for Slide In menu */

#mainMenu {
	position: fixed;
	top: -200%;
	left: 0;
	right: 0;
	z-index: 16;
	width: 100%;
	height: 100vh;
	flex-direction: column;
	background-color: #f6f8f8;
}

#mainMenu.slide-in {
	top: 0 !important;
	overflow: scroll;
	-ms-overflow-style: none;
}

#mainMenu.slide-in::-webkit-scrollbar {
	display: none;
}

#mainMenu .nav-wrap {
	box-shadow: unset;
	background-color: #f6f8f8;
}

#mainMenu.slide-in #menu-primary>li {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985),
		transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}

#mainMenu.slide-in #menu-primary>li:nth-child(2) {
	transition-delay: 0.19375s;
}

#mainMenu.slide-in #menu-primary>li:nth-child(3) {
	transition-delay: 0.3875s;
}

#mainMenu.slide-in #menu-primary>li:nth-child(4) {
	transition-delay: 0.58125s;
}

#mainMenu.slide-in #menu-primary>li:nth-child(5) {
	transition-delay: 0.775s;
}

#mainMenu.slide-in #menu-primary>li:nth-child(6) {
	transition-delay: 0.96875s;
}

#mainMenu.slide-in #menu-primary>li:nth-child(7) {
	transition-delay: 1.1625s;
}

#mainMenu.slide-in #menu-primary>li:nth-child(8) {
	transition-delay: 1.35625s;
}

#mainMenu.slide-in #menu-primary>li:nth-child(9) {
	transition-delay: 1.55s;
}

#mainMenu.slide-in #menu-primary>li:nth-child(10) {
	transition-delay: 1.74375s;
}

#mainMenu .dropdown>ul.dropdown-menu {
	display: block;
	position: static;
	min-width: 100%;
	max-height: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	margin-left: 16px;
}

#mainMenu .dropdown>ul.dropdown-menu>li {
	font-weight: bold;
}

#mainMenu .dropdown.open>ul.dropdown-menu,
#mainMenu .dropdown>ul.dropdown-menu>li>ul.dropdown-menu {
	max-height: 800px;
}

#mainMenu .dropdown>ul.dropdown-menu>li>ul.dropdown-menu li {
	font-weight: 400;
}

#mainMenu .dropdown>ul.dropdown-menu,
#mainMenu .dropdown>ul.dropdown-menu>li>ul.dropdown-menu {
	opacity: 0;
	transform: translateY(3rem);
	transition: opacity 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36),
		transform 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36);
	padding-bottom: 0;
	transition-duration: 0.3s;
	overflow: hidden;
}

#mainMenu .dropdown.open>ul.dropdown-menu,
#mainMenu .dropdown.open>ul.dropdown-menu>li>ul.dropdown-menu {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985),
		transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}

#mainMenu .dropdown.open>ul.dropdown-menu>li>ul.dropdown-menu:nth-child(2) {
	transition-delay: 0.19375s;
}

#menu-primary {
	padding: 0px;
	color: #999;
}

#menu-primary>li {
	opacity: 0;
	transform: translateY(3rem);
	transition: opacity 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36),
		transform 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36);
	padding-bottom: 0;
	transition-duration: 0.3s;
	overflow: hidden;
	margin: 0;
	padding: 8px 24px;
	border-bottom: 1px solid #ccc;
}

#menu-primary>li a {
	padding: 10px;
	position: relative;
	width: 100%;
	display: inline-block;
}

#menu-primary>li a:focus {
	outline: none;
}

#menu-primary>li a>span {
	width: 16px;
	height: 16px;
	display: inline-block;
	top: 34px;
	right: -13px;
	position: absolute;
	background: url(images/arrow-dark.svg) center center;
	background-size: 22px 22px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4;
	transition: all 0.4s;
	position: absolute;
	top: calc(50% - 8px);
	right: 0;
}

#mainMenu .dropdown.open>a>span {
	transform: rotate(90deg);
}

.navbar-toggler {
	display: none;
	width: 30px;
	height: 20px;
	background-color: transparent;
	border: none;
	padding: 10px 0;
	position: relative;
	cursor: pointer;
}

.navbar-toggler:focus {
	outline: none;
}

.navbar-toggler span {
	display: block;
	width: 100%;
	height: 2px;
	background: #313e4e;
	position: absolute;
	top: 5px;
}

.navbar-toggler span:last-child {
	top: unset;
	bottom: 5px;
}

#mainMenu .navbar-toggler span {
	transform: rotate(-45deg);
}

#mainMenu .navbar-toggler span:last-child {
	transform: rotate(45deg);
	bottom: unset;
	top: 5px;
}

@media (max-width: 992px) {
	.navbar-toggler {
		display: block;
	}
}

/* ------------------------------------------------------------------------- *
/* 2.2 Index */
/* ------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- *
/* 2.3 Sections */
/* ------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- *
/* 2.4 Sidebar */
/* ------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- *
/* 2.5 Footer */
/* ------------------------------------------------------------------------- */

footer {
	background-color: #ffff;
}

footer .pre-footer {
	display: flex;
	padding: 45px 15px;
	justify-content: center;
	max-width: 1173px;
	margin: auto;
	flex-wrap: wrap;
}

footer .pre-footer .logo {
	width: 160px;
	height: auto;
	margin: 0 80px 20px 0;
}

footer .pre-footer .site-pages {
	display: flex;
	flex-direction: row;
}

footer .pre-footer .site-pages>div {
	margin: 0 45px;
}

footer .pre-footer .site-pages ul {
	margin-top: 20px;
	list-style: none;
}

footer .pre-footer .site-pages ul>li {
	font-size: 14px;
	text-transform: capitalize;
}

footer .pre-footer .newsletter {
	max-width: 350px;
	margin-left: 60px;
	width: 100%;
}

footer .pre-footer .newsletter h4 {
	margin-bottom: 18px;
}

footer .pre-footer .newsletter p {
	color: rgba(49, 62, 78, 0.4);
}

footer #popup {
	background-color: rgba(0, 0, 0, 0.5);
	overflow-x: hidden;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 5;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer #popup.show {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

#popup .content {
	background-color: #fff;
	position: relative;
	position: absolute;
	min-width: 654px;
	min-height: 435px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 65px 65px;
}

#popup .content .close {
	cursor: pointer;
}

#label-email-76c13d47-8ff7-4cfb-8c43-a04a074d4c62 {
	display: none;
}

#popup .content ul {
	margin-top: 20px;
	list-style: none;
	margin-bottom: 0;
}

#popup .content input {
	background-color: rgba(9, 19, 33, 0.06);
	width: 100%;
	height: 35px;
	margin-bottom: 10px;
}

#popup .content h4 {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
}

#popup .content .gform_wrapper.gravity-theme .ginput_complex label, .gform_wrapper.gravity-theme .ginput_complex legend {
	margin-top: -0rem;
}

#popup .content .gform_wrapper.gravity-theme .field_description_below .gfield_consent_description, .gform_wrapper.gravity-theme .gfield_consent_description {
	padding: 0;
	border: 0;
	overflow-y: hidden;
}

.gform_wrapper.gravity-theme .gfield_consent_description {
	padding: 0;
	border: 0;
	overflow-y: hidden;
}

#popup .content input[type='checkbox'] {
	width: initial;
	margin-bottom: 6px;
}

#popup .content input[type='submit'] {
	border: 2px solid #828286;
    border-radius: 4px;
    color: #828286;
    background-color: transparent;
    min-width: 218px;
	max-width: 200px;
    min-height: 48px;
    margin: 25px auto 0 auto;
    text-transform: uppercase;
}

#popup .content input[type='submit']:hover {
	cursor: pointer;
    border: 2px solid #368DB1;
    color: #368DB1;
    background-color: #FFFFFF;
}

#popup .content .gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
	margin: 0;
}

#popup .close {
	position: absolute;
	top: 15px;
	right: 15px;
	background-image: url(images/close.svg);
	background-size: contain;
	height: 25px;
	width: 25px;
}

footer .top-row {
	display: flex;
	min-height: 200px;
	justify-content: center;
	border-top: 1px solid rgba(49, 62, 78, 0.2);
	border-bottom: 1px solid rgba(49, 62, 78, 0.2);
}

footer .top-row .socials {
	flex: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0.4;
}

footer .top-row .socials span {
	margin: 0 0 20px 0;
}

footer .top-row .socials ul {
	display: flex;
	flex-direction: row;
	list-style: none;
	justify-content: center;
	margin: 0;
}

footer .top-row .socials a {
	font-size: 29px;
	margin: 0 17px;
}

footer .top-row .accreditations {
	flex: 50%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border-left: 1px solid rgba(49, 62, 78, 0.2);
}

footer .top-row .accreditations ul {
	list-style: none;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

footer .top-row .accreditations ul li {
	margin: 0 11px 10px;
	background: transparent;
}

footer .top-row .accreditations span {
	margin-bottom: 15px;
	text-align: center;
	opacity: 0.4;
}

footer .top-row .accreditations img {
	min-width: 125px;
	max-width: 150px;
}
@media (max-width: 768px) {
	footer .top-row .accreditations img {
		width: 100%;
		height: auto;
	}
}

footer .bottom-row {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	padding: 40px 10% 50px;
	opacity: 0.4;
	justify-content: center;
}

footer .bottom-row address {
	font-style: normal;
	width: 100%;
	margin-bottom: 20px;
}

footer .bottom-row ul {
	display: flex;
	list-style: none;
	flex: 100%;
	justify-content: center;
	margin: 0 0 20px;
}

footer .bottom-row ul li {
	margin: 0 10px;
}

footer .bottom-row span {
	margin: auto;
}

@media (max-width: 1200px) {
	footer .top-row {
		display: flex;
		flex-direction: column;
	}

	footer .top-row .socials span {
		margin: 20px 0;
	}

	footer .top-row .accreditations {
		border-left: none;
	}

	footer .pre-footer .newsletter {
		margin-left: 0px;
	}
}

@media (max-width: 768px) {
	footer .pre-footer .logo {
		margin-right: 0;
		display: none;
	}

	footer .pre-footer .site-pages div {
		margin: 0 30px;
	}

	#popup .content {
		min-width: unset;
		width: 95%;
		padding: 32px;
		margin: 10px auto;
		overflow-y: scroll;
		height: 100%;min-width: unset;
		width: 95%;
		padding: 32px;
	}
}

@media (max-width: 500px) {
	footer .bottom-row {
		padding: 40px 10px 50px;
		font-size: 12px;
	}

	footer .bottom-row ul li {
		margin: 0 5px;
	}

	footer .pre-footer .site-pages div {
		margin: 0 15px;
	}

	#popup .content p,
	#popup .content span {
		font-size: 14px;
		margin-bottom: 5px;
	}
}

@media (max-width: 321px) {
	#popup .content {
		min-width: unset;
		width: 95%;
		padding: 8px;
	}
}

/* ------------------------------------------------------------------------- *
/* 3 Modules */
/* ------------------------------------------------------------------------- */

/* 3.1 Slider
  --------------------------------------- */

.container-siema {
	position: relative;
	background: #333;
	margin-bottom: 40px;
	overflow: hidden;
}

.container-siema__next,
.container-siema__prev {
	position: absolute;
	top: 0;
	color: #fff;
	text-indent: -9999px;
	height: 100%;
	cursor: pointer;
	width: 60px;
}

.container-siema__next {
	right: 0;
}

.container-siema__next .alux-arrow,
.container-siema__prev .alux-arrow {
	width: 30px;
	height: 40px;
	top: 50%;
	right: 0;
	background-size: 45px 45px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.container-siema__next .alux-arrow {
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.alux-arrow--disable {
	opacity: 0.3;
}

.siema__slide {
	height: 600px;
	background: #333;
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
}

.siema__caption {
	z-index: 100;
	padding: 0 40px;
	max-width: 1250px;
	width: 100%;
	margin: 0 auto;
	color: #fff;
}

.siema__caption h1,
.siema__caption h2,
.siema__caption h3 {
	color: #fff;
}

.siema__filter {
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	display: block;
	background: #000;
}

@media (max-width: 1300px) {

	.container-siema__next .alux-arrow,
	.container-siema__prev .alux-arrow {
		bottom: 40px;
		top: auto;
	}
}