/*
VARIABLES
CORE
HEADER
FOOTER
*/

/*******************************************************************************************
HEADER
*******************************************************************************************/
:root {
	/* Colours */
	--color-primary: #eeb225;
	--color-secondary: #f7ede5;
	--color-info: #f3f5f9;
	--color-dark: #111;
	--color-light: #f9f8fa;
	--color-gray: #707070;
	--color-gray-alt: #5f4955;
	--color-dark-alt: #272727;
	--color-dark-gray: #3e3e3e;
	--color-border: #c7c7c7;
	--color-loader: #363645;
	--color-black: #000;
	--color-white: #fff;
	--color-bg: #faf1dc;
	--color-error: #d9534f;
	--color-success: #5cb85c;
	--color-warning: #ce0000;

	/* Link Style */
	--link-color-base: inherit;
	--link-decoration-base: underline;
	--link-hover-color-base: inherit;
	--link-hover-decoration-base: none;

	/* Transitions */
	--speed-fast: .125s;
	--speed-default: .25s;
	--speed-slow: .5s;
	--speed-sluggish: 1s;
	--speed-snail: 2s;
	--cubic-bezier: cubic-bezier(.05, .69, .14, 1);
	--cubic-bezier-2: cubic-bezier(.215, .61, .355, 1);

	/* Body Style */
	--body-bg: var(--color-white);
	--font-family-base: 'Montserrat', sans-serif;
	--font-family-alt: 'Cormorant Garamond', sans-serif;
	--text-color-base: var(--color-dark);

	/* Headings Style */
	--heading-font-family: inherit;
	--heading-margin: 0 0 20px 0;
	--heading-font-weight: 700;
	--heading-color: inherit;

	/* Icons Style */
	--icons-font-family: 'standard-icons';
	--icon-arrow-back: "\e900";
	--icon-arrow-right: "\e901";
	--icon-close: "\e902";
	--icon-facebook: "\e903";
	--icon-instagram: "\e904";
	--icon-menu: "\e905";
	--icon-moon: "\e906";
	--icon-search: "\e907";
	--icon-twitter-x: "\e908";
	--icon-twitter: "\e909";
	--icon-whatsapp: "\e90c";

	/* Font sizes */
	--font-size-h1: 19px;
	--font-size-h2: 16px;
	--font-size-h3: 15px;
	--font-size-h4: 11px;
	--font-size-h5: 20px;
	--font-size-h6: 18px;
	--font-size-base: 13px;
	--font-size-small: 12px;
	--font-size-btn: var(--font-size-base);

	/* Line heights */
	--line-height-base: 1.55;
	--heading-line-height: 1.1;

	/* Paddings */
	--py-section: 60px;
	--py-section-small: 55px;
	--py-section-medium: 45px;
	--py-section-large: 55px;
	--px-form-control: 13px;
	--py-form-control: 15px;
	--px-gutter-base: 20px;

	/* Heights */
	--height-btn: 40px;
	--height-btn-sm: 40px;
	--height-form-control: 48px;
	--height-header-base: 62px;

	/* Widths */
	--width-base: 1070px;
	--width-large: 1312px;
	--width-narrow: 650px;
	--width-medium: 940px;

	/* Sizes */
	--size-bullet: 5px;
	--size-btn-play: 60px;
	--size-radius-btn: 4px;
	--size-form-check-indicator: 16px;
	--size-accordion-indicator: 10px;
}

@media screen and (min-width: 768px) {
	:root {
		/* Font sizes */
		--font-size-h1: 22px;
		--font-size-h2: 22px;
		--font-size-base: 15px;

		/* Line heights */
		--line-height-base: 1.8;

		/* Heights */
		--height-header-base: 78px;

		/* Paddings */
		--py-section: 100px;
	}
}

@media screen and (min-width: 1280px) {
	:root {
		--px-gutter-base: 75px;
	}
}

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
*,
*:before,
*:after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
}

*:focus {
	outline: none;
}

html {
	box-sizing: border-box;
}

body {
	line-height: var(--line-height-base);
	color: var(--text-color-base);
	font-size: var(--font-size-base);
	font-family: var(--font-family-base);
	margin: 0;
	font-weight: 350;
	background: var(--color-bg);
}

/* CORE > Global */
img {
	height: auto;
	max-width: 100%;
}

main {
	overflow: clip;
	padding-top: var(--height-header-base);
}

.clear:after {
	display: block;
	clear: both;
	content: '';
}

/* CORE > Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px;
	font-weight: 500;
	color: var(--heading-color);
	text-transform: uppercase;
	font-family: var(--heading-font-family), sans-serif;
	line-height: var(--heading-line-height);
}

h1 {
	font-size: var(--font-size-h1);
}

h2 {
	font-size: var(--font-size-h2);
}

h3 {
	font-size: var(--font-size-h3);
}

h4 {
	text-transform: none;
	font-size: var(--font-size-h4);
}

h5 {
	font-size: var(--font-size-h5);
}

h6 {
	font-size: var(--font-size-h6);
}

p {
	margin: 0 0 30px;
}

ul {
	list-style: none;
}

/* CORE > Form */
label {
	margin-bottom: 10px;
	display: block;
	font-size: var(--font-size-base);
	font-weight: 400;
	color: var(--text-color-base);
}

input,
select,
textarea {
	padding: 10px 20px;
	display: block;
	width: 100%;
	height: 50px;
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	color: var(--text-color-base);
	border: 1px solid var(--color-border);
	border-radius: 5px;
	background: var(--color-white);

	&::placeholder {
		opacity: .6;
		color: inherit;
	}

	&:focus:not(:read-only):not([type='submit']):not([type='reset']):not([type='button']) {
		border-color: var(--color-border);
	}

	&.is-error {
		border-color: var(--color-error);
	}

	&:disabled {
		opacity: .8;
		color: var(--color-border);
		background-color: var(--color-white);
	}

	&[type='radio'],
	&[type='checkbox'] {
		margin-right: 10px;
		padding: 0;
		display: inline-block;
		height: auto;
	}

	&[type='radio'],
	&[type='checkbox'],
	&[type='submit'],
	&[type='reset'],
	&[type='button'] {
		display: inline-block;
		width: auto;
	}
}

input[type='submit'],
input[type='reset'],
input[type='button'] {
	color: var(--color-white);
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);

	&:hover {
		color: var(--color-white);
		background-color: var(--color-secondary);
		border-color: var(--color-secondary);
	}
}

select {
	background-image: url('data:image/png;base64,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');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: auto 5px;
	appearance: none;
}

textarea {
	width: 100%;
	height: 200px;
}

/* CORE > Links and Buttons */
a {
	color: var(--link-color-base);
	text-decoration: var(--link-decoration-base);
}

a:hover {
	color: var(--link-hover-color-base);
	text-decoration: var(--link-hover-decoration-base);
}

a,
button,
.button {
	transition: all 0.3s;
}

button,
.button {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	padding: 13px 20px;
	border-radius: 40px;
	align-items: center;
	display: inline-flex;
	text-decoration: none;
	color: var(--color-white);
	background-color: var(--color-black);
}

.button.button-primary {
	color: var(--color-black);
	background-color: var(--color-primary);
}

.button.button-primary:hover {
	color: var(--color-black);
	background-color: #e5ab22;
}

button:hover,
.button:hover {
	color: var(--color-white);
	background-color: #4e4e4e;
}

button.no-button,
.button.no-button {

}

button.no-button:hover,
.button.no-button:hover {

}

/* CORE > Layout */
.container,
.container-large,
.container-medium,
.container-narrow {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: var(--px-gutter-base);
	padding-right: var(--px-gutter-base);
	max-width: calc(var(--width-base) + calc(var(--px-gutter-base) * 2));
}

.container-large {
	max-width: calc(var(--width-large) + calc(var(--px-gutter-base) * 2));
}

.container-narrow {
	max-width: calc(var(--width-narrow) + calc(var(--px-gutter-base) * 2));
}

.container-medium {
	max-width: calc(var(--width-medium) + calc(var(--px-gutter-base) * 2));
}

/* CORE > Utility Classes */
.no-margin {
	margin: 0 !important;
}

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

.no-transition {
	transition: none !important;
}

.no-min-height {
	min-height: 0;
}

.position-static {
	position: static !important;
}

.position-relative {
	position: relative !important;
}

.block {
	display: block !important;
}

.full-width {
	width: 100%;
}

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

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

.uppercase {
	text-transform: uppercase;
}

.hide {
	display: none !important;
}

.overflow-hidden {
	overflow: hidden;
}

.visually-hidden {
	border: none !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.flex-container {
	display: flex;
	align-items: center;
}

.flex-align-vertical {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-align-horizontal {
	display: flex;
	justify-content: center;
	text-align: center;
}

.small-text {
	font-size: 0.9rem;
}

.larger-text {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

.small-margin-left {
	margin-left: 10px;
}

.small-margin-right {
	margin-right: 10px;
}

.no-background {
	background: none !important;
}

.transition-all {
	transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.video-mute-toggle {
	position: absolute;
	bottom: 22px;
	z-index: 4;
	width: 32px;
	height: 34px;
	cursor: pointer;
	display: block;
	left: var(--px-gutter-base);
	border: none;
	outline: none;
	transition: opacity .2s ease-in-out;
	text-indent: -9999px;
	background: url('../../assets/images/mute.png') center center no-repeat;
	background-size: 32px 34px;
	opacity: .58;
	padding: 0;
	border-radius: 0;
	overflow: hidden;
}

.video-mute-toggle:hover {
	opacity: 1;
	background-color: transparent;
}

.video-mute-toggle.unmute {
	opacity: 1;
	background-image: url('../../assets/images/unmute.png');
}

@media (min-width: 768px) {
	.hide-for-medium {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hide-for-large {
		display: none !important;
	}

	.video-mute-toggle {
		width: 37px;
		height: 39px;
		background-size: 37px auto;
	}
}

@media (min-width: 1280px) {
	.video-mute-toggle {
		bottom: 35px;
		left: 75px;
	}
}

@media screen and (max-width: 767px) {
	.hide-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 0px), screen and (min-width: 768px) {
	.show-for-small-only {
		display: none !important;
	}
}

@media screen and (max-width: 1023px) {
	.show-for-medium {
		display: none !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hide-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
	.show-for-medium-only {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.show-for-large {
		display: none !important;
	}
}

@media screen and (max-width: 600px) {
	#wpadminbar {
		position: fixed;
	}
}

/*******************************************************************************************
HEADER
*******************************************************************************************/
.header {
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	position: fixed;
	animation-delay: 1s;
	transition: all 0.3s;
	height: var(--height-header-base);
}

.header-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: var(--px-gutter-base);
	padding-right: var(--px-gutter-base);
}

.header-logo {
	display: flex;
	align-self: center;
}

.header-logo img {
	width: auto;
	height: 11px;
	display: block;
}

.header-logo img + img {
	margin-left: 18px;
}

.header-symbol {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 36px;
	display: none;
	transition: all .3s;
}

.header-symbol img {
	width: 100%;
	display: block;
}

.header-menu {
	display: none;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-dark-gray);
}

.header-menu a {
	color: inherit;
	display: block;
	font-weight: 500;
	font-size: 14px;
	position: relative;
	text-decoration: none;
}

.header-menu a:hover {
	color: inherit;
}

.header-menu a:after {
	background: var(--color-dark-gray);
	height: 1px;
	content: '';
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s;
}

.header-menu a:hover:after {
	width: 100%;
}

.header-menu ul {
	display: flex;
	margin: 0;
	padding: 0;
}

.header-menu li + li {
	margin-left: 25px;
}

.header-toggle {
	display: block;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 18px;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	outline: none;
	position: relative;
	cursor: pointer;
}

.header-toggle:hover {
	background: transparent;
}

.header-toggle span {
	width: 100%;
	height: 1px;
	display: block;
	position: relative;
	background: var(--color-gray);
	transition: all 0.3s;
}

.header-toggle span:before,
.header-toggle span:after {
	width: 100%;
	height: 1px;
	display: block;
	position: absolute;
	left: 0;
	top: -7px;
	content: '';
	background: var(--color-gray);
	transition: all 0.3s;
}

.header-toggle span:after {
	top: 7px;
}

.header-mobile {
	position: fixed;
	top: var(--height-header-base);
	left: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	align-content: flex-end;
	height: calc(100dvh - var(--height-header-base));
	background: var(--color-bg);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.header-mobile .header-symbol {
	width: 48px;
	display: block;
	margin-top: -30px;
}

.header-mobile-inner {
	width: 100%;
}

.header-mobile-menu {
	font-size: 18px;
	font-weight: 300;
	padding-bottom: 2px;
	text-transform: uppercase;
}

.header-mobile-menu a {
	text-decoration: none;
}

.header-mobile-menu ul {
	margin: 0;
	padding: 0 0 35px;
}

.header-mobile-menu li {
	border-bottom: 1px solid var(--color-dark-gray);
}

.header-mobile-menu li a {
	padding: 10px 0 8px;
	display: block;
}

.header-mobile-bottom {
	width: 100%;
	display: none;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.4;
	align-items: center;
	padding: 25px 0 40px;
	border-top: 1px solid var(--color-dark-gray);
}

.header-mobile-bottom p {
	margin-bottom: 0;
}

.header-mobile-social {
	font-size: 15px;
	font-weight: 500;
	margin-right: 20px;
	text-decoration: none;
}

.header.is-light {
	position: fixed;
	background: transparent;
}

.header.is-light .header-logo img,
.header.is-light .header-symbol img {
	transition: all 0.3s;
	filter: brightness(0) invert(1);
}

.header.is-light .header-menu {
	color: var(--color-white);
}

.header.is-light .header-menu a:after {
	background: var(--color-white);
}

.header.is-light .header-toggle span,
.header.is-light .header-toggle span:before,
.header.is-light .header-toggle span:after {
	background: var(--color-white);
}

.header.is-light .header-mobile .header-symbol img {
	filter: none;
}

.header.is-sticky {
	background: var(--color-bg);
}

.header.is-sticky .header-menu {
	color: var(--color-dark-gray);
}

.header.is-sticky .header-menu a:after {
	background: var(--color-dark-gray);
}

.header.is-sticky .header-logo img,
.header.is-sticky .header-symbol img {
	filter: inherit;
}

.header.is-sticky .header-toggle span,
.header.is-sticky .header-toggle span:before,
.header.is-sticky .header-toggle span:after {
	background: var(--color-gray);
}

.is-menu-open {
	overflow: hidden;
	position: relative;
}

.is-menu-open .header-toggle span,
.is-menu-open .header.is-light .header-toggle span {
	background: transparent;
}

.is-menu-open .header-toggle span:before {
	top: 0;
	transform: rotate(45deg);
}

.is-menu-open .header-toggle span:after {
	top: 0;
	transform: rotate(-45deg);
}

.is-menu-open .header-mobile {
	opacity: 1;
	visibility: visible;
}

.is-menu-open .header.is-light .header-logo img,
.is-menu-open .header.is-light .header-symbol img {
	filter: none;
}

.is-menu-open .header.is-light {
	background: var(--color-bg);
}

.is-menu-open .header.is-light .header-toggle span:before,
.is-menu-open .header.is-light .header-toggle span:after {
	background: var(--color-gray);
}

.admin-bar .header {
	top: 46px;
}

.admin-bar .header-mobile {
	height: calc(100dvh - calc(var(--height-header-base) + 46px));
}

@media screen and (min-width: 782px) {
	.admin-bar .header {
		top: 32px;
	}

	.admin-bar .header .header-mobile {
		height: calc(100dvh - calc(var(--height-header-base) + 32px));
	}
}

@media screen and (min-width: 768px) {
	.is-menu-open {
		overflow: visible;
	}

	.header-menu {
		display: block;
	}

	.header-logo img {
		height: 13px;
	}

	.header-logo img + img {
		margin-left: 23px;
	}

	.header-mobile {
		display: none;
	}

	.header-symbol {
		display: block;
	}

	.header-toggle {
		display: none;
	}
}

@media screen and (min-width: 1200px) {
	.header-menu li + li {
		margin-left: 50px;
	}
}

/*******************************************************************************************
FOOTER
*******************************************************************************************/
.footer {
	text-align: center;
	background: var(--color-gray-alt);
	padding: 50px var(--px-gutter-base);
	width: 100%;
	position: relative;
	color: var(--color-white);
	z-index: 2;
	font-size: 10px;
	font-weight: 300;
	line-height: 1.45;
}

.footer a {
	position: relative;
	text-decoration: none;
}

.footer a:after {
	width: 0;
	height: 1px;
	content: '';
	background: var(--color-white);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s;
}

.footer a:hover:after {
	width: 100%;
}

.footer address {
	font-style: normal;
}

.footer-top {
	max-width: 171px;
	margin: 0 auto;
}

.footer-title {
	font-size: 11px;
	font-weight: 500;
	margin-bottom: 8px;
}

.footer-logo {
	margin: 0 auto 60px;
	display: block;
	width: 146px;
}

.footer-copyright a {
	font-size: 11px;
	font-weight: 500;
	margin-bottom: 8px;
}

.footer-copyright ul {
	display: flex;
	margin: 0;
	padding: 0;
	font-weight: 300;
	justify-content: center;
	font-size: 8px;
}

.footer-left {
	width: 300px;
	margin: 0 auto 35px;
}

.footer-menu {
	font-size: 11px;
	margin-top: 32px;
	font-weight: 500;
}

.footer-menu ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.footer-menu li + li {
	margin-left: 24px;
}

@media screen and (min-width: 768px) {
	.footer {
		font-size: 15px;
		text-align: inherit;
		padding-bottom: 25px;
	}

	.footer-title,
	.footer-copyright a {
		font-size: 15px;
	}

	.footer-copyright a {
		margin-bottom: 0;
	}

	.footer-top {
		max-width: 243px;
	}

	.footer-copyright ul {
		font-weight: 500;
		justify-content: flex-start;
		font-size: 10px;
		margin-left: 30px;
		margin-top: 0;
	}

	.footer-copyright {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin-top: auto;
	}

	.footer-inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.footer-logo {
		width: 234px;
		margin-bottom: 60px;
	}

	.footer-left {
		width: 320px;
		margin: 0;
	}

	.footer-right,
	.footer-left {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-menu {
		font-size: 15px;
		margin-top: auto;
	}

	.footer-menu ul {
		justify-content: flex-start;
	}

	.footer-menu li + li {
		margin-left: 27px;
	}
}

@media screen and (min-width: 1025px) {
	.footer-left {
		width: 430px;
	}

	.footer-right {
		padding-right: 20px;
	}
}

.video-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.video-play-toggle {
	position: absolute;
	top: 50%;
	left: 50%;
	cursor: pointer;
	transform: translate(-50%, -50%);
	width: 33px;
	height: 33px;
	border-radius: 50%;
	display: flex;
	border: 0;
	text-indent: -9999px;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	background-image: url('../images/play-button.svg');
	background-repeat: no-repeat;
	background-position: center;
	transition: all .3s;
	background-size: 33px 33px;
	opacity: 0;
	visibility: hidden;
}

.is-stopped .video-play-toggle {
	opacity: 1;
	visibility: visible;
}

.video-play-toggle:hover {
	background-color: transparent;
}

@media screen and (min-width: 1025px) {
	.video-play-toggle {
		width: 58px;
		height: 58px;
		background-size: 58px 58px;
	}
}

/*******************************************************************************************
ANIMATIONS - Ready-to-go animation classes
*******************************************************************************************/
.animated {
	-webkit-animation-duration: 1800ms;
	animation-duration: 1800ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animate.fadeIn,
.animate.fadeInUp,
.animate.fadeInUpSlight,
.animate.fadeInRight,
.animate.fadeInRightSlight,
.animate.fadeInDown,
.animate.fadeInDownSlight,
.animate.fadeInLeft,
.animate.fadeInLeftSlight {
	opacity: 0;
}

.animated.fast {
	-webkit-animation-duration: 600ms;
	animation-duration: 600ms;
}

.animated.slow {
	-webkit-animation-duration: 2400ms;
	animation-duration: 2400ms;
}

.animated.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.animated.fadeInUpSlight {
	-webkit-animation-name: fadeInUpSlight;
	animation-name: fadeInUpSlight;
}

.animated.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

.animated.fadeInRightSlight {
	-webkit-animation-name: fadeInRightSlight;
	animation-name: fadeInRightSlight;
}

.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

.animated.fadeInDownSlight {
	-webkit-animation-name: fadeInDownSlight;
	animation-name: fadeInDownSlight;
}

.animated.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.animated.fadeInLeftSlight {
	-webkit-animation-name: fadeInLeftSlight;
	animation-name: fadeInLeftSlight;
}

.animated.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

.animated.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

.animated.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

.animated.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes fadeInUpSlight {
	from {
		opacity: 0;
		transform: translate3d(0, 10%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUpSlight {
	from {
		opacity: 0;
		transform: translate3d(0, 40px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes fadeInRightSlight {
	from {
		opacity: 0;
		transform: translate3d(10%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRightSlight {
	from {
		opacity: 0;
		transform: translate3d(10%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes fadeInDownSlight {
	from {
		opacity: 0;
		transform: translate3d(0, -10%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDownSlight {
	from {
		opacity: 0;
		transform: translate3d(0, -10%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes fadeInLeftSlight {
	from {
		opacity: 0;
		transform: translate3d(-10%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeftSlight {
	from {
		opacity: 0;
		transform: translate3d(-10%, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes slideInDown {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInDown {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}
