/*
Theme Name: Starter
Theme URI: https://www.softworks.com.tr
Author: Softworks
Author URI: https://www.softworks.com.tr
Version: 1.0
*/

body {
	margin: 0;
	padding: 0;
	color: #383838;
	font-size: clamp(14px, calc(0.4vw + 1rem), 16px);
	width: 100%;
	height: 100%;
	word-wrap: break-word;
	-ms-word-wrap: break-word;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
    display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-box-align: stretch;
	background-color: #fff;
    -webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-user-drag: none;
	-ms-content-zooming: none;
	-webkit-overflow-scrolling: touch;
	overflow: auto;
	overflow-x: hidden;
}

body {
    -ms-touch-action: none;
}

@media all and (width:1024px) and (height:692px) and (orientation:landscape) {
	body, html {
		height: 42rem;
	}
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

body, h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', sans-serif;
}

a {
    color: #383838;
    transition: color .2s linear;
}

a:hover,
a:focus {
    text-decoration: none;
}

a:focus,
input:focus,
button:focus {
    outline: none;
}

::-moz-selection {
	color: #ffffff;
	background-color: #444bf8;
    text-shadow: none;
}

::selection {
	color: #ffffff;
	background-color: #444bf8;
    text-shadow: none;
}

/* Line List */
ul.line-list {
    padding: 0;
    margin: 0;
	line-height: 1.7;
    list-style: none;
	font-size: 0.938rem;
}

ul.line-list li {
    position: relative;
    padding-left: 1.875rem;
	margin-bottom: 0.4rem;
}

ul.line-list li:before {
    content: '';
    width: 1.25rem;
    height: 0.063rem;
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #121118;
}

/* Loading Bar */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
	/* background: rgba(0, 255, 255, 0.5); */
    z-index: 99999;
    transform: translateZ(0);
}

.loading-bar.overlay {
    background: rgba(0, 0, 0, .6);
}

.loading-bar .loader {
    width: 0;
    height: .3rem;
    position: absolute;
    top: 0;
    left: 0;
    background: #444bf8;
    animation: expand 5s linear infinite;
}

@keyframes expand {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

/* Search */
.search-active {
	overflow: hidden !important;
}

.search-active .search {
	opacity: 1;
	visibility: visible;
}

.search {
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
	background: #ffffff;
	padding: 8.125rem 16.25rem;
}

.search .close {
	color: #383838;
	font-size: 1rem;
	display: inline-block;
	width: 100%;
	text-align: center;
	line-height: normal;
	cursor: pointer;
}

.search form {
	margin-top: 15%;
}

.search form input {
	font-size: 2.75rem;
	font-weight: 300;
	color: #383838;
	background: none;
	border: none;
	border-bottom: 0.063rem solid #cccccc;
	width: 100%;
	padding-bottom: 2.5rem;
}

.search form input::placeholder {
	color: #818181;
	opacity: 1;
}

.search .search-results {
	margin: 0;
    padding: 2.5rem 5.625rem 0 4.375rem;
    min-height: 13.75rem;
    max-height: 23.125rem;
    overflow-y: scroll;
    position: relative;
}

.search .search-results::-webkit-scrollbar {
	width: 0;
}

.search .search-results .search-no-results {
	font-size: 1.563rem;
}

.search .search-results .search-results-item {
    display: flex;
    align-items: center;
    background-color: #fbfbfb;
    margin-bottom: 1.875rem;
    padding: 0.938rem 1.875rem;
	min-height: 6.25rem;
}

.search .search-results .search-results-item img {
	width: 5.625rem;
	height: 5.625rem;
	object-fit: cover;
}

.search .search-results .search-results-item .search-results-text {
	overflow: hidden;
    margin: 0 0 0 0.938rem;
}

.search .search-results .search-results-item .search-results-text h3 {
    color: #383838;
    font-size: 1.25rem;
	font-weight: 500;
    text-overflow: ellipsis;
	width: 100%;
    max-width: 21.875rem;
	margin: 0 0 0.313rem;
    overflow: hidden;
    white-space: nowrap;
}

.search .search-results .search-results-item .search-results-text div {
	color: #383838;
    font-size: 0.938rem;
	word-break: break-all;
}

@media screen and (max-width: 840px) {
	.search {
	    padding: 6.25rem 1.875rem;
	}
	.search form input {
		font-size: 1.625rem;
		padding-bottom: 1.25rem;
	}
	.search .search-results .search-results-item {
		padding: 0.938rem;
	}
	.search .search-results {
		padding: 1.875rem 0 1.875rem 0;
		max-height: 70vh;
	}
}

/* Cool Link */
.cool-link {
	display: inline-block;
}

.cool-link:after {
	display: block;
	content: '';
	border-bottom: solid 0.063rem #444bf8;
	transform: scaleX(0);
	transition: transform 0.25s ease-out 0s;
}

.cool-link:hover:after {
    transform: scaleX(1);
	transition: transform 0.5s ease-out 0s;
}

.cool-link.from-right:after {
    transform-origin: left bottom;
}

.cool-link.from-right:hover:after {
    transform-origin: right bottom;
}

.cool-link.from-left:after {
    transform-origin: right bottom;
}

.cool-link.from-left:hover:after {
    transform-origin: left bottom;
}

/* Wobble Effect */
.wobble {
	transition: all .5s;
	-webkit-transition: all .5s;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-animation-name: wobble-horizontal;
	animation-name: wobble-horizontal;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes wobble-horizontal {
	5.56% {
		-webkit-transform: translateX(8px);
		transform: translateX(8px);
	}
	11.11% {
		-webkit-transform: translateX(-6px);
		transform: translateX(-6px);
	}
	16.67% {
		-webkit-transform: translateX(4px);
		transform: translateX(4px);
	}
	22.22% {
		-webkit-transform: translateX(-2px);
		transform: translateX(-2px);
	}
	27.75% {
		-webkit-transform: translateX(1px);
		transform: translateX(1px);
	}
	33.33% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes wobble-horizontal {
	5.56% {
		-webkit-transform: translateX(8px);
		transform: translateX(8px);
	}
	11.11% {
		-webkit-transform: translateX(-6px);
		transform: translateX(-6px);
	}
	16.67% {
		-webkit-transform: translateX(4px);
		transform: translateX(4px);
	}
	22.22% {
		-webkit-transform: translateX(-2px);
		transform: translateX(-2px);
	}
	27.75% {
		-webkit-transform: translateX(1px);
		transform: translateX(1px);
	}
	33.33% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/* Navigation */
@media screen and (max-width: 840px) {
    #navigation {
		display: none;
	}
}

.navigation > li {
    display: inline-block;
}

.navigation > li > a {
    display: block;
    margin: 0 0.75rem;
    font-size: 1rem;
    font-weight: 400;
}

.navigation li:hover > a {
	color: #1f28f7 !important;
}

/* List */
ul.list {
	list-style: disc;
	padding-left: 1.125rem;
}

ul.list li {
	line-height: 1.8;
}

/* Scroll Top */
.scroll-top {
	position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    background: #444bf8;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.4s;
    cursor: pointer;
    transform: scale(0);
}

.scroll-top.changed {
	transform: scale(1);
}

.scroll-top:before {
	color: #ffffff;
	font-family: 'Icon' !important;
	content: '\EA78';
	font-size: 1.875rem;
}

@media (hover: hover){
    .scroll-top:hover {
        opacity: .8;
    }
}

@media only screen and (max-width: 1199px){
    .scroll-top { display: none; }
}

/* Table */
.table  {
	width: 100%;
	max-width: 100%;
	color: #495057;
}

.table-bordered {
	border: solid 0.063rem #dddddd;
}

.table-bordered > thead > tr > th {
	font-weight: 500;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th {
	border: solid 0.063rem #dddddd;
}

.table > thead > tr > th,
.table > tbody > tr > td,
.table > tbody > tr > th {
	padding: .75rem;
	line-height: 1.42857143;
	border-top: solid 0.063rem #dddddd;
	vertical-align: top;
	text-align: left;
}

.table > thead:first-child > tr:first-child > th {
	border-top: none;
}

.table > thead > tr > th {
	background: #f5f5f5;
}

.table tbody tr:hover {
    background-color: #fafafa;
}

/* Table Responsive */
.table-responsive {
	border: 0;
}

.table-responsive thead {
	display: none;
}

.table-responsive tr {
	display: block;
	margin-bottom: 0.625rem;
	border-bottom: 0.063rem solid #ddd;
}

.table-responsive tr:last-child {
	margin-bottom: 0;
}

.table-responsive td {
	display: block;
	text-align: right;
	font-size: 0.813rem;
	border-bottom: none !important;
}

.table-responsive td:last-child {
	border-bottom: 0;
}

.table-responsive td:before {
	float: left;
	content: attr(data-label);
	font-weight: 500;
}

/* Panel */
.panel {
	margin-bottom: 1.25rem;
    background-color: #fff;
}

.panel .panel-heading {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	padding: 0.938rem;
	background-color: #444bf8;
}

.panel .panel-body {
	padding: 0.625rem 0.938rem;
	border: 0.063rem solid #e6e6e6;
}

@media screen and (max-width: 767px) {
	.panel img {
		width: 100%;
	}
}

.panel-list li {
	font-size: 0.938rem;
    font-weight: 300;
    padding: 0.438rem 0.813rem;
	line-height: 1.6;
	position: relative;
}

.panel-list li::before {
	background-color: #99ca6a;
	content: '';
	position: absolute;
	left: 0;
	top: 1.125rem;
	padding: 0.188rem;
}

.panel-list li:hover a,
.panel-list li.active a {
	color: #444bf8;
}

/* Tabs */
.tab {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.tab-head > ul > li {
	float: left;
    margin-bottom: -0.063rem;
	position: relative;
    display: block;
}

.tab-head > ul:before,
.tab-head > ul:after{content:'';display:table}
.tab-head > ul:after{clear:both}

.tab-head > ul > li > a {
	background-color: transparent;
    border: none;
    color: #333333;
    cursor: pointer;
    line-height: 1.875rem;
    font-weight: 400;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
	margin-right: 0.125rem;
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	-moz-transition: none;
    -webkit-transition: none;
    -o-transition: color 0 ease-in;
    transition: none;
}

.tab-head > ul > li.active > a {
    background-color: #1f28f7;
    color: #ffffff;
    border: 0;
}

.tab-content {
	background: #ffffff;
    margin-bottom: 1.875rem;
    padding: 1.875rem;
    border: 0.063rem solid #eeeeee;
    color: #797979;
}

.tab-content > div {
	display: none;
}

.tab-content > div.active {
	display: block;
}

/* Sticky Styles */
.sticky-queue {
	width: 15.625rem;
	position: fixed;
	z-index: 999;
}

.sticky-note {
	padding-right: 1.25rem;
}

.sticky {
	font-size: 0.75rem;
	color: #ffffff;
	display: none;
	padding: 0.938rem;
	position: relative;
	margin: 0.313rem 0 0;
	line-height: 1.5;
	background-color: #1f28f7;
}

.sticky.success {
	background-color: #8dc63f;
}

.sticky.warning {
	background-color: #ffba00;
}

.sticky.danger {
	background-color: #e33244;
}

.sticky-queue.top-right {
	right: 1.25rem;
}

.sticky-queue.top-left {
	left: 1.25rem;
}

.sticky-queue.top-right,
.sticky-queue.top-left {
	top: -0.125rem;
}

.sticky-queue.bottom-right {
	right: 1.25rem;
}

.sticky-queue.bottom-left {
	left: 1.25rem;
}

.sticky-queue.bottom-right,
.sticky-queue.bottom-left {
	bottom: 1.25rem;
}

/* Pagination */
.pagination {
	text-align: center;
}

.pagination ul {
	display: inline-block;
    padding-left: 0;
    margin: 1.25rem 0;
}

.pagination ul li {
	display: inline-block;
    margin: 0 0.313rem;
}

.pagination ul li a {
	color: #cccccc;
	font-size: 1.125rem;
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3.125rem;
    float: left;
	position: relative;
    text-decoration: none;
    background-color: #ffffff;
    border: 0.063rem solid #dddddd;
}

.pagination ul li.active > a,
.pagination ul li.active > a:focus,
.pagination ul li.active > a:hover,
.pagination ul li.active > span,
.pagination ul li.active > span:focus,
.pagination ul li.active > span:hover {
	border-color: #444bf8;
    background-color: #444bf8;
	color: #ffffff;
}

/* BreadCrumbs */
.breadcrumbs {
	margin-bottom: 0.938rem;
}

.breadcrumbs > ul {
	padding: 0;
	margin-left: 0 !important;
	margin-bottom: 0 !important;
	background-color: transparent;
	list-style: none;
}

.breadcrumbs > ul > li {
    display: inline-block;
	margin-bottom: 0 !important;
	font-weight: 300;
}

.breadcrumbs > ul > li + li:before {
    color: #444bf8;
    padding: 0 0.313rem;
	position: relative;
	top: 0.188rem;
    font-family: 'Icon' !important;
    content: '\EA6E';
    font-size: 1rem;
}

.breadcrumbs a {
	color: #383838;
}

.breadcrumbs a:hover {
	color: #383838;
}

@media screen and (max-width: 767px) {
	.breadcrumbs {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		margin-bottom: 0.5rem;
		padding: 0.938rem 0;
		margin: 0 1.25rem;
	}
	.breadcrumbs ul {
	    display: flex;
	    padding: 0;
	    margin: 0;
	    align-items: center;
	}
	.breadcrumbs > ul > li {
		flex: none;
	}
}

/* Thumbnail */
.thumbnail {
	display: block;
    position: relative;
    overflow: hidden;
    line-height: 1.42857143;
    background-color: #ffffff;
}

.thumbnail img {
	width: 100%;
	height: 11.25rem;
	object-fit: cover;
}

.thumbnail.thumbnail-medium img {
	height: 17.5rem;
}

.thumbnail.thumbnail-large img {
	height: 23.75rem;
}

@media screen and (max-width: 767px) {
	.thumbnail img {
		height: 10rem;
	}
	.thumbnail.thumbnail-medium img {
		height: 11.25rem;
	}
	.thumbnail.thumbnail-large img {
		height: 21.25rem;
	}
}

/* WhatsApp */
.whatsapp-button {
    position: fixed;
    right: 1.875rem;
    bottom: 1.875rem;
    cursor: pointer;
    font-family: Arial,Helvetica,sans-serif;
    z-index: 999;
}

.whatsapp-notice {
	position: absolute;
	width: 1.25rem;
	height: 1.25rem;
	text-align: center;
	background-color: #e00;
	border-radius: 50%;
	line-height: 1.25rem;
	color: #fff;
	top: -0.313rem;
}

.whatsapp-button .whatsapp-button-text {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    width: 160.313rem;
    right: 100%;
    background-color: #f5f7f9;
    font-size: 0.75rem;
    color: #43474e;
    padding: 0.5rem 0.75rem;
    margin-right: 0.438rem;
    letter-spacing: -.03em;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
}

.whatsapp-button .whatsapp-button-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #2db742;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0 0.375rem 0.5rem 0.125rem rgb(0 0 0 / 14%);
}

.whatsapp-button .whatsapp-button-icon:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDc4LjE2NSA0NzguMTY1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NzguMTY1IDQ3OC4xNjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiPg0KPGc+DQoJPHBhdGggaWQ9IldoYXRzQXBwIiBkPSJNNDc4LjE2NSwyMzIuOTQ2YzAsMTI4LjU2Ny0xMDUuMDU3LDIzMi45NjYtMjM0LjY3OSwyMzIuOTY2Yy00MS4xMDIsMC03OS44MTQtMTAuNTk5LTExMy40NDUtMjguOTY5ICAgTDAsNDc4LjE2NWw0Mi40MzctMTI1LjA0Yy0yMS40MzgtMzUuMDY1LTMzLjc3LTc2LjIwNy0zMy43Ny0xMjAuMTU5QzguNjY3LDEwNC4zNCwxMTMuNzYzLDAsMjQzLjQ4NSwwICAgQzM3My4xMDgsMCw0NzguMTY1LDEwNC4zNCw0NzguMTY1LDIzMi45NDZ6IE0yNDMuNDg1LDM3LjA5OGMtMTA4LjgwMiwwLTE5Ny40MjIsODcuODAzLTE5Ny40MjIsMTk1Ljg2OCAgIGMwLDQyLjkxNSwxMy45ODYsODIuNjAzLDM3LjU3NiwxMTQuODc5bC0yNC41ODYsNzIuNTQybDc1Ljg0OS0yMy45NjhjMzEuMTIxLDIwLjQ4MSw2OC40NTcsMzIuMjk2LDEwOC41ODMsMzIuMjk2ICAgYzEwOC43MjMsMCwxOTcuMzIzLTg3Ljg0MywxOTcuMzIzLTE5NS45MDhDNDQwLjgwOCwxMjQuOTIxLDM1Mi4yMDgsMzcuMDk4LDI0My40ODUsMzcuMDk4eiBNMzYxLjkzMSwyODYuNjIgICBjLTEuMzk1LTIuMzMxLTUuMjItMy43NDYtMTAuODk4LTYuODE0Yy01LjkxNy0yLjg0OS0zNC4wODktMTYuNDk3LTM5LjUwOC0xOC4zN2MtNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEsMi44MjkgICBjLTQuMDA1LDUuNjM4LTE0LjkwMywxOC42MjktMTguMjMsMjIuMzU0Yy0zLjU0NiwzLjc4NS02Ljg1NCw0LjI2NC0xMi41NTIsMS40MzVjLTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxICAgYy0xNy4wNTUtMTUuMDQyLTI4LjY3LTMzLjcxMS0zMS45OTctMzkuNTA4Yy0zLjQyNy01Ljc1OC0wLjM5OC04LjgyNiwyLjQ3MS0xMS42MzVjMi42OS0yLjU5LDUuNzc4LTYuNzM0LDguNjI3LTEwLjA0MSAgIGMyLjk2OS0zLjI4NywzLjkwNS01LjYzOCw1Ljc5OC05LjQyNGMxLjkxMy0zLjkwNSwwLjkzNi03LjE5Mi0wLjQ3OC0xMC4xNDFjLTEuNDE1LTIuODQ5LTEzLjAxLTMwLjg4MS0xNy43NTItNDIuMzM3ICAgYy00Ljg0MS0xMS40MTYtOS41NDMtOS41MjMtMTIuODcxLTkuNTIzYy0zLjQ2NywwLTcuMjEyLTAuNDc4LTExLjExNy0wLjQ3OGMtMy43ODUsMC0xMC4wNDEsMS4zOTUtMTUuMzgxLDcuMTkyICAgYy01LjIsNS42NTgtMjAuMTIzLDE5LjQ2NS0yMC4xMjMsNDcuNTk3YzAsMjguMDUyLDIwLjYwMSw1NS4zMDgsMjMuNTUsNTkuMDUzYzIuODY5LDMuNzg1LDM5Ljc0Nyw2My4xOTcsOTguMzAzLDg2LjA3ICAgYzU4LjQ3NiwyMi44NzIsNTguNDc2LDE1LjMyMSw2OS4xMTUsMTQuMzY1YzEwLjM4LTAuOTU2LDM0LjA2OS0xMy44NjcsMzguODExLTI3LjA5NiAgIEMzNjMuMzQ1LDMwMC4zMDcsMzYzLjM0NSwyODguOTkxLDM2MS45MzEsMjg2LjYyeiIgZmlsbD0iI0ZGRkZGRiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=) center center no-repeat;
    background-size: 1.875rem auto;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
}

@media screen and (max-width: 767px) {
	.whatsapp-button {
		bottom: 0.938rem;
	}
	.whatsapp-button.whatsapp-button-left {
		left: 0.938rem !important;
	}
	.whatsapp-button.whatsapp-button-right {
		right: 0.938rem !important;
	}
}

/* Cookie Consent */
.cookieconsent-window {
	opacity: 1;
	position: fixed;
    left: 1.875rem;
    bottom: 1.875rem;
    max-width: 370.313rem;
    background-color: #121315;
    padding: 1.25rem;
    z-index: 999;
    box-shadow: 0 0.188rem 1.875rem rgb(0 0 0 / 35%);
	font-family: Helvetica, Calibri, Arial, sans-serif;
}

.cookieconsent-window .cookieconsent-message {
	display: block;
	margin: 0 0 0.938rem;
	line-height: 1.25rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

.cookieconsent-window.cookieconsent-invisible {
	opacity: 0;
}

.cookieconsent-animate.cookieconsent-revoke {
	transition: transform 1s ease;
}

.cookieconsent-animate.cookieconsent-revoke.cookieconsent-top {
	transform: translateY(-2em);
}

.cookieconsent-animate.cookieconsent-revoke.cookieconsent-bottom {
	transform: translateY(2em);
}

.cookieconsent-animate.cookieconsent-revoke.cookieconsent-active.cookieconsent-bottom,
.cookieconsent-animate.cookieconsent-revoke.cookieconsent-active.cookieconsent-top,
.cookieconsent-revoke:hover {
	transform: translateY(0);
}

.cookieconsent-grower {
	max-height: 0;
	overflow: hidden;
	transition: max-height 1s;
}

.cookieconsent-link,
.cookieconsent-revoke:hover {
	border-bottom: 0.063rem dotted rgba(255,255,255,0.85);
}

.cookieconsent-window.cookieconsent-static {
	position: static;
}

.cookieconsent-window.cookieconsent-floating {
	padding: 2em;
	max-width: 24em;
	-ms-flex-direction: column;
	flex-direction: column;
}

.cookieconsent-revoke {
	padding: .5em;
}

.cookieconsent-header {
	font-size: 1.125rem;
	font-weight: 700;
}

.cookieconsent-btn,
.cookieconsent-close,
.cookieconsent-link,
.cookieconsent-revoke {
	cursor: pointer;
}

.cookieconsent-link {
	opacity: .8;
	display: inline-block;
	padding: .2em 0 0;
	margin: 0;
}

.cookieconsent-link:hover {
	opacity: 1;
}

.cookieconsent-link:active,
.cookieconsent-link:visited {
	color: initial;
}

.cookieconsent-btn {
	display: block;
	padding: .6em .8em;
	font-size: 0.75rem;
	font-weight: 400;
	border-width: 0.125rem;
	border-style: solid;
	text-align: center;
	white-space: nowrap;
}

.cookieconsent-banner .cookieconsent-btn:last-child {
	min-width: 8.75rem;
}

.cookieconsent-highlight .cookieconsent-btn:first-child {
	background-color: transparent;
	border-color: transparent;
}

.cookieconsent-highlight .cookieconsent-btn:first-child:focus,
.cookieconsent-highlight .cookieconsent-btn:first-child:hover {
	background-color: transparent;
	text-decoration: underline;
}

.cookieconsent-close {
	display: block;
	position: absolute;
	top: .5em;
	right: .5em;
	font-size: 1.6em;
	opacity: .9;
	line-height: .75;
}

.cookieconsent-close:focus,
.cookieconsent-close:hover {
	opacity: 1;
}

.cookieconsent-revoke.cookieconsent-top {
	top: 0;
	left: 3em;
	border-bottom-left-radius: .5em;
	border-bottom-right-radius: .5em;
}

.cookieconsent-revoke.cookieconsent-bottom {
	bottom: 0;
	left: 3em;
	border-top-left-radius: .5em;
	border-top-right-radius: .5em;
}

.cookieconsent-revoke.cookieconsent-left {
	left: 3em;
	right: unset;
}

.cookieconsent-revoke.cookieconsent-right {
	right: 3em;
	left: unset;
}

.cookieconsent-top {
	top: 1em;
}

.cookieconsent-left {
	left: 1em;
}

.cookieconsent-right {
	right: 1em;
}

.cookieconsent-floating > .cookieconsent-link {
	margin-bottom: 1em;
}

.cookieconsent-floating .cookieconsent-message {
	display: block;
	margin-bottom: 1em;
}

.cookieconsent-window.cookieconsent-floating .cookieconsent-compliance {
	-ms-flex: 1;
	flex: 1;
}

.cookieconsent-banner.cookieconsent-top {
	left: 0;
	right: 0;
	top: 0;
}

.cookieconsent-btn+.cookieconsent-btn {
	margin-left: .5em;
}

@media print {
	.cookieconsent-revoke,
	.cookieconsent-window {
		display: none;
	}
}

@media screen and (max-width:900px) {
	.cookieconsent-btn {
		white-space: normal;
	}
}

@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape) {
	.cookieconsent-window {
		left: 0 !important;
	}
	.cookieconsent-window.cookieconsent-top {
		top: 0;
	}
	.cookieconsent-window.cookieconsent-bottom {
		bottom: 0;
	}
	.cookieconsent-window.cookieconsent-banner,
	.cookieconsent-window.cookieconsent-left,
	.cookieconsent-window.cookieconsent-right {
		left: 0;
		right: 0;
	}
	.cookieconsent-window.cookieconsent-banner {
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.cookieconsent-window.cookieconsent-banner .cookieconsent-compliance {
		-ms-flex: 1;
		flex: 1;
	}
	.cookieconsent-window.cookieconsent-floating {
		max-width: none;
	}
	.cookieconsent-window .cookieconsent-message {
		margin-bottom: 1em;
	}
	.cookieconsent-window.cookieconsent-banner {
		-ms-flex-align: unset;
		align-items: unset;
	}
}

.cookieconsent-floating.cookieconsent-theme-classic {
	padding: 1.2em;
}

.cookieconsent-floating.cookieconsent-type-info.cookieconsent-theme-classic .cookieconsent-compliance {
	text-align: center;
	display: inline;
	-ms-flex: none;
	flex: none;
}

.cookieconsent-theme-classic .cookieconsent-btn:last-child {
	min-width: 8.75rem;
}

.cookieconsent-floating.cookieconsent-type-info.cookieconsent-theme-classic .cookieconsent-btn {
	display: inline-block;
}

.cookieconsent-theme-edgeless.cookieconsent-window {
	padding: 0;
}

.cookieconsent-floating.cookieconsent-theme-edgeless .cookieconsent-message {
	margin: 2em 2em 1.5em;
}

.cookieconsent-banner.cookieconsent-theme-edgeless .cookieconsent-btn {
	margin: 0;
	padding: .8em 1.8em;
	height: 100%;
}

.cookieconsent-banner.cookieconsent-theme-edgeless .cookieconsent-message {
	margin-left: 1em;
}

.cookieconsent-floating.cookieconsent-theme-edgeless .cookieconsent-btn + .cookieconsent-btn {
	margin-left: 0;
}

/* Security Code */
.security-code {
	border: 0.063rem solid #dddddd;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: start;
	border-radius: .25rem;
}

.security-code img {
	max-width: 120px;
	max-height: 30px;
}

.security-code-group .input-inline {
	width: auto !important;
}

.security-code-group .input-inline:nth-child(1) {
	flex-grow: 1 !important;
}

.security-code-group .input-inline:nth-child(2) {
	flex-grow: 6 !important;
}

@-ms-viewport {
    width: device-width;
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 33.75rem;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 45rem;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 60rem;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 71.25rem;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 82.5rem;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

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

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

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

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/* Sections */
.section {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizelegibility;
	padding: 1.875rem 0;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	background-color: #ffffff;
}

.section-h-auto {
	min-height: 18.75rem;
}

.section-h-50 {
	min-height: 50vh;
}

.section-h-high {
	min-height: 75vh;
}

.section-h-full {
	min-height: 100vh;
}

@media screen and (max-width: 768px) {
    .section-h-auto {
    	height: auto;
    	min-height: 12.5rem;
    }

    .section-h-50 {
    	min-height: 25vh;
    }

    .section-h-high {
    	min-height: 37.5vh;
    }

    .section-h-full {
    	min-height: 50vh;
    }
}

.section-sm,
.section-md,
.section-lg,
.section-xl,
.section-xxl {
	padding: 3.75rem 0;
}

@media (min-width: 768px) {
	.section-md {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem;
	}
	.section-lg {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.section-xl {
		padding-top: 6.25rem;
		padding-bottom: 6.25rem;
	}
	.section-xxl {
		padding-top: 6.25rem;
		padding-bottom: 6.25rem;
	}
}

@media (min-width: 992px) {
	.section-xl {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
}

@media (min-width: 1200px) {
	.section-md {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem;
	}
	.section-lg {
		padding-top: 6.25rem;
		padding-bottom: 6.25rem;
	}
	.section-xl {
		padding-top: 8.125rem;
		padding-bottom: 8.125rem;
	}
	.section-xxl {
		padding-top: 9.375rem;
		padding-bottom: 9.375rem;
	}
}

@media (min-width: 1600px) {
	.section-xl {
		padding-top: 10.313rem;
		padding-bottom: 10.313rem;
	}
	.section-xxl {
		padding-top: 12.5rem;
		padding-bottom: 12.5rem;
	}
}

@media (min-width: 1800px) {
	.section-xl {
		padding-top: 12.5rem;
		padding-bottom: 12.5rem;
	}
	.section-xxl {
		padding-top: 18.125rem;
		padding-bottom: 18.125rem;
	}
}

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

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

.section .container {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.section.section-viewport {
	min-height: calc(100% - 2 * 7.5rem);
}

.section.section-viewport .container {
	min-height: calc(100% - 2 * 7.5rem);
}

.section.section-image-bg {
	color: #f2f2f2;
}

.section .section-box {
	background: #ffffff;
	padding: 3.75rem 2.5rem;
	overflow: hidden;
	color: #444444;
	box-shadow: 0 0.3125rem 0.875rem 0 rgba(129, 129, 129, 0.2) !important;
}

.section .section-touch {
	border-top: solid 0.3125rem #329ef7;
	z-index: 2;
}

.section img + p, .section img + h3, .section img + h4 {
	/* margin-top: 1.25rem; */
}

.section img + h1, .section img + h2 {
	/* margin-top: 2.5rem; */
}

@media screen and (min-width: 992px) {
    .section .col-fill-left {
    	width: 50%;
    	position: absolute;
    	left: 0;
    	top: 0;
    	bottom: 0;
    	background-size: cover;
    	background-position: center;
    	z-index: 1;
    }
}

.section .col-fill-left + div {
	position: relative;
	z-index: 2;
}

@media screen and (min-width: 992px) {
    .section .col-fill-right {
    	width: 50%;
    	position: absolute;
    	right: 0;
    	top: 0;
    	bottom: 0;
    	background-size: cover;
    	background-position: center;
    	z-index: 1;
    }
}

.section .col-fill-right + div {
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 992px) {
    .section .col-fill-left,
    .section .col-fill-right {
    	width: 100%;
        min-height: 15.625rem;
    	background-size: cover;
    	background-position: center;
    }
}

.section img.section-icon {
	width: auto;
	width: 3.75rem;
}

.section img.section-icon-round {
	width: auto;
	width: 3.75rem;
}

.section .row-100 {
	height: 6.25rem;
	width: 100%;
}

.section .row-50 {
	height: 3.125rem;
	width: 100%;
}

.section .row-70 {
	height: 4.375rem;
	width: 100%;
}

.section [hidden] {
	display: none !important;
}

.section hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 0.063rem solid rgba(0, 0, 0, 0.1);
}

.section mark,
.section .mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}

.section .lead {
    font-size: clamp(1rem, 0.231vw + 0.94rem, 1.125rem);
    line-height: clamp(1.8rem, 0vw + 1.8rem, 1.8rem);
    font-weight: 400;
}

/* Font-Size Dimensions {1-200} */
.font-size-1{font-size:0.0625rem;}.font-size-2{font-size:0.125rem;}.font-size-3{font-size:0.1875rem;}.font-size-4{font-size:0.25rem;}.font-size-5{font-size:0.3125rem;}.font-size-6{font-size:0.375rem;}.font-size-7{font-size:0.4375rem;}.font-size-8{font-size:0.5rem;}.font-size-9{font-size:0.5625rem;}.font-size-10{font-size:0.625rem;}.font-size-11{font-size:0.6875rem;}.font-size-12{font-size:0.75rem;}.font-size-13{font-size:0.8125rem;}.font-size-14{font-size:0.875rem;}.font-size-15{font-size:0.9375rem;}.font-size-16{font-size:1rem;}.font-size-17{font-size:1.0625rem;}.font-size-18{font-size:1.125rem;}.font-size-19{font-size:1.1875rem;}.font-size-20{font-size:1.25rem;}.font-size-21{font-size:1.3125rem;}.font-size-22{font-size:1.375rem;}.font-size-23{font-size:1.4375rem;}.font-size-24{font-size:1.5rem;}.font-size-25{font-size:1.5625rem;}.font-size-26{font-size:1.625rem;}.font-size-27{font-size:1.6875rem;}.font-size-28{font-size:1.75rem;}.font-size-29{font-size:1.8125rem;}.font-size-30{font-size:1.875rem;}.font-size-31{font-size:1.9375rem;}.font-size-32{font-size:2rem;}.font-size-33{font-size:2.0625rem;}.font-size-34{font-size:2.125rem;}.font-size-35{font-size:2.1875rem;}.font-size-36{font-size:2.25rem;}.font-size-37{font-size:2.3125rem;}.font-size-38{font-size:2.375rem;}.font-size-39{font-size:2.4375rem;}.font-size-40{font-size:2.5rem;}.font-size-41{font-size:2.5625rem;}.font-size-42{font-size:2.625rem;}.font-size-43{font-size:2.6875rem;}.font-size-44{font-size:2.75rem;}.font-size-45{font-size:2.8125rem;}.font-size-46{font-size:2.875rem;}.font-size-47{font-size:2.9375rem;}.font-size-48{font-size:3rem;}.font-size-49{font-size:3.0625rem;}.font-size-50{font-size:3.125rem;}.font-size-51{font-size:3.1875rem;}.font-size-52{font-size:3.25rem;}.font-size-53{font-size:3.3125rem;}.font-size-54{font-size:3.375rem;}.font-size-55{font-size:3.4375rem;}.font-size-56{font-size:3.5rem;}.font-size-57{font-size:3.5625rem;}.font-size-58{font-size:3.625rem;}.font-size-59{font-size:3.6875rem;}.font-size-60{font-size:3.75rem;}.font-size-61{font-size:3.8125rem;}.font-size-62{font-size:3.875rem;}.font-size-63{font-size:3.9375rem;}.font-size-64{font-size:4rem;}.font-size-65{font-size:4.0625rem;}.font-size-66{font-size:4.125rem;}.font-size-67{font-size:4.1875rem;}.font-size-68{font-size:4.25rem;}.font-size-69{font-size:4.3125rem;}.font-size-70{font-size:4.375rem;}.font-size-71{font-size:4.4375rem;}.font-size-72{font-size:4.5rem;}.font-size-73{font-size:4.5625rem;}.font-size-74{font-size:4.625rem;}.font-size-75{font-size:4.6875rem;}.font-size-76{font-size:4.75rem;}.font-size-77{font-size:4.8125rem;}.font-size-78{font-size:4.875rem;}.font-size-79{font-size:4.9375rem;}.font-size-80{font-size:5rem;}.font-size-81{font-size:5.0625rem;}.font-size-82{font-size:5.125rem;}.font-size-83{font-size:5.1875rem;}.font-size-84{font-size:5.25rem;}.font-size-85{font-size:5.3125rem;}.font-size-86{font-size:5.375rem;}.font-size-87{font-size:5.4375rem;}.font-size-88{font-size:5.5rem;}.font-size-89{font-size:5.5625rem;}.font-size-90{font-size:5.625rem;}.font-size-91{font-size:5.6875rem;}.font-size-92{font-size:5.75rem;}.font-size-93{font-size:5.8125rem;}.font-size-94{font-size:5.875rem;}.font-size-95{font-size:5.9375rem;}.font-size-96{font-size:6rem;}.font-size-97{font-size:6.0625rem;}.font-size-98{font-size:6.125rem;}.font-size-99{font-size:6.1875rem;}.font-size-100{font-size:6.25rem;}.font-size-101{font-size:6.3125rem;}.font-size-102{font-size:6.375rem;}.font-size-103{font-size:6.4375rem;}.font-size-104{font-size:6.5rem;}.font-size-105{font-size:6.5625rem;}.font-size-106{font-size:6.625rem;}.font-size-107{font-size:6.6875rem;}.font-size-108{font-size:6.75rem;}.font-size-109{font-size:6.8125rem;}.font-size-110{font-size:6.875rem;}.font-size-111{font-size:6.9375rem;}.font-size-112{font-size:7rem;}.font-size-113{font-size:7.0625rem;}.font-size-114{font-size:7.125rem;}.font-size-115{font-size:7.1875rem;}.font-size-116{font-size:7.25rem;}.font-size-117{font-size:7.3125rem;}.font-size-118{font-size:7.375rem;}.font-size-119{font-size:7.4375rem;}.font-size-120{font-size:7.5rem;}.font-size-121{font-size:7.5625rem;}.font-size-122{font-size:7.625rem;}.font-size-123{font-size:7.6875rem;}.font-size-124{font-size:7.75rem;}.font-size-125{font-size:7.8125rem;}.font-size-126{font-size:7.875rem;}.font-size-127{font-size:7.9375rem;}.font-size-128{font-size:8rem;}.font-size-129{font-size:8.0625rem;}.font-size-130{font-size:8.125rem;}.font-size-131{font-size:8.1875rem;}.font-size-132{font-size:8.25rem;}.font-size-133{font-size:8.3125rem;}.font-size-134{font-size:8.375rem;}.font-size-135{font-size:8.4375rem;}.font-size-136{font-size:8.5rem;}.font-size-137{font-size:8.5625rem;}.font-size-138{font-size:8.625rem;}.font-size-139{font-size:8.6875rem;}.font-size-140{font-size:8.75rem;}.font-size-141{font-size:8.8125rem;}.font-size-142{font-size:8.875rem;}.font-size-143{font-size:8.9375rem;}.font-size-144{font-size:9rem;}.font-size-145{font-size:9.0625rem;}.font-size-146{font-size:9.125rem;}.font-size-147{font-size:9.1875rem;}.font-size-148{font-size:9.25rem;}.font-size-149{font-size:9.3125rem;}.font-size-150{font-size:9.375rem;}.font-size-151{font-size:9.4375rem;}.font-size-152{font-size:9.5rem;}.font-size-153{font-size:9.5625rem;}.font-size-154{font-size:9.625rem;}.font-size-155{font-size:9.6875rem;}.font-size-156{font-size:9.75rem;}.font-size-157{font-size:9.8125rem;}.font-size-158{font-size:9.875rem;}.font-size-159{font-size:9.9375rem;}.font-size-160{font-size:10rem;}.font-size-161{font-size:10.0625rem;}.font-size-162{font-size:10.125rem;}.font-size-163{font-size:10.1875rem;}.font-size-164{font-size:10.25rem;}.font-size-165{font-size:10.3125rem;}.font-size-166{font-size:10.375rem;}.font-size-167{font-size:10.4375rem;}.font-size-168{font-size:10.5rem;}.font-size-169{font-size:10.5625rem;}.font-size-170{font-size:10.625rem;}.font-size-171{font-size:10.6875rem;}.font-size-172{font-size:10.75rem;}.font-size-173{font-size:10.8125rem;}.font-size-174{font-size:10.875rem;}.font-size-175{font-size:10.9375rem;}.font-size-176{font-size:11rem;}.font-size-177{font-size:11.0625rem;}.font-size-178{font-size:11.125rem;}.font-size-179{font-size:11.1875rem;}.font-size-180{font-size:11.25rem;}.font-size-181{font-size:11.3125rem;}.font-size-182{font-size:11.375rem;}.font-size-183{font-size:11.4375rem;}.font-size-184{font-size:11.5rem;}.font-size-185{font-size:11.5625rem;}.font-size-186{font-size:11.625rem;}.font-size-187{font-size:11.6875rem;}.font-size-188{font-size:11.75rem;}.font-size-189{font-size:11.8125rem;}.font-size-190{font-size:11.875rem;}.font-size-191{font-size:11.9375rem;}.font-size-192{font-size:12rem;}.font-size-193{font-size:12.0625rem;}.font-size-194{font-size:12.125rem;}.font-size-195{font-size:12.1875rem;}.font-size-196{font-size:12.25rem;}.font-size-197{font-size:12.3125rem;}.font-size-198{font-size:12.375rem;}.font-size-199{font-size:12.4375rem;}.font-size-200{font-size:12.5rem;}

/* Line-Height Dimensions {1-300} */
.line-height-1{line-height:0.0625rem;}.line-height-2{line-height:0.125rem;}.line-height-3{line-height:0.1875rem;}.line-height-4{line-height:0.25rem;}.line-height-5{line-height:0.3125rem;}.line-height-6{line-height:0.375rem;}.line-height-7{line-height:0.4375rem;}.line-height-8{line-height:0.5rem;}.line-height-9{line-height:0.5625rem;}.line-height-10{line-height:0.625rem;}.line-height-11{line-height:0.6875rem;}.line-height-12{line-height:0.75rem;}.line-height-13{line-height:0.8125rem;}.line-height-14{line-height:0.875rem;}.line-height-15{line-height:0.9375rem;}.line-height-16{line-height:1rem;}.line-height-17{line-height:1.0625rem;}.line-height-18{line-height:1.125rem;}.line-height-19{line-height:1.1875rem;}.line-height-20{line-height:1.25rem;}.line-height-21{line-height:1.3125rem;}.line-height-22{line-height:1.375rem;}.line-height-23{line-height:1.4375rem;}.line-height-24{line-height:1.5rem;}.line-height-25{line-height:1.5625rem;}.line-height-26{line-height:1.625rem;}.line-height-27{line-height:1.6875rem;}.line-height-28{line-height:1.75rem;}.line-height-29{line-height:1.8125rem;}.line-height-30{line-height:1.875rem;}.line-height-31{line-height:1.9375rem;}.line-height-32{line-height:2rem;}.line-height-33{line-height:2.0625rem;}.line-height-34{line-height:2.125rem;}.line-height-35{line-height:2.1875rem;}.line-height-36{line-height:2.25rem;}.line-height-37{line-height:2.3125rem;}.line-height-38{line-height:2.375rem;}.line-height-39{line-height:2.4375rem;}.line-height-40{line-height:2.5rem;}.line-height-41{line-height:2.5625rem;}.line-height-42{line-height:2.625rem;}.line-height-43{line-height:2.6875rem;}.line-height-44{line-height:2.75rem;}.line-height-45{line-height:2.8125rem;}.line-height-46{line-height:2.875rem;}.line-height-47{line-height:2.9375rem;}.line-height-48{line-height:3rem;}.line-height-49{line-height:3.0625rem;}.line-height-50{line-height:3.125rem;}.line-height-51{line-height:3.1875rem;}.line-height-52{line-height:3.25rem;}.line-height-53{line-height:3.3125rem;}.line-height-54{line-height:3.375rem;}.line-height-55{line-height:3.4375rem;}.line-height-56{line-height:3.5rem;}.line-height-57{line-height:3.5625rem;}.line-height-58{line-height:3.625rem;}.line-height-59{line-height:3.6875rem;}.line-height-60{line-height:3.75rem;}.line-height-61{line-height:3.8125rem;}.line-height-62{line-height:3.875rem;}.line-height-63{line-height:3.9375rem;}.line-height-64{line-height:4rem;}.line-height-65{line-height:4.0625rem;}.line-height-66{line-height:4.125rem;}.line-height-67{line-height:4.1875rem;}.line-height-68{line-height:4.25rem;}.line-height-69{line-height:4.3125rem;}.line-height-70{line-height:4.375rem;}.line-height-71{line-height:4.4375rem;}.line-height-72{line-height:4.5rem;}.line-height-73{line-height:4.5625rem;}.line-height-74{line-height:4.625rem;}.line-height-75{line-height:4.6875rem;}.line-height-76{line-height:4.75rem;}.line-height-77{line-height:4.8125rem;}.line-height-78{line-height:4.875rem;}.line-height-79{line-height:4.9375rem;}.line-height-80{line-height:5rem;}.line-height-81{line-height:5.0625rem;}.line-height-82{line-height:5.125rem;}.line-height-83{line-height:5.1875rem;}.line-height-84{line-height:5.25rem;}.line-height-85{line-height:5.3125rem;}.line-height-86{line-height:5.375rem;}.line-height-87{line-height:5.4375rem;}.line-height-88{line-height:5.5rem;}.line-height-89{line-height:5.5625rem;}.line-height-90{line-height:5.625rem;}.line-height-91{line-height:5.6875rem;}.line-height-92{line-height:5.75rem;}.line-height-93{line-height:5.8125rem;}.line-height-94{line-height:5.875rem;}.line-height-95{line-height:5.9375rem;}.line-height-96{line-height:6rem;}.line-height-97{line-height:6.0625rem;}.line-height-98{line-height:6.125rem;}.line-height-99{line-height:6.1875rem;}.line-height-100{line-height:6.25rem;}.line-height-101{line-height:6.3125rem;}.line-height-102{line-height:6.375rem;}.line-height-103{line-height:6.4375rem;}.line-height-104{line-height:6.5rem;}.line-height-105{line-height:6.5625rem;}.line-height-106{line-height:6.625rem;}.line-height-107{line-height:6.6875rem;}.line-height-108{line-height:6.75rem;}.line-height-109{line-height:6.8125rem;}.line-height-110{line-height:6.875rem;}.line-height-111{line-height:6.9375rem;}.line-height-112{line-height:7rem;}.line-height-113{line-height:7.0625rem;}.line-height-114{line-height:7.125rem;}.line-height-115{line-height:7.1875rem;}.line-height-116{line-height:7.25rem;}.line-height-117{line-height:7.3125rem;}.line-height-118{line-height:7.375rem;}.line-height-119{line-height:7.4375rem;}.line-height-120{line-height:7.5rem;}.line-height-121{line-height:7.5625rem;}.line-height-122{line-height:7.625rem;}.line-height-123{line-height:7.6875rem;}.line-height-124{line-height:7.75rem;}.line-height-125{line-height:7.8125rem;}.line-height-126{line-height:7.875rem;}.line-height-127{line-height:7.9375rem;}.line-height-128{line-height:8rem;}.line-height-129{line-height:8.0625rem;}.line-height-130{line-height:8.125rem;}.line-height-131{line-height:8.1875rem;}.line-height-132{line-height:8.25rem;}.line-height-133{line-height:8.3125rem;}.line-height-134{line-height:8.375rem;}.line-height-135{line-height:8.4375rem;}.line-height-136{line-height:8.5rem;}.line-height-137{line-height:8.5625rem;}.line-height-138{line-height:8.625rem;}.line-height-139{line-height:8.6875rem;}.line-height-140{line-height:8.75rem;}.line-height-141{line-height:8.8125rem;}.line-height-142{line-height:8.875rem;}.line-height-143{line-height:8.9375rem;}.line-height-144{line-height:9rem;}.line-height-145{line-height:9.0625rem;}.line-height-146{line-height:9.125rem;}.line-height-147{line-height:9.1875rem;}.line-height-148{line-height:9.25rem;}.line-height-149{line-height:9.3125rem;}.line-height-150{line-height:9.375rem;}.line-height-151{line-height:9.4375rem;}.line-height-152{line-height:9.5rem;}.line-height-153{line-height:9.5625rem;}.line-height-154{line-height:9.625rem;}.line-height-155{line-height:9.6875rem;}.line-height-156{line-height:9.75rem;}.line-height-157{line-height:9.8125rem;}.line-height-158{line-height:9.875rem;}.line-height-159{line-height:9.9375rem;}.line-height-160{line-height:10rem;}.line-height-161{line-height:10.0625rem;}.line-height-162{line-height:10.125rem;}.line-height-163{line-height:10.1875rem;}.line-height-164{line-height:10.25rem;}.line-height-165{line-height:10.3125rem;}.line-height-166{line-height:10.375rem;}.line-height-167{line-height:10.4375rem;}.line-height-168{line-height:10.5rem;}.line-height-169{line-height:10.5625rem;}.line-height-170{line-height:10.625rem;}.line-height-171{line-height:10.6875rem;}.line-height-172{line-height:10.75rem;}.line-height-173{line-height:10.8125rem;}.line-height-174{line-height:10.875rem;}.line-height-175{line-height:10.9375rem;}.line-height-176{line-height:11rem;}.line-height-177{line-height:11.0625rem;}.line-height-178{line-height:11.125rem;}.line-height-179{line-height:11.1875rem;}.line-height-180{line-height:11.25rem;}.line-height-181{line-height:11.3125rem;}.line-height-182{line-height:11.375rem;}.line-height-183{line-height:11.4375rem;}.line-height-184{line-height:11.5rem;}.line-height-185{line-height:11.5625rem;}.line-height-186{line-height:11.625rem;}.line-height-187{line-height:11.6875rem;}.line-height-188{line-height:11.75rem;}.line-height-189{line-height:11.8125rem;}.line-height-190{line-height:11.875rem;}.line-height-191{line-height:11.9375rem;}.line-height-192{line-height:12rem;}.line-height-193{line-height:12.0625rem;}.line-height-194{line-height:12.125rem;}.line-height-195{line-height:12.1875rem;}.line-height-196{line-height:12.25rem;}.line-height-197{line-height:12.3125rem;}.line-height-198{line-height:12.375rem;}.line-height-199{line-height:12.4375rem;}.line-height-200{line-height:12.5rem;}.line-height-201{line-height:12.5625rem;}.line-height-202{line-height:12.625rem;}.line-height-203{line-height:12.6875rem;}.line-height-204{line-height:12.75rem;}.line-height-205{line-height:12.8125rem;}.line-height-206{line-height:12.875rem;}.line-height-207{line-height:12.9375rem;}.line-height-208{line-height:13rem;}.line-height-209{line-height:13.0625rem;}.line-height-210{line-height:13.125rem;}.line-height-211{line-height:13.1875rem;}.line-height-212{line-height:13.25rem;}.line-height-213{line-height:13.3125rem;}.line-height-214{line-height:13.375rem;}.line-height-215{line-height:13.4375rem;}.line-height-216{line-height:13.5rem;}.line-height-217{line-height:13.5625rem;}.line-height-218{line-height:13.625rem;}.line-height-219{line-height:13.6875rem;}.line-height-220{line-height:13.75rem;}.line-height-221{line-height:13.8125rem;}.line-height-222{line-height:13.875rem;}.line-height-223{line-height:13.9375rem;}.line-height-224{line-height:14rem;}.line-height-225{line-height:14.0625rem;}.line-height-226{line-height:14.125rem;}.line-height-227{line-height:14.1875rem;}.line-height-228{line-height:14.25rem;}.line-height-229{line-height:14.3125rem;}.line-height-230{line-height:14.375rem;}.line-height-231{line-height:14.4375rem;}.line-height-232{line-height:14.5rem;}.line-height-233{line-height:14.5625rem;}.line-height-234{line-height:14.625rem;}.line-height-235{line-height:14.6875rem;}.line-height-236{line-height:14.75rem;}.line-height-237{line-height:14.8125rem;}.line-height-238{line-height:14.875rem;}.line-height-239{line-height:14.9375rem;}.line-height-240{line-height:15rem;}.line-height-241{line-height:15.0625rem;}.line-height-242{line-height:15.125rem;}.line-height-243{line-height:15.1875rem;}.line-height-244{line-height:15.25rem;}.line-height-245{line-height:15.3125rem;}.line-height-246{line-height:15.375rem;}.line-height-247{line-height:15.4375rem;}.line-height-248{line-height:15.5rem;}.line-height-249{line-height:15.5625rem;}.line-height-250{line-height:15.625rem;}.line-height-251{line-height:15.6875rem;}.line-height-252{line-height:15.75rem;}.line-height-253{line-height:15.8125rem;}.line-height-254{line-height:15.875rem;}.line-height-255{line-height:15.9375rem;}.line-height-256{line-height:16rem;}.line-height-257{line-height:16.0625rem;}.line-height-258{line-height:16.125rem;}.line-height-259{line-height:16.1875rem;}.line-height-260{line-height:16.25rem;}.line-height-261{line-height:16.3125rem;}.line-height-262{line-height:16.375rem;}.line-height-263{line-height:16.4375rem;}.line-height-264{line-height:16.5rem;}.line-height-265{line-height:16.5625rem;}.line-height-266{line-height:16.625rem;}.line-height-267{line-height:16.6875rem;}.line-height-268{line-height:16.75rem;}.line-height-269{line-height:16.8125rem;}.line-height-270{line-height:16.875rem;}.line-height-271{line-height:16.9375rem;}.line-height-272{line-height:17rem;}.line-height-273{line-height:17.0625rem;}.line-height-274{line-height:17.125rem;}.line-height-275{line-height:17.1875rem;}.line-height-276{line-height:17.25rem;}.line-height-277{line-height:17.3125rem;}.line-height-278{line-height:17.375rem;}.line-height-279{line-height:17.4375rem;}.line-height-280{line-height:17.5rem;}.line-height-281{line-height:17.5625rem;}.line-height-282{line-height:17.625rem;}.line-height-283{line-height:17.6875rem;}.line-height-284{line-height:17.75rem;}.line-height-285{line-height:17.8125rem;}.line-height-286{line-height:17.875rem;}.line-height-287{line-height:17.9375rem;}.line-height-288{line-height:18rem;}.line-height-289{line-height:18.0625rem;}.line-height-290{line-height:18.125rem;}.line-height-291{line-height:18.1875rem;}.line-height-292{line-height:18.25rem;}.line-height-293{line-height:18.3125rem;}.line-height-294{line-height:18.375rem;}.line-height-295{line-height:18.4375rem;}.line-height-296{line-height:18.5rem;}.line-height-297{line-height:18.5625rem;}.line-height-298{line-height:18.625rem;}.line-height-299{line-height:18.6875rem;}.line-height-300{line-height:18.75rem;}

/* Spacer Dimensions {1-300} */
.spacer-1{height:0.0625rem;}.spacer-2{height:0.125rem;}.spacer-3{height:0.1875rem;}.spacer-4{height:0.25rem;}.spacer-5{height:0.3125rem;}.spacer-6{height:0.375rem;}.spacer-7{height:0.4375rem;}.spacer-8{height:0.5rem;}.spacer-9{height:0.5625rem;}.spacer-10{height:0.625rem;}.spacer-11{height:0.6875rem;}.spacer-12{height:0.75rem;}.spacer-13{height:0.8125rem;}.spacer-14{height:0.875rem;}.spacer-15{height:0.9375rem;}.spacer-16{height:1rem;}.spacer-17{height:1.0625rem;}.spacer-18{height:1.125rem;}.spacer-19{height:1.1875rem;}.spacer-20{height:1.25rem;}.spacer-21{height:1.3125rem;}.spacer-22{height:1.375rem;}.spacer-23{height:1.4375rem;}.spacer-24{height:1.5rem;}.spacer-25{height:1.5625rem;}.spacer-26{height:1.625rem;}.spacer-27{height:1.6875rem;}.spacer-28{height:1.75rem;}.spacer-29{height:1.8125rem;}.spacer-30{height:1.875rem;}.spacer-31{height:1.9375rem;}.spacer-32{height:2rem;}.spacer-33{height:2.0625rem;}.spacer-34{height:2.125rem;}.spacer-35{height:2.1875rem;}.spacer-36{height:2.25rem;}.spacer-37{height:2.3125rem;}.spacer-38{height:2.375rem;}.spacer-39{height:2.4375rem;}.spacer-40{height:2.5rem;}.spacer-41{height:2.5625rem;}.spacer-42{height:2.625rem;}.spacer-43{height:2.6875rem;}.spacer-44{height:2.75rem;}.spacer-45{height:2.8125rem;}.spacer-46{height:2.875rem;}.spacer-47{height:2.9375rem;}.spacer-48{height:3rem;}.spacer-49{height:3.0625rem;}.spacer-50{height:3.125rem;}.spacer-51{height:3.1875rem;}.spacer-52{height:3.25rem;}.spacer-53{height:3.3125rem;}.spacer-54{height:3.375rem;}.spacer-55{height:3.4375rem;}.spacer-56{height:3.5rem;}.spacer-57{height:3.5625rem;}.spacer-58{height:3.625rem;}.spacer-59{height:3.6875rem;}.spacer-60{height:3.75rem;}.spacer-61{height:3.8125rem;}.spacer-62{height:3.875rem;}.spacer-63{height:3.9375rem;}.spacer-64{height:4rem;}.spacer-65{height:4.0625rem;}.spacer-66{height:4.125rem;}.spacer-67{height:4.1875rem;}.spacer-68{height:4.25rem;}.spacer-69{height:4.3125rem;}.spacer-70{height:4.375rem;}.spacer-71{height:4.4375rem;}.spacer-72{height:4.5rem;}.spacer-73{height:4.5625rem;}.spacer-74{height:4.625rem;}.spacer-75{height:4.6875rem;}.spacer-76{height:4.75rem;}.spacer-77{height:4.8125rem;}.spacer-78{height:4.875rem;}.spacer-79{height:4.9375rem;}.spacer-80{height:5rem;}.spacer-81{height:5.0625rem;}.spacer-82{height:5.125rem;}.spacer-83{height:5.1875rem;}.spacer-84{height:5.25rem;}.spacer-85{height:5.3125rem;}.spacer-86{height:5.375rem;}.spacer-87{height:5.4375rem;}.spacer-88{height:5.5rem;}.spacer-89{height:5.5625rem;}.spacer-90{height:5.625rem;}.spacer-91{height:5.6875rem;}.spacer-92{height:5.75rem;}.spacer-93{height:5.8125rem;}.spacer-94{height:5.875rem;}.spacer-95{height:5.9375rem;}.spacer-96{height:6rem;}.spacer-97{height:6.0625rem;}.spacer-98{height:6.125rem;}.spacer-99{height:6.1875rem;}.spacer-100{height:6.25rem;}.spacer-101{height:6.3125rem;}.spacer-102{height:6.375rem;}.spacer-103{height:6.4375rem;}.spacer-104{height:6.5rem;}.spacer-105{height:6.5625rem;}.spacer-106{height:6.625rem;}.spacer-107{height:6.6875rem;}.spacer-108{height:6.75rem;}.spacer-109{height:6.8125rem;}.spacer-110{height:6.875rem;}.spacer-111{height:6.9375rem;}.spacer-112{height:7rem;}.spacer-113{height:7.0625rem;}.spacer-114{height:7.125rem;}.spacer-115{height:7.1875rem;}.spacer-116{height:7.25rem;}.spacer-117{height:7.3125rem;}.spacer-118{height:7.375rem;}.spacer-119{height:7.4375rem;}.spacer-120{height:7.5rem;}.spacer-121{height:7.5625rem;}.spacer-122{height:7.625rem;}.spacer-123{height:7.6875rem;}.spacer-124{height:7.75rem;}.spacer-125{height:7.8125rem;}.spacer-126{height:7.875rem;}.spacer-127{height:7.9375rem;}.spacer-128{height:8rem;}.spacer-129{height:8.0625rem;}.spacer-130{height:8.125rem;}.spacer-131{height:8.1875rem;}.spacer-132{height:8.25rem;}.spacer-133{height:8.3125rem;}.spacer-134{height:8.375rem;}.spacer-135{height:8.4375rem;}.spacer-136{height:8.5rem;}.spacer-137{height:8.5625rem;}.spacer-138{height:8.625rem;}.spacer-139{height:8.6875rem;}.spacer-140{height:8.75rem;}.spacer-141{height:8.8125rem;}.spacer-142{height:8.875rem;}.spacer-143{height:8.9375rem;}.spacer-144{height:9rem;}.spacer-145{height:9.0625rem;}.spacer-146{height:9.125rem;}.spacer-147{height:9.1875rem;}.spacer-148{height:9.25rem;}.spacer-149{height:9.3125rem;}.spacer-150{height:9.375rem;}.spacer-151{height:9.4375rem;}.spacer-152{height:9.5rem;}.spacer-153{height:9.5625rem;}.spacer-154{height:9.625rem;}.spacer-155{height:9.6875rem;}.spacer-156{height:9.75rem;}.spacer-157{height:9.8125rem;}.spacer-158{height:9.875rem;}.spacer-159{height:9.9375rem;}.spacer-160{height:10rem;}.spacer-161{height:10.0625rem;}.spacer-162{height:10.125rem;}.spacer-163{height:10.1875rem;}.spacer-164{height:10.25rem;}.spacer-165{height:10.3125rem;}.spacer-166{height:10.375rem;}.spacer-167{height:10.4375rem;}.spacer-168{height:10.5rem;}.spacer-169{height:10.5625rem;}.spacer-170{height:10.625rem;}.spacer-171{height:10.6875rem;}.spacer-172{height:10.75rem;}.spacer-173{height:10.8125rem;}.spacer-174{height:10.875rem;}.spacer-175{height:10.9375rem;}.spacer-176{height:11rem;}.spacer-177{height:11.0625rem;}.spacer-178{height:11.125rem;}.spacer-179{height:11.1875rem;}.spacer-180{height:11.25rem;}.spacer-181{height:11.3125rem;}.spacer-182{height:11.375rem;}.spacer-183{height:11.4375rem;}.spacer-184{height:11.5rem;}.spacer-185{height:11.5625rem;}.spacer-186{height:11.625rem;}.spacer-187{height:11.6875rem;}.spacer-188{height:11.75rem;}.spacer-189{height:11.8125rem;}.spacer-190{height:11.875rem;}.spacer-191{height:11.9375rem;}.spacer-192{height:12rem;}.spacer-193{height:12.0625rem;}.spacer-194{height:12.125rem;}.spacer-195{height:12.1875rem;}.spacer-196{height:12.25rem;}.spacer-197{height:12.3125rem;}.spacer-198{height:12.375rem;}.spacer-199{height:12.4375rem;}.spacer-200{height:12.5rem;}.spacer-201{height:12.5625rem;}.spacer-202{height:12.625rem;}.spacer-203{height:12.6875rem;}.spacer-204{height:12.75rem;}.spacer-205{height:12.8125rem;}.spacer-206{height:12.875rem;}.spacer-207{height:12.9375rem;}.spacer-208{height:13rem;}.spacer-209{height:13.0625rem;}.spacer-210{height:13.125rem;}.spacer-211{height:13.1875rem;}.spacer-212{height:13.25rem;}.spacer-213{height:13.3125rem;}.spacer-214{height:13.375rem;}.spacer-215{height:13.4375rem;}.spacer-216{height:13.5rem;}.spacer-217{height:13.5625rem;}.spacer-218{height:13.625rem;}.spacer-219{height:13.6875rem;}.spacer-220{height:13.75rem;}.spacer-221{height:13.8125rem;}.spacer-222{height:13.875rem;}.spacer-223{height:13.9375rem;}.spacer-224{height:14rem;}.spacer-225{height:14.0625rem;}.spacer-226{height:14.125rem;}.spacer-227{height:14.1875rem;}.spacer-228{height:14.25rem;}.spacer-229{height:14.3125rem;}.spacer-230{height:14.375rem;}.spacer-231{height:14.4375rem;}.spacer-232{height:14.5rem;}.spacer-233{height:14.5625rem;}.spacer-234{height:14.625rem;}.spacer-235{height:14.6875rem;}.spacer-236{height:14.75rem;}.spacer-237{height:14.8125rem;}.spacer-238{height:14.875rem;}.spacer-239{height:14.9375rem;}.spacer-240{height:15rem;}.spacer-241{height:15.0625rem;}.spacer-242{height:15.125rem;}.spacer-243{height:15.1875rem;}.spacer-244{height:15.25rem;}.spacer-245{height:15.3125rem;}.spacer-246{height:15.375rem;}.spacer-247{height:15.4375rem;}.spacer-248{height:15.5rem;}.spacer-249{height:15.5625rem;}.spacer-250{height:15.625rem;}.spacer-251{height:15.6875rem;}.spacer-252{height:15.75rem;}.spacer-253{height:15.8125rem;}.spacer-254{height:15.875rem;}.spacer-255{height:15.9375rem;}.spacer-256{height:16rem;}.spacer-257{height:16.0625rem;}.spacer-258{height:16.125rem;}.spacer-259{height:16.1875rem;}.spacer-260{height:16.25rem;}.spacer-261{height:16.3125rem;}.spacer-262{height:16.375rem;}.spacer-263{height:16.4375rem;}.spacer-264{height:16.5rem;}.spacer-265{height:16.5625rem;}.spacer-266{height:16.625rem;}.spacer-267{height:16.6875rem;}.spacer-268{height:16.75rem;}.spacer-269{height:16.8125rem;}.spacer-270{height:16.875rem;}.spacer-271{height:16.9375rem;}.spacer-272{height:17rem;}.spacer-273{height:17.0625rem;}.spacer-274{height:17.125rem;}.spacer-275{height:17.1875rem;}.spacer-276{height:17.25rem;}.spacer-277{height:17.3125rem;}.spacer-278{height:17.375rem;}.spacer-279{height:17.4375rem;}.spacer-280{height:17.5rem;}.spacer-281{height:17.5625rem;}.spacer-282{height:17.625rem;}.spacer-283{height:17.6875rem;}.spacer-284{height:17.75rem;}.spacer-285{height:17.8125rem;}.spacer-286{height:17.875rem;}.spacer-287{height:17.9375rem;}.spacer-288{height:18rem;}.spacer-289{height:18.0625rem;}.spacer-290{height:18.125rem;}.spacer-291{height:18.1875rem;}.spacer-292{height:18.25rem;}.spacer-293{height:18.3125rem;}.spacer-294{height:18.375rem;}.spacer-295{height:18.4375rem;}.spacer-296{height:18.5rem;}.spacer-297{height:18.5625rem;}.spacer-298{height:18.625rem;}.spacer-299{height:18.6875rem;}.spacer-300{height:18.75rem;}

/*
var max = 301;
var text = '';
for (var i = 1; i < max; i++) {
    text += '.margin-horizontal-' + i + '{margin-left:' + ream.get('font').remCalc(i) + ';margin-right:' + ream.get('font').remCalc(i) + '}';
}
console.log(text);
*/

/* Cursor */
.cursor-wait { cursor:wait; }
.cursor-pointer { cursor:pointer; }
.cursor-default { cursor:default; }
.cursor-move { cursor:move; }

/* Helper Classes */
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.uppercase { text-transform: uppercase !important; }
.float-left { float: left; }
.float-right { float: right; }
.float-none { float: none; }
.position-relative { position: relative; }
.position-fixed { position: fixed; }
.position-absolute { position: absolute; }
.border-solid { border: 0.063rem solid #e6e6e6; }
.border-dashed { border: 0.063rem dashed #e6e6e6; }
.no-margin { margin: 0 !important; }
.no-margin-left { margin-left: 0 !important; }
.no-margin-right { margin-right: 0 !important; }
.no-margin-top { margin-top: 0 !important; }
.no-margin-bottom { margin-bottom: 0 !important; }
.no-padding { padding: 0 !important; }
.no-padding-left { padding-left: 0 !important; }
.no-padding-right { padding-right: 0 !important; }
.no-padding-top { padding-top: 0 !important; }
.no-padding-bottom { padding-bottom: 0 !important; }
.no-border { border: none !important; }
.no-top-border { border-top: none !important; }
.no-bottom-border { border-bottom: none !important; }
.border-bottom-divider { border-bottom: 0.063rem solid #A0A0A0; }
.no-box-shadow { box-shadow: none !important; }
.display-none { display: none; }
.display-block { display: block; }
.display-inline { display: inline; }
.display-inline-block { display: -moz-inline-stack !important; display: inline-block !important; *display: inline !important; zoom:1 !important; }
.center-block { display: block; margin-right: auto; margin-left: auto; }
.visibility-visible { visibility:visible; }
.visibility-hidden { visibility:hidden; }
.font-weight-bold { font-weight: 700 !important; }
.font-weight-semibold { font-weight: 600 !important; }
.font-weight-medium { font-weight: 500 !important; }
.font-weight-normal { font-weight: 400 !important; }
.font-weight-light { font-weight: 300 !important; }
.font-style-italic { font-style: italic; }
.text-decoration-none { text-decoration: none; }
.text-decoration-line-through { text-decoration: line-through; }
.text-decoration-underline { text-decoration: underline; }
.text-decoration-through { text-decoration: through; }
.text-uppercase { text-transform: uppercase!important; }
.text-muted { color: #798087!important; }
.text-custom { color: #64b0f2; }
.text-primary { color: #1f28f7 !important; }
.text-success { color: #8dc63f !important; }
.text-info { color: #40bbea !important; }
.text-warning { color: #ffba00 !important; }
.text-danger { color: #e33244 !important; }
.text-purple { color: #673ab7; }
.text-pink { color: #ff7aa3; }
.text-dark { color: #383838; }
.text-white { color: #ffffff; }
.bg-primary { background-color: #1f28f7; }
.bg-success { background-color: #8dc63f; }
.bg-info { background-color: #40bbea; }
.bg-warning { background-color: #ffba00; }
.bg-danger { background-color: #e33244; }
.bg-purple { background-color: #673ab7; }
.bg-pink { background-color: #ff7aa3; }
.bg-dark { background-color: #2b3d51; }
.no-cursor { cursor: default; }
.hide { display: none; }
.hidden { left: -99999px; position: absolute !important; }
.antialiased { -webkit-font-smoothing: antialiased; }
.center-block { display: block;margin-left: auto;margin-right: auto; }
.img-circle {border-radius: 50%;}
.border-radius{border-radius: .25rem;}
.box-shadow {box-shadow: 0 0.313rem 1.25rem rgba(0, 0, 0, 0.05);}
a.noTransition {-moz-transition: none;-webkit-transition: none;-o-transition: color 0 ease-in;transition: none;}
p {margin:0 0 0.938rem;line-height:1.8;font-size:1rem;font-weight:400;}
p:last-child{margin-bottom:0 !important;}
h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,
.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,
h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,
.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small {display: block; font-weight: normal; color: #777;}
h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small {font-size: 65%;}
h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small {font-size: 75%;}
hr {border: 0; border-top: 0.063rem solid #A0A0A0;}
div.clear {clear:both;}
.no-overflow{overflow: initial !important;}
.clearfix:before,.clearfix:after{content: " ";display: table}.clearfix:after{clear: both}
.first-child {margin-top: 0 !important;}
.last-child {margin-bottom: 0 !important;}
.vertical-middle{display:table;}
.vertical-middle-child{display:table-cell;vertical-align:middle;}
.image-center{position:absolute;top:0;right:0;bottom:0;left:0;display:inline-block;border:none;margin:auto;}
ul.list-style{margin:0 0 0.625rem 1.125rem;}
ul.list-style.list-style-disc{list-style-type:disc;}
ul.list-style li{margin:0 0 0.625rem 0;}
.hover-scale {transition: 0.2s linear;}
.hover-scale:hover {transform: scale(1.02);}
.grayscale {filter: grayscale(1);}
.grayscale,.hover-grayscale {transition: 0.2s linear;}
.hover-grayscale:hover {filter: grayscale(1);}
.hover-ungrayscale:hover {filter: grayscale(0);}

/* Image Position */
img.alignleft {
    float: left;
    margin-right: 0.938rem;
    margin-bottom: 0.625rem;
}
img.alignright {
    float: right;
    margin-left: 0.938rem;
    margin-bottom: 0.625rem;
}
img.aligncenter {
	display: block;
    margin: 0 auto 0.938rem auto;
}
/* Responsive - Mobile */
@media screen and (max-width: 992px) {
	.mobile-hide {
		display: none !important;
	}
	.mobile-visible {
		display: inline-block !important;
	}
	.mobile-text-left {
		text-align: left !important;
	}
	.mobile-text-right {
		text-align: right !important;
	}
	.mobile-text-center {
		text-align: center !important;
	}
    .flex-mobile-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .overflow-x-mobile-scroll {
        overflow-x: auto;
    }
}

/* Responsive - Tablet */
@media only screen and (min-width: 992px) and (max-width: 1024px) {
	.tablet-hide {
		display: none !important;
	}
	.tablet-visible {
		display: inline-block !important;
	}
	.tablet-text-left {
		text-align: left !important;
	}
	.tablet-text-right {
		text-align: right !important;
	}
	.tablet-text-center {
		text-align: center !important;
	}
}

/* Responsive - Desktop */
@media only screen and (min-width: 1024px) {
	.desktop-hide {
		display: none !important;
	}
	.desktop-visible {
		display: inline-block !important;
	}
	.text-lg-left {
		text-align: left !important;
	}
	.text-lg-right {
		text-align: right !important;
	}
	.text-lg-center {
		text-align: center !important;
	}
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}
body {
    margin: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}
/* html::-webkit-scrollbar-track {
	background-color: transparent;
}
html::-webkit-scrollbar {
	width: 8px;
}
html::-webkit-scrollbar-thumb {
	background-color: #555555;
	border-radius: 5px;
}
html::-webkit-scrollbar-thumb:hover {
	background-color: #666666;
} */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}
audio:not([controls]) {
    display: none;
    height: 0
}
[hidden],
template {
    display: none
}
a {
    text-decoration: none;
    background-color: transparent;
    -webkit-touch-callout: none
}
a:active,
a:hover,
a:focus {
    outline: 0
}
abbr[title] {
    border-bottom: 1px dotted
}
b,
strong {
    font-weight: 600;
}
dfn {
    font-style: italic
}
mark {
    background: #ff0;
    color: #000
}
small {
    font-size: 80%
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}
sup {
    top: -0.5em
}
sub {
    bottom: -0.25em
}
img {
    /* Only render when in viewport */
    /* content-visibility: visible; */
    max-width: 100%;
    height: auto;
    border: 0
}
svg:not(:root) {
    overflow: hidden
}
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}
pre {
    overflow: auto
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}
button {
    overflow: visible
}
button,
select {
    text-transform: none
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: none;
    background-color: transparent;
    -webkit-appearance: none;
    cursor: pointer
}
button[disabled],
html input[disabled] {
    cursor: default
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}
input {
    line-height: normal
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto
}
input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}
input::-ms-clear {
    display: none;
}
/* https://stackoverflow.com/questions/58263122/google-chrome-autofill-background-color-change */
input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 50px white inset;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}
legend {
    border: 0;
    padding: 0
}
textarea {
    overflow: auto
}
optgroup {
    font-weight: 700
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
td,
th {
    padding: 0
}
ul {
    list-style: none
}
iframe {
    border: 0;
    box-shadow: 0px 8px 15px 4px rgb(0 0 0 / 5%);
    margin-bottom: -5px;
    overflow: hidden;
}

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

/* Navigation */
@media screen and (max-width: 840px) {
    #navigation {
		display: none;
	}
}

.navigation > li {
    display: inline-block;
}

.navigation > li > a {
    display: block;
    margin: 0 0.75rem;
    font-size: 1rem;
    font-weight: 400;
}

.navigation li.dropdown-menu-item {
	position: relative;
}

.navigation li.dropdown-menu-item.dropdown-menu-first-item:not(.no-arrow) > a::after,
.navigation li.dropdown-menu-item:not(.dropdown-menu-first-item):not(.no-arrow) > a::after {
	font-size: 1rem;
	font-family: "Icon" !important;
	color: #222222;
}


.navigation li.dropdown-menu-item:not(.dropdown-menu-first-item):not(.no-arrow) > a::after {
	content: '\EA78';
	position: absolute;
	right: 0.313rem;
	top: 50%;
	margin: -1rem 0 0;
}

.navigation li.dropdown-menu-item:not(.dropdown-menu-first-item):not(.no-arrow):hover > a:not(.button)::after {
	color: #33cc87;
}

.navigation li.dropdown-menu-item.dropdown-menu-first-item:not(.no-arrow) > a::after {
	content: '\EA4E';
	margin-left: 0.313rem;
	position: relative;
	top: 0.02rem;
}

.navigation li.dropdown-menu-item.dropdown-menu-first-item:not(.no-arrow):hover > a:not(.button)::after {
	color: #33cc87;
}

.navigation li.dropdown-menu-item.dropdown-menu-first-item:not(.no-arrow):hover > a::after {
	content: '\EA78';
}

.navigation li.dropdown-menu-item > .sub-menu {
	position: absolute;
	background-color: #ffffff;
	transition: all .2s ease;
	padding: 0.625rem 0.938rem;
	min-width: 14.063rem;
	visibility: hidden;
    opacity: 0;
	z-index: 10;
}

.navigation li.dropdown-menu-item:hover > .sub-menu {
	margin-top: 0;
	visibility: visible;
    opacity: 1;
}

.navigation li.dropdown-menu-item > .sub-menu {
	left: 100%;
	top: 0;
}

.navigation li.dropdown-menu-item.dropdown-menu-first-item > .sub-menu {
	left: 0;
	top: 100%;
}

.navigation li.dropdown-menu-item .sub-menu > li {
	margin: 0 0 0.938rem 0;
}

.navigation li.dropdown-menu-item .sub-menu > li:last-child {
	margin-bottom: 0;
}

.navigation li.dropdown-menu-item .sub-menu li a {
	display: block;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #383838;
}

.navigation li.dropdown-menu-item .sub-menu li > a > span {
	display: block;
}

.navigation li.dropdown-menu-item .sub-menu li > a > span.dropdown-menu-description {
	font-size: 0.688rem;
	line-height: initial;
}

.navigation li.dropdown-menu-item .sub-menu li a:hover {
	color: #33cc87;
}

.navigation li.dropdown-menu-item .sub-menu li:last-child a {
	margin-bottom: 0;
}

.navigation li:hover > a {
	color: #33cc87 !important;
}

button:focus,
a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    outline: none !important;
}

select:-moz-focusring {
    outline: none !important;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 1.25rem;
    font-size: 1.313rem;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 0.063rem solid #e5e5e5;
}

input[type="file"] {
	border: medium none;
    box-shadow: none;
    cursor: pointer;
    margin: 0;
    max-width: none;
    padding: 0;
    width: auto;
	height: 1.938rem;
	display: inline-block;
}

input[type="search"] {
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0.25rem 0 0;
    margin-top: 0.063rem \9;
    line-height: normal;
}

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 0.313rem auto -webkit-focus-ring-color;
    outline-offset: -0.125rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

input[type="date"]::-webkit-datetime-edit-year-field:not([aria-valuenow]),
input[type="date"]::-webkit-datetime-edit-month-field:not([aria-valuenow]),
input[type="date"]::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
    color: transparent;
}

input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
}

select {
    cursor: pointer;
}

output {
    display: block;
    padding-top: 0.438rem;
    font-size: 0.875rem;
    line-height: 1.42857143;
    color: #666666;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(2.9rem + .25rem);
    padding: .375rem .75rem;
    font-size: 1em;
	font-weight: 300;
    color: #495057;
    background-color: #ffffff;
    border: solid 0.063rem #dddddd;
    border-radius: .25rem;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: #bdc5c9;
    outline: 0;
	background-color:#ffffff;
}

.form-control::-moz-placeholder {
    color: #999999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999999;
}

.form-control::-webkit-input-placeholder {
    color: #999999;
}

.has-search .form-control {
    padding-left: 2.612rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.912rem;
    height: 2.912rem;
    line-height: 2.912rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.form-control-desc {
    color: #495057;
    font-size: 0.813rem;
    font-style: italic;
    margin: 0.125rem 0 0;
}

.selectbox.medium:after {
    top: 0.625rem;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}

textarea.form-control {
    height: auto;
	min-height: 6.25rem;
	resize:none;
}

input[type="search"] {
    -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
	input[type="date"],
	input[type="time"],
	input[type="datetime-local"],
	input[type="month"] {
		line-height: 2.125rem;
	}
}

/* Selectbox */
.selectbox {
	position:relative;
	line-height: initial;
}

.selectbox:after {
    content: '';
    position: absolute;
    right: 1.313rem;
    top: 1.008rem;
    width: 1.063rem;
    height: 1.375rem;
    background-size: 1.063rem 1.375rem;
    background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg width='0.688rem' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.822266 1.08789L5.32227 5.58789L9.82227 1.08789' stroke='%2366656B' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.selectbox > select {
    border: 0.063rem solid #dddddd;
    border-radius: 0.625rem;
    box-shadow: none;
	min-width: 2.5rem;
	height: calc(2.9rem + .25rem);
    color: #495057;
    font-size: 0.875rem;
    font-weight: 300;
	padding: .375rem .75rem;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
    text-overflow: '';
	background-color: #ffffff;
}

.selectbox.selectbox-block > select {
	width: 100%;
	display: block;
}

.selectbox > select:focus {
    border-color: #444bf8;
    outline: 0;
    background-color: #ffffff;
}

@media all and (min-width:0) {
	.selectbox > select {
		background: none\0/;
		padding: 0.313rem\0/;
	}
}

@media screen and (-ms-high-contrast:active), (-ms-high-contrast:none) {
	.selectBox > select {
		padding: 0.313rem 20.313rem 0.313rem 0.313rem;
	}
}

select::-ms-expand {
    display: none;
}

/* Input Icon */
.input-icon {
    position: relative;
}

.input-icon > .form-control {
    padding-left: 2.063rem;
}

.input-icon > i {
    color: #b7b7b7;
    display: block;
    position: absolute;
    margin: 0.375rem 0.125rem 0.25rem 0.625rem;
    z-index: 3;
    width: 10.375rem;
    font-size: 10.375rem;
    text-align: center;
}

.input-icon.input-icon-right > .form-control {
    padding-right: 2.063rem;
    padding-left: 1.125rem;
}

.input-icon.input-icon-right > i {
    right: 0.5rem;
    float: right;
}

/* Form Input Sizing */
.input-mini {
    width: 40.313rem !important;
}

.input-xsmall {
    width: 5rem !important;
}

.input-small {
    width: 11.875rem !important;
}

.input-medium {
    width: 22.5rem !important;
}

.input-large {
    width: 20rem !important;
}

.input-xlarge {
    width: 26.25rem !important;
}

@media (max-width: 760.5rem) {
    .input-large {
        width: 15.625rem !important;
    }
    .input-xlarge {
        width: 18.75rem !important;
    }
}

/* Form Group */
.form-group {
    margin-bottom: 0.938rem;
}

@media screen and (min-width: 40em) {
	.form-group {
        margin-bottom: 1.25rem;
	}
}

.form-group:before,
.form-group:after {
    content: " ";
    display: table;
}

.form-group:after {
    clear: both;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group .label-control {
	padding-top: 0;
}

.label-control {
	font-size: 0.875rem;
	font-weight: 600;
	color: #666666;
    margin-bottom: 0.313rem;
	display: inline-block;
	padding-top: 10.313rem;
}

.label-control.label-control-block {
	display:block;
	width:100%;
}

.form-group.filled,
.form-group.flex.filled .input-inline {
    position: relative;
}

.form-group .label-filled {
    color: #8d8d8d;
    left: .75rem;
    position: absolute;
    pointer-events: none;
    top: 10.375rem;
    font-size: 1em;
    line-height: initial;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
}

.form-group.filled [data-filled] {
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.form-group.filled textarea[data-filled] {
    padding-top: 1.25rem;
}

.form-group.filled textarea[data-filled] + label.label-filled {
    top: 1.125rem;
}

.form-group.filled select[data-filled] {
    color: transparent;
}

.form-group.filled select[data-filled]:focus,
.form-group.filled select[data-filled].input-filled {
    color: #495057;
}

.form-group [data-filled]:focus + label.label-filled,
.form-group [data-filled].input-filled + label.label-filled {
    color: #353f45;
    font-size: 1.125rem;
    font-weight: 400;
    left: .75rem;
    top: -0.438rem !important;
    padding: 0 0.375rem;
    background: #fff;
}

.form-group:before,
.form-group:after {
    content: " ";
    display: table;
}

.form-group:after,
.form-group:after {
    clear: both;
}

.form-group.flex {
    display: flex;
}

.form-group.flex .input-inline {
    width: 100%;
    margin-right: 1.25rem;
    flex: 1 0 0;
}

html[dir="Rtl"] .form-group.flex .input-inline {
	margin-right: 0;
    margin-left: 1.25rem;
}

.form-group.flex .input-inline:last-child {
    margin-right: 0;
}

html[dir="Rtl"] .form-group.flex .input-inline:last-child {
    margin-left: 0;
}

@media screen and (max-width: 992px) {
    .form-group.flex {
        display: block;
    }
    .form-group.flex .input-inline {
        margin-right: 0;
        margin-bottom: 0.938rem;
    }
    .form-group.flex .input-inline:last-child {
        margin-bottom: 0;
    }
}

/* Validate Styles */
input.validate-error,
input.validate-error:focus,
select.validate-error,
select.validate-error:focus,
textarea.validate-error,
textarea.validate-error:focus {
	border-color: #cc4c3f;
	background-color: #ffffff;
}

div.validate-error {
	font-size: 0.925rem;
	line-height: 1.5;
    margin: 0.413rem 0 0;
	color: #cc4c3f;
}

div.selectbox-validate-error::after {
	color: #cc4c3f;
}

/* Radio & Checkbox Styles */
.radio,
.checkbox {
    position: relative;
    display: block;
    min-height: 20.313rem;
    margin-bottom: 0.625rem;
}

.radios > .radio:last-child,
.checkboxes > .checkbox:last-child {
    min-height: 1.25rem;
    margin-bottom: 0;
}

.radio label,
.checkbox label {
    cursor: pointer;
    margin-bottom: 0;
    line-height: 1.3;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
    position: absolute;
    margin-top: 0.25rem \9;
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: -0.313rem;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled {
    cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label {
    cursor: not-allowed;
}

.radio-custom,
.checkbox-custom {
    display: block;
}

.radio-custom input[type=radio],
.checkbox-custom input[type=checkbox] {
    position: absolute;
    left: -9999em;
}

.radio-custom > label,
.checkbox-custom > label {
    position: relative;
    padding-left: 1.875rem;
}

.radio-custom > label:before,
.checkbox-custom > label:before {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    left: 0;
    top: 0;
    margin: 0;
    content: '';
    border: 0.063rem solid #dddddd;
    border-radius: .25rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 50% 50%;
    background-size: 50% 50%;
}

.radio-custom > label,
.radio-custom > label:before {
    border-radius: 100%;
}

.radio-custom > input[type=radio]:checked + label:before,
.checkbox-custom > input[type=checkbox]:checked + label:before {
    color: #333333;
}

.radio-custom > input[type=radio]:disabled + label:before,
.checkbox-custom > input[type=checkbox]:disabled + label:before {
    color: #bfbfbf;
}

.radio-custom > input[type=radio]:checked + label:before {
    background-color: #1f28f7;
}

.radio-custom > input[type=radio]:disabled + label:before {
    background-color: #eeeeee;
}

.checkbox-custom > input[type=checkbox]:checked + label:before {
    border-color: #1f28f7;
    background-color: #1f28f7;
}

.checkbox-custom > input[type=checkbox]:disabled + label:before {
    background-color: #eeeeee;
}

/* Custom Radio & Checkbox Horizontal Styles */
.radios.radio-horizontal .radio,
.checkboxes.checkbox-horizontal .checkbox {
    margin: 0 0.625rem 0.313rem 0;
    display: inline-block;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group>.custom-select:not(:last-child), .input-group>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.custom-file, .input-group>.custom-select, .input-group>.form-control {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group-append {
    margin-left: -0.063rem;
}
.input-group-append,
.input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}
.input-group>.input-group-append>.button, .input-group>.input-group-append>.input-group-text, .input-group>.input-group-prepend:first-child>.button:not(:first-child), .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), .input-group>.input-group-prepend:not(:first-child)>.button, .input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Button */
.button {
	margin: 0 0 0 0.313rem;
	padding: 0.625rem 1.125rem;
	font-size: 0.875rem;
	font-weight: 700;
    border-width: 0;
	border-style: solid;
	border-color: #c3c6c9;
	border-radius: .25rem;
	position: relative;
    display: inline-block;
    cursor: pointer;
	text-align: center;
	transition: background-color .1s linear, border-color .1s linear;
	color: #666666;
	background-color: #ffffff;
    user-select: none;
}

.button:first-child {
	margin: 0;
}

.button:not(.disabled):hover {
	outline: none;
}

.button-animation {
	transition: all .5s;
    -webkit-transition: all .5s;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-animation-name: hvr-wobble-horizontal;
    animation-name: hvr-wobble-horizontal;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.button-loading {
	position: relative;
	cursor: default;
	point-events: none;
	text-shadow: none !important;
	color: transparent !important;
	-webkit-transition: all 0s linear;
	transition: all 0s linear;
}

.button-loading i {
	visibility: hidden;
}

.button-loading:before {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	margin: -0.6em 0 0 -0.6em;
	width: 1.1857em;
	height: 1.1857em;
	border-radius: 500rem;
	border: 0.188rem solid rgba(0, 0, 0, 0.15);
}

.button-loading:after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	margin: -0.6em 0 0 -0.6em;
	width: 1.1857em;
	height: 1.1857em;
	-webkit-animation: button-spin 0.5s linear;
	animation: button-spin 0.5s linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	border-radius: 500rem;
	border-color: #ffffff transparent transparent;
	border-style: solid;
	border-width: 0.188rem;
	box-shadow: 0 0 0 0.063rem transparent;
}

@-webkit-keyframes button-spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes button-spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.button-block {
	width: 100%;
	display: block;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

@media screen and (max-width: 768px) {
	.button-mobile-block {
		width: 100%;
		display: block;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

.button-mini {
	font-size: 0.75rem;
	padding: 0.188rem 0.313rem 0.25rem;
	line-height: 1.5;
}

.button-mini i {
	line-height: 0.5;
}

.button-small {
	font-size: 0.813rem;
	padding: 0.313rem 0.625rem;
}

.button-medium {
	font-size: 1rem;
    padding: 0.688rem 1.125rem;
}

.button-large {
	font-size: 1.125rem;
    padding: 1rem 1.375rem;
}

/* Button Icon */
.button i {
	margin: 0;
}

.button i:before {
	font-size: 1.25rem;
}

/* Button Rounded */
.button-rounded {
    padding-left: 10.313rem;
    padding-right: 10.313rem;
    border-radius: 3.125rem;
}

/* Button Position */
.button.button-left-icon i,
.button.button-right-icon i {
	position: relative;
	font-weight: normal !important;
	/* top: 0.063rem; */
}

.button.button-left-icon i {
	margin-left: 0;
	margin-right: 0.313rem;
}

.button.button-right-icon i {
	margin-left: 0.313rem;
	margin-right: 0;
}

.button.text-left.button-right-icon i {
	float: right;
}

.button.text-right.button-left-icon i {
	float: left;
}

.button.text-center.button-left-icon i {
	float: left;
}

.button.button-left-icon i::before,
.button.button-right-icon i::before {
	font-size: 0.875rem;
}

.button.button-small.button-left-icon i::before,
.button.button-small.button-right-icon i::before {
	font-size: 0.875rem;
}

.button.button-medium.button-left-icon i::before,
.button.button-medium.button-right-icon i::before {
	font-size: 1.125rem;
}

.button.button-large.button-left-icon i::before,
.button.button-large.button-right-icon i::before {
	font-size: 1.25rem;
}

/* Button Default */
.button.button-default {
    color: #666666;
	border-color: #dddddd;
	background-color: #ffffff;
    border-width: 0.063rem;
}

.button.button-default > i:before {
    color: #666666;
}

.button.button-default:hover {
	color: #666666;
    border-color: #dce1e4;
	background-color: #f7f8f9;
}


/* Button Primary */
.button.button-primary {
    color: #ffffff;
    background: #1f28f7;
    border: 0.063rem solid transparent;
}

.button.button-primary > i:before {
    color: #ffffff;
}

.button.button-primary:hover {
    color: #ffffff;
    background: #1f28f7;
}

.button.button-primary:hover > i:before {
    color: #ffffff;
}

/* Button Primary Outline */
.button.button-primary-outline {
	color: #444bf8;
	border: 0.063rem solid #444bf8;
}

.button.button-primary-outline > i:before {
    color: #444bf8;
}

.button.button-primary-outline:hover {
	color: #ffffff;
	border: 0.063rem solid #444bf8;
    background: #444bf8;
}

.button.button-primary-outline:hover > i {
	color: #ffffff;
}

/* Button Secondary */
.button.button-secondary {
    color: #ffffff;
    background: #121118;
    border: 0.063rem solid transparent;
}

.button.button-secondary > i:before {
    color: #ffffff;
}

.button.button-secondary:hover {
    color: #ffffff;
    background: #fff170;
}

.button.button-secondary:hover > i:before {
    color: #ffffff;
}

/* Button Secondary Outline */
.button.button-secondary-outline {
	color: #121118;
	border: 0.063rem solid #121118;
}

.button.button-secondary-outline > i:before {
    color: #121118;
}

.button.button-secondary-outline:hover {
	color: #ffffff;
	border: 0.063rem solid #121118;
    background: #121118;
}

.button.button-secondary-outline:hover > i:before {
	color: #ffffff;
}

/* Button Soft Gray */
.button.button-soft-gray {
    color: #666666;
    background: #eeeeee;
    border: 0.063rem solid transparent;
}

.button.button-soft-gray > i:before {
    color: #999999;
}

.button.button-soft-gray:hover {
    color: #666666;
    background: #dddddd;
}

.button.button-soft-gray:hover > i:before {
    color: #666666;
}

/* Button Dark Gray */
.button.button-dark-gray {
    color: #ffffff;
    background: #333333;
    border: 0.063rem solid transparent;
}

.button.button-dark-gray > i:before {
    color: #ffffff;
}

.button.button-dark-gray:hover {
    color: #ffffff;
    background: #242424;
}

.button.button-dark-gray:hover > i:before {
    color: #ffffff;
}

/* Button Success */
.button.button-success {
	color: #ffffff;
	background: #8dc63f;
    border: 0.063rem solid transparent;
}

.button.button-success > i:before {
    color: #ffffff;
}

.button.button-success:hover {
    color: #ffffff;
    background: #80b43a;
}

.button.button-success:hover > i:before {
    color: #ffffff;
}

/* Button Info */
.button.button-info {
	color: #ffffff;
	background: #40bbea;
    border: 0.063rem solid transparent;
}

.button.button-info > i:before {
    color: #ffffff;
}

.button.button-info:hover {
    color: #ffffff;
	background: #3cadd9;
}

.button.button-info:hover > i:before {
    color: #ffffff;
}

/* Button Warning */
.button.button-warning {
	color: #ffffff;
    background: #ffba00;
    border: 0.063rem solid transparent;
}

.button.button-warning > i:before {
    color: #ffffff;
}

.button.button-warning:hover {
    color: #ffffff;
    background: #f0af00;
}

.button.button-warning:hover > i:before {
    color: #ffffff;
}

/* Button Danger */
.button.button-danger {
	color: #ffffff;
    background: #e33244;
    border: 0.063rem solid transparent;
}

.button.button-danger > i:before {
    color: #ffffff;
}

.button.button-danger:hover {
    color: #ffffff;
    background: #d6404f;
}

.button.button-danger:hover > i:before {
    color: #ffffff;
}

/* Button Pink */
.button.button-pink {
    color: #ffffff;
    background: #ff7aa3;
    border: 0.063rem solid transparent;
}

.button.button-pink > i:before {
    color: #ffffff;
}

.button.button-pink:hover {
    color: #ffffff;
    background: #ff5187;
}

.button.button-pink:hover > i:before {
    color: #ffffff;
}

/* Button Purple */
.button.button-purple {
    color: #ffffff;
    background: #9261c6;
    border: 0.063rem solid transparent;
}

.button.button-purple > i:before {
    color: #ffffff;
}

.button.button-purple:hover {
    color: #ffffff;
    background: #7d43bb;
}

.button.button-purple:hover > i:before {
    color: #ffffff;
}

/* Button Disabled */
.button.button-disabled,
.button.button-disabled:hover,
.button.button-disabled:active,
.button.button-disabled:focus {
	cursor: not-allowed;
	background-color: #c5c5c5;
	color: #ffffff;
	box-shadow: none;
	border: 0.063rem solid transparent;
}

.button.button-disabled > i:before {
	color: #ffffff;
	opacity: .8;
}

/* Button Badge */
.button .badge {
	margin: 0 0 -0.063rem;
	padding: 0.125rem 0.313rem;
    position: relative;
    top: 0;
	left: 0.188rem;
}

.button .badge > i {
	font-size: 0.688rem;
    margin: 0;
    position: relative;
    top: -0.063rem;
}

.button-facebook {
	color: #ffffff;
	background: #3b5998;
}

.button-facebook i.fa:before {
	color: #ffffff;
	font-size: 1rem;
	margin-left: -0.313rem;
}

.button-twitter {
	color: #ffffff;
	background: #00acee;
}

.button-twitter i.fa:before {
	color: #ffffff;
	font-size: 1rem;
	margin-left: -0.313rem;
}

.button-google-plus {
	color: #ffffff;
	background: #e93f2e;
}

.button-google-plus i.fa:before {
	color: #ffffff;
	font-size: 1rem;
	margin-left: -0.313rem;
}

.button-pinterest {
	color: #ffffff;
	background: #d20b08;
}

.button-pinterest i.fa:before {
	color: #ffffff;
	font-size: 1rem;
	margin-left: -0.313rem;
}

/*
* Remix Icon v3.2.0
* https://remixicon.com
* https://github.com/Remix-Design/RemixIcon
*
* Copyright RemixIcon.com
* Released under the Apache License Version 2.0
*
* Date: 2023-04-15
*/

[class^="ic-"], [class*=" ic-"] {
  font-family: 'icon' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ic-lg { font-size: 1.3333em; line-height: 0.75em; vertical-align: -.0667em; }
.ic-xl { font-size: 1.5em; line-height: 0.6666em; vertical-align: -.075em; }
.ic-xxs { font-size: .5em; }
.ic-xs { font-size: .75em; }
.ic-sm { font-size: .875em }
.ic-1x { font-size: 1em; }
.ic-2x { font-size: 2em; }
.ic-3x { font-size: 3em; }
.ic-4x { font-size: 4em; }
.ic-5x { font-size: 5em; }
.ic-6x { font-size: 6em; }
.ic-7x { font-size: 7em; }
.ic-8x { font-size: 8em; }
.ic-9x { font-size: 9em; }
.ic-10x { font-size: 10em; }
.ic-fw { text-align: center; width: 1.25em; }

.ic-24-hours-fill:before { content: "\ea01"; }
.ic-24-hours-line:before { content: "\ea02"; }
.ic-4k-fill:before { content: "\ea03"; }
.ic-4k-line:before { content: "\ea04"; }
.ic-a-b:before { content: "\ea05"; }
.ic-account-box-fill:before { content: "\ea06"; }
.ic-account-box-line:before { content: "\ea07"; }
.ic-account-circle-fill:before { content: "\ea08"; }
.ic-account-circle-line:before { content: "\ea09"; }
.ic-account-pin-box-fill:before { content: "\ea0a"; }
.ic-account-pin-box-line:before { content: "\ea0b"; }
.ic-account-pin-circle-fill:before { content: "\ea0c"; }
.ic-account-pin-circle-line:before { content: "\ea0d"; }
.ic-add-box-fill:before { content: "\ea0e"; }
.ic-add-box-line:before { content: "\ea0f"; }
.ic-add-circle-fill:before { content: "\ea10"; }
.ic-add-circle-line:before { content: "\ea11"; }
.ic-add-fill:before { content: "\ea12"; }
.ic-add-line:before { content: "\ea13"; }
.ic-admin-fill:before { content: "\ea14"; }
.ic-admin-line:before { content: "\ea15"; }
.ic-advertisement-fill:before { content: "\ea16"; }
.ic-advertisement-line:before { content: "\ea17"; }
.ic-airplay-fill:before { content: "\ea18"; }
.ic-airplay-line:before { content: "\ea19"; }
.ic-alarm-fill:before { content: "\ea1a"; }
.ic-alarm-line:before { content: "\ea1b"; }
.ic-alarm-warning-fill:before { content: "\ea1c"; }
.ic-alarm-warning-line:before { content: "\ea1d"; }
.ic-album-fill:before { content: "\ea1e"; }
.ic-album-line:before { content: "\ea1f"; }
.ic-alert-fill:before { content: "\ea20"; }
.ic-alert-line:before { content: "\ea21"; }
.ic-aliens-fill:before { content: "\ea22"; }
.ic-aliens-line:before { content: "\ea23"; }
.ic-align-bottom:before { content: "\ea24"; }
.ic-align-center:before { content: "\ea25"; }
.ic-align-justify:before { content: "\ea26"; }
.ic-align-left:before { content: "\ea27"; }
.ic-align-right:before { content: "\ea28"; }
.ic-align-top:before { content: "\ea29"; }
.ic-align-vertically:before { content: "\ea2a"; }
.ic-alipay-fill:before { content: "\ea2b"; }
.ic-alipay-line:before { content: "\ea2c"; }
.ic-amazon-fill:before { content: "\ea2d"; }
.ic-amazon-line:before { content: "\ea2e"; }
.ic-anchor-fill:before { content: "\ea2f"; }
.ic-anchor-line:before { content: "\ea30"; }
.ic-ancient-gate-fill:before { content: "\ea31"; }
.ic-ancient-gate-line:before { content: "\ea32"; }
.ic-ancient-pavilion-fill:before { content: "\ea33"; }
.ic-ancient-pavilion-line:before { content: "\ea34"; }
.ic-android-fill:before { content: "\ea35"; }
.ic-android-line:before { content: "\ea36"; }
.ic-angularjs-fill:before { content: "\ea37"; }
.ic-angularjs-line:before { content: "\ea38"; }
.ic-anticlockwise-2-fill:before { content: "\ea39"; }
.ic-anticlockwise-2-line:before { content: "\ea3a"; }
.ic-anticlockwise-fill:before { content: "\ea3b"; }
.ic-anticlockwise-line:before { content: "\ea3c"; }
.ic-app-store-fill:before { content: "\ea3d"; }
.ic-app-store-line:before { content: "\ea3e"; }
.ic-apple-fill:before { content: "\ea3f"; }
.ic-apple-line:before { content: "\ea40"; }
.ic-apps-2-fill:before { content: "\ea41"; }
.ic-apps-2-line:before { content: "\ea42"; }
.ic-apps-fill:before { content: "\ea43"; }
.ic-apps-line:before { content: "\ea44"; }
.ic-archive-drawer-fill:before { content: "\ea45"; }
.ic-archive-drawer-line:before { content: "\ea46"; }
.ic-archive-fill:before { content: "\ea47"; }
.ic-archive-line:before { content: "\ea48"; }
.ic-arrow-down-circle-fill:before { content: "\ea49"; }
.ic-arrow-down-circle-line:before { content: "\ea4a"; }
.ic-arrow-down-fill:before { content: "\ea4b"; }
.ic-arrow-down-line:before { content: "\ea4c"; }
.ic-arrow-down-s-fill:before { content: "\ea4d"; }
.ic-arrow-down-s-line:before { content: "\ea4e"; }
.ic-arrow-drop-down-fill:before { content: "\ea4f"; }
.ic-arrow-drop-down-line:before { content: "\ea50"; }
.ic-arrow-drop-left-fill:before { content: "\ea51"; }
.ic-arrow-drop-left-line:before { content: "\ea52"; }
.ic-arrow-drop-right-fill:before { content: "\ea53"; }
.ic-arrow-drop-right-line:before { content: "\ea54"; }
.ic-arrow-drop-up-fill:before { content: "\ea55"; }
.ic-arrow-drop-up-line:before { content: "\ea56"; }
.ic-arrow-go-back-fill:before { content: "\ea57"; }
.ic-arrow-go-back-line:before { content: "\ea58"; }
.ic-arrow-go-forward-fill:before { content: "\ea59"; }
.ic-arrow-go-forward-line:before { content: "\ea5a"; }
.ic-arrow-left-circle-fill:before { content: "\ea5b"; }
.ic-arrow-left-circle-line:before { content: "\ea5c"; }
.ic-arrow-left-down-fill:before { content: "\ea5d"; }
.ic-arrow-left-down-line:before { content: "\ea5e"; }
.ic-arrow-left-fill:before { content: "\ea5f"; }
.ic-arrow-left-line:before { content: "\ea60"; }
.ic-arrow-left-right-fill:before { content: "\ea61"; }
.ic-arrow-left-right-line:before { content: "\ea62"; }
.ic-arrow-left-s-fill:before { content: "\ea63"; }
.ic-arrow-left-s-line:before { content: "\ea64"; }
.ic-arrow-left-up-fill:before { content: "\ea65"; }
.ic-arrow-left-up-line:before { content: "\ea66"; }
.ic-arrow-right-circle-fill:before { content: "\ea67"; }
.ic-arrow-right-circle-line:before { content: "\ea68"; }
.ic-arrow-right-down-fill:before { content: "\ea69"; }
.ic-arrow-right-down-line:before { content: "\ea6a"; }
.ic-arrow-right-fill:before { content: "\ea6b"; }
.ic-arrow-right-line:before { content: "\ea6c"; }
.ic-arrow-right-s-fill:before { content: "\ea6d"; }
.ic-arrow-right-s-line:before { content: "\ea6e"; }
.ic-arrow-right-up-fill:before { content: "\ea6f"; }
.ic-arrow-right-up-line:before { content: "\ea70"; }
.ic-arrow-up-circle-fill:before { content: "\ea71"; }
.ic-arrow-up-circle-line:before { content: "\ea72"; }
.ic-arrow-up-down-fill:before { content: "\ea73"; }
.ic-arrow-up-down-line:before { content: "\ea74"; }
.ic-arrow-up-fill:before { content: "\ea75"; }
.ic-arrow-up-line:before { content: "\ea76"; }
.ic-arrow-up-s-fill:before { content: "\ea77"; }
.ic-arrow-up-s-line:before { content: "\ea78"; }
.ic-artboard-2-fill:before { content: "\ea79"; }
.ic-artboard-2-line:before { content: "\ea7a"; }
.ic-artboard-fill:before { content: "\ea7b"; }
.ic-artboard-line:before { content: "\ea7c"; }
.ic-article-fill:before { content: "\ea7d"; }
.ic-article-line:before { content: "\ea7e"; }
.ic-aspect-ratio-fill:before { content: "\ea7f"; }
.ic-aspect-ratio-line:before { content: "\ea80"; }
.ic-asterisk:before { content: "\ea81"; }
.ic-at-fill:before { content: "\ea82"; }
.ic-at-line:before { content: "\ea83"; }
.ic-attachment-2:before { content: "\ea84"; }
.ic-attachment-fill:before { content: "\ea85"; }
.ic-attachment-line:before { content: "\ea86"; }
.ic-auction-fill:before { content: "\ea87"; }
.ic-auction-line:before { content: "\ea88"; }
.ic-award-fill:before { content: "\ea89"; }
.ic-award-line:before { content: "\ea8a"; }
.ic-baidu-fill:before { content: "\ea8b"; }
.ic-baidu-line:before { content: "\ea8c"; }
.ic-ball-pen-fill:before { content: "\ea8d"; }
.ic-ball-pen-line:before { content: "\ea8e"; }
.ic-bank-card-2-fill:before { content: "\ea8f"; }
.ic-bank-card-2-line:before { content: "\ea90"; }
.ic-bank-card-fill:before { content: "\ea91"; }
.ic-bank-card-line:before { content: "\ea92"; }
.ic-bank-fill:before { content: "\ea93"; }
.ic-bank-line:before { content: "\ea94"; }
.ic-bar-chart-2-fill:before { content: "\ea95"; }
.ic-bar-chart-2-line:before { content: "\ea96"; }
.ic-bar-chart-box-fill:before { content: "\ea97"; }
.ic-bar-chart-box-line:before { content: "\ea98"; }
.ic-bar-chart-fill:before { content: "\ea99"; }
.ic-bar-chart-grouped-fill:before { content: "\ea9a"; }
.ic-bar-chart-grouped-line:before { content: "\ea9b"; }
.ic-bar-chart-horizontal-fill:before { content: "\ea9c"; }
.ic-bar-chart-horizontal-line:before { content: "\ea9d"; }
.ic-bar-chart-line:before { content: "\ea9e"; }
.ic-barcode-box-fill:before { content: "\ea9f"; }
.ic-barcode-box-line:before { content: "\eaa0"; }
.ic-barcode-fill:before { content: "\eaa1"; }
.ic-barcode-line:before { content: "\eaa2"; }
.ic-barricade-fill:before { content: "\eaa3"; }
.ic-barricade-line:before { content: "\eaa4"; }
.ic-base-station-fill:before { content: "\eaa5"; }
.ic-base-station-line:before { content: "\eaa6"; }
.ic-basketball-fill:before { content: "\eaa7"; }
.ic-basketball-line:before { content: "\eaa8"; }
.ic-battery-2-charge-fill:before { content: "\eaa9"; }
.ic-battery-2-charge-line:before { content: "\eaaa"; }
.ic-battery-2-fill:before { content: "\eaab"; }
.ic-battery-2-line:before { content: "\eaac"; }
.ic-battery-charge-fill:before { content: "\eaad"; }
.ic-battery-charge-line:before { content: "\eaae"; }
.ic-battery-fill:before { content: "\eaaf"; }
.ic-battery-line:before { content: "\eab0"; }
.ic-battery-low-fill:before { content: "\eab1"; }
.ic-battery-low-line:before { content: "\eab2"; }
.ic-battery-saver-fill:before { content: "\eab3"; }
.ic-battery-saver-line:before { content: "\eab4"; }
.ic-battery-share-fill:before { content: "\eab5"; }
.ic-battery-share-line:before { content: "\eab6"; }
.ic-bear-smile-fill:before { content: "\eab7"; }
.ic-bear-smile-line:before { content: "\eab8"; }
.ic-behance-fill:before { content: "\eab9"; }
.ic-behance-line:before { content: "\eaba"; }
.ic-bell-fill:before { content: "\eabb"; }
.ic-bell-line:before { content: "\eabc"; }
.ic-bike-fill:before { content: "\eabd"; }
.ic-bike-line:before { content: "\eabe"; }
.ic-bilibili-fill:before { content: "\eabf"; }
.ic-bilibili-line:before { content: "\eac0"; }
.ic-bill-fill:before { content: "\eac1"; }
.ic-bill-line:before { content: "\eac2"; }
.ic-billiards-fill:before { content: "\eac3"; }
.ic-billiards-line:before { content: "\eac4"; }
.ic-bit-coin-fill:before { content: "\eac5"; }
.ic-bit-coin-line:before { content: "\eac6"; }
.ic-blaze-fill:before { content: "\eac7"; }
.ic-blaze-line:before { content: "\eac8"; }
.ic-bluetooth-connect-fill:before { content: "\eac9"; }
.ic-bluetooth-connect-line:before { content: "\eaca"; }
.ic-bluetooth-fill:before { content: "\eacb"; }
.ic-bluetooth-line:before { content: "\eacc"; }
.ic-blur-off-fill:before { content: "\eacd"; }
.ic-blur-off-line:before { content: "\eace"; }
.ic-body-scan-fill:before { content: "\eacf"; }
.ic-body-scan-line:before { content: "\ead0"; }
.ic-bold:before { content: "\ead1"; }
.ic-book-2-fill:before { content: "\ead2"; }
.ic-book-2-line:before { content: "\ead3"; }
.ic-book-3-fill:before { content: "\ead4"; }
.ic-book-3-line:before { content: "\ead5"; }
.ic-book-fill:before { content: "\ead6"; }
.ic-book-line:before { content: "\ead7"; }
.ic-book-mark-fill:before { content: "\ead8"; }
.ic-book-mark-line:before { content: "\ead9"; }
.ic-book-open-fill:before { content: "\eada"; }
.ic-book-open-line:before { content: "\eadb"; }
.ic-book-read-fill:before { content: "\eadc"; }
.ic-book-read-line:before { content: "\eadd"; }
.ic-booklet-fill:before { content: "\eade"; }
.ic-booklet-line:before { content: "\eadf"; }
.ic-bookmark-2-fill:before { content: "\eae0"; }
.ic-bookmark-2-line:before { content: "\eae1"; }
.ic-bookmark-3-fill:before { content: "\eae2"; }
.ic-bookmark-3-line:before { content: "\eae3"; }
.ic-bookmark-fill:before { content: "\eae4"; }
.ic-bookmark-line:before { content: "\eae5"; }
.ic-boxing-fill:before { content: "\eae6"; }
.ic-boxing-line:before { content: "\eae7"; }
.ic-braces-fill:before { content: "\eae8"; }
.ic-braces-line:before { content: "\eae9"; }
.ic-brackets-fill:before { content: "\eaea"; }
.ic-brackets-line:before { content: "\eaeb"; }
.ic-briefcase-2-fill:before { content: "\eaec"; }
.ic-briefcase-2-line:before { content: "\eaed"; }
.ic-briefcase-3-fill:before { content: "\eaee"; }
.ic-briefcase-3-line:before { content: "\eaef"; }
.ic-briefcase-4-fill:before { content: "\eaf0"; }
.ic-briefcase-4-line:before { content: "\eaf1"; }
.ic-briefcase-5-fill:before { content: "\eaf2"; }
.ic-briefcase-5-line:before { content: "\eaf3"; }
.ic-briefcase-fill:before { content: "\eaf4"; }
.ic-briefcase-line:before { content: "\eaf5"; }
.ic-bring-forward:before { content: "\eaf6"; }
.ic-bring-to-front:before { content: "\eaf7"; }
.ic-broadcast-fill:before { content: "\eaf8"; }
.ic-broadcast-line:before { content: "\eaf9"; }
.ic-brush-2-fill:before { content: "\eafa"; }
.ic-brush-2-line:before { content: "\eafb"; }
.ic-brush-3-fill:before { content: "\eafc"; }
.ic-brush-3-line:before { content: "\eafd"; }
.ic-brush-4-fill:before { content: "\eafe"; }
.ic-brush-4-line:before { content: "\eaff"; }
.ic-brush-fill:before { content: "\eb00"; }
.ic-brush-line:before { content: "\eb01"; }
.ic-bubble-chart-fill:before { content: "\eb02"; }
.ic-bubble-chart-line:before { content: "\eb03"; }
.ic-bug-2-fill:before { content: "\eb04"; }
.ic-bug-2-line:before { content: "\eb05"; }
.ic-bug-fill:before { content: "\eb06"; }
.ic-bug-line:before { content: "\eb07"; }
.ic-building-2-fill:before { content: "\eb08"; }
.ic-building-2-line:before { content: "\eb09"; }
.ic-building-3-fill:before { content: "\eb0a"; }
.ic-building-3-line:before { content: "\eb0b"; }
.ic-building-4-fill:before { content: "\eb0c"; }
.ic-building-4-line:before { content: "\eb0d"; }
.ic-building-fill:before { content: "\eb0e"; }
.ic-building-line:before { content: "\eb0f"; }
.ic-bus-2-fill:before { content: "\eb10"; }
.ic-bus-2-line:before { content: "\eb11"; }
.ic-bus-fill:before { content: "\eb12"; }
.ic-bus-line:before { content: "\eb13"; }
.ic-bus-wifi-fill:before { content: "\eb14"; }
.ic-bus-wifi-line:before { content: "\eb15"; }
.ic-cactus-fill:before { content: "\eb16"; }
.ic-cactus-line:before { content: "\eb17"; }
.ic-cake-2-fill:before { content: "\eb18"; }
.ic-cake-2-line:before { content: "\eb19"; }
.ic-cake-3-fill:before { content: "\eb1a"; }
.ic-cake-3-line:before { content: "\eb1b"; }
.ic-cake-fill:before { content: "\eb1c"; }
.ic-cake-line:before { content: "\eb1d"; }
.ic-calculator-fill:before { content: "\eb1e"; }
.ic-calculator-line:before { content: "\eb1f"; }
.ic-calendar-2-fill:before { content: "\eb20"; }
.ic-calendar-2-line:before { content: "\eb21"; }
.ic-calendar-check-fill:before { content: "\eb22"; }
.ic-calendar-check-line:before { content: "\eb23"; }
.ic-calendar-event-fill:before { content: "\eb24"; }
.ic-calendar-event-line:before { content: "\eb25"; }
.ic-calendar-fill:before { content: "\eb26"; }
.ic-calendar-line:before { content: "\eb27"; }
.ic-calendar-todo-fill:before { content: "\eb28"; }
.ic-calendar-todo-line:before { content: "\eb29"; }
.ic-camera-2-fill:before { content: "\eb2a"; }
.ic-camera-2-line:before { content: "\eb2b"; }
.ic-camera-3-fill:before { content: "\eb2c"; }
.ic-camera-3-line:before { content: "\eb2d"; }
.ic-camera-fill:before { content: "\eb2e"; }
.ic-camera-lens-fill:before { content: "\eb2f"; }
.ic-camera-lens-line:before { content: "\eb30"; }
.ic-camera-line:before { content: "\eb31"; }
.ic-camera-off-fill:before { content: "\eb32"; }
.ic-camera-off-line:before { content: "\eb33"; }
.ic-camera-switch-fill:before { content: "\eb34"; }
.ic-camera-switch-line:before { content: "\eb35"; }
.ic-capsule-fill:before { content: "\eb36"; }
.ic-capsule-line:before { content: "\eb37"; }
.ic-car-fill:before { content: "\eb38"; }
.ic-car-line:before { content: "\eb39"; }
.ic-car-washing-fill:before { content: "\eb3a"; }
.ic-car-washing-line:before { content: "\eb3b"; }
.ic-caravan-fill:before { content: "\eb3c"; }
.ic-caravan-line:before { content: "\eb3d"; }
.ic-cast-fill:before { content: "\eb3e"; }
.ic-cast-line:before { content: "\eb3f"; }
.ic-cellphone-fill:before { content: "\eb40"; }
.ic-cellphone-line:before { content: "\eb41"; }
.ic-celsius-fill:before { content: "\eb42"; }
.ic-celsius-line:before { content: "\eb43"; }
.ic-centos-fill:before { content: "\eb44"; }
.ic-centos-line:before { content: "\eb45"; }
.ic-character-recognition-fill:before { content: "\eb46"; }
.ic-character-recognition-line:before { content: "\eb47"; }
.ic-charging-pile-2-fill:before { content: "\eb48"; }
.ic-charging-pile-2-line:before { content: "\eb49"; }
.ic-charging-pile-fill:before { content: "\eb4a"; }
.ic-charging-pile-line:before { content: "\eb4b"; }
.ic-chat-1-fill:before { content: "\eb4c"; }
.ic-chat-1-line:before { content: "\eb4d"; }
.ic-chat-2-fill:before { content: "\eb4e"; }
.ic-chat-2-line:before { content: "\eb4f"; }
.ic-chat-3-fill:before { content: "\eb50"; }
.ic-chat-3-line:before { content: "\eb51"; }
.ic-chat-4-fill:before { content: "\eb52"; }
.ic-chat-4-line:before { content: "\eb53"; }
.ic-chat-check-fill:before { content: "\eb54"; }
.ic-chat-check-line:before { content: "\eb55"; }
.ic-chat-delete-fill:before { content: "\eb56"; }
.ic-chat-delete-line:before { content: "\eb57"; }
.ic-chat-download-fill:before { content: "\eb58"; }
.ic-chat-download-line:before { content: "\eb59"; }
.ic-chat-follow-up-fill:before { content: "\eb5a"; }
.ic-chat-follow-up-line:before { content: "\eb5b"; }
.ic-chat-forward-fill:before { content: "\eb5c"; }
.ic-chat-forward-line:before { content: "\eb5d"; }
.ic-chat-heart-fill:before { content: "\eb5e"; }
.ic-chat-heart-line:before { content: "\eb5f"; }
.ic-chat-history-fill:before { content: "\eb60"; }
.ic-chat-history-line:before { content: "\eb61"; }
.ic-chat-new-fill:before { content: "\eb62"; }
.ic-chat-new-line:before { content: "\eb63"; }
.ic-chat-off-fill:before { content: "\eb64"; }
.ic-chat-off-line:before { content: "\eb65"; }
.ic-chat-poll-fill:before { content: "\eb66"; }
.ic-chat-poll-line:before { content: "\eb67"; }
.ic-chat-private-fill:before { content: "\eb68"; }
.ic-chat-private-line:before { content: "\eb69"; }
.ic-chat-quote-fill:before { content: "\eb6a"; }
.ic-chat-quote-line:before { content: "\eb6b"; }
.ic-chat-settings-fill:before { content: "\eb6c"; }
.ic-chat-settings-line:before { content: "\eb6d"; }
.ic-chat-smile-2-fill:before { content: "\eb6e"; }
.ic-chat-smile-2-line:before { content: "\eb6f"; }
.ic-chat-smile-3-fill:before { content: "\eb70"; }
.ic-chat-smile-3-line:before { content: "\eb71"; }
.ic-chat-smile-fill:before { content: "\eb72"; }
.ic-chat-smile-line:before { content: "\eb73"; }
.ic-chat-upload-fill:before { content: "\eb74"; }
.ic-chat-upload-line:before { content: "\eb75"; }
.ic-chat-voice-fill:before { content: "\eb76"; }
.ic-chat-voice-line:before { content: "\eb77"; }
.ic-check-double-fill:before { content: "\eb78"; }
.ic-check-double-line:before { content: "\eb79"; }
.ic-check-fill:before { content: "\eb7a"; }
.ic-check-line:before { content: "\eb7b"; }
.ic-checkbox-blank-circle-fill:before { content: "\eb7c"; }
.ic-checkbox-blank-circle-line:before { content: "\eb7d"; }
.ic-checkbox-blank-fill:before { content: "\eb7e"; }
.ic-checkbox-blank-line:before { content: "\eb7f"; }
.ic-checkbox-circle-fill:before { content: "\eb80"; }
.ic-checkbox-circle-line:before { content: "\eb81"; }
.ic-checkbox-fill:before { content: "\eb82"; }
.ic-checkbox-indeterminate-fill:before { content: "\eb83"; }
.ic-checkbox-indeterminate-line:before { content: "\eb84"; }
.ic-checkbox-line:before { content: "\eb85"; }
.ic-checkbox-multiple-blank-fill:before { content: "\eb86"; }
.ic-checkbox-multiple-blank-line:before { content: "\eb87"; }
.ic-checkbox-multiple-fill:before { content: "\eb88"; }
.ic-checkbox-multiple-line:before { content: "\eb89"; }
.ic-china-railway-fill:before { content: "\eb8a"; }
.ic-china-railway-line:before { content: "\eb8b"; }
.ic-chrome-fill:before { content: "\eb8c"; }
.ic-chrome-line:before { content: "\eb8d"; }
.ic-clapperboard-fill:before { content: "\eb8e"; }
.ic-clapperboard-line:before { content: "\eb8f"; }
.ic-clipboard-fill:before { content: "\eb90"; }
.ic-clipboard-line:before { content: "\eb91"; }
.ic-clockwise-2-fill:before { content: "\eb92"; }
.ic-clockwise-2-line:before { content: "\eb93"; }
.ic-clockwise-fill:before { content: "\eb94"; }
.ic-clockwise-line:before { content: "\eb95"; }
.ic-close-circle-fill:before { content: "\eb96"; }
.ic-close-circle-line:before { content: "\eb97"; }
.ic-close-fill:before { content: "\eb98"; }
.ic-close-line:before { content: "\eb99"; }
.ic-closed-captioning-fill:before { content: "\eb9a"; }
.ic-closed-captioning-line:before { content: "\eb9b"; }
.ic-cloud-fill:before { content: "\eb9c"; }
.ic-cloud-line:before { content: "\eb9d"; }
.ic-cloud-off-fill:before { content: "\eb9e"; }
.ic-cloud-off-line:before { content: "\eb9f"; }
.ic-cloud-windy-fill:before { content: "\eba0"; }
.ic-cloud-windy-line:before { content: "\eba1"; }
.ic-cloudy-2-fill:before { content: "\eba2"; }
.ic-cloudy-2-line:before { content: "\eba3"; }
.ic-cloudy-fill:before { content: "\eba4"; }
.ic-cloudy-line:before { content: "\eba5"; }
.ic-code-box-fill:before { content: "\eba6"; }
.ic-code-box-line:before { content: "\eba7"; }
.ic-code-fill:before { content: "\eba8"; }
.ic-code-line:before { content: "\eba9"; }
.ic-code-s-fill:before { content: "\ebaa"; }
.ic-code-s-line:before { content: "\ebab"; }
.ic-code-s-slash-fill:before { content: "\ebac"; }
.ic-code-s-slash-line:before { content: "\ebad"; }
.ic-code-view:before { content: "\ebae"; }
.ic-codepen-fill:before { content: "\ebaf"; }
.ic-codepen-line:before { content: "\ebb0"; }
.ic-coin-fill:before { content: "\ebb1"; }
.ic-coin-line:before { content: "\ebb2"; }
.ic-coins-fill:before { content: "\ebb3"; }
.ic-coins-line:before { content: "\ebb4"; }
.ic-collage-fill:before { content: "\ebb5"; }
.ic-collage-line:before { content: "\ebb6"; }
.ic-command-fill:before { content: "\ebb7"; }
.ic-command-line:before { content: "\ebb8"; }
.ic-community-fill:before { content: "\ebb9"; }
.ic-community-line:before { content: "\ebba"; }
.ic-compass-2-fill:before { content: "\ebbb"; }
.ic-compass-2-line:before { content: "\ebbc"; }
.ic-compass-3-fill:before { content: "\ebbd"; }
.ic-compass-3-line:before { content: "\ebbe"; }
.ic-compass-4-fill:before { content: "\ebbf"; }
.ic-compass-4-line:before { content: "\ebc0"; }
.ic-compass-discover-fill:before { content: "\ebc1"; }
.ic-compass-discover-line:before { content: "\ebc2"; }
.ic-compass-fill:before { content: "\ebc3"; }
.ic-compass-line:before { content: "\ebc4"; }
.ic-compasses-2-fill:before { content: "\ebc5"; }
.ic-compasses-2-line:before { content: "\ebc6"; }
.ic-compasses-fill:before { content: "\ebc7"; }
.ic-compasses-line:before { content: "\ebc8"; }
.ic-computer-fill:before { content: "\ebc9"; }
.ic-computer-line:before { content: "\ebca"; }
.ic-contacts-book-2-fill:before { content: "\ebcb"; }
.ic-contacts-book-2-line:before { content: "\ebcc"; }
.ic-contacts-book-fill:before { content: "\ebcd"; }
.ic-contacts-book-line:before { content: "\ebce"; }
.ic-contacts-book-upload-fill:before { content: "\ebcf"; }
.ic-contacts-book-upload-line:before { content: "\ebd0"; }
.ic-contacts-fill:before { content: "\ebd1"; }
.ic-contacts-line:before { content: "\ebd2"; }
.ic-contrast-2-fill:before { content: "\ebd3"; }
.ic-contrast-2-line:before { content: "\ebd4"; }
.ic-contrast-drop-2-fill:before { content: "\ebd5"; }
.ic-contrast-drop-2-line:before { content: "\ebd6"; }
.ic-contrast-drop-fill:before { content: "\ebd7"; }
.ic-contrast-drop-line:before { content: "\ebd8"; }
.ic-contrast-fill:before { content: "\ebd9"; }
.ic-contrast-line:before { content: "\ebda"; }
.ic-copper-coin-fill:before { content: "\ebdb"; }
.ic-copper-coin-line:before { content: "\ebdc"; }
.ic-copper-diamond-fill:before { content: "\ebdd"; }
.ic-copper-diamond-line:before { content: "\ebde"; }
.ic-copyleft-fill:before { content: "\ebdf"; }
.ic-copyleft-line:before { content: "\ebe0"; }
.ic-copyright-fill:before { content: "\ebe1"; }
.ic-copyright-line:before { content: "\ebe2"; }
.ic-coreos-fill:before { content: "\ebe3"; }
.ic-coreos-line:before { content: "\ebe4"; }
.ic-coupon-2-fill:before { content: "\ebe5"; }
.ic-coupon-2-line:before { content: "\ebe6"; }
.ic-coupon-3-fill:before { content: "\ebe7"; }
.ic-coupon-3-line:before { content: "\ebe8"; }
.ic-coupon-4-fill:before { content: "\ebe9"; }
.ic-coupon-4-line:before { content: "\ebea"; }
.ic-coupon-5-fill:before { content: "\ebeb"; }
.ic-coupon-5-line:before { content: "\ebec"; }
.ic-coupon-fill:before { content: "\ebed"; }
.ic-coupon-line:before { content: "\ebee"; }
.ic-cpu-fill:before { content: "\ebef"; }
.ic-cpu-line:before { content: "\ebf0"; }
.ic-creative-commons-by-fill:before { content: "\ebf1"; }
.ic-creative-commons-by-line:before { content: "\ebf2"; }
.ic-creative-commons-fill:before { content: "\ebf3"; }
.ic-creative-commons-line:before { content: "\ebf4"; }
.ic-creative-commons-nc-fill:before { content: "\ebf5"; }
.ic-creative-commons-nc-line:before { content: "\ebf6"; }
.ic-creative-commons-nd-fill:before { content: "\ebf7"; }
.ic-creative-commons-nd-line:before { content: "\ebf8"; }
.ic-creative-commons-sa-fill:before { content: "\ebf9"; }
.ic-creative-commons-sa-line:before { content: "\ebfa"; }
.ic-creative-commons-zero-fill:before { content: "\ebfb"; }
.ic-creative-commons-zero-line:before { content: "\ebfc"; }
.ic-criminal-fill:before { content: "\ebfd"; }
.ic-criminal-line:before { content: "\ebfe"; }
.ic-crop-2-fill:before { content: "\ebff"; }
.ic-crop-2-line:before { content: "\ec00"; }
.ic-crop-fill:before { content: "\ec01"; }
.ic-crop-line:before { content: "\ec02"; }
.ic-css3-fill:before { content: "\ec03"; }
.ic-css3-line:before { content: "\ec04"; }
.ic-cup-fill:before { content: "\ec05"; }
.ic-cup-line:before { content: "\ec06"; }
.ic-currency-fill:before { content: "\ec07"; }
.ic-currency-line:before { content: "\ec08"; }
.ic-cursor-fill:before { content: "\ec09"; }
.ic-cursor-line:before { content: "\ec0a"; }
.ic-customer-service-2-fill:before { content: "\ec0b"; }
.ic-customer-service-2-line:before { content: "\ec0c"; }
.ic-customer-service-fill:before { content: "\ec0d"; }
.ic-customer-service-line:before { content: "\ec0e"; }
.ic-dashboard-2-fill:before { content: "\ec0f"; }
.ic-dashboard-2-line:before { content: "\ec10"; }
.ic-dashboard-3-fill:before { content: "\ec11"; }
.ic-dashboard-3-line:before { content: "\ec12"; }
.ic-dashboard-fill:before { content: "\ec13"; }
.ic-dashboard-line:before { content: "\ec14"; }
.ic-database-2-fill:before { content: "\ec15"; }
.ic-database-2-line:before { content: "\ec16"; }
.ic-database-fill:before { content: "\ec17"; }
.ic-database-line:before { content: "\ec18"; }
.ic-delete-back-2-fill:before { content: "\ec19"; }
.ic-delete-back-2-line:before { content: "\ec1a"; }
.ic-delete-back-fill:before { content: "\ec1b"; }
.ic-delete-back-line:before { content: "\ec1c"; }
.ic-delete-bin-2-fill:before { content: "\ec1d"; }
.ic-delete-bin-2-line:before { content: "\ec1e"; }
.ic-delete-bin-3-fill:before { content: "\ec1f"; }
.ic-delete-bin-3-line:before { content: "\ec20"; }
.ic-delete-bin-4-fill:before { content: "\ec21"; }
.ic-delete-bin-4-line:before { content: "\ec22"; }
.ic-delete-bin-5-fill:before { content: "\ec23"; }
.ic-delete-bin-5-line:before { content: "\ec24"; }
.ic-delete-bin-6-fill:before { content: "\ec25"; }
.ic-delete-bin-6-line:before { content: "\ec26"; }
.ic-delete-bin-7-fill:before { content: "\ec27"; }
.ic-delete-bin-7-line:before { content: "\ec28"; }
.ic-delete-bin-fill:before { content: "\ec29"; }
.ic-delete-bin-line:before { content: "\ec2a"; }
.ic-delete-column:before { content: "\ec2b"; }
.ic-delete-row:before { content: "\ec2c"; }
.ic-device-fill:before { content: "\ec2d"; }
.ic-device-line:before { content: "\ec2e"; }
.ic-device-recover-fill:before { content: "\ec2f"; }
.ic-device-recover-line:before { content: "\ec30"; }
.ic-dingding-fill:before { content: "\ec31"; }
.ic-dingding-line:before { content: "\ec32"; }
.ic-direction-fill:before { content: "\ec33"; }
.ic-direction-line:before { content: "\ec34"; }
.ic-disc-fill:before { content: "\ec35"; }
.ic-disc-line:before { content: "\ec36"; }
.ic-discord-fill:before { content: "\ec37"; }
.ic-discord-line:before { content: "\ec38"; }
.ic-discuss-fill:before { content: "\ec39"; }
.ic-discuss-line:before { content: "\ec3a"; }
.ic-dislike-fill:before { content: "\ec3b"; }
.ic-dislike-line:before { content: "\ec3c"; }
.ic-disqus-fill:before { content: "\ec3d"; }
.ic-disqus-line:before { content: "\ec3e"; }
.ic-divide-fill:before { content: "\ec3f"; }
.ic-divide-line:before { content: "\ec40"; }
.ic-donut-chart-fill:before { content: "\ec41"; }
.ic-donut-chart-line:before { content: "\ec42"; }
.ic-door-closed-fill:before { content: "\ec43"; }
.ic-door-closed-line:before { content: "\ec44"; }
.ic-door-fill:before { content: "\ec45"; }
.ic-door-line:before { content: "\ec46"; }
.ic-door-lock-box-fill:before { content: "\ec47"; }
.ic-door-lock-box-line:before { content: "\ec48"; }
.ic-door-lock-fill:before { content: "\ec49"; }
.ic-door-lock-line:before { content: "\ec4a"; }
.ic-door-open-fill:before { content: "\ec4b"; }
.ic-door-open-line:before { content: "\ec4c"; }
.ic-dossier-fill:before { content: "\ec4d"; }
.ic-dossier-line:before { content: "\ec4e"; }
.ic-douban-fill:before { content: "\ec4f"; }
.ic-douban-line:before { content: "\ec50"; }
.ic-double-quotes-l:before { content: "\ec51"; }
.ic-double-quotes-r:before { content: "\ec52"; }
.ic-download-2-fill:before { content: "\ec53"; }
.ic-download-2-line:before { content: "\ec54"; }
.ic-download-cloud-2-fill:before { content: "\ec55"; }
.ic-download-cloud-2-line:before { content: "\ec56"; }
.ic-download-cloud-fill:before { content: "\ec57"; }
.ic-download-cloud-line:before { content: "\ec58"; }
.ic-download-fill:before { content: "\ec59"; }
.ic-download-line:before { content: "\ec5a"; }
.ic-draft-fill:before { content: "\ec5b"; }
.ic-draft-line:before { content: "\ec5c"; }
.ic-drag-drop-fill:before { content: "\ec5d"; }
.ic-drag-drop-line:before { content: "\ec5e"; }
.ic-drag-move-2-fill:before { content: "\ec5f"; }
.ic-drag-move-2-line:before { content: "\ec60"; }
.ic-drag-move-fill:before { content: "\ec61"; }
.ic-drag-move-line:before { content: "\ec62"; }
.ic-dribbble-fill:before { content: "\ec63"; }
.ic-dribbble-line:before { content: "\ec64"; }
.ic-drive-fill:before { content: "\ec65"; }
.ic-drive-line:before { content: "\ec66"; }
.ic-drizzle-fill:before { content: "\ec67"; }
.ic-drizzle-line:before { content: "\ec68"; }
.ic-drop-fill:before { content: "\ec69"; }
.ic-drop-line:before { content: "\ec6a"; }
.ic-dropbox-fill:before { content: "\ec6b"; }
.ic-dropbox-line:before { content: "\ec6c"; }
.ic-dual-sim-1-fill:before { content: "\ec6d"; }
.ic-dual-sim-1-line:before { content: "\ec6e"; }
.ic-dual-sim-2-fill:before { content: "\ec6f"; }
.ic-dual-sim-2-line:before { content: "\ec70"; }
.ic-dv-fill:before { content: "\ec71"; }
.ic-dv-line:before { content: "\ec72"; }
.ic-dvd-fill:before { content: "\ec73"; }
.ic-dvd-line:before { content: "\ec74"; }
.ic-e-bike-2-fill:before { content: "\ec75"; }
.ic-e-bike-2-line:before { content: "\ec76"; }
.ic-e-bike-fill:before { content: "\ec77"; }
.ic-e-bike-line:before { content: "\ec78"; }
.ic-earth-fill:before { content: "\ec79"; }
.ic-earth-line:before { content: "\ec7a"; }
.ic-earthquake-fill:before { content: "\ec7b"; }
.ic-earthquake-line:before { content: "\ec7c"; }
.ic-edge-fill:before { content: "\ec7d"; }
.ic-edge-line:before { content: "\ec7e"; }
.ic-edit-2-fill:before { content: "\ec7f"; }
.ic-edit-2-line:before { content: "\ec80"; }
.ic-edit-box-fill:before { content: "\ec81"; }
.ic-edit-box-line:before { content: "\ec82"; }
.ic-edit-circle-fill:before { content: "\ec83"; }
.ic-edit-circle-line:before { content: "\ec84"; }
.ic-edit-fill:before { content: "\ec85"; }
.ic-edit-line:before { content: "\ec86"; }
.ic-eject-fill:before { content: "\ec87"; }
.ic-eject-line:before { content: "\ec88"; }
.ic-emotion-2-fill:before { content: "\ec89"; }
.ic-emotion-2-line:before { content: "\ec8a"; }
.ic-emotion-fill:before { content: "\ec8b"; }
.ic-emotion-happy-fill:before { content: "\ec8c"; }
.ic-emotion-happy-line:before { content: "\ec8d"; }
.ic-emotion-laugh-fill:before { content: "\ec8e"; }
.ic-emotion-laugh-line:before { content: "\ec8f"; }
.ic-emotion-line:before { content: "\ec90"; }
.ic-emotion-normal-fill:before { content: "\ec91"; }
.ic-emotion-normal-line:before { content: "\ec92"; }
.ic-emotion-sad-fill:before { content: "\ec93"; }
.ic-emotion-sad-line:before { content: "\ec94"; }
.ic-emotion-unhappy-fill:before { content: "\ec95"; }
.ic-emotion-unhappy-line:before { content: "\ec96"; }
.ic-empathize-fill:before { content: "\ec97"; }
.ic-empathize-line:before { content: "\ec98"; }
.ic-emphasis-cn:before { content: "\ec99"; }
.ic-emphasis:before { content: "\ec9a"; }
.ic-english-input:before { content: "\ec9b"; }
.ic-equalizer-fill:before { content: "\ec9c"; }
.ic-equalizer-line:before { content: "\ec9d"; }
.ic-eraser-fill:before { content: "\ec9e"; }
.ic-eraser-line:before { content: "\ec9f"; }
.ic-error-warning-fill:before { content: "\eca0"; }
.ic-error-warning-line:before { content: "\eca1"; }
.ic-evernote-fill:before { content: "\eca2"; }
.ic-evernote-line:before { content: "\eca3"; }
.ic-exchange-box-fill:before { content: "\eca4"; }
.ic-exchange-box-line:before { content: "\eca5"; }
.ic-exchange-cny-fill:before { content: "\eca6"; }
.ic-exchange-cny-line:before { content: "\eca7"; }
.ic-exchange-dollar-fill:before { content: "\eca8"; }
.ic-exchange-dollar-line:before { content: "\eca9"; }
.ic-exchange-fill:before { content: "\ecaa"; }
.ic-exchange-funds-fill:before { content: "\ecab"; }
.ic-exchange-funds-line:before { content: "\ecac"; }
.ic-exchange-line:before { content: "\ecad"; }
.ic-external-link-fill:before { content: "\ecae"; }
.ic-external-link-line:before { content: "\ecaf"; }
.ic-eye-2-fill:before { content: "\ecb0"; }
.ic-eye-2-line:before { content: "\ecb1"; }
.ic-eye-close-fill:before { content: "\ecb2"; }
.ic-eye-close-line:before { content: "\ecb3"; }
.ic-eye-fill:before { content: "\ecb4"; }
.ic-eye-line:before { content: "\ecb5"; }
.ic-eye-off-fill:before { content: "\ecb6"; }
.ic-eye-off-line:before { content: "\ecb7"; }
.ic-facebook-box-fill:before { content: "\ecb8"; }
.ic-facebook-box-line:before { content: "\ecb9"; }
.ic-facebook-circle-fill:before { content: "\ecba"; }
.ic-facebook-circle-line:before { content: "\ecbb"; }
.ic-facebook-fill:before { content: "\ecbc"; }
.ic-facebook-line:before { content: "\ecbd"; }
.ic-fahrenheit-fill:before { content: "\ecbe"; }
.ic-fahrenheit-line:before { content: "\ecbf"; }
.ic-feedback-fill:before { content: "\ecc0"; }
.ic-feedback-line:before { content: "\ecc1"; }
.ic-file-2-fill:before { content: "\ecc2"; }
.ic-file-2-line:before { content: "\ecc3"; }
.ic-file-3-fill:before { content: "\ecc4"; }
.ic-file-3-line:before { content: "\ecc5"; }
.ic-file-4-fill:before { content: "\ecc6"; }
.ic-file-4-line:before { content: "\ecc7"; }
.ic-file-add-fill:before { content: "\ecc8"; }
.ic-file-add-line:before { content: "\ecc9"; }
.ic-file-chart-2-fill:before { content: "\ecca"; }
.ic-file-chart-2-line:before { content: "\eccb"; }
.ic-file-chart-fill:before { content: "\eccc"; }
.ic-file-chart-line:before { content: "\eccd"; }
.ic-file-cloud-fill:before { content: "\ecce"; }
.ic-file-cloud-line:before { content: "\eccf"; }
.ic-file-code-fill:before { content: "\ecd0"; }
.ic-file-code-line:before { content: "\ecd1"; }
.ic-file-copy-2-fill:before { content: "\ecd2"; }
.ic-file-copy-2-line:before { content: "\ecd3"; }
.ic-file-copy-fill:before { content: "\ecd4"; }
.ic-file-copy-line:before { content: "\ecd5"; }
.ic-file-damage-fill:before { content: "\ecd6"; }
.ic-file-damage-line:before { content: "\ecd7"; }
.ic-file-download-fill:before { content: "\ecd8"; }
.ic-file-download-line:before { content: "\ecd9"; }
.ic-file-edit-fill:before { content: "\ecda"; }
.ic-file-edit-line:before { content: "\ecdb"; }
.ic-file-excel-2-fill:before { content: "\ecdc"; }
.ic-file-excel-2-line:before { content: "\ecdd"; }
.ic-file-excel-fill:before { content: "\ecde"; }
.ic-file-excel-line:before { content: "\ecdf"; }
.ic-file-fill:before { content: "\ece0"; }
.ic-file-forbid-fill:before { content: "\ece1"; }
.ic-file-forbid-line:before { content: "\ece2"; }
.ic-file-gif-fill:before { content: "\ece3"; }
.ic-file-gif-line:before { content: "\ece4"; }
.ic-file-history-fill:before { content: "\ece5"; }
.ic-file-history-line:before { content: "\ece6"; }
.ic-file-hwp-fill:before { content: "\ece7"; }
.ic-file-hwp-line:before { content: "\ece8"; }
.ic-file-info-fill:before { content: "\ece9"; }
.ic-file-info-line:before { content: "\ecea"; }
.ic-file-line:before { content: "\eceb"; }
.ic-file-list-2-fill:before { content: "\ecec"; }
.ic-file-list-2-line:before { content: "\eced"; }
.ic-file-list-3-fill:before { content: "\ecee"; }
.ic-file-list-3-line:before { content: "\ecef"; }
.ic-file-list-fill:before { content: "\ecf0"; }
.ic-file-list-line:before { content: "\ecf1"; }
.ic-file-lock-fill:before { content: "\ecf2"; }
.ic-file-lock-line:before { content: "\ecf3"; }
.ic-file-mark-fill:before { content: "\ecf4"; }
.ic-file-mark-line:before { content: "\ecf5"; }
.ic-file-music-fill:before { content: "\ecf6"; }
.ic-file-music-line:before { content: "\ecf7"; }
.ic-file-paper-2-fill:before { content: "\ecf8"; }
.ic-file-paper-2-line:before { content: "\ecf9"; }
.ic-file-paper-fill:before { content: "\ecfa"; }
.ic-file-paper-line:before { content: "\ecfb"; }
.ic-file-pdf-fill:before { content: "\ecfc"; }
.ic-file-pdf-line:before { content: "\ecfd"; }
.ic-file-ppt-2-fill:before { content: "\ecfe"; }
.ic-file-ppt-2-line:before { content: "\ecff"; }
.ic-file-ppt-fill:before { content: "\ed00"; }
.ic-file-ppt-line:before { content: "\ed01"; }
.ic-file-reduce-fill:before { content: "\ed02"; }
.ic-file-reduce-line:before { content: "\ed03"; }
.ic-file-search-fill:before { content: "\ed04"; }
.ic-file-search-line:before { content: "\ed05"; }
.ic-file-settings-fill:before { content: "\ed06"; }
.ic-file-settings-line:before { content: "\ed07"; }
.ic-file-shield-2-fill:before { content: "\ed08"; }
.ic-file-shield-2-line:before { content: "\ed09"; }
.ic-file-shield-fill:before { content: "\ed0a"; }
.ic-file-shield-line:before { content: "\ed0b"; }
.ic-file-shred-fill:before { content: "\ed0c"; }
.ic-file-shred-line:before { content: "\ed0d"; }
.ic-file-text-fill:before { content: "\ed0e"; }
.ic-file-text-line:before { content: "\ed0f"; }
.ic-file-transfer-fill:before { content: "\ed10"; }
.ic-file-transfer-line:before { content: "\ed11"; }
.ic-file-unknow-fill:before { content: "\ed12"; }
.ic-file-unknow-line:before { content: "\ed13"; }
.ic-file-upload-fill:before { content: "\ed14"; }
.ic-file-upload-line:before { content: "\ed15"; }
.ic-file-user-fill:before { content: "\ed16"; }
.ic-file-user-line:before { content: "\ed17"; }
.ic-file-warning-fill:before { content: "\ed18"; }
.ic-file-warning-line:before { content: "\ed19"; }
.ic-file-word-2-fill:before { content: "\ed1a"; }
.ic-file-word-2-line:before { content: "\ed1b"; }
.ic-file-word-fill:before { content: "\ed1c"; }
.ic-file-word-line:before { content: "\ed1d"; }
.ic-file-zip-fill:before { content: "\ed1e"; }
.ic-file-zip-line:before { content: "\ed1f"; }
.ic-film-fill:before { content: "\ed20"; }
.ic-film-line:before { content: "\ed21"; }
.ic-filter-2-fill:before { content: "\ed22"; }
.ic-filter-2-line:before { content: "\ed23"; }
.ic-filter-3-fill:before { content: "\ed24"; }
.ic-filter-3-line:before { content: "\ed25"; }
.ic-filter-fill:before { content: "\ed26"; }
.ic-filter-line:before { content: "\ed27"; }
.ic-filter-off-fill:before { content: "\ed28"; }
.ic-filter-off-line:before { content: "\ed29"; }
.ic-find-replace-fill:before { content: "\ed2a"; }
.ic-find-replace-line:before { content: "\ed2b"; }
.ic-finder-fill:before { content: "\ed2c"; }
.ic-finder-line:before { content: "\ed2d"; }
.ic-fingerprint-2-fill:before { content: "\ed2e"; }
.ic-fingerprint-2-line:before { content: "\ed2f"; }
.ic-fingerprint-fill:before { content: "\ed30"; }
.ic-fingerprint-line:before { content: "\ed31"; }
.ic-fire-fill:before { content: "\ed32"; }
.ic-fire-line:before { content: "\ed33"; }
.ic-firefox-fill:before { content: "\ed34"; }
.ic-firefox-line:before { content: "\ed35"; }
.ic-first-aid-kit-fill:before { content: "\ed36"; }
.ic-first-aid-kit-line:before { content: "\ed37"; }
.ic-flag-2-fill:before { content: "\ed38"; }
.ic-flag-2-line:before { content: "\ed39"; }
.ic-flag-fill:before { content: "\ed3a"; }
.ic-flag-line:before { content: "\ed3b"; }
.ic-flashlight-fill:before { content: "\ed3c"; }
.ic-flashlight-line:before { content: "\ed3d"; }
.ic-flask-fill:before { content: "\ed3e"; }
.ic-flask-line:before { content: "\ed3f"; }
.ic-flight-land-fill:before { content: "\ed40"; }
.ic-flight-land-line:before { content: "\ed41"; }
.ic-flight-takeoff-fill:before { content: "\ed42"; }
.ic-flight-takeoff-line:before { content: "\ed43"; }
.ic-flood-fill:before { content: "\ed44"; }
.ic-flood-line:before { content: "\ed45"; }
.ic-flow-chart:before { content: "\ed46"; }
.ic-flutter-fill:before { content: "\ed47"; }
.ic-flutter-line:before { content: "\ed48"; }
.ic-focus-2-fill:before { content: "\ed49"; }
.ic-focus-2-line:before { content: "\ed4a"; }
.ic-focus-3-fill:before { content: "\ed4b"; }
.ic-focus-3-line:before { content: "\ed4c"; }
.ic-focus-fill:before { content: "\ed4d"; }
.ic-focus-line:before { content: "\ed4e"; }
.ic-foggy-fill:before { content: "\ed4f"; }
.ic-foggy-line:before { content: "\ed50"; }
.ic-folder-2-fill:before { content: "\ed51"; }
.ic-folder-2-line:before { content: "\ed52"; }
.ic-folder-3-fill:before { content: "\ed53"; }
.ic-folder-3-line:before { content: "\ed54"; }
.ic-folder-4-fill:before { content: "\ed55"; }
.ic-folder-4-line:before { content: "\ed56"; }
.ic-folder-5-fill:before { content: "\ed57"; }
.ic-folder-5-line:before { content: "\ed58"; }
.ic-folder-add-fill:before { content: "\ed59"; }
.ic-folder-add-line:before { content: "\ed5a"; }
.ic-folder-chart-2-fill:before { content: "\ed5b"; }
.ic-folder-chart-2-line:before { content: "\ed5c"; }
.ic-folder-chart-fill:before { content: "\ed5d"; }
.ic-folder-chart-line:before { content: "\ed5e"; }
.ic-folder-download-fill:before { content: "\ed5f"; }
.ic-folder-download-line:before { content: "\ed60"; }
.ic-folder-fill:before { content: "\ed61"; }
.ic-folder-forbid-fill:before { content: "\ed62"; }
.ic-folder-forbid-line:before { content: "\ed63"; }
.ic-folder-history-fill:before { content: "\ed64"; }
.ic-folder-history-line:before { content: "\ed65"; }
.ic-folder-info-fill:before { content: "\ed66"; }
.ic-folder-info-line:before { content: "\ed67"; }
.ic-folder-keyhole-fill:before { content: "\ed68"; }
.ic-folder-keyhole-line:before { content: "\ed69"; }
.ic-folder-line:before { content: "\ed6a"; }
.ic-folder-lock-fill:before { content: "\ed6b"; }
.ic-folder-lock-line:before { content: "\ed6c"; }
.ic-folder-music-fill:before { content: "\ed6d"; }
.ic-folder-music-line:before { content: "\ed6e"; }
.ic-folder-open-fill:before { content: "\ed6f"; }
.ic-folder-open-line:before { content: "\ed70"; }
.ic-folder-received-fill:before { content: "\ed71"; }
.ic-folder-received-line:before { content: "\ed72"; }
.ic-folder-reduce-fill:before { content: "\ed73"; }
.ic-folder-reduce-line:before { content: "\ed74"; }
.ic-folder-settings-fill:before { content: "\ed75"; }
.ic-folder-settings-line:before { content: "\ed76"; }
.ic-folder-shared-fill:before { content: "\ed77"; }
.ic-folder-shared-line:before { content: "\ed78"; }
.ic-folder-shield-2-fill:before { content: "\ed79"; }
.ic-folder-shield-2-line:before { content: "\ed7a"; }
.ic-folder-shield-fill:before { content: "\ed7b"; }
.ic-folder-shield-line:before { content: "\ed7c"; }
.ic-folder-transfer-fill:before { content: "\ed7d"; }
.ic-folder-transfer-line:before { content: "\ed7e"; }
.ic-folder-unknow-fill:before { content: "\ed7f"; }
.ic-folder-unknow-line:before { content: "\ed80"; }
.ic-folder-upload-fill:before { content: "\ed81"; }
.ic-folder-upload-line:before { content: "\ed82"; }
.ic-folder-user-fill:before { content: "\ed83"; }
.ic-folder-user-line:before { content: "\ed84"; }
.ic-folder-warning-fill:before { content: "\ed85"; }
.ic-folder-warning-line:before { content: "\ed86"; }
.ic-folder-zip-fill:before { content: "\ed87"; }
.ic-folder-zip-line:before { content: "\ed88"; }
.ic-folders-fill:before { content: "\ed89"; }
.ic-folders-line:before { content: "\ed8a"; }
.ic-font-color:before { content: "\ed8b"; }
.ic-font-size-2:before { content: "\ed8c"; }
.ic-font-size:before { content: "\ed8d"; }
.ic-football-fill:before { content: "\ed8e"; }
.ic-football-line:before { content: "\ed8f"; }
.ic-footprint-fill:before { content: "\ed90"; }
.ic-footprint-line:before { content: "\ed91"; }
.ic-forbid-2-fill:before { content: "\ed92"; }
.ic-forbid-2-line:before { content: "\ed93"; }
.ic-forbid-fill:before { content: "\ed94"; }
.ic-forbid-line:before { content: "\ed95"; }
.ic-format-clear:before { content: "\ed96"; }
.ic-fridge-fill:before { content: "\ed97"; }
.ic-fridge-line:before { content: "\ed98"; }
.ic-fullscreen-exit-fill:before { content: "\ed99"; }
.ic-fullscreen-exit-line:before { content: "\ed9a"; }
.ic-fullscreen-fill:before { content: "\ed9b"; }
.ic-fullscreen-line:before { content: "\ed9c"; }
.ic-function-fill:before { content: "\ed9d"; }
.ic-function-line:before { content: "\ed9e"; }
.ic-functions:before { content: "\ed9f"; }
.ic-funds-box-fill:before { content: "\eda0"; }
.ic-funds-box-line:before { content: "\eda1"; }
.ic-funds-fill:before { content: "\eda2"; }
.ic-funds-line:before { content: "\eda3"; }
.ic-gallery-fill:before { content: "\eda4"; }
.ic-gallery-line:before { content: "\eda5"; }
.ic-gallery-upload-fill:before { content: "\eda6"; }
.ic-gallery-upload-line:before { content: "\eda7"; }
.ic-game-fill:before { content: "\eda8"; }
.ic-game-line:before { content: "\eda9"; }
.ic-gamepad-fill:before { content: "\edaa"; }
.ic-gamepad-line:before { content: "\edab"; }
.ic-gas-station-fill:before { content: "\edac"; }
.ic-gas-station-line:before { content: "\edad"; }
.ic-gatsby-fill:before { content: "\edae"; }
.ic-gatsby-line:before { content: "\edaf"; }
.ic-genderless-fill:before { content: "\edb0"; }
.ic-genderless-line:before { content: "\edb1"; }
.ic-ghost-2-fill:before { content: "\edb2"; }
.ic-ghost-2-line:before { content: "\edb3"; }
.ic-ghost-fill:before { content: "\edb4"; }
.ic-ghost-line:before { content: "\edb5"; }
.ic-ghost-smile-fill:before { content: "\edb6"; }
.ic-ghost-smile-line:before { content: "\edb7"; }
.ic-gift-2-fill:before { content: "\edb8"; }
.ic-gift-2-line:before { content: "\edb9"; }
.ic-gift-fill:before { content: "\edba"; }
.ic-gift-line:before { content: "\edbb"; }
.ic-git-branch-fill:before { content: "\edbc"; }
.ic-git-branch-line:before { content: "\edbd"; }
.ic-git-commit-fill:before { content: "\edbe"; }
.ic-git-commit-line:before { content: "\edbf"; }
.ic-git-merge-fill:before { content: "\edc0"; }
.ic-git-merge-line:before { content: "\edc1"; }
.ic-git-pull-request-fill:before { content: "\edc2"; }
.ic-git-pull-request-line:before { content: "\edc3"; }
.ic-git-repository-commits-fill:before { content: "\edc4"; }
.ic-git-repository-commits-line:before { content: "\edc5"; }
.ic-git-repository-fill:before { content: "\edc6"; }
.ic-git-repository-line:before { content: "\edc7"; }
.ic-git-repository-private-fill:before { content: "\edc8"; }
.ic-git-repository-private-line:before { content: "\edc9"; }
.ic-github-fill:before { content: "\edca"; }
.ic-github-line:before { content: "\edcb"; }
.ic-gitlab-fill:before { content: "\edcc"; }
.ic-gitlab-line:before { content: "\edcd"; }
.ic-global-fill:before { content: "\edce"; }
.ic-global-line:before { content: "\edcf"; }
.ic-globe-fill:before { content: "\edd0"; }
.ic-globe-line:before { content: "\edd1"; }
.ic-goblet-fill:before { content: "\edd2"; }
.ic-goblet-line:before { content: "\edd3"; }
.ic-google-fill:before { content: "\edd4"; }
.ic-google-line:before { content: "\edd5"; }
.ic-google-play-fill:before { content: "\edd6"; }
.ic-google-play-line:before { content: "\edd7"; }
.ic-government-fill:before { content: "\edd8"; }
.ic-government-line:before { content: "\edd9"; }
.ic-gps-fill:before { content: "\edda"; }
.ic-gps-line:before { content: "\eddb"; }
.ic-gradienter-fill:before { content: "\eddc"; }
.ic-gradienter-line:before { content: "\eddd"; }
.ic-grid-fill:before { content: "\edde"; }
.ic-grid-line:before { content: "\eddf"; }
.ic-group-2-fill:before { content: "\ede0"; }
.ic-group-2-line:before { content: "\ede1"; }
.ic-group-fill:before { content: "\ede2"; }
.ic-group-line:before { content: "\ede3"; }
.ic-guide-fill:before { content: "\ede4"; }
.ic-guide-line:before { content: "\ede5"; }
.ic-h-1:before { content: "\ede6"; }
.ic-h-2:before { content: "\ede7"; }
.ic-h-3:before { content: "\ede8"; }
.ic-h-4:before { content: "\ede9"; }
.ic-h-5:before { content: "\edea"; }
.ic-h-6:before { content: "\edeb"; }
.ic-hail-fill:before { content: "\edec"; }
.ic-hail-line:before { content: "\eded"; }
.ic-hammer-fill:before { content: "\edee"; }
.ic-hammer-line:before { content: "\edef"; }
.ic-hand-coin-fill:before { content: "\edf0"; }
.ic-hand-coin-line:before { content: "\edf1"; }
.ic-hand-heart-fill:before { content: "\edf2"; }
.ic-hand-heart-line:before { content: "\edf3"; }
.ic-hand-sanitizer-fill:before { content: "\edf4"; }
.ic-hand-sanitizer-line:before { content: "\edf5"; }
.ic-handbag-fill:before { content: "\edf6"; }
.ic-handbag-line:before { content: "\edf7"; }
.ic-hard-drive-2-fill:before { content: "\edf8"; }
.ic-hard-drive-2-line:before { content: "\edf9"; }
.ic-hard-drive-fill:before { content: "\edfa"; }
.ic-hard-drive-line:before { content: "\edfb"; }
.ic-hashtag:before { content: "\edfc"; }
.ic-haze-2-fill:before { content: "\edfd"; }
.ic-haze-2-line:before { content: "\edfe"; }
.ic-haze-fill:before { content: "\edff"; }
.ic-haze-line:before { content: "\ee00"; }
.ic-hd-fill:before { content: "\ee01"; }
.ic-hd-line:before { content: "\ee02"; }
.ic-heading:before { content: "\ee03"; }
.ic-headphone-fill:before { content: "\ee04"; }
.ic-headphone-line:before { content: "\ee05"; }
.ic-health-book-fill:before { content: "\ee06"; }
.ic-health-book-line:before { content: "\ee07"; }
.ic-heart-2-fill:before { content: "\ee08"; }
.ic-heart-2-line:before { content: "\ee09"; }
.ic-heart-3-fill:before { content: "\ee0a"; }
.ic-heart-3-line:before { content: "\ee0b"; }
.ic-heart-add-fill:before { content: "\ee0c"; }
.ic-heart-add-line:before { content: "\ee0d"; }
.ic-heart-fill:before { content: "\ee0e"; }
.ic-heart-line:before { content: "\ee0f"; }
.ic-heart-pulse-fill:before { content: "\ee10"; }
.ic-heart-pulse-line:before { content: "\ee11"; }
.ic-hearts-fill:before { content: "\ee12"; }
.ic-hearts-line:before { content: "\ee13"; }
.ic-heavy-showers-fill:before { content: "\ee14"; }
.ic-heavy-showers-line:before { content: "\ee15"; }
.ic-history-fill:before { content: "\ee16"; }
.ic-history-line:before { content: "\ee17"; }
.ic-home-2-fill:before { content: "\ee18"; }
.ic-home-2-line:before { content: "\ee19"; }
.ic-home-3-fill:before { content: "\ee1a"; }
.ic-home-3-line:before { content: "\ee1b"; }
.ic-home-4-fill:before { content: "\ee1c"; }
.ic-home-4-line:before { content: "\ee1d"; }
.ic-home-5-fill:before { content: "\ee1e"; }
.ic-home-5-line:before { content: "\ee1f"; }
.ic-home-6-fill:before { content: "\ee20"; }
.ic-home-6-line:before { content: "\ee21"; }
.ic-home-7-fill:before { content: "\ee22"; }
.ic-home-7-line:before { content: "\ee23"; }
.ic-home-8-fill:before { content: "\ee24"; }
.ic-home-8-line:before { content: "\ee25"; }
.ic-home-fill:before { content: "\ee26"; }
.ic-home-gear-fill:before { content: "\ee27"; }
.ic-home-gear-line:before { content: "\ee28"; }
.ic-home-heart-fill:before { content: "\ee29"; }
.ic-home-heart-line:before { content: "\ee2a"; }
.ic-home-line:before { content: "\ee2b"; }
.ic-home-smile-2-fill:before { content: "\ee2c"; }
.ic-home-smile-2-line:before { content: "\ee2d"; }
.ic-home-smile-fill:before { content: "\ee2e"; }
.ic-home-smile-line:before { content: "\ee2f"; }
.ic-home-wifi-fill:before { content: "\ee30"; }
.ic-home-wifi-line:before { content: "\ee31"; }
.ic-honor-of-kings-fill:before { content: "\ee32"; }
.ic-honor-of-kings-line:before { content: "\ee33"; }
.ic-honour-fill:before { content: "\ee34"; }
.ic-honour-line:before { content: "\ee35"; }
.ic-hospital-fill:before { content: "\ee36"; }
.ic-hospital-line:before { content: "\ee37"; }
.ic-hotel-bed-fill:before { content: "\ee38"; }
.ic-hotel-bed-line:before { content: "\ee39"; }
.ic-hotel-fill:before { content: "\ee3a"; }
.ic-hotel-line:before { content: "\ee3b"; }
.ic-hotspot-fill:before { content: "\ee3c"; }
.ic-hotspot-line:before { content: "\ee3d"; }
.ic-hq-fill:before { content: "\ee3e"; }
.ic-hq-line:before { content: "\ee3f"; }
.ic-html5-fill:before { content: "\ee40"; }
.ic-html5-line:before { content: "\ee41"; }
.ic-ie-fill:before { content: "\ee42"; }
.ic-ie-line:before { content: "\ee43"; }
.ic-image-2-fill:before { content: "\ee44"; }
.ic-image-2-line:before { content: "\ee45"; }
.ic-image-add-fill:before { content: "\ee46"; }
.ic-image-add-line:before { content: "\ee47"; }
.ic-image-edit-fill:before { content: "\ee48"; }
.ic-image-edit-line:before { content: "\ee49"; }
.ic-image-fill:before { content: "\ee4a"; }
.ic-image-line:before { content: "\ee4b"; }
.ic-inbox-archive-fill:before { content: "\ee4c"; }
.ic-inbox-archive-line:before { content: "\ee4d"; }
.ic-inbox-fill:before { content: "\ee4e"; }
.ic-inbox-line:before { content: "\ee4f"; }
.ic-inbox-unarchive-fill:before { content: "\ee50"; }
.ic-inbox-unarchive-line:before { content: "\ee51"; }
.ic-increase-decrease-fill:before { content: "\ee52"; }
.ic-increase-decrease-line:before { content: "\ee53"; }
.ic-indent-decrease:before { content: "\ee54"; }
.ic-indent-increase:before { content: "\ee55"; }
.ic-indeterminate-circle-fill:before { content: "\ee56"; }
.ic-indeterminate-circle-line:before { content: "\ee57"; }
.ic-information-fill:before { content: "\ee58"; }
.ic-information-line:before { content: "\ee59"; }
.ic-infrared-thermometer-fill:before { content: "\ee5a"; }
.ic-infrared-thermometer-line:before { content: "\ee5b"; }
.ic-ink-bottle-fill:before { content: "\ee5c"; }
.ic-ink-bottle-line:before { content: "\ee5d"; }
.ic-input-cursor-move:before { content: "\ee5e"; }
.ic-input-method-fill:before { content: "\ee5f"; }
.ic-input-method-line:before { content: "\ee60"; }
.ic-insert-column-left:before { content: "\ee61"; }
.ic-insert-column-right:before { content: "\ee62"; }
.ic-insert-row-bottom:before { content: "\ee63"; }
.ic-insert-row-top:before { content: "\ee64"; }
.ic-instagram-fill:before { content: "\ee65"; }
.ic-instagram-line:before { content: "\ee66"; }
.ic-install-fill:before { content: "\ee67"; }
.ic-install-line:before { content: "\ee68"; }
.ic-invision-fill:before { content: "\ee69"; }
.ic-invision-line:before { content: "\ee6a"; }
.ic-italic:before { content: "\ee6b"; }
.ic-kakao-talk-fill:before { content: "\ee6c"; }
.ic-kakao-talk-line:before { content: "\ee6d"; }
.ic-key-2-fill:before { content: "\ee6e"; }
.ic-key-2-line:before { content: "\ee6f"; }
.ic-key-fill:before { content: "\ee70"; }
.ic-key-line:before { content: "\ee71"; }
.ic-keyboard-box-fill:before { content: "\ee72"; }
.ic-keyboard-box-line:before { content: "\ee73"; }
.ic-keyboard-fill:before { content: "\ee74"; }
.ic-keyboard-line:before { content: "\ee75"; }
.ic-keynote-fill:before { content: "\ee76"; }
.ic-keynote-line:before { content: "\ee77"; }
.ic-knife-blood-fill:before { content: "\ee78"; }
.ic-knife-blood-line:before { content: "\ee79"; }
.ic-knife-fill:before { content: "\ee7a"; }
.ic-knife-line:before { content: "\ee7b"; }
.ic-landscape-fill:before { content: "\ee7c"; }
.ic-landscape-line:before { content: "\ee7d"; }
.ic-layout-2-fill:before { content: "\ee7e"; }
.ic-layout-2-line:before { content: "\ee7f"; }
.ic-layout-3-fill:before { content: "\ee80"; }
.ic-layout-3-line:before { content: "\ee81"; }
.ic-layout-4-fill:before { content: "\ee82"; }
.ic-layout-4-line:before { content: "\ee83"; }
.ic-layout-5-fill:before { content: "\ee84"; }
.ic-layout-5-line:before { content: "\ee85"; }
.ic-layout-6-fill:before { content: "\ee86"; }
.ic-layout-6-line:before { content: "\ee87"; }
.ic-layout-bottom-2-fill:before { content: "\ee88"; }
.ic-layout-bottom-2-line:before { content: "\ee89"; }
.ic-layout-bottom-fill:before { content: "\ee8a"; }
.ic-layout-bottom-line:before { content: "\ee8b"; }
.ic-layout-column-fill:before { content: "\ee8c"; }
.ic-layout-column-line:before { content: "\ee8d"; }
.ic-layout-fill:before { content: "\ee8e"; }
.ic-layout-grid-fill:before { content: "\ee8f"; }
.ic-layout-grid-line:before { content: "\ee90"; }
.ic-layout-left-2-fill:before { content: "\ee91"; }
.ic-layout-left-2-line:before { content: "\ee92"; }
.ic-layout-left-fill:before { content: "\ee93"; }
.ic-layout-left-line:before { content: "\ee94"; }
.ic-layout-line:before { content: "\ee95"; }
.ic-layout-masonry-fill:before { content: "\ee96"; }
.ic-layout-masonry-line:before { content: "\ee97"; }
.ic-layout-right-2-fill:before { content: "\ee98"; }
.ic-layout-right-2-line:before { content: "\ee99"; }
.ic-layout-right-fill:before { content: "\ee9a"; }
.ic-layout-right-line:before { content: "\ee9b"; }
.ic-layout-row-fill:before { content: "\ee9c"; }
.ic-layout-row-line:before { content: "\ee9d"; }
.ic-layout-top-2-fill:before { content: "\ee9e"; }
.ic-layout-top-2-line:before { content: "\ee9f"; }
.ic-layout-top-fill:before { content: "\eea0"; }
.ic-layout-top-line:before { content: "\eea1"; }
.ic-leaf-fill:before { content: "\eea2"; }
.ic-leaf-line:before { content: "\eea3"; }
.ic-lifebuoy-fill:before { content: "\eea4"; }
.ic-lifebuoy-line:before { content: "\eea5"; }
.ic-lightbulb-fill:before { content: "\eea6"; }
.ic-lightbulb-flash-fill:before { content: "\eea7"; }
.ic-lightbulb-flash-line:before { content: "\eea8"; }
.ic-lightbulb-line:before { content: "\eea9"; }
.ic-line-chart-fill:before { content: "\eeaa"; }
.ic-line-chart-line:before { content: "\eeab"; }
.ic-line-fill:before { content: "\eeac"; }
.ic-line-height:before { content: "\eead"; }
.ic-line-line:before { content: "\eeae"; }
.ic-link-m:before { content: "\eeaf"; }
.ic-link-unlink-m:before { content: "\eeb0"; }
.ic-link-unlink:before { content: "\eeb1"; }
.ic-link:before { content: "\eeb2"; }
.ic-linkedin-box-fill:before { content: "\eeb3"; }
.ic-linkedin-box-line:before { content: "\eeb4"; }
.ic-linkedin-fill:before { content: "\eeb5"; }
.ic-linkedin-line:before { content: "\eeb6"; }
.ic-links-fill:before { content: "\eeb7"; }
.ic-links-line:before { content: "\eeb8"; }
.ic-list-check-2:before { content: "\eeb9"; }
.ic-list-check:before { content: "\eeba"; }
.ic-list-ordered:before { content: "\eebb"; }
.ic-list-settings-fill:before { content: "\eebc"; }
.ic-list-settings-line:before { content: "\eebd"; }
.ic-list-unordered:before { content: "\eebe"; }
.ic-live-fill:before { content: "\eebf"; }
.ic-live-line:before { content: "\eec0"; }
.ic-loader-2-fill:before { content: "\eec1"; }
.ic-loader-2-line:before { content: "\eec2"; }
.ic-loader-3-fill:before { content: "\eec3"; }
.ic-loader-3-line:before { content: "\eec4"; }
.ic-loader-4-fill:before { content: "\eec5"; }
.ic-loader-4-line:before { content: "\eec6"; }
.ic-loader-5-fill:before { content: "\eec7"; }
.ic-loader-5-line:before { content: "\eec8"; }
.ic-loader-fill:before { content: "\eec9"; }
.ic-loader-line:before { content: "\eeca"; }
.ic-lock-2-fill:before { content: "\eecb"; }
.ic-lock-2-line:before { content: "\eecc"; }
.ic-lock-fill:before { content: "\eecd"; }
.ic-lock-line:before { content: "\eece"; }
.ic-lock-password-fill:before { content: "\eecf"; }
.ic-lock-password-line:before { content: "\eed0"; }
.ic-lock-unlock-fill:before { content: "\eed1"; }
.ic-lock-unlock-line:before { content: "\eed2"; }
.ic-login-box-fill:before { content: "\eed3"; }
.ic-login-box-line:before { content: "\eed4"; }
.ic-login-circle-fill:before { content: "\eed5"; }
.ic-login-circle-line:before { content: "\eed6"; }
.ic-logout-box-fill:before { content: "\eed7"; }
.ic-logout-box-line:before { content: "\eed8"; }
.ic-logout-box-r-fill:before { content: "\eed9"; }
.ic-logout-box-r-line:before { content: "\eeda"; }
.ic-logout-circle-fill:before { content: "\eedb"; }
.ic-logout-circle-line:before { content: "\eedc"; }
.ic-logout-circle-r-fill:before { content: "\eedd"; }
.ic-logout-circle-r-line:before { content: "\eede"; }
.ic-luggage-cart-fill:before { content: "\eedf"; }
.ic-luggage-cart-line:before { content: "\eee0"; }
.ic-luggage-deposit-fill:before { content: "\eee1"; }
.ic-luggage-deposit-line:before { content: "\eee2"; }
.ic-lungs-fill:before { content: "\eee3"; }
.ic-lungs-line:before { content: "\eee4"; }
.ic-mac-fill:before { content: "\eee5"; }
.ic-mac-line:before { content: "\eee6"; }
.ic-macbook-fill:before { content: "\eee7"; }
.ic-macbook-line:before { content: "\eee8"; }
.ic-magic-fill:before { content: "\eee9"; }
.ic-magic-line:before { content: "\eeea"; }
.ic-mail-add-fill:before { content: "\eeeb"; }
.ic-mail-add-line:before { content: "\eeec"; }
.ic-mail-check-fill:before { content: "\eeed"; }
.ic-mail-check-line:before { content: "\eeee"; }
.ic-mail-close-fill:before { content: "\eeef"; }
.ic-mail-close-line:before { content: "\eef0"; }
.ic-mail-download-fill:before { content: "\eef1"; }
.ic-mail-download-line:before { content: "\eef2"; }
.ic-mail-fill:before { content: "\eef3"; }
.ic-mail-forbid-fill:before { content: "\eef4"; }
.ic-mail-forbid-line:before { content: "\eef5"; }
.ic-mail-line:before { content: "\eef6"; }
.ic-mail-lock-fill:before { content: "\eef7"; }
.ic-mail-lock-line:before { content: "\eef8"; }
.ic-mail-open-fill:before { content: "\eef9"; }
.ic-mail-open-line:before { content: "\eefa"; }
.ic-mail-send-fill:before { content: "\eefb"; }
.ic-mail-send-line:before { content: "\eefc"; }
.ic-mail-settings-fill:before { content: "\eefd"; }
.ic-mail-settings-line:before { content: "\eefe"; }
.ic-mail-star-fill:before { content: "\eeff"; }
.ic-mail-star-line:before { content: "\ef00"; }
.ic-mail-unread-fill:before { content: "\ef01"; }
.ic-mail-unread-line:before { content: "\ef02"; }
.ic-mail-volume-fill:before { content: "\ef03"; }
.ic-mail-volume-line:before { content: "\ef04"; }
.ic-map-2-fill:before { content: "\ef05"; }
.ic-map-2-line:before { content: "\ef06"; }
.ic-map-fill:before { content: "\ef07"; }
.ic-map-line:before { content: "\ef08"; }
.ic-map-pin-2-fill:before { content: "\ef09"; }
.ic-map-pin-2-line:before { content: "\ef0a"; }
.ic-map-pin-3-fill:before { content: "\ef0b"; }
.ic-map-pin-3-line:before { content: "\ef0c"; }
.ic-map-pin-4-fill:before { content: "\ef0d"; }
.ic-map-pin-4-line:before { content: "\ef0e"; }
.ic-map-pin-5-fill:before { content: "\ef0f"; }
.ic-map-pin-5-line:before { content: "\ef10"; }
.ic-map-pin-add-fill:before { content: "\ef11"; }
.ic-map-pin-add-line:before { content: "\ef12"; }
.ic-map-pin-fill:before { content: "\ef13"; }
.ic-map-pin-line:before { content: "\ef14"; }
.ic-map-pin-range-fill:before { content: "\ef15"; }
.ic-map-pin-range-line:before { content: "\ef16"; }
.ic-map-pin-time-fill:before { content: "\ef17"; }
.ic-map-pin-time-line:before { content: "\ef18"; }
.ic-map-pin-user-fill:before { content: "\ef19"; }
.ic-map-pin-user-line:before { content: "\ef1a"; }
.ic-mark-pen-fill:before { content: "\ef1b"; }
.ic-mark-pen-line:before { content: "\ef1c"; }
.ic-markdown-fill:before { content: "\ef1d"; }
.ic-markdown-line:before { content: "\ef1e"; }
.ic-markup-fill:before { content: "\ef1f"; }
.ic-markup-line:before { content: "\ef20"; }
.ic-mastercard-fill:before { content: "\ef21"; }
.ic-mastercard-line:before { content: "\ef22"; }
.ic-mastodon-fill:before { content: "\ef23"; }
.ic-mastodon-line:before { content: "\ef24"; }
.ic-medal-2-fill:before { content: "\ef25"; }
.ic-medal-2-line:before { content: "\ef26"; }
.ic-medal-fill:before { content: "\ef27"; }
.ic-medal-line:before { content: "\ef28"; }
.ic-medicine-bottle-fill:before { content: "\ef29"; }
.ic-medicine-bottle-line:before { content: "\ef2a"; }
.ic-medium-fill:before { content: "\ef2b"; }
.ic-medium-line:before { content: "\ef2c"; }
.ic-men-fill:before { content: "\ef2d"; }
.ic-men-line:before { content: "\ef2e"; }
.ic-mental-health-fill:before { content: "\ef2f"; }
.ic-mental-health-line:before { content: "\ef30"; }
.ic-menu-2-fill:before { content: "\ef31"; }
.ic-menu-2-line:before { content: "\ef32"; }
.ic-menu-3-fill:before { content: "\ef33"; }
.ic-menu-3-line:before { content: "\ef34"; }
.ic-menu-4-fill:before { content: "\ef35"; }
.ic-menu-4-line:before { content: "\ef36"; }
.ic-menu-5-fill:before { content: "\ef37"; }
.ic-menu-5-line:before { content: "\ef38"; }
.ic-menu-add-fill:before { content: "\ef39"; }
.ic-menu-add-line:before { content: "\ef3a"; }
.ic-menu-fill:before { content: "\ef3b"; }
.ic-menu-fold-fill:before { content: "\ef3c"; }
.ic-menu-fold-line:before { content: "\ef3d"; }
.ic-menu-line:before { content: "\ef3e"; }
.ic-menu-unfold-fill:before { content: "\ef3f"; }
.ic-menu-unfold-line:before { content: "\ef40"; }
.ic-merge-cells-horizontal:before { content: "\ef41"; }
.ic-merge-cells-vertical:before { content: "\ef42"; }
.ic-message-2-fill:before { content: "\ef43"; }
.ic-message-2-line:before { content: "\ef44"; }
.ic-message-3-fill:before { content: "\ef45"; }
.ic-message-3-line:before { content: "\ef46"; }
.ic-message-fill:before { content: "\ef47"; }
.ic-message-line:before { content: "\ef48"; }
.ic-messenger-fill:before { content: "\ef49"; }
.ic-messenger-line:before { content: "\ef4a"; }
.ic-meteor-fill:before { content: "\ef4b"; }
.ic-meteor-line:before { content: "\ef4c"; }
.ic-mic-2-fill:before { content: "\ef4d"; }
.ic-mic-2-line:before { content: "\ef4e"; }
.ic-mic-fill:before { content: "\ef4f"; }
.ic-mic-line:before { content: "\ef50"; }
.ic-mic-off-fill:before { content: "\ef51"; }
.ic-mic-off-line:before { content: "\ef52"; }
.ic-mickey-fill:before { content: "\ef53"; }
.ic-mickey-line:before { content: "\ef54"; }
.ic-microscope-fill:before { content: "\ef55"; }
.ic-microscope-line:before { content: "\ef56"; }
.ic-microsoft-fill:before { content: "\ef57"; }
.ic-microsoft-line:before { content: "\ef58"; }
.ic-mind-map:before { content: "\ef59"; }
.ic-mini-program-fill:before { content: "\ef5a"; }
.ic-mini-program-line:before { content: "\ef5b"; }
.ic-mist-fill:before { content: "\ef5c"; }
.ic-mist-line:before { content: "\ef5d"; }
.ic-money-cny-box-fill:before { content: "\ef5e"; }
.ic-money-cny-box-line:before { content: "\ef5f"; }
.ic-money-cny-circle-fill:before { content: "\ef60"; }
.ic-money-cny-circle-line:before { content: "\ef61"; }
.ic-money-dollar-box-fill:before { content: "\ef62"; }
.ic-money-dollar-box-line:before { content: "\ef63"; }
.ic-money-dollar-circle-fill:before { content: "\ef64"; }
.ic-money-dollar-circle-line:before { content: "\ef65"; }
.ic-money-euro-box-fill:before { content: "\ef66"; }
.ic-money-euro-box-line:before { content: "\ef67"; }
.ic-money-euro-circle-fill:before { content: "\ef68"; }
.ic-money-euro-circle-line:before { content: "\ef69"; }
.ic-money-pound-box-fill:before { content: "\ef6a"; }
.ic-money-pound-box-line:before { content: "\ef6b"; }
.ic-money-pound-circle-fill:before { content: "\ef6c"; }
.ic-money-pound-circle-line:before { content: "\ef6d"; }
.ic-moon-clear-fill:before { content: "\ef6e"; }
.ic-moon-clear-line:before { content: "\ef6f"; }
.ic-moon-cloudy-fill:before { content: "\ef70"; }
.ic-moon-cloudy-line:before { content: "\ef71"; }
.ic-moon-fill:before { content: "\ef72"; }
.ic-moon-foggy-fill:before { content: "\ef73"; }
.ic-moon-foggy-line:before { content: "\ef74"; }
.ic-moon-line:before { content: "\ef75"; }
.ic-more-2-fill:before { content: "\ef76"; }
.ic-more-2-line:before { content: "\ef77"; }
.ic-more-fill:before { content: "\ef78"; }
.ic-more-line:before { content: "\ef79"; }
.ic-motorbike-fill:before { content: "\ef7a"; }
.ic-motorbike-line:before { content: "\ef7b"; }
.ic-mouse-fill:before { content: "\ef7c"; }
.ic-mouse-line:before { content: "\ef7d"; }
.ic-movie-2-fill:before { content: "\ef7e"; }
.ic-movie-2-line:before { content: "\ef7f"; }
.ic-movie-fill:before { content: "\ef80"; }
.ic-movie-line:before { content: "\ef81"; }
.ic-music-2-fill:before { content: "\ef82"; }
.ic-music-2-line:before { content: "\ef83"; }
.ic-music-fill:before { content: "\ef84"; }
.ic-music-line:before { content: "\ef85"; }
.ic-mv-fill:before { content: "\ef86"; }
.ic-mv-line:before { content: "\ef87"; }
.ic-navigation-fill:before { content: "\ef88"; }
.ic-navigation-line:before { content: "\ef89"; }
.ic-netease-cloud-music-fill:before { content: "\ef8a"; }
.ic-netease-cloud-music-line:before { content: "\ef8b"; }
.ic-netflix-fill:before { content: "\ef8c"; }
.ic-netflix-line:before { content: "\ef8d"; }
.ic-newspaper-fill:before { content: "\ef8e"; }
.ic-newspaper-line:before { content: "\ef8f"; }
.ic-node-tree:before { content: "\ef90"; }
.ic-notification-2-fill:before { content: "\ef91"; }
.ic-notification-2-line:before { content: "\ef92"; }
.ic-notification-3-fill:before { content: "\ef93"; }
.ic-notification-3-line:before { content: "\ef94"; }
.ic-notification-4-fill:before { content: "\ef95"; }
.ic-notification-4-line:before { content: "\ef96"; }
.ic-notification-badge-fill:before { content: "\ef97"; }
.ic-notification-badge-line:before { content: "\ef98"; }
.ic-notification-fill:before { content: "\ef99"; }
.ic-notification-line:before { content: "\ef9a"; }
.ic-notification-off-fill:before { content: "\ef9b"; }
.ic-notification-off-line:before { content: "\ef9c"; }
.ic-npmjs-fill:before { content: "\ef9d"; }
.ic-npmjs-line:before { content: "\ef9e"; }
.ic-number-0:before { content: "\ef9f"; }
.ic-number-1:before { content: "\efa0"; }
.ic-number-2:before { content: "\efa1"; }
.ic-number-3:before { content: "\efa2"; }
.ic-number-4:before { content: "\efa3"; }
.ic-number-5:before { content: "\efa4"; }
.ic-number-6:before { content: "\efa5"; }
.ic-number-7:before { content: "\efa6"; }
.ic-number-8:before { content: "\efa7"; }
.ic-number-9:before { content: "\efa8"; }
.ic-numbers-fill:before { content: "\efa9"; }
.ic-numbers-line:before { content: "\efaa"; }
.ic-nurse-fill:before { content: "\efab"; }
.ic-nurse-line:before { content: "\efac"; }
.ic-oil-fill:before { content: "\efad"; }
.ic-oil-line:before { content: "\efae"; }
.ic-omega:before { content: "\efaf"; }
.ic-open-arm-fill:before { content: "\efb0"; }
.ic-open-arm-line:before { content: "\efb1"; }
.ic-open-source-fill:before { content: "\efb2"; }
.ic-open-source-line:before { content: "\efb3"; }
.ic-opera-fill:before { content: "\efb4"; }
.ic-opera-line:before { content: "\efb5"; }
.ic-order-play-fill:before { content: "\efb6"; }
.ic-order-play-line:before { content: "\efb7"; }
.ic-organization-chart:before { content: "\efb8"; }
.ic-outlet-2-fill:before { content: "\efb9"; }
.ic-outlet-2-line:before { content: "\efba"; }
.ic-outlet-fill:before { content: "\efbb"; }
.ic-outlet-line:before { content: "\efbc"; }
.ic-page-separator:before { content: "\efbd"; }
.ic-pages-fill:before { content: "\efbe"; }
.ic-pages-line:before { content: "\efbf"; }
.ic-paint-brush-fill:before { content: "\efc0"; }
.ic-paint-brush-line:before { content: "\efc1"; }
.ic-paint-fill:before { content: "\efc2"; }
.ic-paint-line:before { content: "\efc3"; }
.ic-palette-fill:before { content: "\efc4"; }
.ic-palette-line:before { content: "\efc5"; }
.ic-pantone-fill:before { content: "\efc6"; }
.ic-pantone-line:before { content: "\efc7"; }
.ic-paragraph:before { content: "\efc8"; }
.ic-parent-fill:before { content: "\efc9"; }
.ic-parent-line:before { content: "\efca"; }
.ic-parentheses-fill:before { content: "\efcb"; }
.ic-parentheses-line:before { content: "\efcc"; }
.ic-parking-box-fill:before { content: "\efcd"; }
.ic-parking-box-line:before { content: "\efce"; }
.ic-parking-fill:before { content: "\efcf"; }
.ic-parking-line:before { content: "\efd0"; }
.ic-passport-fill:before { content: "\efd1"; }
.ic-passport-line:before { content: "\efd2"; }
.ic-patreon-fill:before { content: "\efd3"; }
.ic-patreon-line:before { content: "\efd4"; }
.ic-pause-circle-fill:before { content: "\efd5"; }
.ic-pause-circle-line:before { content: "\efd6"; }
.ic-pause-fill:before { content: "\efd7"; }
.ic-pause-line:before { content: "\efd8"; }
.ic-pause-mini-fill:before { content: "\efd9"; }
.ic-pause-mini-line:before { content: "\efda"; }
.ic-paypal-fill:before { content: "\efdb"; }
.ic-paypal-line:before { content: "\efdc"; }
.ic-pen-nib-fill:before { content: "\efdd"; }
.ic-pen-nib-line:before { content: "\efde"; }
.ic-pencil-fill:before { content: "\efdf"; }
.ic-pencil-line:before { content: "\efe0"; }
.ic-pencil-ruler-2-fill:before { content: "\efe1"; }
.ic-pencil-ruler-2-line:before { content: "\efe2"; }
.ic-pencil-ruler-fill:before { content: "\efe3"; }
.ic-pencil-ruler-line:before { content: "\efe4"; }
.ic-percent-fill:before { content: "\efe5"; }
.ic-percent-line:before { content: "\efe6"; }
.ic-phone-camera-fill:before { content: "\efe7"; }
.ic-phone-camera-line:before { content: "\efe8"; }
.ic-phone-fill:before { content: "\efe9"; }
.ic-phone-find-fill:before { content: "\efea"; }
.ic-phone-find-line:before { content: "\efeb"; }
.ic-phone-line:before { content: "\efec"; }
.ic-phone-lock-fill:before { content: "\efed"; }
.ic-phone-lock-line:before { content: "\efee"; }
.ic-picture-in-picture-2-fill:before { content: "\efef"; }
.ic-picture-in-picture-2-line:before { content: "\eff0"; }
.ic-picture-in-picture-exit-fill:before { content: "\eff1"; }
.ic-picture-in-picture-exit-line:before { content: "\eff2"; }
.ic-picture-in-picture-fill:before { content: "\eff3"; }
.ic-picture-in-picture-line:before { content: "\eff4"; }
.ic-pie-chart-2-fill:before { content: "\eff5"; }
.ic-pie-chart-2-line:before { content: "\eff6"; }
.ic-pie-chart-box-fill:before { content: "\eff7"; }
.ic-pie-chart-box-line:before { content: "\eff8"; }
.ic-pie-chart-fill:before { content: "\eff9"; }
.ic-pie-chart-line:before { content: "\effa"; }
.ic-pin-distance-fill:before { content: "\effb"; }
.ic-pin-distance-line:before { content: "\effc"; }
.ic-ping-pong-fill:before { content: "\effd"; }
.ic-ping-pong-line:before { content: "\effe"; }
.ic-pinterest-fill:before { content: "\efff"; }
.ic-pinterest-line:before { content: "\f000"; }
.ic-pinyin-input:before { content: "\f001"; }
.ic-pixelfed-fill:before { content: "\f002"; }
.ic-pixelfed-line:before { content: "\f003"; }
.ic-plane-fill:before { content: "\f004"; }
.ic-plane-line:before { content: "\f005"; }
.ic-plant-fill:before { content: "\f006"; }
.ic-plant-line:before { content: "\f007"; }
.ic-play-circle-fill:before { content: "\f008"; }
.ic-play-circle-line:before { content: "\f009"; }
.ic-play-fill:before { content: "\f00a"; }
.ic-play-line:before { content: "\f00b"; }
.ic-play-list-2-fill:before { content: "\f00c"; }
.ic-play-list-2-line:before { content: "\f00d"; }
.ic-play-list-add-fill:before { content: "\f00e"; }
.ic-play-list-add-line:before { content: "\f00f"; }
.ic-play-list-fill:before { content: "\f010"; }
.ic-play-list-line:before { content: "\f011"; }
.ic-play-mini-fill:before { content: "\f012"; }
.ic-play-mini-line:before { content: "\f013"; }
.ic-playstation-fill:before { content: "\f014"; }
.ic-playstation-line:before { content: "\f015"; }
.ic-plug-2-fill:before { content: "\f016"; }
.ic-plug-2-line:before { content: "\f017"; }
.ic-plug-fill:before { content: "\f018"; }
.ic-plug-line:before { content: "\f019"; }
.ic-polaroid-2-fill:before { content: "\f01a"; }
.ic-polaroid-2-line:before { content: "\f01b"; }
.ic-polaroid-fill:before { content: "\f01c"; }
.ic-polaroid-line:before { content: "\f01d"; }
.ic-police-car-fill:before { content: "\f01e"; }
.ic-police-car-line:before { content: "\f01f"; }
.ic-price-tag-2-fill:before { content: "\f020"; }
.ic-price-tag-2-line:before { content: "\f021"; }
.ic-price-tag-3-fill:before { content: "\f022"; }
.ic-price-tag-3-line:before { content: "\f023"; }
.ic-price-tag-fill:before { content: "\f024"; }
.ic-price-tag-line:before { content: "\f025"; }
.ic-printer-cloud-fill:before { content: "\f026"; }
.ic-printer-cloud-line:before { content: "\f027"; }
.ic-printer-fill:before { content: "\f028"; }
.ic-printer-line:before { content: "\f029"; }
.ic-product-hunt-fill:before { content: "\f02a"; }
.ic-product-hunt-line:before { content: "\f02b"; }
.ic-profile-fill:before { content: "\f02c"; }
.ic-profile-line:before { content: "\f02d"; }
.ic-projector-2-fill:before { content: "\f02e"; }
.ic-projector-2-line:before { content: "\f02f"; }
.ic-projector-fill:before { content: "\f030"; }
.ic-projector-line:before { content: "\f031"; }
.ic-psychotherapy-fill:before { content: "\f032"; }
.ic-psychotherapy-line:before { content: "\f033"; }
.ic-pulse-fill:before { content: "\f034"; }
.ic-pulse-line:before { content: "\f035"; }
.ic-pushpin-2-fill:before { content: "\f036"; }
.ic-pushpin-2-line:before { content: "\f037"; }
.ic-pushpin-fill:before { content: "\f038"; }
.ic-pushpin-line:before { content: "\f039"; }
.ic-qq-fill:before { content: "\f03a"; }
.ic-qq-line:before { content: "\f03b"; }
.ic-qr-code-fill:before { content: "\f03c"; }
.ic-qr-code-line:before { content: "\f03d"; }
.ic-qr-scan-2-fill:before { content: "\f03e"; }
.ic-qr-scan-2-line:before { content: "\f03f"; }
.ic-qr-scan-fill:before { content: "\f040"; }
.ic-qr-scan-line:before { content: "\f041"; }
.ic-question-answer-fill:before { content: "\f042"; }
.ic-question-answer-line:before { content: "\f043"; }
.ic-question-fill:before { content: "\f044"; }
.ic-question-line:before { content: "\f045"; }
.ic-question-mark:before { content: "\f046"; }
.ic-questionnaire-fill:before { content: "\f047"; }
.ic-questionnaire-line:before { content: "\f048"; }
.ic-quill-pen-fill:before { content: "\f049"; }
.ic-quill-pen-line:before { content: "\f04a"; }
.ic-radar-fill:before { content: "\f04b"; }
.ic-radar-line:before { content: "\f04c"; }
.ic-radio-2-fill:before { content: "\f04d"; }
.ic-radio-2-line:before { content: "\f04e"; }
.ic-radio-button-fill:before { content: "\f04f"; }
.ic-radio-button-line:before { content: "\f050"; }
.ic-radio-fill:before { content: "\f051"; }
.ic-radio-line:before { content: "\f052"; }
.ic-rainbow-fill:before { content: "\f053"; }
.ic-rainbow-line:before { content: "\f054"; }
.ic-rainy-fill:before { content: "\f055"; }
.ic-rainy-line:before { content: "\f056"; }
.ic-reactjs-fill:before { content: "\f057"; }
.ic-reactjs-line:before { content: "\f058"; }
.ic-record-circle-fill:before { content: "\f059"; }
.ic-record-circle-line:before { content: "\f05a"; }
.ic-record-mail-fill:before { content: "\f05b"; }
.ic-record-mail-line:before { content: "\f05c"; }
.ic-recycle-fill:before { content: "\f05d"; }
.ic-recycle-line:before { content: "\f05e"; }
.ic-red-packet-fill:before { content: "\f05f"; }
.ic-red-packet-line:before { content: "\f060"; }
.ic-reddit-fill:before { content: "\f061"; }
.ic-reddit-line:before { content: "\f062"; }
.ic-refresh-fill:before { content: "\f063"; }
.ic-refresh-line:before { content: "\f064"; }
.ic-refund-2-fill:before { content: "\f065"; }
.ic-refund-2-line:before { content: "\f066"; }
.ic-refund-fill:before { content: "\f067"; }
.ic-refund-line:before { content: "\f068"; }
.ic-registered-fill:before { content: "\f069"; }
.ic-registered-line:before { content: "\f06a"; }
.ic-remixicon-fill:before { content: "\f06b"; }
.ic-remixicon-line:before { content: "\f06c"; }
.ic-remote-control-2-fill:before { content: "\f06d"; }
.ic-remote-control-2-line:before { content: "\f06e"; }
.ic-remote-control-fill:before { content: "\f06f"; }
.ic-remote-control-line:before { content: "\f070"; }
.ic-repeat-2-fill:before { content: "\f071"; }
.ic-repeat-2-line:before { content: "\f072"; }
.ic-repeat-fill:before { content: "\f073"; }
.ic-repeat-line:before { content: "\f074"; }
.ic-repeat-one-fill:before { content: "\f075"; }
.ic-repeat-one-line:before { content: "\f076"; }
.ic-reply-all-fill:before { content: "\f077"; }
.ic-reply-all-line:before { content: "\f078"; }
.ic-reply-fill:before { content: "\f079"; }
.ic-reply-line:before { content: "\f07a"; }
.ic-reserved-fill:before { content: "\f07b"; }
.ic-reserved-line:before { content: "\f07c"; }
.ic-rest-time-fill:before { content: "\f07d"; }
.ic-rest-time-line:before { content: "\f07e"; }
.ic-restart-fill:before { content: "\f07f"; }
.ic-restart-line:before { content: "\f080"; }
.ic-restaurant-2-fill:before { content: "\f081"; }
.ic-restaurant-2-line:before { content: "\f082"; }
.ic-restaurant-fill:before { content: "\f083"; }
.ic-restaurant-line:before { content: "\f084"; }
.ic-rewind-fill:before { content: "\f085"; }
.ic-rewind-line:before { content: "\f086"; }
.ic-rewind-mini-fill:before { content: "\f087"; }
.ic-rewind-mini-line:before { content: "\f088"; }
.ic-rhythm-fill:before { content: "\f089"; }
.ic-rhythm-line:before { content: "\f08a"; }
.ic-riding-fill:before { content: "\f08b"; }
.ic-riding-line:before { content: "\f08c"; }
.ic-road-map-fill:before { content: "\f08d"; }
.ic-road-map-line:before { content: "\f08e"; }
.ic-roadster-fill:before { content: "\f08f"; }
.ic-roadster-line:before { content: "\f090"; }
.ic-robot-fill:before { content: "\f091"; }
.ic-robot-line:before { content: "\f092"; }
.ic-rocket-2-fill:before { content: "\f093"; }
.ic-rocket-2-line:before { content: "\f094"; }
.ic-rocket-fill:before { content: "\f095"; }
.ic-rocket-line:before { content: "\f096"; }
.ic-rotate-lock-fill:before { content: "\f097"; }
.ic-rotate-lock-line:before { content: "\f098"; }
.ic-rounded-corner:before { content: "\f099"; }
.ic-route-fill:before { content: "\f09a"; }
.ic-route-line:before { content: "\f09b"; }
.ic-router-fill:before { content: "\f09c"; }
.ic-router-line:before { content: "\f09d"; }
.ic-rss-fill:before { content: "\f09e"; }
.ic-rss-line:before { content: "\f09f"; }
.ic-ruler-2-fill:before { content: "\f0a0"; }
.ic-ruler-2-line:before { content: "\f0a1"; }
.ic-ruler-fill:before { content: "\f0a2"; }
.ic-ruler-line:before { content: "\f0a3"; }
.ic-run-fill:before { content: "\f0a4"; }
.ic-run-line:before { content: "\f0a5"; }
.ic-safaic-fill:before { content: "\f0a6"; }
.ic-safaic-line:before { content: "\f0a7"; }
.ic-safe-2-fill:before { content: "\f0a8"; }
.ic-safe-2-line:before { content: "\f0a9"; }
.ic-safe-fill:before { content: "\f0aa"; }
.ic-safe-line:before { content: "\f0ab"; }
.ic-sailboat-fill:before { content: "\f0ac"; }
.ic-sailboat-line:before { content: "\f0ad"; }
.ic-save-2-fill:before { content: "\f0ae"; }
.ic-save-2-line:before { content: "\f0af"; }
.ic-save-3-fill:before { content: "\f0b0"; }
.ic-save-3-line:before { content: "\f0b1"; }
.ic-save-fill:before { content: "\f0b2"; }
.ic-save-line:before { content: "\f0b3"; }
.ic-scales-2-fill:before { content: "\f0b4"; }
.ic-scales-2-line:before { content: "\f0b5"; }
.ic-scales-3-fill:before { content: "\f0b6"; }
.ic-scales-3-line:before { content: "\f0b7"; }
.ic-scales-fill:before { content: "\f0b8"; }
.ic-scales-line:before { content: "\f0b9"; }
.ic-scan-2-fill:before { content: "\f0ba"; }
.ic-scan-2-line:before { content: "\f0bb"; }
.ic-scan-fill:before { content: "\f0bc"; }
.ic-scan-line:before { content: "\f0bd"; }
.ic-scissors-2-fill:before { content: "\f0be"; }
.ic-scissors-2-line:before { content: "\f0bf"; }
.ic-scissors-cut-fill:before { content: "\f0c0"; }
.ic-scissors-cut-line:before { content: "\f0c1"; }
.ic-scissors-fill:before { content: "\f0c2"; }
.ic-scissors-line:before { content: "\f0c3"; }
.ic-screenshot-2-fill:before { content: "\f0c4"; }
.ic-screenshot-2-line:before { content: "\f0c5"; }
.ic-screenshot-fill:before { content: "\f0c6"; }
.ic-screenshot-line:before { content: "\f0c7"; }
.ic-sd-card-fill:before { content: "\f0c8"; }
.ic-sd-card-line:before { content: "\f0c9"; }
.ic-sd-card-mini-fill:before { content: "\f0ca"; }
.ic-sd-card-mini-line:before { content: "\f0cb"; }
.ic-search-2-fill:before { content: "\f0cc"; }
.ic-search-2-line:before { content: "\f0cd"; }
.ic-search-eye-fill:before { content: "\f0ce"; }
.ic-search-eye-line:before { content: "\f0cf"; }
.ic-search-fill:before { content: "\f0d0"; }
.ic-search-line:before { content: "\f0d1"; }
.ic-secure-payment-fill:before { content: "\f0d2"; }
.ic-secure-payment-line:before { content: "\f0d3"; }
.ic-seedling-fill:before { content: "\f0d4"; }
.ic-seedling-line:before { content: "\f0d5"; }
.ic-send-backward:before { content: "\f0d6"; }
.ic-send-plane-2-fill:before { content: "\f0d7"; }
.ic-send-plane-2-line:before { content: "\f0d8"; }
.ic-send-plane-fill:before { content: "\f0d9"; }
.ic-send-plane-line:before { content: "\f0da"; }
.ic-send-to-back:before { content: "\f0db"; }
.ic-sensor-fill:before { content: "\f0dc"; }
.ic-sensor-line:before { content: "\f0dd"; }
.ic-separator:before { content: "\f0de"; }
.ic-server-fill:before { content: "\f0df"; }
.ic-server-line:before { content: "\f0e0"; }
.ic-service-fill:before { content: "\f0e1"; }
.ic-service-line:before { content: "\f0e2"; }
.ic-settings-2-fill:before { content: "\f0e3"; }
.ic-settings-2-line:before { content: "\f0e4"; }
.ic-settings-3-fill:before { content: "\f0e5"; }
.ic-settings-3-line:before { content: "\f0e6"; }
.ic-settings-4-fill:before { content: "\f0e7"; }
.ic-settings-4-line:before { content: "\f0e8"; }
.ic-settings-5-fill:before { content: "\f0e9"; }
.ic-settings-5-line:before { content: "\f0ea"; }
.ic-settings-6-fill:before { content: "\f0eb"; }
.ic-settings-6-line:before { content: "\f0ec"; }
.ic-settings-fill:before { content: "\f0ed"; }
.ic-settings-line:before { content: "\f0ee"; }
.ic-shape-2-fill:before { content: "\f0ef"; }
.ic-shape-2-line:before { content: "\f0f0"; }
.ic-shape-fill:before { content: "\f0f1"; }
.ic-shape-line:before { content: "\f0f2"; }
.ic-share-box-fill:before { content: "\f0f3"; }
.ic-share-box-line:before { content: "\f0f4"; }
.ic-share-circle-fill:before { content: "\f0f5"; }
.ic-share-circle-line:before { content: "\f0f6"; }
.ic-share-fill:before { content: "\f0f7"; }
.ic-share-forward-2-fill:before { content: "\f0f8"; }
.ic-share-forward-2-line:before { content: "\f0f9"; }
.ic-share-forward-box-fill:before { content: "\f0fa"; }
.ic-share-forward-box-line:before { content: "\f0fb"; }
.ic-share-forward-fill:before { content: "\f0fc"; }
.ic-share-forward-line:before { content: "\f0fd"; }
.ic-share-line:before { content: "\f0fe"; }
.ic-shield-check-fill:before { content: "\f0ff"; }
.ic-shield-check-line:before { content: "\f100"; }
.ic-shield-cross-fill:before { content: "\f101"; }
.ic-shield-cross-line:before { content: "\f102"; }
.ic-shield-fill:before { content: "\f103"; }
.ic-shield-flash-fill:before { content: "\f104"; }
.ic-shield-flash-line:before { content: "\f105"; }
.ic-shield-keyhole-fill:before { content: "\f106"; }
.ic-shield-keyhole-line:before { content: "\f107"; }
.ic-shield-line:before { content: "\f108"; }
.ic-shield-star-fill:before { content: "\f109"; }
.ic-shield-star-line:before { content: "\f10a"; }
.ic-shield-user-fill:before { content: "\f10b"; }
.ic-shield-user-line:before { content: "\f10c"; }
.ic-ship-2-fill:before { content: "\f10d"; }
.ic-ship-2-line:before { content: "\f10e"; }
.ic-ship-fill:before { content: "\f10f"; }
.ic-ship-line:before { content: "\f110"; }
.ic-shirt-fill:before { content: "\f111"; }
.ic-shirt-line:before { content: "\f112"; }
.ic-shopping-bag-2-fill:before { content: "\f113"; }
.ic-shopping-bag-2-line:before { content: "\f114"; }
.ic-shopping-bag-3-fill:before { content: "\f115"; }
.ic-shopping-bag-3-line:before { content: "\f116"; }
.ic-shopping-bag-fill:before { content: "\f117"; }
.ic-shopping-bag-line:before { content: "\f118"; }
.ic-shopping-basket-2-fill:before { content: "\f119"; }
.ic-shopping-basket-2-line:before { content: "\f11a"; }
.ic-shopping-basket-fill:before { content: "\f11b"; }
.ic-shopping-basket-line:before { content: "\f11c"; }
.ic-shopping-cart-2-fill:before { content: "\f11d"; }
.ic-shopping-cart-2-line:before { content: "\f11e"; }
.ic-shopping-cart-fill:before { content: "\f11f"; }
.ic-shopping-cart-line:before { content: "\f120"; }
.ic-showers-fill:before { content: "\f121"; }
.ic-showers-line:before { content: "\f122"; }
.ic-shuffle-fill:before { content: "\f123"; }
.ic-shuffle-line:before { content: "\f124"; }
.ic-shut-down-fill:before { content: "\f125"; }
.ic-shut-down-line:before { content: "\f126"; }
.ic-side-bar-fill:before { content: "\f127"; }
.ic-side-bar-line:before { content: "\f128"; }
.ic-signal-tower-fill:before { content: "\f129"; }
.ic-signal-tower-line:before { content: "\f12a"; }
.ic-signal-wifi-1-fill:before { content: "\f12b"; }
.ic-signal-wifi-1-line:before { content: "\f12c"; }
.ic-signal-wifi-2-fill:before { content: "\f12d"; }
.ic-signal-wifi-2-line:before { content: "\f12e"; }
.ic-signal-wifi-3-fill:before { content: "\f12f"; }
.ic-signal-wifi-3-line:before { content: "\f130"; }
.ic-signal-wifi-error-fill:before { content: "\f131"; }
.ic-signal-wifi-error-line:before { content: "\f132"; }
.ic-signal-wifi-fill:before { content: "\f133"; }
.ic-signal-wifi-line:before { content: "\f134"; }
.ic-signal-wifi-off-fill:before { content: "\f135"; }
.ic-signal-wifi-off-line:before { content: "\f136"; }
.ic-sim-card-2-fill:before { content: "\f137"; }
.ic-sim-card-2-line:before { content: "\f138"; }
.ic-sim-card-fill:before { content: "\f139"; }
.ic-sim-card-line:before { content: "\f13a"; }
.ic-single-quotes-l:before { content: "\f13b"; }
.ic-single-quotes-r:before { content: "\f13c"; }
.ic-sip-fill:before { content: "\f13d"; }
.ic-sip-line:before { content: "\f13e"; }
.ic-skip-back-fill:before { content: "\f13f"; }
.ic-skip-back-line:before { content: "\f140"; }
.ic-skip-back-mini-fill:before { content: "\f141"; }
.ic-skip-back-mini-line:before { content: "\f142"; }
.ic-skip-forward-fill:before { content: "\f143"; }
.ic-skip-forward-line:before { content: "\f144"; }
.ic-skip-forward-mini-fill:before { content: "\f145"; }
.ic-skip-forward-mini-line:before { content: "\f146"; }
.ic-skull-2-fill:before { content: "\f147"; }
.ic-skull-2-line:before { content: "\f148"; }
.ic-skull-fill:before { content: "\f149"; }
.ic-skull-line:before { content: "\f14a"; }
.ic-skype-fill:before { content: "\f14b"; }
.ic-skype-line:before { content: "\f14c"; }
.ic-slack-fill:before { content: "\f14d"; }
.ic-slack-line:before { content: "\f14e"; }
.ic-slice-fill:before { content: "\f14f"; }
.ic-slice-line:before { content: "\f150"; }
.ic-slideshow-2-fill:before { content: "\f151"; }
.ic-slideshow-2-line:before { content: "\f152"; }
.ic-slideshow-3-fill:before { content: "\f153"; }
.ic-slideshow-3-line:before { content: "\f154"; }
.ic-slideshow-4-fill:before { content: "\f155"; }
.ic-slideshow-4-line:before { content: "\f156"; }
.ic-slideshow-fill:before { content: "\f157"; }
.ic-slideshow-line:before { content: "\f158"; }
.ic-smartphone-fill:before { content: "\f159"; }
.ic-smartphone-line:before { content: "\f15a"; }
.ic-snapchat-fill:before { content: "\f15b"; }
.ic-snapchat-line:before { content: "\f15c"; }
.ic-snowy-fill:before { content: "\f15d"; }
.ic-snowy-line:before { content: "\f15e"; }
.ic-sort-asc:before { content: "\f15f"; }
.ic-sort-desc:before { content: "\f160"; }
.ic-sound-module-fill:before { content: "\f161"; }
.ic-sound-module-line:before { content: "\f162"; }
.ic-soundcloud-fill:before { content: "\f163"; }
.ic-soundcloud-line:before { content: "\f164"; }
.ic-space-ship-fill:before { content: "\f165"; }
.ic-space-ship-line:before { content: "\f166"; }
.ic-space:before { content: "\f167"; }
.ic-spam-2-fill:before { content: "\f168"; }
.ic-spam-2-line:before { content: "\f169"; }
.ic-spam-3-fill:before { content: "\f16a"; }
.ic-spam-3-line:before { content: "\f16b"; }
.ic-spam-fill:before { content: "\f16c"; }
.ic-spam-line:before { content: "\f16d"; }
.ic-speaker-2-fill:before { content: "\f16e"; }
.ic-speaker-2-line:before { content: "\f16f"; }
.ic-speaker-3-fill:before { content: "\f170"; }
.ic-speaker-3-line:before { content: "\f171"; }
.ic-speaker-fill:before { content: "\f172"; }
.ic-speaker-line:before { content: "\f173"; }
.ic-spectrum-fill:before { content: "\f174"; }
.ic-spectrum-line:before { content: "\f175"; }
.ic-speed-fill:before { content: "\f176"; }
.ic-speed-line:before { content: "\f177"; }
.ic-speed-mini-fill:before { content: "\f178"; }
.ic-speed-mini-line:before { content: "\f179"; }
.ic-split-cells-horizontal:before { content: "\f17a"; }
.ic-split-cells-vertical:before { content: "\f17b"; }
.ic-spotify-fill:before { content: "\f17c"; }
.ic-spotify-line:before { content: "\f17d"; }
.ic-spy-fill:before { content: "\f17e"; }
.ic-spy-line:before { content: "\f17f"; }
.ic-stack-fill:before { content: "\f180"; }
.ic-stack-line:before { content: "\f181"; }
.ic-stack-overflow-fill:before { content: "\f182"; }
.ic-stack-overflow-line:before { content: "\f183"; }
.ic-stackshare-fill:before { content: "\f184"; }
.ic-stackshare-line:before { content: "\f185"; }
.ic-star-fill:before { content: "\f186"; }
.ic-star-half-fill:before { content: "\f187"; }
.ic-star-half-line:before { content: "\f188"; }
.ic-star-half-s-fill:before { content: "\f189"; }
.ic-star-half-s-line:before { content: "\f18a"; }
.ic-star-line:before { content: "\f18b"; }
.ic-star-s-fill:before { content: "\f18c"; }
.ic-star-s-line:before { content: "\f18d"; }
.ic-star-smile-fill:before { content: "\f18e"; }
.ic-star-smile-line:before { content: "\f18f"; }
.ic-steam-fill:before { content: "\f190"; }
.ic-steam-line:before { content: "\f191"; }
.ic-steering-2-fill:before { content: "\f192"; }
.ic-steering-2-line:before { content: "\f193"; }
.ic-steering-fill:before { content: "\f194"; }
.ic-steering-line:before { content: "\f195"; }
.ic-stethoscope-fill:before { content: "\f196"; }
.ic-stethoscope-line:before { content: "\f197"; }
.ic-sticky-note-2-fill:before { content: "\f198"; }
.ic-sticky-note-2-line:before { content: "\f199"; }
.ic-sticky-note-fill:before { content: "\f19a"; }
.ic-sticky-note-line:before { content: "\f19b"; }
.ic-stock-fill:before { content: "\f19c"; }
.ic-stock-line:before { content: "\f19d"; }
.ic-stop-circle-fill:before { content: "\f19e"; }
.ic-stop-circle-line:before { content: "\f19f"; }
.ic-stop-fill:before { content: "\f1a0"; }
.ic-stop-line:before { content: "\f1a1"; }
.ic-stop-mini-fill:before { content: "\f1a2"; }
.ic-stop-mini-line:before { content: "\f1a3"; }
.ic-store-2-fill:before { content: "\f1a4"; }
.ic-store-2-line:before { content: "\f1a5"; }
.ic-store-3-fill:before { content: "\f1a6"; }
.ic-store-3-line:before { content: "\f1a7"; }
.ic-store-fill:before { content: "\f1a8"; }
.ic-store-line:before { content: "\f1a9"; }
.ic-strikethrough-2:before { content: "\f1aa"; }
.ic-strikethrough:before { content: "\f1ab"; }
.ic-subscript-2:before { content: "\f1ac"; }
.ic-subscript:before { content: "\f1ad"; }
.ic-subtract-fill:before { content: "\f1ae"; }
.ic-subtract-line:before { content: "\f1af"; }
.ic-subway-fill:before { content: "\f1b0"; }
.ic-subway-line:before { content: "\f1b1"; }
.ic-subway-wifi-fill:before { content: "\f1b2"; }
.ic-subway-wifi-line:before { content: "\f1b3"; }
.ic-suitcase-2-fill:before { content: "\f1b4"; }
.ic-suitcase-2-line:before { content: "\f1b5"; }
.ic-suitcase-3-fill:before { content: "\f1b6"; }
.ic-suitcase-3-line:before { content: "\f1b7"; }
.ic-suitcase-fill:before { content: "\f1b8"; }
.ic-suitcase-line:before { content: "\f1b9"; }
.ic-sun-cloudy-fill:before { content: "\f1ba"; }
.ic-sun-cloudy-line:before { content: "\f1bb"; }
.ic-sun-fill:before { content: "\f1bc"; }
.ic-sun-foggy-fill:before { content: "\f1bd"; }
.ic-sun-foggy-line:before { content: "\f1be"; }
.ic-sun-line:before { content: "\f1bf"; }
.ic-superscript-2:before { content: "\f1c0"; }
.ic-superscript:before { content: "\f1c1"; }
.ic-surgical-mask-fill:before { content: "\f1c2"; }
.ic-surgical-mask-line:before { content: "\f1c3"; }
.ic-surround-sound-fill:before { content: "\f1c4"; }
.ic-surround-sound-line:before { content: "\f1c5"; }
.ic-survey-fill:before { content: "\f1c6"; }
.ic-survey-line:before { content: "\f1c7"; }
.ic-swap-box-fill:before { content: "\f1c8"; }
.ic-swap-box-line:before { content: "\f1c9"; }
.ic-swap-fill:before { content: "\f1ca"; }
.ic-swap-line:before { content: "\f1cb"; }
.ic-switch-fill:before { content: "\f1cc"; }
.ic-switch-line:before { content: "\f1cd"; }
.ic-sword-fill:before { content: "\f1ce"; }
.ic-sword-line:before { content: "\f1cf"; }
.ic-syringe-fill:before { content: "\f1d0"; }
.ic-syringe-line:before { content: "\f1d1"; }
.ic-t-box-fill:before { content: "\f1d2"; }
.ic-t-box-line:before { content: "\f1d3"; }
.ic-t-shirt-2-fill:before { content: "\f1d4"; }
.ic-t-shirt-2-line:before { content: "\f1d5"; }
.ic-t-shirt-air-fill:before { content: "\f1d6"; }
.ic-t-shirt-air-line:before { content: "\f1d7"; }
.ic-t-shirt-fill:before { content: "\f1d8"; }
.ic-t-shirt-line:before { content: "\f1d9"; }
.ic-table-2:before { content: "\f1da"; }
.ic-table-alt-fill:before { content: "\f1db"; }
.ic-table-alt-line:before { content: "\f1dc"; }
.ic-table-fill:before { content: "\f1dd"; }
.ic-table-line:before { content: "\f1de"; }
.ic-tablet-fill:before { content: "\f1df"; }
.ic-tablet-line:before { content: "\f1e0"; }
.ic-takeaway-fill:before { content: "\f1e1"; }
.ic-takeaway-line:before { content: "\f1e2"; }
.ic-taobao-fill:before { content: "\f1e3"; }
.ic-taobao-line:before { content: "\f1e4"; }
.ic-tape-fill:before { content: "\f1e5"; }
.ic-tape-line:before { content: "\f1e6"; }
.ic-task-fill:before { content: "\f1e7"; }
.ic-task-line:before { content: "\f1e8"; }
.ic-taxi-fill:before { content: "\f1e9"; }
.ic-taxi-line:before { content: "\f1ea"; }
.ic-taxi-wifi-fill:before { content: "\f1eb"; }
.ic-taxi-wifi-line:before { content: "\f1ec"; }
.ic-team-fill:before { content: "\f1ed"; }
.ic-team-line:before { content: "\f1ee"; }
.ic-telegram-fill:before { content: "\f1ef"; }
.ic-telegram-line:before { content: "\f1f0"; }
.ic-temp-cold-fill:before { content: "\f1f1"; }
.ic-temp-cold-line:before { content: "\f1f2"; }
.ic-temp-hot-fill:before { content: "\f1f3"; }
.ic-temp-hot-line:before { content: "\f1f4"; }
.ic-terminal-box-fill:before { content: "\f1f5"; }
.ic-terminal-box-line:before { content: "\f1f6"; }
.ic-terminal-fill:before { content: "\f1f7"; }
.ic-terminal-line:before { content: "\f1f8"; }
.ic-terminal-window-fill:before { content: "\f1f9"; }
.ic-terminal-window-line:before { content: "\f1fa"; }
.ic-test-tube-fill:before { content: "\f1fb"; }
.ic-test-tube-line:before { content: "\f1fc"; }
.ic-text-direction-l:before { content: "\f1fd"; }
.ic-text-direction-r:before { content: "\f1fe"; }
.ic-text-spacing:before { content: "\f1ff"; }
.ic-text-wrap:before { content: "\f200"; }
.ic-text:before { content: "\f201"; }
.ic-thermometer-fill:before { content: "\f202"; }
.ic-thermometer-line:before { content: "\f203"; }
.ic-thumb-down-fill:before { content: "\f204"; }
.ic-thumb-down-line:before { content: "\f205"; }
.ic-thumb-up-fill:before { content: "\f206"; }
.ic-thumb-up-line:before { content: "\f207"; }
.ic-thunderstorms-fill:before { content: "\f208"; }
.ic-thunderstorms-line:before { content: "\f209"; }
.ic-ticket-2-fill:before { content: "\f20a"; }
.ic-ticket-2-line:before { content: "\f20b"; }
.ic-ticket-fill:before { content: "\f20c"; }
.ic-ticket-line:before { content: "\f20d"; }
.ic-time-fill:before { content: "\f20e"; }
.ic-time-line:before { content: "\f20f"; }
.ic-timer-2-fill:before { content: "\f210"; }
.ic-timer-2-line:before { content: "\f211"; }
.ic-timer-fill:before { content: "\f212"; }
.ic-timer-flash-fill:before { content: "\f213"; }
.ic-timer-flash-line:before { content: "\f214"; }
.ic-timer-line:before { content: "\f215"; }
.ic-todo-fill:before { content: "\f216"; }
.ic-todo-line:before { content: "\f217"; }
.ic-toggle-fill:before { content: "\f218"; }
.ic-toggle-line:before { content: "\f219"; }
.ic-tools-fill:before { content: "\f21a"; }
.ic-tools-line:before { content: "\f21b"; }
.ic-tornado-fill:before { content: "\f21c"; }
.ic-tornado-line:before { content: "\f21d"; }
.ic-trademark-fill:before { content: "\f21e"; }
.ic-trademark-line:before { content: "\f21f"; }
.ic-traffic-light-fill:before { content: "\f220"; }
.ic-traffic-light-line:before { content: "\f221"; }
.ic-train-fill:before { content: "\f222"; }
.ic-train-line:before { content: "\f223"; }
.ic-train-wifi-fill:before { content: "\f224"; }
.ic-train-wifi-line:before { content: "\f225"; }
.ic-translate-2:before { content: "\f226"; }
.ic-translate:before { content: "\f227"; }
.ic-travesti-fill:before { content: "\f228"; }
.ic-travesti-line:before { content: "\f229"; }
.ic-treasure-map-fill:before { content: "\f22a"; }
.ic-treasure-map-line:before { content: "\f22b"; }
.ic-trello-fill:before { content: "\f22c"; }
.ic-trello-line:before { content: "\f22d"; }
.ic-trophy-fill:before { content: "\f22e"; }
.ic-trophy-line:before { content: "\f22f"; }
.ic-truck-fill:before { content: "\f230"; }
.ic-truck-line:before { content: "\f231"; }
.ic-tumblr-fill:before { content: "\f232"; }
.ic-tumblr-line:before { content: "\f233"; }
.ic-tv-2-fill:before { content: "\f234"; }
.ic-tv-2-line:before { content: "\f235"; }
.ic-tv-fill:before { content: "\f236"; }
.ic-tv-line:before { content: "\f237"; }
.ic-twitch-fill:before { content: "\f238"; }
.ic-twitch-line:before { content: "\f239"; }
.ic-twitter-fill:before { content: "\f23a"; }
.ic-twitter-line:before { content: "\f23b"; }
.ic-typhoon-fill:before { content: "\f23c"; }
.ic-typhoon-line:before { content: "\f23d"; }
.ic-u-disk-fill:before { content: "\f23e"; }
.ic-u-disk-line:before { content: "\f23f"; }
.ic-ubuntu-fill:before { content: "\f240"; }
.ic-ubuntu-line:before { content: "\f241"; }
.ic-umbrella-fill:before { content: "\f242"; }
.ic-umbrella-line:before { content: "\f243"; }
.ic-underline:before { content: "\f244"; }
.ic-uninstall-fill:before { content: "\f245"; }
.ic-uninstall-line:before { content: "\f246"; }
.ic-unsplash-fill:before { content: "\f247"; }
.ic-unsplash-line:before { content: "\f248"; }
.ic-upload-2-fill:before { content: "\f249"; }
.ic-upload-2-line:before { content: "\f24a"; }
.ic-upload-cloud-2-fill:before { content: "\f24b"; }
.ic-upload-cloud-2-line:before { content: "\f24c"; }
.ic-upload-cloud-fill:before { content: "\f24d"; }
.ic-upload-cloud-line:before { content: "\f24e"; }
.ic-upload-fill:before { content: "\f24f"; }
.ic-upload-line:before { content: "\f250"; }
.ic-usb-fill:before { content: "\f251"; }
.ic-usb-line:before { content: "\f252"; }
.ic-user-2-fill:before { content: "\f253"; }
.ic-user-2-line:before { content: "\f254"; }
.ic-user-3-fill:before { content: "\f255"; }
.ic-user-3-line:before { content: "\f256"; }
.ic-user-4-fill:before { content: "\f257"; }
.ic-user-4-line:before { content: "\f258"; }
.ic-user-5-fill:before { content: "\f259"; }
.ic-user-5-line:before { content: "\f25a"; }
.ic-user-6-fill:before { content: "\f25b"; }
.ic-user-6-line:before { content: "\f25c"; }
.ic-user-add-fill:before { content: "\f25d"; }
.ic-user-add-line:before { content: "\f25e"; }
.ic-user-fill:before { content: "\f25f"; }
.ic-user-follow-fill:before { content: "\f260"; }
.ic-user-follow-line:before { content: "\f261"; }
.ic-user-heart-fill:before { content: "\f262"; }
.ic-user-heart-line:before { content: "\f263"; }
.ic-user-line:before { content: "\f264"; }
.ic-user-location-fill:before { content: "\f265"; }
.ic-user-location-line:before { content: "\f266"; }
.ic-user-received-2-fill:before { content: "\f267"; }
.ic-user-received-2-line:before { content: "\f268"; }
.ic-user-received-fill:before { content: "\f269"; }
.ic-user-received-line:before { content: "\f26a"; }
.ic-user-search-fill:before { content: "\f26b"; }
.ic-user-search-line:before { content: "\f26c"; }
.ic-user-settings-fill:before { content: "\f26d"; }
.ic-user-settings-line:before { content: "\f26e"; }
.ic-user-shared-2-fill:before { content: "\f26f"; }
.ic-user-shared-2-line:before { content: "\f270"; }
.ic-user-shared-fill:before { content: "\f271"; }
.ic-user-shared-line:before { content: "\f272"; }
.ic-user-smile-fill:before { content: "\f273"; }
.ic-user-smile-line:before { content: "\f274"; }
.ic-user-star-fill:before { content: "\f275"; }
.ic-user-star-line:before { content: "\f276"; }
.ic-user-unfollow-fill:before { content: "\f277"; }
.ic-user-unfollow-line:before { content: "\f278"; }
.ic-user-voice-fill:before { content: "\f279"; }
.ic-user-voice-line:before { content: "\f27a"; }
.ic-video-add-fill:before { content: "\f27b"; }
.ic-video-add-line:before { content: "\f27c"; }
.ic-video-chat-fill:before { content: "\f27d"; }
.ic-video-chat-line:before { content: "\f27e"; }
.ic-video-download-fill:before { content: "\f27f"; }
.ic-video-download-line:before { content: "\f280"; }
.ic-video-fill:before { content: "\f281"; }
.ic-video-line:before { content: "\f282"; }
.ic-video-upload-fill:before { content: "\f283"; }
.ic-video-upload-line:before { content: "\f284"; }
.ic-vidicon-2-fill:before { content: "\f285"; }
.ic-vidicon-2-line:before { content: "\f286"; }
.ic-vidicon-fill:before { content: "\f287"; }
.ic-vidicon-line:before { content: "\f288"; }
.ic-vimeo-fill:before { content: "\f289"; }
.ic-vimeo-line:before { content: "\f28a"; }
.ic-vip-crown-2-fill:before { content: "\f28b"; }
.ic-vip-crown-2-line:before { content: "\f28c"; }
.ic-vip-crown-fill:before { content: "\f28d"; }
.ic-vip-crown-line:before { content: "\f28e"; }
.ic-vip-diamond-fill:before { content: "\f28f"; }
.ic-vip-diamond-line:before { content: "\f290"; }
.ic-vip-fill:before { content: "\f291"; }
.ic-vip-line:before { content: "\f292"; }
.ic-virus-fill:before { content: "\f293"; }
.ic-virus-line:before { content: "\f294"; }
.ic-visa-fill:before { content: "\f295"; }
.ic-visa-line:before { content: "\f296"; }
.ic-voice-recognition-fill:before { content: "\f297"; }
.ic-voice-recognition-line:before { content: "\f298"; }
.ic-voiceprint-fill:before { content: "\f299"; }
.ic-voiceprint-line:before { content: "\f29a"; }
.ic-volume-down-fill:before { content: "\f29b"; }
.ic-volume-down-line:before { content: "\f29c"; }
.ic-volume-mute-fill:before { content: "\f29d"; }
.ic-volume-mute-line:before { content: "\f29e"; }
.ic-volume-off-vibrate-fill:before { content: "\f29f"; }
.ic-volume-off-vibrate-line:before { content: "\f2a0"; }
.ic-volume-up-fill:before { content: "\f2a1"; }
.ic-volume-up-line:before { content: "\f2a2"; }
.ic-volume-vibrate-fill:before { content: "\f2a3"; }
.ic-volume-vibrate-line:before { content: "\f2a4"; }
.ic-vuejs-fill:before { content: "\f2a5"; }
.ic-vuejs-line:before { content: "\f2a6"; }
.ic-walk-fill:before { content: "\f2a7"; }
.ic-walk-line:before { content: "\f2a8"; }
.ic-wallet-2-fill:before { content: "\f2a9"; }
.ic-wallet-2-line:before { content: "\f2aa"; }
.ic-wallet-3-fill:before { content: "\f2ab"; }
.ic-wallet-3-line:before { content: "\f2ac"; }
.ic-wallet-fill:before { content: "\f2ad"; }
.ic-wallet-line:before { content: "\f2ae"; }
.ic-water-flash-fill:before { content: "\f2af"; }
.ic-water-flash-line:before { content: "\f2b0"; }
.ic-webcam-fill:before { content: "\f2b1"; }
.ic-webcam-line:before { content: "\f2b2"; }
.ic-wechat-2-fill:before { content: "\f2b3"; }
.ic-wechat-2-line:before { content: "\f2b4"; }
.ic-wechat-fill:before { content: "\f2b5"; }
.ic-wechat-line:before { content: "\f2b6"; }
.ic-wechat-pay-fill:before { content: "\f2b7"; }
.ic-wechat-pay-line:before { content: "\f2b8"; }
.ic-weibo-fill:before { content: "\f2b9"; }
.ic-weibo-line:before { content: "\f2ba"; }
.ic-whatsapp-fill:before { content: "\f2bb"; }
.ic-whatsapp-line:before { content: "\f2bc"; }
.ic-wheelchair-fill:before { content: "\f2bd"; }
.ic-wheelchair-line:before { content: "\f2be"; }
.ic-wifi-fill:before { content: "\f2bf"; }
.ic-wifi-line:before { content: "\f2c0"; }
.ic-wifi-off-fill:before { content: "\f2c1"; }
.ic-wifi-off-line:before { content: "\f2c2"; }
.ic-window-2-fill:before { content: "\f2c3"; }
.ic-window-2-line:before { content: "\f2c4"; }
.ic-window-fill:before { content: "\f2c5"; }
.ic-window-line:before { content: "\f2c6"; }
.ic-windows-fill:before { content: "\f2c7"; }
.ic-windows-line:before { content: "\f2c8"; }
.ic-windy-fill:before { content: "\f2c9"; }
.ic-windy-line:before { content: "\f2ca"; }
.ic-wireless-charging-fill:before { content: "\f2cb"; }
.ic-wireless-charging-line:before { content: "\f2cc"; }
.ic-women-fill:before { content: "\f2cd"; }
.ic-women-line:before { content: "\f2ce"; }
.ic-wubi-input:before { content: "\f2cf"; }
.ic-xbox-fill:before { content: "\f2d0"; }
.ic-xbox-line:before { content: "\f2d1"; }
.ic-xing-fill:before { content: "\f2d2"; }
.ic-xing-line:before { content: "\f2d3"; }
.ic-youtube-fill:before { content: "\f2d4"; }
.ic-youtube-line:before { content: "\f2d5"; }
.ic-zcool-fill:before { content: "\f2d6"; }
.ic-zcool-line:before { content: "\f2d7"; }
.ic-zhihu-fill:before { content: "\f2d8"; }
.ic-zhihu-line:before { content: "\f2d9"; }
.ic-zoom-in-fill:before { content: "\f2da"; }
.ic-zoom-in-line:before { content: "\f2db"; }
.ic-zoom-out-fill:before { content: "\f2dc"; }
.ic-zoom-out-line:before { content: "\f2dd"; }
.ic-zzz-fill:before { content: "\f2de"; }
.ic-zzz-line:before { content: "\f2df"; }
.ic-arrow-down-double-fill:before { content: "\f2e0"; }
.ic-arrow-down-double-line:before { content: "\f2e1"; }
.ic-arrow-left-double-fill:before { content: "\f2e2"; }
.ic-arrow-left-double-line:before { content: "\f2e3"; }
.ic-arrow-right-double-fill:before { content: "\f2e4"; }
.ic-arrow-right-double-line:before { content: "\f2e5"; }
.ic-arrow-turn-back-fill:before { content: "\f2e6"; }
.ic-arrow-turn-back-line:before { content: "\f2e7"; }
.ic-arrow-turn-forward-fill:before { content: "\f2e8"; }
.ic-arrow-turn-forward-line:before { content: "\f2e9"; }
.ic-arrow-up-double-fill:before { content: "\f2ea"; }
.ic-arrow-up-double-line:before { content: "\f2eb"; }
.ic-bard-fill:before { content: "\f2ec"; }
.ic-bard-line:before { content: "\f2ed"; }
.ic-bootstrap-fill:before { content: "\f2ee"; }
.ic-bootstrap-line:before { content: "\f2ef"; }
.ic-box-1-fill:before { content: "\f2f0"; }
.ic-box-1-line:before { content: "\f2f1"; }
.ic-box-2-fill:before { content: "\f2f2"; }
.ic-box-2-line:before { content: "\f2f3"; }
.ic-box-3-fill:before { content: "\f2f4"; }
.ic-box-3-line:before { content: "\f2f5"; }
.ic-brain-fill:before { content: "\f2f6"; }
.ic-brain-line:before { content: "\f2f7"; }
.ic-candle-fill:before { content: "\f2f8"; }
.ic-candle-line:before { content: "\f2f9"; }
.ic-cash-fill:before { content: "\f2fa"; }
.ic-cash-line:before { content: "\f2fb"; }
.ic-contract-left-fill:before { content: "\f2fc"; }
.ic-contract-left-line:before { content: "\f2fd"; }
.ic-contract-left-right-fill:before { content: "\f2fe"; }
.ic-contract-left-right-line:before { content: "\f2ff"; }
.ic-contract-right-fill:before { content: "\f300"; }
.ic-contract-right-line:before { content: "\f301"; }
.ic-contract-up-down-fill:before { content: "\f302"; }
.ic-contract-up-down-line:before { content: "\f303"; }
.ic-copilot-fill:before { content: "\f304"; }
.ic-copilot-line:before { content: "\f305"; }
.ic-corner-down-left-fill:before { content: "\f306"; }
.ic-corner-down-left-line:before { content: "\f307"; }
.ic-corner-down-right-fill:before { content: "\f308"; }
.ic-corner-down-right-line:before { content: "\f309"; }
.ic-corner-left-down-fill:before { content: "\f30a"; }
.ic-corner-left-down-line:before { content: "\f30b"; }
.ic-corner-left-up-fill:before { content: "\f30c"; }
.ic-corner-left-up-line:before { content: "\f30d"; }
.ic-corner-right-down-fill:before { content: "\f30e"; }
.ic-corner-right-down-line:before { content: "\f30f"; }
.ic-corner-right-up-fill:before { content: "\f310"; }
.ic-corner-right-up-line:before { content: "\f311"; }
.ic-corner-up-left-double-fill:before { content: "\f312"; }
.ic-corner-up-left-double-line:before { content: "\f313"; }
.ic-corner-up-left-fill:before { content: "\f314"; }
.ic-corner-up-left-line:before { content: "\f315"; }
.ic-corner-up-right-double-fill:before { content: "\f316"; }
.ic-corner-up-right-double-line:before { content: "\f317"; }
.ic-corner-up-right-fill:before { content: "\f318"; }
.ic-corner-up-right-line:before { content: "\f319"; }
.ic-cross-fill:before { content: "\f31a"; }
.ic-cross-line:before { content: "\f31b"; }
.ic-edge-new-fill:before { content: "\f31c"; }
.ic-edge-new-line:before { content: "\f31d"; }
.ic-equal-fill:before { content: "\f31e"; }
.ic-equal-line:before { content: "\f31f"; }
.ic-expand-left-fill:before { content: "\f320"; }
.ic-expand-left-line:before { content: "\f321"; }
.ic-expand-left-right-fill:before { content: "\f322"; }
.ic-expand-left-right-line:before { content: "\f323"; }
.ic-expand-right-fill:before { content: "\f324"; }
.ic-expand-right-line:before { content: "\f325"; }
.ic-expand-up-down-fill:before { content: "\f326"; }
.ic-expand-up-down-line:before { content: "\f327"; }
.ic-flickr-fill:before { content: "\f328"; }
.ic-flickr-line:before { content: "\f329"; }
.ic-forward-10-fill:before { content: "\f32a"; }
.ic-forward-10-line:before { content: "\f32b"; }
.ic-forward-15-fill:before { content: "\f32c"; }
.ic-forward-15-line:before { content: "\f32d"; }
.ic-forward-30-fill:before { content: "\f32e"; }
.ic-forward-30-line:before { content: "\f32f"; }
.ic-forward-5-fill:before { content: "\f330"; }
.ic-forward-5-line:before { content: "\f331"; }
.ic-graduation-cap-fill:before { content: "\f332"; }
.ic-graduation-cap-line:before { content: "\f333"; }
.ic-home-office-fill:before { content: "\f334"; }
.ic-home-office-line:before { content: "\f335"; }
.ic-hourglass-2-fill:before { content: "\f336"; }
.ic-hourglass-2-line:before { content: "\f337"; }
.ic-hourglass-fill:before { content: "\f338"; }
.ic-hourglass-line:before { content: "\f339"; }
.ic-javascript-fill:before { content: "\f33a"; }
.ic-javascript-line:before { content: "\f33b"; }
.ic-loop-left-fill:before { content: "\f33c"; }
.ic-loop-left-line:before { content: "\f33d"; }
.ic-loop-right-fill:before { content: "\f33e"; }
.ic-loop-right-line:before { content: "\f33f"; }
.ic-memories-fill:before { content: "\f340"; }
.ic-memories-line:before { content: "\f341"; }
.ic-meta-fill:before { content: "\f342"; }
.ic-meta-line:before { content: "\f343"; }
.ic-microsoft-loop-fill:before { content: "\f344"; }
.ic-microsoft-loop-line:before { content: "\f345"; }
.ic-nft-fill:before { content: "\f346"; }
.ic-nft-line:before { content: "\f347"; }
.ic-notion-fill:before { content: "\f348"; }
.ic-notion-line:before { content: "\f349"; }
.ic-openai-fill:before { content: "\f34a"; }
.ic-openai-line:before { content: "\f34b"; }
.ic-overline:before { content: "\f34c"; }
.ic-p2p-fill:before { content: "\f34d"; }
.ic-p2p-line:before { content: "\f34e"; }
.ic-presentation-fill:before { content: "\f34f"; }
.ic-presentation-line:before { content: "\f350"; }
.ic-replay-10-fill:before { content: "\f351"; }
.ic-replay-10-line:before { content: "\f352"; }
.ic-replay-15-fill:before { content: "\f353"; }
.ic-replay-15-line:before { content: "\f354"; }
.ic-replay-30-fill:before { content: "\f355"; }
.ic-replay-30-line:before { content: "\f356"; }
.ic-replay-5-fill:before { content: "\f357"; }
.ic-replay-5-line:before { content: "\f358"; }
.ic-school-fill:before { content: "\f359"; }
.ic-school-line:before { content: "\f35a"; }
.ic-shining-2-fill:before { content: "\f35b"; }
.ic-shining-2-line:before { content: "\f35c"; }
.ic-shining-fill:before { content: "\f35d"; }
.ic-shining-line:before { content: "\f35e"; }
.ic-sketching:before { content: "\f35f"; }
.ic-skip-down-fill:before { content: "\f360"; }
.ic-skip-down-line:before { content: "\f361"; }
.ic-skip-left-fill:before { content: "\f362"; }
.ic-skip-left-line:before { content: "\f363"; }
.ic-skip-right-fill:before { content: "\f364"; }
.ic-skip-right-line:before { content: "\f365"; }
.ic-skip-up-fill:before { content: "\f366"; }
.ic-skip-up-line:before { content: "\f367"; }
.ic-slow-down-fill:before { content: "\f368"; }
.ic-slow-down-line:before { content: "\f369"; }
.ic-sparkling-2-fill:before { content: "\f36a"; }
.ic-sparkling-2-line:before { content: "\f36b"; }
.ic-sparkling-fill:before { content: "\f36c"; }
.ic-sparkling-line:before { content: "\f36d"; }
.ic-speak-fill:before { content: "\f36e"; }
.ic-speak-line:before { content: "\f36f"; }
.ic-speed-up-fill:before { content: "\f370"; }
.ic-speed-up-line:before { content: "\f371"; }
.ic-tiktok-fill:before { content: "\f372"; }
.ic-tiktok-line:before { content: "\f373"; }
.ic-token-swap-fill:before { content: "\f374"; }
.ic-token-swap-line:before { content: "\f375"; }
.ic-unpin-fill:before { content: "\f376"; }
.ic-unpin-line:before { content: "\f377"; }
.ic-wechat-channels-fill:before { content: "\f378"; }
.ic-wechat-channels-line:before { content: "\f379"; }
.ic-wordpress-fill:before { content: "\f37a"; }
.ic-wordpress-line:before { content: "\f37b"; }
.ic-blender-fill:before { content: "\f37c"; }
.ic-blender-line:before { content: "\f37d"; }
.ic-emoji-sticker-fill:before { content: "\f37e"; }
.ic-emoji-sticker-line:before { content: "\f37f"; }
.ic-git-close-pull-request-fill:before { content: "\f380"; }
.ic-git-close-pull-request-line:before { content: "\f381"; }
.ic-instance-fill:before { content: "\f382"; }
.ic-instance-line:before { content: "\f383"; }
.ic-megaphone-fill:before { content: "\f384"; }
.ic-megaphone-line:before { content: "\f385"; }
.ic-pass-expired-fill:before { content: "\f386"; }
.ic-pass-expired-line:before { content: "\f387"; }
.ic-pass-pending-fill:before { content: "\f388"; }
.ic-pass-pending-line:before { content: "\f389"; }
.ic-pass-valid-fill:before { content: "\f38a"; }
.ic-pass-valid-line:before { content: "\f38b"; }
.ic-ai-generate:before { content: "\f38c"; }
.ic-calendar-close-fill:before { content: "\f38d"; }
.ic-calendar-close-line:before { content: "\f38e"; }
.ic-draggable:before { content: "\f38f"; }
.ic-font-family:before { content: "\f390"; }
.ic-font-mono:before { content: "\f391"; }
.ic-font-sans-serif:before { content: "\f392"; }
.ic-font-sans:before { content: "\f393"; }
.ic-hard-drive-3-fill:before { content: "\f394"; }
.ic-hard-drive-3-line:before { content: "\f395"; }
.ic-kick-fill:before { content: "\f396"; }
.ic-kick-line:before { content: "\f397"; }
.ic-list-check-3:before { content: "\f398"; }
.ic-list-indefinite:before { content: "\f399"; }
.ic-list-ordered-2:before { content: "\f39a"; }
.ic-list-radio:before { content: "\f39b"; }
.ic-openbase-fill:before { content: "\f39c"; }
.ic-openbase-line:before { content: "\f39d"; }
.ic-planet-fill:before { content: "\f39e"; }
.ic-planet-line:before { content: "\f39f"; }
.ic-prohibited-fill:before { content: "\f3a0"; }
.ic-prohibited-line:before { content: "\f3a1"; }
.ic-quote-text:before { content: "\f3a2"; }
.ic-seo-fill:before { content: "\f3a3"; }
.ic-seo-line:before { content: "\f3a4"; }
.ic-slash-commands:before { content: "\f3a5"; }

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
[data-animation] {
    opacity: 0;
    visibility: hidden;
}
[data-animation].animate__visible {
    opacity: 1;
    visibility: visible;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  /* -webkit-animation-fill-mode: both;
  animation-fill-mode: both; */
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -80px, 0);
    transform: translate3d(0, -80px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -80px, 0);
    transform: translate3d(0, -80px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}

/* Modal */
#modal-wrapper {
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	z-index: 1050;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}

#modal-wrapper.popup .modal-body {
	padding: 1.875rem 2.5rem;
}

#modal-overlay {
	display: none;
	position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	background-color: rgba(0, 0, 0, .7);
    z-index: 1040;
}

#modal-tempoverlay {
	position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	background-color: transparent;
}

body.enable-modal {
	position: absolute;
    overflow-y: scroll;
    height: 100%;
}

body.enable-modal-overflow {
	overflow: hidden !important;
}

body.enable-modal-overflow #modal-wrapper {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	padding-top: 6.25rem;
	padding-bottom: 6.25rem;
}

body.enable-modal-cursor #modal-tempoverlay {
	cursor: pointer;
}

.modal {
	width: 600px;
	left: 0;
	top: 0;
	color: #333333;
	position: relative;
	margin: 0;
	font-weight: inherit;
	background-color: #ffffff;
	border: none;
	display: none;
	border-radius: 0;
    animation-duration: .3s;
    animation-fill-mode: both;
	z-index: 99999;
}

.modal .modal-header {
	margin: 0;
	padding: 0.938rem;
	border-bottom: 1px solid #e6e6e6;
}

.modal .modal-header h1 {
	margin: 0;
	color: #333333;
	font-size: 1.063rem;
	font-weight: 500;
	line-height: 1;
}

.modal a.modal-close {
	position: absolute;
	z-index: 2;
	top: 1.125rem;
	right: 0.938rem;
	display: inline-block;
	width: 1.125rem;
	height: 1.438rem;
	overflow: hidden;
	border: none;
	background: transparent;
}

html[dir="Rtl"] .modal a.modal-close {
	right: auto;
	left: 0.75rem;
}

.modal a.modal-close.outside {
	top: -1.25rem;
	right: -1.25rem;
}

.modal a.modal-close:before,
.modal a.modal-close:after {
	content: '';
    position: absolute;
    height: 0.125rem;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -0.063rem;
    background: #444444;
    border-radius: 0.313rem;
    margin-top: -0.375rem;
}

.modal a.modal-close.outside:before,
.modal a.modal-close.outside:after {
	background: #ffffff;
}

.modal a.modal-close:before {
    transform: rotate(45deg);
}

.modal a.modal-close:after {
    transform: rotate(-45deg);
}

.modal .modal-body {
	padding: 0.938rem;
}

.modal .modal-body div.modal-contents {
	overflow: hidden;
}

.modal .modal-body div.modal-contents a,
.modal .modal-body div.modal-contents div,
.modal .modal-body div.modal-contents img,
.modal .modal-body div.modal-contents label,
.modal .modal-body div.modal-contents li,
.modal .modal-body div.modal-contents span,
.modal .modal-body div.modal-contents table,
.modal .modal-body div.modal-contents iframe,
.modal .modal-body div.modal-contents ul:not(.iti__country-list) {
	max-width: 100% !important;
}

.modal .modal-body div.modal-contents table {
	width: 100% !important;
}

.modal .modal-body div.modal-contents ul:not(.iti__country-list) {
	list-style-type: disc;
}

.modal .modal-body div.modal-contents ol {
	list-style-type: decimal;
}

.modal .modal-body div.modal-contents ul:not(.iti__country-list),
.modal .modal-body div.modal-contents ol {
	margin: 0;
}

.modal .modal-body div.modal-contents ul:not(.iti__country-list),
.modal .modal-body div.modal-contents ol {
	margin: 0 1.5em 1.5em 0;
	padding-left: 2em;
}

.modal .modal-body div.modal-contents > img {
	display: block;
	margin: 0 auto;
}

.modal .modal-body p {
	font-size: 0.875rem;
	font-weight: normal;
	color: #606060;
	line-height: 1.6;
}

.modal .modal-body p img {
	display: block;
	margin: 0 auto 0.625rem auto;
}

.modal .modal-footer {
	display: block;
	padding: 0.938rem 0.938rem 0.875rem;
	background-color: #ffffff;
	border-top: 0.063rem solid #e6e6e6;
	zoom: 1;
	margin-bottom: 0;
	text-align: right;
}

/* Hide header */
.modal.hide-header .modal-header {
	display: none;
}

/* Hide Footer */
.modal.hide-footer .modal-footer {
	display: none;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
    display: inline-block;
    width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}
.owl-carousel.owl-hidden {
    opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}
.owl-carousel.owl-rtl {
    direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

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

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
		This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
		calculation of the height of the owl-item that breaks page layouts
	 */
}
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(/wp-content/themes/starter/assets/core/css/modules/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2022 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Variable(Variable font)
 * Satoshi Variable Italic(Variable font)
 * Satoshi Light
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/


/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/

@font-face {
    font-family: 'Satoshi-Variable';
    src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Variable.woff2) format('woff2'),
        url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Variable.woff) format('woff'),
        url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Variable.ttf) format('truetype');
        font-weight: 300 900;
        font-display: swap;
        font-style: normal;
}


/**
* This is a variable font
* You can controll variable axes as shown below:
* font-variation-settings: 'wght' 900.0;
*
* available axes:

* 'wght' (range from 300.0 to 900.0)

*/

@font-face {
  font-family: 'Satoshi-VariableItalic';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-VariableItalic.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-VariableItalic.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-VariableItalic.ttf) format('truetype');
       font-weight: 300 900;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'Satoshi-Light';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Light.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Light.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Light.ttf) format('truetype');
       font-weight: 300;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'Satoshi-LightItalic';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-LightItalic.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-LightItalic.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-LightItalic.ttf) format('truetype');
       font-weight: 300;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'Satoshi-Regular';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Regular.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Regular.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Regular.ttf) format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'Satoshi-Italic';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Italic.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Italic.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Italic.ttf) format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'Satoshi-Medium';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Medium.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Medium.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Medium.ttf) format('truetype');
       font-weight: 500;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'Satoshi-MediumItalic';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-MediumItalic.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-MediumItalic.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-MediumItalic.ttf) format('truetype');
       font-weight: 500;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'Satoshi-Bold';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Bold.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Bold.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Bold.ttf) format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'Satoshi-BoldItalic';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-BoldItalic.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-BoldItalic.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-BoldItalic.ttf) format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: italic;
}


@font-face {
  font-family: 'Satoshi-Black';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Black.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Black.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-Black.ttf) format('truetype');
       font-weight: 900;
       font-display: swap;
       font-style: normal;
}


@font-face {
  font-family: 'Satoshi-BlackItalic';
  src: url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-BlackItalic.woff2) format('woff2'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-BlackItalic.woff) format('woff'),
       url(/wp-content/themes/starter/assets/frontend/css/../fonts/Satoshi-BlackItalic.ttf) format('truetype');
       font-weight: 900;
       font-display: swap;
       font-style: italic;
}

body:not(.home, .post-type-archive-services) {
	background-color: #ffffff;
}

body[class*="template-careers"] {
	background-color: #FBF9F3;
}

body[class*="template-about"] {
	background-color: #5F6368;
}

body[class*="template-about"] .logo img {
	filter: invert(1);
}

body[class*="template-about"]:not(.open-mobile-navigation-menu-delay) .mobile-navigation-toggle.text {
	color: #ffffff;
}

body[class*="template-about"]:not(.open-mobile-navigation-menu-delay) .mobile-navigation-toggle.text svg {
	filter: invert(1);
}


body[class*="template-about"]:not(.open-mobile-navigation-menu-delay) .mobile-navigation-toggle:not(.text)::before,
body[class*="template-about"]:not(.open-mobile-navigation-menu-delay) .mobile-navigation-toggle:not(.text)::after {
	background-color: #ffffff;
}

body {
	background-color: #FBF9F3;
}

#header {
	position: relative;
    width: 100%;
	/* transition: transform 0.4s; */
    z-index: 100;
}

#header .logo {
	padding: 2.313rem 0;
	transition: padding 0.4s;
}

#header .logo img {
	height: 3.125rem;
	display: block;
}

.open-mobile-navigation-menu-delay .logo {
    position: relative;
    z-index: 9000;
}

.open-mobile-navigation-menu-delay .logo img {
    filter: invert(1);
}

/* Navigation */
#header .navigation {
	width: 100%;
	height: 100%;
	margin-left: -2.5rem;
}

#header .navigation > li {
	display: flex;
    align-items: center;
	height: 100%;
	padding: 1.875rem 2.5rem;
}

#header .navigation > li > a {
	color: #222222;
	font-size: 0.975rem;
	white-space: nowrap;
	margin: 0;
}

#header .navigation > li:hover > a {
	color: #222222 !important;
}

#header .navigation li.dropdown-menu-item > .sub-menu {
	margin-left: 2.5rem;
}

/* Mobile Navigation */
.open-mobile-navigation-menu,
.open-mobile-navigation-menu-delay {
	/* overflow: hidden; */
}

.mobile-navigation {}

.mobile-navigation .container-fluid {
	padding-left: 3.125rem;
    padding-right: 3.125rem;
}

@media screen and (max-width: 992px) {
	.mobile-navigation .container-fluid {
		padding-left: 1.25rem;
	    padding-right: 1.25rem;
	}
}

.mobile-navigation .mobile-navigation-toggle:not(.text) {
	display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    width: 3.125rem;
    height: 3.125rem;
    justify-content: center;
    z-index: 9000;
}

.mobile-navigation .mobile-navigation-toggle:not(.text)::before,
.mobile-navigation .mobile-navigation-toggle:not(.text)::after {
	content: '';
	width: 1.875rem;
	height: 0.125rem;
	display: block;
	background-color: #1A1A1A;
	transition: transform 300ms;
}

.open-mobile-navigation-menu-delay .mobile-navigation .mobile-navigation-menu.active + .mobile-navigation-toggle:not(.text)::before,
.open-mobile-navigation-menu-delay .mobile-navigation .mobile-navigation-menu.active + .mobile-navigation-toggle:not(.text)::after {
	width: 1.875rem;
    margin-top: -0.125rem;
}

.mobile-navigation .mobile-navigation-toggle:not(.text)::before {
	margin-bottom: 0.375rem;
}

.open-mobile-navigation-menu-delay .mobile-navigation .mobile-navigation-menu.active + .mobile-navigation-toggle:not(.text)::before {
	transform: rotate(45deg);
	margin-bottom: 0;
}

.open-mobile-navigation-menu-delay .mobile-navigation .mobile-navigation-menu.active + .mobile-navigation-toggle:not(.text)::after {
	transform: rotate(-45deg);
}

.open-mobile-navigation-menu-delay .mobile-navigation-menu + .mobile-navigation-toggle {
	filter: invert(1);
}

.mobile-navigation-menu {
	position: fixed;
	top: 0;
    left: 0;
    display: flex !important;
	flex-direction: column;
	justify-content: flex-start;
    width: 100%;
    height: calc(100vh);
    height: calc(var(--rvh, 1vh) * 100);
    overflow: hidden;
    z-index: 8999;
    visibility: hidden;
	transition: visibility 0ms linear 2250ms;
	transform: translate3d(0, 0, 0);
	color: #FBF9F3;
}

.mobile-navigation-menu-inner {
	width: 100vw;
    overflow: hidden;
}

.mobile-navigation-menu-panel {
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: auto;
    overflow-y: scroll;
    width: calc(100% + 3rem);
    padding-right: 3rem;
}

.mobile-navigation-menu-inner-forcer {
	width: 100%;
    position: relative;
    min-height: calc(100vh - 0.25rem);
    min-height: calc((var(--rvh, 1vh) * 100) - 0.25rem);
	padding-top: 7.75rem;
}

.open-mobile-navigation-menu .mobile-navigation-menu.active {
    visibility: visible;
    transition: visibility 0ms linear 0ms;
}

.mobile-navigation-menu::before {
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #1A1A1A;
    transform: translateY(-100%);
	transform: translateY(-100%);
	transition: transform 750ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 1500ms;
}

.open-mobile-navigation-menu .mobile-navigation-menu::before {
	transform: translateY(0%);
    transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile-navigation-menu-item {
	align-items: center;
	border-bottom: 0.063rem solid #A8A8A8;
    position: relative;
    z-index: 9000;
}

.mobile-navigation-menu-item a.mobile-navigation-menu-item-main-link {
	color: #5F6368;
	font-size: 4.5rem;
	line-height: 5.438rem;
	font-family: 'Cormorant Garamond';
	position: relative;
	padding: 2.813rem 0;
	display: flex;
    align-items: center;
}

@media screen and (max-width: 992px) {
	.mobile-navigation-menu-item a.mobile-navigation-menu-item-main-link {
		color: #A8A8A8;
		font-size: 1.75rem;
		line-height: 2.125rem;
		padding: 1.4rem 0;
	}
}

.mobile-navigation-menu-item:hover a.mobile-navigation-menu-item-main-link {
	color: #FBF9F3;
}

.mobile-navigation-menu-item a.mobile-navigation-menu-item-main-link::before {
	content: '';
	width: 3.125rem;
	height: 0;
	display: inline-block;
	margin-left: 1.875rem;
	margin-right: 1.875rem;
	border: 0.094rem solid #A8A8A8;
	transition: margin .5s ease-in-out;
}

@media screen and (max-width: 992px) {
	.mobile-navigation-menu-item a.mobile-navigation-menu-item-main-link::before {
		width: 1.25rem;
	}
}

.mobile-navigation-menu-item:hover a.mobile-navigation-menu-item-main-link::before {
	margin-left: 3.75rem;
	border: 0.094rem solid #FBF9F3;
}

.mobile-navigation-menu-item {
	opacity: 0;
    transform: translateY(3.5rem);
}

.open-mobile-navigation-menu .mobile-navigation-menu-item {
	opacity: 1;
    transform: translateY(0);
}

.mobile-navigation-menu-item:nth-child(1) {
    transition: opacity 800ms linear 375ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 375ms;
}

.open-mobile-navigation-menu .mobile-navigation-menu-item:nth-child(1) {
    transition: opacity 800ms linear 375ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 375ms;
}

.mobile-navigation-menu-item:nth-child(2) {
    transition: opacity 800ms linear 475ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 475ms;
}

.open-mobile-navigation-menu .mobile-navigation-menu-item:nth-child(2) {
    transition: opacity 800ms linear 475ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 475ms;
}

.mobile-navigation-menu-item:nth-child(3) {
    transition: opacity 800ms linear 575ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 575ms;
}

.open-mobile-navigation-menu .mobile-navigation-menu-item:nth-child(3) {
    transition: opacity 800ms linear 575ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 575ms;
}

.mobile-navigation-menu-item:nth-child(4) {
    transition: opacity 800ms linear 675ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 675ms;
}

.open-mobile-navigation-menu .mobile-navigation-menu-item:nth-child(4) {
    transition: opacity 800ms linear 675ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 675ms;
}

.mobile-navigation-menu-item:nth-child(5) {
    transition: opacity 800ms linear 775ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 775ms;
}

.open-mobile-navigation-menu .mobile-navigation-menu-item:nth-child(5) {
    transition: opacity 800ms linear 775ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 775ms;
}

.mobile-navigation-menu-item:nth-child(6) {
    transition: opacity 800ms linear 875ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 875ms;
}

.open-mobile-navigation-menu .mobile-navigation-menu-item:nth-child(6) {
    transition: opacity 800ms linear 875ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 875ms;
}

.mobile-navigation-menu-item a.mobile-navigation-menu-item-sub-link {
	color: #FBF9F3;
	display: block;
	margin-bottom: 0.313rem;
	transition: opacity .3s;
	opacity: 0;
}

.mobile-navigation-menu-item a.mobile-navigation-menu-item-sub-link:last-child {
	margin-bottom: 0;
}

.mobile-navigation-menu-item:hover a.mobile-navigation-menu-item-sub-link {
	opacity: 1;
}

.mobile-navigation-menu-item img {
	width: 100%;
	transition: opacity .3s;
	opacity: 0;
}

.mobile-navigation-menu-item:hover img {
	opacity: 1;
}

.mobile-navigation-menu-bottom {
	color: #FBF9F3;
	padding: 1.875rem 0;
}

.mobile-navigation-menu-bottom {
	opacity: 0;
    transform: translateY(3.5rem);
}

.open-mobile-navigation-menu .mobile-navigation-menu-bottom {
	opacity: 1;
    transform: translateY(0);
}

.mobile-navigation-menu-bottom {
    transition: opacity 800ms linear 875ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 875ms;
}

.open-mobile-navigation-menu .mobile-navigation-menu-bottom {
    transition: opacity 800ms linear 875ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 875ms;
}

.mobile-navigation-menu-bottom a {
	color: #FBF9F3;
}

.mobile-navigation-menu-bottom a:hover {
	color: #FBF9F3;
}

/* Mobile Navigation Experience Menu */
.mobile-navigation-experience-menu {}

.mobile-navigation-menu.mobile-navigation-experience-menu::before {
	background-color: #7F817C;
}

.mobile-navigation-toggle.text {
	display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}

.mobile-navigation-toggle.text svg {
	margin-left: 0.625rem;
	transform: scale(-1, -1);
}

.open-mobile-navigation-menu-delay .mobile-navigation-experience-menu.active + .mobile-navigation-toggle.text svg {
	transform: scale(1, 1);
}

.mobile-navigation-experience-preview {
	height: 82vh;
    position: sticky;
    top: 8rem;
}

.mobile-navigation-experience-menu img {
	max-height: 100%;
	display: none;
}

.mobile-navigation-experience-menu-line-title {
	color: #A8A8A8;
    font-size: 2rem;
    line-height: 2.438rem;
	font-family: 'Cormorant Garamond', serif;
	margin-left: 1.2rem;
	margin-bottom: 1.625rem;
    position: relative;
}

.mobile-navigation-experience-menu-line-title::before {
    content: '';
    position: absolute;
    left: -3.3rem;
    top: 50%;
    width: 2.625rem;
    height: 0.063rem;
    background-color: #A8A8A8;
}

.mobile-navigation-experience-menu-items ul {
	margin-left: 1.2rem;
}

.mobile-navigation-experience-menu-items li {
	margin-bottom: 0.938rem;
}

.mobile-navigation-experience-menu-items li a {
	color: #ffffff;
	font-size: 1.25rem;
	line-height: 1.938rem;
}

.mobile-navigation-experience-effects {
	opacity: 0;
    transform: translateY(3.5rem);
}

.open-mobile-navigation-menu .mobile-navigation-experience-effects {
	opacity: 1;
    transform: translateY(0);
}

.mobile-navigation-experience-effects {
    transition: opacity 800ms linear 875ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 875ms;
}

.open-mobile-navigation-menu .mobile-navigation-experience-effects {
    transition: opacity 800ms linear 875ms, transform 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 875ms;
}

.mobile-navigation-experience-menu-bottom {
	padding-left: 1.2rem;
}

.mobile-navigation-experience-menu-bottom a,
.mobile-navigation-experience-menu-bottom a:hover {
	color: #ffffff;
}

/* Intro */
.intro {
    width: 100%;
	height: calc(100vh - 10.875rem);
	padding-left: 3.125rem;
    padding-right: 3.125rem;
    position: relative;
	overflow: hidden;
    color: #222222;
	text-align: left;
}

@media screen and (max-width: 992px) {
	.intro {
		height: 25rem;
		padding-left: 1.25rem;
	    padding-right: 1.25rem;
	}
	.intro .intro-inside {
		border-bottom: 1px solid #1A1A1A;
	}
	.intro .owl-carousel .owl-stage-outer {
		padding-bottom: 8.5rem;
	}
	.intro .intro-slide-item-labels {
		color: #1A1A1A;
		left: 0;
		bottom: auto;
		top: 17rem;
	}
	.intro .intro-slide-item-labels h2 {
		font-size: 1.8rem;
	}
	.intro .intro-dots-items {
	    right: 0;
	    bottom: auto;
		top: 16.9rem;
	}
	.intro .intro-dots button {
		background-color: #1A1A1A;
	}
	.intro .intro-dots button.active {
		border-color: #1A1A1A;
	}
}

.intro .intro-inside {
    width: 100%;
	height: 100%;
	position: relative;
}

.intro img {
	display: block;
}

.intro-dots {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
    left: 0;
}

.intro-dots-items {
    position: absolute;
	right: 2.813rem;
    bottom: 5.625rem;
    z-index: 2;
}

.intro-dots button:not(:last-child) {
    margin-right: 0.625rem;
}

.intro-dots button {
    position: relative;
    overflow: hidden;
    width: 0.375rem;
    height: 0.375rem;
    border: none;
	border-radius: 1.25rem;
    background-color: #ffffff;
}

.intro-dots button.active {
    width: 0.875rem;
    height: 0.875rem;
    border: 0.125rem solid #ffffff;
	border-radius: 1.25rem;
    background-color: transparent;
}

.intro-slide,
.intro-slide .owl-stage-outer,
.intro-slide .owl-stage,
.intro-slide .owl-item {
	height: 100%;
}

.intro-slide-item {
    position: relative;
	z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro-slide-item > a {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.intro-slide-item::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 20rem;
	left: 0;
	bottom: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.intro-slide-item-labels {
	position: absolute;
	left: 2.813rem;
	bottom: 5.625rem;
	z-index: 3;
	color: #ffffff;
}

.intro-slide-item-labels p {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	margin-bottom: 0 !important;
}

.intro-slide-item-labels h2 {
	font-size: 3.875rem;
	font-weight: 400;
	line-height: 5.938rem;
}

.intro .owl-item.active .intro-slide-item-labels p {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInDown;
	animation-delay: 0.3s;
}

.intro .owl-item.active .intro-slide-item-labels h2 {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInDown;
	animation-delay: 0.3s;
}

@media screen and (max-width: 992px) {
	.intro-slide-item-labels {
		left: 1.25rem;
		bottom: 2rem;
	}
	.intro-slide-item-labels p {
		margin-bottom: 0.625rem !important;
	}
	.intro-slide-item-labels h2 {
		font-size: 2rem;
		line-height: 2.625rem;
	}
}

/* Content */
#content {
	/* margin: 3.125rem 0; */
	min-height: 12.5rem;
}

/* Line Title */
.section-line-title {
	font-size: 1rem;
	line-height: 1.125rem;
	padding-left: 3.3rem;
	position: relative;
}

.section-line-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 2.625rem;
	height: 0.063rem;
	background-color: #1A1A1A;
}

/* Section Who We Are */
.section-who-we-are {

}

@media screen and (max-width: 992px) {
	.section-who-we-are-title {
		font-size: 1.875rem;
		line-height: 2.5rem;
	}
	.section-who-we-are-sub-title {
		font-size: 1.375rem;
		line-height: 2rem;
	}
}


/* Couple Image */
.section-couple-image {
	width: 100%;
	position: relative;
	padding-bottom: 15rem;
	text-align: right;
}

.section-couple-image img {
	width: 32.688rem;
	height: 37.5rem;
}

.section-couple-image .section-couple-small-image {
	position: absolute;
	left: -5%;
	bottom: 10%;
}

.section-couple-image .section-couple-small-image img {
	width: 24rem;
	height: 24.125rem;
	display: block;
}

.section-couple-image .section-couple-small-image-watch {
	width: 100%;
	height: 5.625rem;
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
    flex-direction: row;
    align-items: center;
	color: #ffffff;
	padding: 0 1.5rem;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	cursor: pointer;
}

.section-couple-image .section-couple-small-image-watch .play {
	width: 2.625rem;
	height: 2.625rem;
	background: #ffffff;
    border-radius: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
	margin-right: 0.75rem;
}

.section-couple-image .section-couple-small-image-watch a {
	color: #ffffff;
}

@media screen and (max-width: 992px) {
	.section-couple-image {
		padding-bottom: 10rem;
	}
	.section-couple-image img {
		width: 10.313rem;
    	height: 11.75rem;
	}
	.section-couple-image .section-couple-small-image {
		position: absolute;
	    left: 0;
	    bottom: 20%;
	}
	.section-couple-image .section-couple-small-image img {
	    width: 12.8rem;
	    height: 10.8rem;
	    display: block;
	}
	.section-couple-image .section-couple-small-image-watch {
		padding: 0 1rem;
	}
}

.default-content-area p {
	font-size: 1.063rem;
	line-height: 2.125rem;
}

/* Section Call to Action */
.section-call-to-action {
    padding-bottom: 3.125rem;
}

.section-call-to-action.small {
	background-color: #D5C5BD;
}

.section-call-to-action:not(.small) img {
	width: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	right: -0.063rem;
}

.section-call-to-action.small img {
	width: 100%;
	height: 21.75rem;
	object-fit: cover;
	display: block;
	position: relative;
}

.section-call-to-action .section-call-to-action-content {
	width: 100%;
	padding: 2.5rem 0;
	background-color: #D5C5BD;
	flex-direction: column;
	justify-content: center;
}

.section-call-to-action:not(.small) .section-call-to-action-title {
	padding-left: 4.375rem;
}

.section-call-to-action:not(.small) .section-call-to-action-italic-title {
	padding-right: 9.75rem;
}

.section-call-to-action:not(.small) .section-call-to-action-description,
.section-call-to-action:not(.small) .section-call-to-action-button {
	padding-left: 10.625rem;
	padding-right: 10.625rem;
}

.section-call-to-action.small .section-call-to-action-content {
	padding-left: 1.875rem;
}

.section-call-to-action.small .section-call-to-action-content .section-call-to-action-description {
	padding-left: 5.625rem;
}

/* Section Call to Action - Mobile */
.section-call-to-action-mobile {
	padding: 0 1.25rem;
	background-color: #D5C5BD !important;
}

.section-call-to-action-mobile .section-call-to-action-content {
	width: 100%;
	padding: 2.5rem 0;
	background-color: #D5C5BD;
	flex-direction: column;
	justify-content: center;
}

.section-call-to-action-mobile .button {
	font-size: 0.875rem;
	padding: 0.6rem 1.5rem;
}

/* Services */
.section-services {}

.section-services .section-service-box {
	width: 100%;
	min-height: 17.5rem;
	background-color: #ffffff;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	transition-property: none;
}

.section-services .section-service-box > svg {
	margin-bottom: 1.875rem;
}

.section-services .section-service-box:hover,
.section-services .section-service-box.active {
	color: #FBF9F3;
	background-color: #1A1A1A;
}

.section-services .section-service-box:hover > svg,
.section-services .section-service-box.active > svg {
	filter: invert(1);
}

.section-services .section-service-box:hover > span,
.section-services .section-service-box.active > span {
	font-family: 'Cormorant Garamond', serif;
}

@media screen and (max-width: 992px) {
	.section-services .section-service-box:not(.section-vertical-service-box) {
		min-height: 15rem;
		margin-bottom: 1.25rem;
		padding-left: 10px;
    	padding-right: 10px;
		text-align: center;
	}
	.section-services .section-service-box > svg {
		margin-bottom: 1.25rem;
	}
	.section-services .section-service-box > span {
		font-size: 1.08rem;
	}
}

/* Services - Vertical */
.section-vertical-service-box {
	display: flex;
    flex-direction: row;
}

.section-vertical-service-box-left {
	width: 50%;
	height: 17.5rem;
}

.section-vertical-service-box-image {
	width: 46%;
	height: 17.5rem;
}

.section-vertical-service-box-image img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services - Single */
.section-single-services-title-svg svg {
	width: 3.25rem;
	height: auto;
	display: block;
}

.section-single-services-description p {
	font-size: 1.75rem;
	line-height: 2.375rem;
	font-family: 'Cormorant Garamond', serif;
}

.section-single-services-image img:nth-child(1) {
	margin-right: 1.875rem;
}

.section-single-services-image img:nth-child(2) {
	position: relative;
	bottom: -5rem;
}

@media screen and (max-width: 992px) {
	.section-single-services-description p {
		font-size: 18px;
		line-height: 28px;
	}
	.section-single-services-image {
		display: flex;
		justify-content: space-between;
	}
	.section-single-services-image img {
		display: block;
		width: 47.8%;
		object-fit: cover;
	}
	.section-single-services-image img:nth-child(1) {
		margin-right: 0;
		margin-bottom: 0;
	}
	.section-single-services-image img:nth-child(2) {
		bottom: auto;
	}
}

/* Section Projects */
.section-projects {
	color: #FBF9F3;
	height: 100vh;
}

.section-projects .section-line-title::before {
	background-color: #FBF9F3;
}

.section-projects a,
.section-projects a:hover {
	color: #FBF9F3;
}

.section-projects-left {
	height: 100%;
}

.section-projects-view-all {
	position: absolute;
	left: 0;
	bottom: 0.625rem;
}

.section-projects .carousel {
	clip-path: inset(-100vw -100vw -100vw 0);
	margin-bottom: 0 !important;
}

.section-projects .owl-stage {
	display: flex;
}

.section-projects .owl-carousel .owl-item {
	float: none;
}

.section-projects-item {
	width: 32.5rem;
	height: 47rem;
}

.section-projects-item-image img {
	height: 34.375rem;
	object-fit: cover;
	transition: height .5s;
}

.effective-item .section-projects-item-image img {
	height: 40.625rem;
}

.section-projects-item-image.scale img {
	transition: transform .4s;
}

.section-projects-item-image.scale:hover img {
	transform: scale(1.03);
}

@media screen and (max-width: 992px) {
	.section-projects-item {
		width: 16.25rem;
	}
	.section-projects,
	.section-projects-item,
	.section-projects-item-image img,
	.effective-item .section-projects-item-image img {
		height: auto;
	}
}

/* Experience Categories */
.experience-categories {
	overflow-x: auto;
    scroll-snap-type: x mandatory;
	font-family: 'Cormorant Garamond';
}

.experience-categories::-webkit-scrollbar {
    height: 0.313rem;
}

.experience-categories::-webkit-scrollbar-thumb {
    background-color: #d7d7d7;
    border-radius: 0.313rem;
}

.experience-categories ul {
	display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.experience-categories ul li {
	margin-right: 3.125rem;
}

.experience-categories ul li:last-child {
	margin-right: 0;
}

.experience-categories ul li a {
	color: #A8A8A8;
	font-size: 2rem;
}

.experience-categories ul li a:hover {
	color: #1A1A1A;
}

.experience-categories ul li.active a {
	color: #1A1A1A;
}

/* Experiences Grid */
.section-experience-grid .row [class^="col"] {
	margin-bottom: 3.75rem;
}

.section-experience-grid .section-projects-item {
	width: auto;
	height: auto;
}

.section-experience-grid .row:nth-child(2) [class^="col"] {
	display: flex;
	width: 50%;
	flex: 0 0 auto;
}

.section-experience-grid .section-projects-item .section-projects-item-image {
	display: inline-block;
	overflow: hidden;
	position: relative;
}

/* Section Experience Index */
.section-experience-index {

}

.section-experience-index .table > thead > tr > th {
	background-color: #ffffff;
}

.section-experience-index .table > thead > tr > th,
.section-experience-index .table > tbody > tr > td,
.section-experience-index .table > tbody > tr > th {
	border-top: 0;
	border-bottom: 1px solid #7F807C;
	padding: 1.5rem .75rem;
}

.section-experience-index .table > thead > tr > th {
	color: #7F807C;
	font-size: 0.875rem;
	font-weight: 400;
}

.section-experience-index .table > tbody > tr > td {
	font-size: 1.125rem;
}

.section-experience-index .table > tbody > tr > td:first-child {
	font-weight: 500;
}

.section-experience-index .table tbody tr:hover{
	background-color: #FBF9F3;
}

@media screen and (max-width: 992px) {
	.section-experience-index {
		display: none !important;
	}
}

/* Experience Single */
@media screen and (max-width: 992px) {
	.section-single-experience-video {
		padding-top: 0;
		padding-bottom: 30px;
	}
	.section-single-experiences-title span {
		font-size: 32px;
		line-height: 48px;
	}
}

.section-single-experience-specs-item {
	padding: 1.875rem 0;
	border-bottom: 0.063rem solid #7F807C;
}

@media screen and (max-width: 992px) {
	.section-single-experience-specs-item {
		padding: 1.275rem 0;
	}
}

.section-single-experience-specs-item span {
	color: #7F807C;
	font-size: 0.875rem;
	line-height: 1.125rem;
	margin-bottom: 0.625rem;
    display: block;
}

.section-single-experience-specs-item p {
	color: #1A1A1A;
	font-size: 1.125rem;
	line-height: 1.125rem;
}

.section-single-experience-video img {
	width: 100%;
	cursor: pointer;
}

.section-single-experience-not-video img {
	width: 100%;
	cursor: default;
}

/* Experiences Row 1 */
.section-experience-grid .row:nth-child(1) [class^="col"]:nth-child(1),
.section-experience-grid .row:nth-child(1) [class^="col"]:nth-child(2),
.section-experience-grid .row:nth-child(1) [class^="col"]:nth-child(3) {
	flex: 0 0 auto;
    width: 33.33333333%;
}

.section-experience-grid .row:nth-child(1) [class^="col"]:nth-child(3) > div img {
	height: 40.625rem;
}

/* Experiences Row 2 */
.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(1) {
    justify-content: center;
}

.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(2) {
    justify-content: start;
}

.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(2) > div img {
	height: 40.625rem;
}

/* Experiences Row 3 */
.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(3) {
    justify-content: flex-start;
}

.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(4) {
    justify-content: flex-end;
}

/* Experiences Row 4 */
.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(5) {
	width: 100%;
	flex: 0 0 auto;
    justify-content: center;
}

.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(5) > div img {
	height: 40.625rem;
}

/* Experiences Row 5 */
.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(6) {
    justify-content: flex-start;
}

.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(6) > div img {
	height: 40.625rem;
}

.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(7) {
    justify-content: flex-start;
}

/* Experiences Row 6 */
.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(8) {
    justify-content: flex-end;
}

.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(8) > div img {
	height: 40.625rem;
}

.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(9) {
    justify-content: flex-end;
}

/* Experiences Row 7 */
.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(10) {
    justify-content: flex-start;
}

.section-experience-grid .row:nth-child(2) [class^="col"]:nth-child(10) > div img {
	height: 40.625rem;
}

@media screen and (max-width: 992px) {
	.section-experience-grid [class^="col"] {
		width: 100% !important;
	}
}

/* Single Experiences Row */
.section-single-experience-grid .row [class^="col"] {
	display: flex;
	flex: 0 0 auto;
	justify-content: center;
	margin-bottom: 2.175rem;
}

.section-single-experience-grid .row [class^="col"] img {
	display: block;
}

/* Single Experiences Row - Single */
.section-single-experience-grid .row [class^="col"].single {
	width: 100%;
    justify-content: center;
}

.section-single-experience-grid .row [class^="col"].single > div {
	width: auto;
	max-width: 75%;
}

.section-single-experience-grid .row [class^="col"].single_full {
	width: 100%;
    justify-content: center;
}

.section-single-experience-grid .row [class^="col"].single_full > div,
.section-single-experience-grid .row [class^="col"].single_full > div > img {
	width: 100%;
}

/* Single Experiences Row - Double */
.section-single-experience-grid .row [class^="col"].double_left {
	width: 50%;
	justify-content: end;
}

.section-single-experience-grid .row [class^="col"].double_left > div {
	margin-bottom: 15%;
}

.section-single-experience-grid .row [class^="col"].double_right {
	width: 50%;
	justify-content: start;
}

.section-single-experience-grid .row [class^="col"].double_right > div {
	margin-top: 15%;
}

@media screen and (max-width: 992px) {
	.section-single-experience-grid [class^="col"] {
		width: 100% !important;
	}
	.section-single-experience-grid [class^="col"] img {
		height: auto !important;
	}
	.section-single-experience-grid [class^="col"] > div {
		width: auto !important;
		max-width: none !important;
		margin-top: auto !important;
		margin-bottom: auto !important;
	}
}

/* Single Next Project */
.section-single-next-project {
	color: #FBF9F3;
}

.section-single-next-project .section-line-title::before {
	background-color: #FBF9F3;
}

.section-single-next-project a,
.section-single-next-project a:hover {
	color: #FBF9F3;
}

.section-single-next-project img {
	width: 29.688rem;
	height: 35rem;
	object-fit: cover;
	display: block;
	transition: transform .2s;
}

.section-single-next-project img:hover {
	transform: scale(1.03);
}

.section-single-next-project-link {
	transition: transform .2s;
}

.section-single-next-project-link:hover {
    transform: scale(1.1);
}

.section-single-next-project-link img {
	width: 6.75rem;
	height: 6.75rem;
}

@media screen and (max-width: 992px) {
	.section-single-next-project-link span {
		display: none;
	}
	.section-single-next-project-title span {
		font-size: 2rem;
		line-height: 2.625rem;
	}
	.section-single-next-project img {
		width: auto;
		height: auto;
	}
	.section-single-next-project-link img {
		width: 5.75rem;
	    height: 5.75rem;
	}
}

/* Section Careers */
.section-careers {}

.section-careers img {
	width: 100%;
}

@media screen and (max-width: 992px) {
	.section-careers img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.section-careers .open-positions-item {
	height: 5rem;
	padding: 0 1.875rem;
	margin-bottom: 1.25rem;
	border: 0.063rem solid #D9D9D9;
	background-color: #ffffff;
}

.section-careers .open-positions-item:last-child {
	margin-bottom: 0;
}

.section-careers a {
	border-bottom: 0.063rem solid #1A1A1A;
}

/* Section Contact */
.section-contact {}

.section-contact img {
	width: 100%;
}

.section-contact a {
	border-bottom: 0.063rem solid #1A1A1A;
}

.section-contact-form-head {
	display: flex;
	margin-bottom: 1.875rem;
}

.section-contact-form-head a {
	margin-right: 1.875rem;
	padding: 1.25rem 1.875rem;
	border: 0.063rem solid #5F6368;
}

.section-contact-form-head a:last-child {
	margin-right: 0;
}

.section-contact-form-head a:hover,
.section-contact-form-head a.active {
	color: #ffffff;
	background-color: #5F6368;
}

.section-contact-form-content > div {
	display: none;
}

.section-contact-form-content > div:first-child {
	display: block;
}

@media screen and (max-width: 992px) {
	.section-contact-title {
		font-size: 22px;
		line-height: 32px;
	}
}

/* Section About */
.section-about {
	color: #ffffff;
}

.section-about .section-line-title::before {
	background-color: #ffffff;
}

/* Section About Couple Image */
.section-about .section-couple-image {
	width: 100%;
	position: relative;
	padding-bottom: 15rem;
	text-align: right;
}

.section-about .section-couple-image img {
	width: 32.688rem;
	height: 34.25rem;
}

.section-about .section-couple-image .section-couple-small-image {
	position: absolute;
	left: -7%;
    bottom: 30%;
}

.section-about .section-couple-image .section-couple-small-image img {
	width: 15.375rem;
	height: 15.188rem;
	display: block;
}

@media screen and (max-width: 992px) {
	.section-about .section-couple-image {
		padding-top: 2rem;
	    padding-bottom: 20rem;
	}
	.section-about .section-couple-image img {
		width: 17.688rem;
    	height: auto;
	}
	.section-about .section-couple-image .section-couple-small-image {
		position: absolute;
		left: 0;
		bottom: 8%;
	}
}

/* Section About Leadership */
.section-about-leadership {
	padding-bottom: 12.5rem !important;
	background-color: #FBF9F3 !important;
}

@media screen and (max-width: 992px) {
	.section-about-leadership {
		padding-bottom: 6rem !important;
	}
}

.section-about-leadership-item {
	padding-bottom: 2.813rem;
	border-bottom: 0.063rem solid #D9D9D9;
}

@media screen and (max-width: 992px) {
	.section-about-leadership-item {
		margin-bottom: 2.813rem;
	}
}

.section-about-leadership-item-image {
	margin-bottom: 1.25rem;
}

.section-about-leadership-item img {
	width: 100%;
}

.section-about-leadership-item-meta-name {
	margin-bottom: 0.625rem;
}

.section-about-leadership-item-meta-position {
	margin-bottom: 2.188rem;
}

.section-about-leadership-item-meta-link a {
	color: #5F6368;
	font-size: 1rem;
}

/* Section About Accordion */
.section-about-accordion {
	color: #ffffff;
	overflow: initial !important;
	z-index: 2;
}

.section-about-accordion .section-line-title::before {
	background-color: #ffffff;
}

.section-about-accordion-image {
	position: relative;
	height: 37.5rem;
}

.section-about-accordion-image img {
	position: absolute;
	left: 0;
	bottom: -45%;
	width: 41.25rem;
	height: 49.375rem;
}

@media screen and (max-width: 992px) {
	.section-about-accordion-image {
		height: 24rem;
	}
	.section-about-accordion-image img {
		width: 100%;
		height: auto;
	}
}

.section-about-accordion .accordion .item {
	background-color: transparent;
}

/* Section About Testimonials */
.section-about-testimonials {
	padding-top: 21.875rem;
	background-color: #ffffff !important;
}

@media screen and (max-width: 992px) {
	.section-about-testimonials {
		padding-top: 10rem;
	}
}

.section-about-testimonials .carousel {
    clip-path: inset(-100vw -100vw -100vw 0);
}

.section-about-testimonials-item {
    width: 32.625rem;
	padding: 2.5rem;
	background-color: #ffffff;
	border: 0.063rem solid #D9D9D9;
}

@media screen and (max-width: 992px) {
	.section-about-testimonials-item {
	    width: 22rem;
	}
}

.section-about-testimonials-item-thoughts {
	height: auto;
	overflow: hidden;
	margin-bottom: 2.813rem;
	transition: height .5s;
}

.effective-item .section-about-testimonials-item-thoughts {
    height: 20.313rem;
}

@media screen and (max-width: 992px) {
	.section-about-testimonials-item-thoughts {
		height: 20.313rem;
	}
	.section-about-testimonials-item-thoughts p {
		font-size: 1rem;
	}
}

.section-about-testimonials-item-name {
	margin-bottom: 0.425rem;
}

/* Footer */
#footer {
	color: #ffffff;
	background-color: #1A1A1A;
}

#footer a {
	color: #ffffff;
	font-weight: 400;
}

#footer a:not(.button):hover {
	color: #ffffff;
}

#footer h3 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5rem;
	margin-bottom: 1.875rem;
}

#footer .menu {
	display: inline-block;
}

#footer .menu li {
	margin-bottom: 1.475rem;
}

#footer .menu li:last-child {
	margin-bottom: 0;
}

#footer .menu a {
	font-size: 0.875rem;
    font-style: normal;
}

#footer .menu a:hover {
	color: #D5C5BD;
}

#footer .footer-top {
	padding: 3.75rem 0;
}

@media screen and (max-width: 992px) {
	#footer .footer-top {
		padding: 2.625rem 0;
	}
}

#footer .footer-top .footer-logo img {
	width: 5rem;
	height: 1.875rem;
}

#footer .footer-copyright {
	color: #7F817C;
	text-align: center;
	padding: 1.25rem 0;
	border-top: 0.063rem solid rgba(251, 249, 243, 0.1);
}

#footer .footer-copyright a:hover {
	color: #D5C5BD;
}

#footer .footer-newsletter {
	color: #7F817C;
}

#footer .footer-newsletter h3 {
	color: #ffffff;
}

@media screen and (max-width: 992px) {
	#footer .footer-copyright {
		padding: 2rem 0;
	}
}

#footer .newsletters-form {
	position: relative;
}

#footer .newsletters-form input {
	padding: 0 .6rem;
	background-color: #1A1A1A;
	border: none;
	border-bottom: 0.031rem solid #FBF9F3;
}

#footer .newsletters-form input,
#footer .newsletters-form input::placeholder {
	color: #7F817C;
}

#footer .newsletters-form button {
	width: 4.375rem;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

#footer .newsletters-form button img {
	width: 1.493rem;
	height: 0.725rem;
	margin-right: -2.188rem;
}

/* Carousel Styles */
.carousel {
    margin: 0 0 1.875rem;
}

.carousel[data-carousel-centered] .owl-stage-outer {
    overflow: visible !important;
}

.carousel-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.carousel-navigation button {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: 400ms opacity;
    transition: 400ms opacity;
}

.carousel-navigation button:not(:last-child) {
    margin-right: 1.25rem;
}

.carousel-navigation button.disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.carousel-dots {
	width: 100%;
	text-align: center;
}

.carousel-dots button:not(:last-child) {
    margin-right: 0.75rem;
}

.carousel-dots button {
    position: relative;
    overflow: hidden;
    width: 1.563rem;
    height: 0.938rem;
    border: none;
	opacity: .6;
	border-radius: 1.25rem;
    background-color: #DEFF00;
    transition: all 0.2s ease-out 0s;
}

.carousel-dots button.active {
	opacity: 1;
	width: 2.188rem;
    background-color: #DEFF00;
}

:root{
    --size: 275;
}

@media screen and (min-width: 992px) {
    :root{
        --size: 1200;
    }
}

html {
    font-size: calc(10 * (100vw/var(--size)));
}

body {
	color: #1A1A1A;
	font-size: 1rem;
    overflow: hidden;
}

body, h1, h2, h3, h4, h5, h6 {
	/* font-family: 'Inter', sans-serif; */
    /* font-family: 'Satoshi-Regular'; */
    font-family: 'Satoshi-Variable';
    font-weight: 400;
    font-style: normal;
}

@media screen and (max-width: 992px) {
    .section-services .font-size-32,
    .section-projects .font-size-32 {
        font-size: 1.375rem;
    }

    .section-services .line-height-42,
    .section-projects .line-height-42 {
        line-height: 2.625rem;
    }
    .section-about .font-size-28 {
        font-size: 1.125rem;
    }
    .section-about .font-size-48 {
        font-size: 1.875rem;
    }
    .section-about .line-height-38 {
        line-height: 1.75rem;
    }
    .section-about .line-height-68 {
        line-height: 2.5rem;
    }
    .section-about-testimonials .font-size-32 {
        font-size: 1.375rem;
    }
    .section-about-testimonials .line-height-42 {
        line-height: 2rem;
    }
}

a {
	color: #1c1c1c;
}

a:hover {
	color: #1c1c1c;
}

/* Locomotive Scroll */
/* https://github.com/locomotivemtl/locomotive-scroll/issues/361 */
.scroll-container {
    perspective: 1px;
    overflow-x: hidden;
}

@media screen and (max-width: 992px) {
    .has-scroll-init body {
        overflow-y: visible;
    }
}

/* Custom Fonts */
.cormorant-garamond {
    font-family: 'Cormorant Garamond', serif;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1A1A1A;
    background-size: 100px 31px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
	cursor: default;
    z-index: 9999;
    transition: transform 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform-origin: center top;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-loader img {
    filter: invert(1);
    width: 8.625rem;
}

.is-ready .page-loader {
    transform: scaleY(0);
}

.page-loader img {
    display: none;
}

.is-ready .page-loader svg,
.is-loading .page-loader svg,
.is-ready .page-loader img,
.is-loading .page-loader img {
    display: none !important;
}

body:not(.home) .page-loader svg {
    display: none !important;
}

@-webkit-keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 366.6671447753906px;
        stroke-dasharray: 366.6671447753906px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 366.6671447753906px;
    }
}

@keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 366.6671447753906px;
        stroke-dasharray: 366.6671447753906px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 366.6671447753906px;
    }
}

@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

.page-loader-svg-1 {
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
    0% {
        stroke-dashoffset: 178.94593811035156px;
        stroke-dasharray: 178.94593811035156px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 178.94593811035156px;
    }
}

@keyframes animate-svg-stroke-2 {
    0% {
        stroke-dashoffset: 178.94593811035156px;
        stroke-dasharray: 178.94593811035156px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 178.94593811035156px;
    }
}

@-webkit-keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

.page-loader-svg-2 {
    animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both, animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
    0% {
        stroke-dashoffset: 84.10321807861328px;
        stroke-dasharray: 84.10321807861328px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 84.10321807861328px;
    }
}

@keyframes animate-svg-stroke-3 {
    0% {
        stroke-dashoffset: 84.10321807861328px;
        stroke-dasharray: 84.10321807861328px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 84.10321807861328px;
    }
}

@-webkit-keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

.page-loader-svg-3 {
    animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-stroke-4 {
    0% {
        stroke-dashoffset: 168.25900268554688px;
        stroke-dasharray: 168.25900268554688px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 168.25900268554688px;
    }
}

@keyframes animate-svg-stroke-4 {
    0% {
        stroke-dashoffset: 168.25900268554688px;
        stroke-dasharray: 168.25900268554688px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 168.25900268554688px;
    }
}

@-webkit-keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

@keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

.page-loader-svg-4 {
    animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-stroke-5 {
    0% {
        stroke-dashoffset: 380.8907165527344px;
        stroke-dasharray: 380.8907165527344px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 380.8907165527344px;
    }
}

@keyframes animate-svg-stroke-5 {
    0% {
        stroke-dashoffset: 380.8907165527344px;
        stroke-dasharray: 380.8907165527344px;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 380.8907165527344px;
    }
}

@-webkit-keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

@keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }
    100% {
        fill: rgb(255 255 255);
    }
}

.page-loader-svg-5 {
    animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}

/* Accordion */
.accordion {}

.accordion .item {
    overflow: hidden;
    background-color: #ffffff;
    border-bottom: 0.063rem solid #D9D9D9;
}

.accordion .header {
    font-size: 2rem;
    line-height: 3.063rem;
    padding: 3.125rem 0;
    cursor: pointer;
    position: relative;
}

@media screen and (max-width: 992px) {
    .accordion .header {
        font-size: 1.25rem;
        line-height: 1.875rem;
        padding: 2.125rem 0;
    }
}

.accordion .header .circle {
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.875rem;
    height: 1.875rem;
    margin-top: -0.938rem;
}

.accordion .header .circle .horizontal {
    position: absolute;
    background-color: #1A1A1A;
    width: 1.875rem;
    height: 0.063rem;
    left: 50%;
    margin-left: -0.938rem;
    top: 50%;
}

.accordion .header .circle .vertical {
    position: absolute;
    background-color: #1A1A1A;
    width: 0.063rem;
    height: 1.875rem;
    left: 50%;
    margin-left: -0.031rem;
    top: 50%;
    margin-top: -0.838rem;
}

.accordion .item.open .circle .vertical {
    transition: all 0.5s ease-in-out;
    transform: rotate(90deg);
}

.accordion .item.open .circle .horizontal {
    transition: all 0.5s ease-in-out;
    transform: rotate(90deg);
    opacity: 0;
}

.accordion .content {
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-height: 0;
    transition: all ease-in-out 0.2s;
}

.accordion .item.open .content {
    padding: 0 0 3.125rem 0;
    max-height: 30rem;
}

@media screen and (max-width: 992px) {
    .accordion .item.open .content {
        padding: 0 0 2.125rem 0;
    }
}

/* Cursor */
.cursor {
	position: fixed;
	left: -0.875rem;
	top: -0.875rem;
	pointer-events: none;
	width: 1.75rem;
	height: 1.75rem;
    border-radius: 50%;
    background-color: transparent;
	border: 0.094rem solid #1A1A1A;
    transition: width .4s, height .4s;
	opacity: 0;
	z-index: 999;
}

.cursor.active {
	opacity: 1;
}

.cursor.hover {
	width: 3rem;
	height: 3rem;
    left: -1.5rem;
    top: -1.5rem;
    border-width: 0.063rem;
}

.cursor.cursor-drag {
	width: 7.625rem;
	height: 7.625rem;
	left: -4.125rem;
	top: -4.125rem;
	border: none;
	mix-blend-mode: normal;
	background-color: transparent;
	background-image: url(/wp-content/themes/starter/assets/frontend/css/../images/cursor-drag.svg);
	background-repeat: no-repeat;
    background-size: 7.625rem 7.625rem;
}

.cursor.cursor-drag-white {
	width: 7.625rem;
	height: 7.625rem;
	left: -4.125rem;
	top: -4.125rem;
	border: none;
	mix-blend-mode: normal;
	background-color: transparent;
	background-image: url(/wp-content/themes/starter/assets/frontend/css/../images/cursor-drag-white.svg);
	background-repeat: no-repeat;
    background-size: 7.625rem 7.625rem;
}

.cursor.cursor-play {
	width: 6.75rem;
	height: 6.75rem;
	left: -3.375rem;
	top: -3.375rem;
	border: none;
	mix-blend-mode: normal;
	background-color: transparent;
	background-image: url(/wp-content/themes/starter/assets/frontend/css/../images/cursor-play.svg);
	background-repeat: no-repeat;
    background-size: 6.75rem 6.75rem;
}

.cursor.cursor-view {
    width: 6.75rem;
	height: 6.75rem;
	left: -3.375rem;
	top: -3.375rem;
    transition: none;
	border: none;
	mix-blend-mode: normal;
	background-color: transparent;
	background-image: url(/wp-content/themes/starter/assets/frontend/css/../images/cursor-view.svg);
	background-repeat: no-repeat;
    background-size: 6.75rem 6.75rem;
}

.cursor.cursor-footer {
    border-color: #D5C5BD;
}

.cursor.cursor-intro-button-hover {
    border-color: #ffffff;
}

.cursor.cursor-next-project {
    border-color: #FBF9F3;
}

.cursor.cursor-service-box {
    border-color: #ffffff;
}

.open-mobile-navigation-menu-delay .cursor.cursor-navigation-toggle {
    border-color: #ffffff;
}

.cursor.cursor-main-menu {
    border-color: #5F6368;
}

.cursor.cursor-experience-menu {
    border-color: #ffffff;
}

@media screen and (max-width: 992px) {
	.cursor {
        display: none !important;
    }
}

/* Scroll Top */
.scroll-top {
	background-color: #D5C5BD;
	border-radius: 100%;
}

.scroll-top::before {
	color: #222221;
}

p {
	font-size: 1.625rem;
	line-height: 2.25rem;
	margin-bottom: 0.938rem !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	margin: 0;
    font-weight: 500;
    font-style: normal;
}

/* Text */
.text-decoration-underline {
	text-decoration: underline;
}

/* Sticky */
.make-me-sticky {
	position: sticky;
	top: 7.188rem;
}

/* Section */
.section {
    overflow: visible;
    background-color: transparent;
}

@media screen and (min-width: 1200px) {
	.section-md {
		padding-top: 3.25rem;
	    padding-bottom: 3.25rem;
	}
}

.section-background-yellow {
    background-color: #FBF9F3;
}

.section-background-green {
    background-color: #7F817C;
}

.section-background-gray {
	background-color: #F5F5F5;
}

/* Grid */
.container,
.container-sm,
.container-wide {
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.container-fluid {
    padding-left: 3.125rem;
	padding-right: 3.125rem;
}

@media screen and (max-width: 992px) {
    .container,
    .container-sm,
    .container-wide,
    .container-fluid {
    	padding-left: 1.25rem;
    	padding-right: 1.25rem;
    }
}

@media screen and (min-width: 1600px) {
	.container-wide {
		padding-left: 0;
		padding-right: 0;
	}
}

.row [class^="col"],
.row [class^="col-"] {
	position: relative;
}

.row [class^="col"] .row ,
.row [class^="col-"] .row {
	/* margin-left: 1.25rem; */
}

@media screen and (min-width: 992px) {
    .ps-lg-8 {
        padding-left: 8rem !important;
    }
    .pe-lg-7 {
        padding-right: 7rem !important;
    }
}

/* Owl Carousel */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	color: #ffffff;
	font-size: 2.5rem;
	line-height: 2.5rem;
}

.owl-carousel .owl-nav button.owl-prev svg,
.owl-carousel .owl-nav button.owl-next svg {
	width: 1.563rem;
    height: 1.188rem;
}

.owl-carousel .owl-nav button.owl-prev {
	left: 2.813rem;
    transform: scaleX(-1);
}

.owl-carousel .owl-nav button.owl-next {
	right: 2.813rem;
}

@media screen and (max-width: 992px){
	.owl-nav {
		display: none !important;
	}
}

/* Loading */
.loading-bar .loader {
	background-color: #DEFF00;
}

/* Cool Link */
.cool-link:after {
	border-color: #D5C5BD;
}

.cool-link-white:after {
	border-color: #FBF9F3;
}

.cool-link-black:after {
	border-color: #1A1A1A;
}

/* Selection */
::selection {
	background-color: #D5C5BD;
}

.black-selection *::selection {
	color: #1c1c1c;
	background-color: #ffffff;
}

/* Form */
.form-group {
    margin-bottom: 1.563rem;
}

.form-control {
    padding: 0 1.25rem;
    height: 3.75rem;
    border-radius: 0 !important;
}

.selectbox > select {
    font-size: 16px;
    padding: 0 1.25rem;
    height: 3.75rem;
    border-radius: 0 !important;
}

.selectbox:after {
    top: 1.25rem;
}

.form-group [data-filled]:focus + label.label-filled,
.form-group [data-filled].input-filled + label.label-filled {
    top: -0.638rem !important;
}

.security-code {
    height: 3.75rem;
	border-radius: 0 !important;
    justify-content: center;
}

.form-control:focus,
.selectbox > select:focus {
	border-color: #1A1A1A;
}

.radio-custom > input[type=radio]:checked + label:before {
	border-color: #1A1A1A;
	background-color: #DEFF00;
}

.checkbox-custom > input[type=checkbox]:checked + label:before {
	border-color: #1A1A1A;
	background-color: #1A1A1A;
}

.radio label,
.checkbox label {
	color: #919191;
	font-size: 0.875rem;
	line-height: initial;
}

.radio label a,
.checkbox label a {
	text-decoration: underline;
	text-decoration-style: dotted;
}

.radio-custom>label:before,
.checkbox-custom>label:before {
    width: 1.25rem;
    height: 1.25rem;
    top: -0.063rem;
    border-radius: 100%;
    border-color: #D9D9D9;
}

.form-group .label-filled {
    top: 1.063rem;
    left: 1.25rem;
    font-size: 1.0625rem;
}

.form-group [data-filled]:focus + label.label-filled,
.form-group [data-filled].input-filled + label.label-filled {
    left: 1.25rem;
}

/* Custom File Input */
.custom-file-input {
    outline: none !important;
    height: 3.8rem !important;
    padding: 0.813rem !important;
    border: 1px solid #dddddd !important;
}

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.custom-file-input::before {
    content: 'Select files';
    display: inline-block;
    background: #F2F2F2;
    border: 1px solid #D9D9D9;
    border-radius: 70px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.custom-file-input:hover::before {
    border-color: black;
}

.custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

/* Button */
.button {
	color: #000000;
	font-size: 1.125rem;
	line-height: 1.75rem;
    font-weight: 500;
    font-style: normal;
	white-space: nowrap;
	cursor: pointer;
	padding: 1.125rem 2.5rem;
	margin-left: 1.25rem;
	border-radius: 2.5rem;
	background-color: transparent;
}

.button:not(.button-socials) {
    min-width: 8rem;
}

.button.button-left-icon i,
.button.button-right-icon i {
	vertical-align: text-top;
}

.button.button-left-icon i::before,
.button.button-right-icon i::before {
	font-size: 1.25rem;
}

.button.button-small {
	font-size: clamp(0.75rem, 0.231vw + 0.69rem, 0.875rem);
	line-height: clamp(1.35rem, 0.092vw + 1.326rem, 1.4rem);
	padding: 0.25rem 0.625rem;
}

.button.button-large {
	font-size: clamp(1.125rem, 0.321vw + 1.042rem, 1.375rem);
	line-height: clamp(1.688rem, 0.128vw + 1.654rem, 1.788rem);
	padding: 0.938rem 1.25rem;
}

.input-group-append .button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.input-group-prepend .button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

/* Button Primary */
.button.button-primary {
    color: #ffffff;
    background: #1A1A1A;
    border: 0.063rem solid transparent;
}

.button.button-primary:hover {
    color: #1A1A1A;
	background-color: #ffffff;
    border: 0.063rem solid #1A1A1A;
}

.button.button-primary-outline {
    color: #1A1A1A;
    border: 0.063rem solid #1A1A1A;
}

.button.button-primary-outline:hover {
    color: #ffffff;
	background-color: #1A1A1A;
    border: 0.063rem solid #1A1A1A;
}

.button.button-primary-outline > i:before {
	color: #ffffff;
}

.button.button-primary-outline:hover > i:before {
	color: #ffffff;
}

.button.button-primary-outline.active {
	color: #ffffff !important;
	background-color: #1A1A1A;
}

/* Button Green */
.button.button-white {
    color: #1A1A1A;
    background: #ffffff;
    border: 0.063rem solid transparent;
}

.button.button-white:hover {
    color: #ffffff;
    background: #1A1A1A;
}

.button.button-white-outline {
    color: #D5C5BD;
    border: 0.063rem solid #D5C5BD;
}

.button.button-white-outline:hover {
    color: #ffffff;
	background-color: #D5C5BD;
    border: 0.063rem solid #D5C5BD;
}

.button.button-white-outline > i:before {
	color: #D5C5BD;
}

.button.button-white-outline:hover > i:before {
	color: #ffffff;
}

.button.button-white-outline.active {
	color: #ffffff !important;
	background-color: #D5C5BD;
}

/* Button Green */
.button.button-blue {
    color: #ffffff;
    background: #01adff;
    border: 0.063rem solid transparent;
}

.button.button-blue:hover {
    color: #ffffff;
    background: #01adff;
	opacity: .8;
}

.button.button-blue-outline {
    color: #D5C5BD;
    border: 0.063rem solid #01adff;
}

.button.button-blue-outline:hover {
    color: #ffffff;
	background-color: #01adff;
    border: 0.063rem solid #01adff;
}

.button.button-blue-outline > i:before {
	color: #01adff;
}

.button.button-blue-outline:hover > i:before {
	color: #ffffff;
}

.button.button-blue-outline.active {
	color: #ffffff !important;
	background-color: #01adff;
}

/* Button Socials */
.button.button-socials {
    line-height: inherit;
}

.button.button-socials i {
    color: #222221;
}

/* Form */
.form-group-buttons {
	text-align: left !important;
}

/* Screenshot */
.screenshot {
	position: relative;
	z-index: 0;
}

.screenshot-preview {
	position: absolute;
	background: transparent;
    margin-left: -9.375rem;
	max-width: 18.75rem;
	z-index: 2;
}

