@import url('https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext,vietnamese');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese');


:root {
	font-size: 20px;
	--blue: #598bfd;
	--indigo: #331177;
	--purple: #8e44ad;
	--red: #e74c3c;
	--orange: #f39c12;
	--yellow: #F4D03F;
	--green: #2ecc71;
	--teal: #27ae60;
	--cyan: #16a085;
	--white: #fff;
	--gray: #bdc3c7;
	--gray-light: #d9dcde;
	--gray-dark: #95a5a6;
	--primary: #03f1c5;
	--secondary: #6c757d;
	--success: #54d98c;
	--info: #1abc9c;
	--warning: #e67e22;
	--danger: #c0392b;
	--lighter: #f6f5f8;
	--light: #f0eff3;
	--light-2: #f0eff3;
	--light-3: #efedf5;
	--light-4: #e0ddec;
	--dark: #343a40;
	--dark-blue: #1f2029;
	--darker: #141414;
	--black: #080808;
}

/* #Primary
================================================== */

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0.2px;
	color: var(--gray-dark);
	background-color: var(--white);
	overflow-x: hidden;
}

p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 0.5rem;
	letter-spacing: 0.2px;
	color: var(--gray-dark);
}

.lead {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.65;
}

::selection {
	color: var(--white);
	background-color: var(--primary);
}

::-moz-selection {
	color: var(--white);
	background-color: var(--primary);
}

mark {
	color: var(--white);
	background-color: var(--primary);
}

a:hover {
	text-decoration: none;
}

/* #Preloader style
================================================== */

.animsition-loading,
.animsition-loading:after {
	width: 36px;
	height: 36px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -18px;
	margin-left: -18px;
	border-radius: 50%;
	z-index: 100;
}

.animsition-loading {
	opacity: .2;
	background-color: var(--primary);
	border: none;
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5, 0.5, 1);
	}
}


/* #Progress back to top
================================================== */

.progress-wrap {
	position: fixed;
	right: 40px;
	bottom: 60px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\ebf2';
	text-align: center;
	line-height: 46px;
	font-size: 20px;
	color: var(--gray-dark);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap:hover::after {
	opacity: 0;
}

.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\ebf2';
	text-align: center;
	line-height: 46px;
	font-size: 20px;
	opacity: 0;
	color: var(--primary);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap:hover::before {
	opacity: 1;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--primary);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.red::before {
	color: var(--red);
}

.progress-wrap.orange::before {
	color: var(--orange);
}

.progress-wrap.blue::before {
	color: var(--blue);
}

.progress-wrap.purple::before {
	color: var(--purple);
}

.progress-wrap.indigo::before {
	color: var(--indigo);
}

.progress-wrap svg.progress-circle path.red {
	stroke: var(--red);
}

.progress-wrap svg.progress-circle path.orange {
	stroke: var(--orange);
}

.progress-wrap svg.progress-circle path.blue {
	stroke: var(--blue);
}

.progress-wrap svg.progress-circle path.purple {
	stroke: var(--purple);
}

.progress-wrap svg.progress-circle path.indigo {
	stroke: var(--indigo);
}


/* #Colors
================================================== */

.color-blue {
	color: var(--blue);
}

.color-indigo {
	color: var(--indigo);
}

.color-purple {
	color: var(--purple);
}

.color-red {
	color: var(--red);
}

.color-orange {
	color: var(--orange);
}

.color-yellow {
	color: var(--yellow);
}

.color-green {
	color: var(--green);
}

.color-teal {
	color: var(--teal);
}

.color-cyan {
	color: var(--cyan);
}

.color-white {
	color: var(--white);
}

.color-gray {
	color: var(--gray);
}

.color-gray-light {
	color: var(--gray-light);
}

.color-gray-dark {
	color: var(--gray-dark);
}

.color-primary {
	color: var(--primary);
}

.color-secondary {
	color: var(--secondary);
}

.color-success {
	color: var(--success);
}

.color-info {
	color: var(--info);
}

.color-warning {
	color: var(--warning);
}

.color-danger {
	color: var(--danger);
}

.color-lighter {
	color: var(--lighter);
}

.color-light {
	color: var(--light-2);
}

.color-light-2 {
	color: var(--light-3);
}

.color-dark {
	color: var(--dark);
}

.color-darker {
	color: var(--darker);
}

.color-dark-blue {
	color: var(--dark-blue);
}

.color-black {
	color: var(--black);
}

.bg-blue {
	background-color: var(--blue);
}

.bg-indigo {
	background-color: var(--indigo);
}

.bg-purple {
	background-color: var(--purple);
}

.bg-red {
	background-color: var(--red);
}

.bg-orange {
	background-color: var(--orange);
}

.bg-yellow {
	background-color: var(--yellow);
}

.bg-green {
	background-color: var(--green);
}

.bg-teal {
	background-color: var(--teal);
}

.bg-cyan {
	background-color: var(--cyan);
}

.bg-white {
	background-color: var(--white);
}

.bg-gray {
	background-color: var(--gray);
}

.bg-gray-light {
	background-color: var(--gray-light);
}

.bg-gray-dark {
	background-color: var(--gray-dark);
}

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

.bg-secondary {
	background-color: var(--secondary);
}

.bg-success {
	background-color: var(--success);
}

.bg-info {
	background-color: var(--info);
}

.bg-warning {
	background-color: var(--warning);
}

.bg-danger {
	background-color: var(--danger);
}

.bg-lighter {
	background-color: var(--lighter);
}

.bg-light {
	background-color: var(--light-2);
}

.bg-light-2 {
	background-color: var(--light-2);
}

.bg-light-3 {
	background-color: var(--light-3);
}

.bg-dark {
	background-color: var(--dark);
}

.bg-dark-blue {
	background-color: var(--dark-blue);
}

.bg-darker {
	background-color: var(--darker);
}

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

.bg-transparent {
	background-color: transparent;
}

.border-blue {
	border-color: var(--blue);
}

.border-indigo {
	border-color: var(--indigo);
}

.border-purple {
	border-color: var(--purple);
}

.border-red {
	border-color: var(--red);
}

.border-orange {
	border-color: var(--orange);
}

.border-yellow {
	border-color: var(--yellow);
}

.border-green {
	border-color: var(--green);
}

.border-teal {
	border-color: var(--teal);
}

.border-cyan {
	border-color: var(--cyan);
}

.border-white {
	border-color: var(--white);
}

.border-gray {
	border-color: var(--gray);
}

.border-gray-light {
	border-color: var(--gray-light);
}

.border-gray-dark {
	border-color: var(--gray-dark);
}

.border-primary {
	border-color: var(--primary);
}

.border-secondary {
	border-color: var(--secondary);
}

.border-success {
	border-color: var(--success);
}

.border-info {
	border-color: var(--info);
}

.border-warning {
	border-color: var(--warning);
}

.border-danger {
	border-color: var(--danger);
}

.border-lighter {
	border-color: var(--lighter);
}

.border-light {
	border-color: var(--light-2);
}

.border-light-2 {
	border-color: var(--light-2);
}

.border-light-3 {
	border-color: var(--light-3);
}

.border-dark {
	border-color: var(--dark);
}

.border-dark-blue {
	border-color: var(--dark-blue);
}

.border-darker {
	border-color: var(--darker);
}

.border-black {
	border-color: var(--black);
}

.border-transparent {
	border-color: transparent;
}

.bg-linear-indigo-purple {
	background-image: linear-gradient(298deg, var(--purple), var(--indigo));
}

.bg-linear-purple-red {
	background-image: linear-gradient(298deg, var(--red), var(--purple));
}

.bg-linear-red-orange {
	background-image: linear-gradient(298deg, var(--orange), var(--red));
}

.bg-linear-orange-yellow {
	background-image: linear-gradient(298deg, var(--yellow), var(--orange));
}

.bg-linear-yellow-green {
	background-image: linear-gradient(298deg, var(--green), var(--yellow));
}

.bg-linear-green-cyan {
	background-image: linear-gradient(298deg, var(--cyan), var(--green));
}

.bg-linear-cyan-primary {
	background-image: linear-gradient(298deg, var(--primary), var(--cyan));
}

.bg-linear-primary-warning {
	background-image: linear-gradient(298deg, var(--warning), var(--primary));
}

.bg-linear-warning-danger {
	background-image: linear-gradient(298deg, var(--danger), var(--warning));
}

.bg-linear-danger-dark-blue {
	background-image: linear-gradient(298deg, var(--dark-blue), var(--danger));
}

.bg-linear-blue-primary {
	background-image: linear-gradient(298deg, var(--primary), var(--blue));
}

.bg-linear-indigo-dark-blue {
	background-image: linear-gradient(298deg, var(--dark-blue), var(--indigo));
}

.border-bottom-primary {
	border-bottom: 2px solid var(--primary);
}

.color-box {
	position: relative;
	width: 100%;
	display: block;
	height: 60px;
}

.color-box::after {
	position: absolute;
	width: calc(100% + 6px);
	height: calc(100% + 6px);
	display: block;
	content: '';
	top: -3px;
	left: -3px;
	border: 3px solid rgba(255, 255, 255, .8);
	border-radius: 6px;
	z-index: -1;
	box-shadow: 0 6px 15px 0 rgba(12, 22, 17, 0.1);
}

.color-box p {
	line-height: 60px;
}

.color-box.bg-yellow::after {
	box-shadow: 0 6px 15px 0 rgba(241, 196, 15, .4);
}

.color-box.bg-orange::after {
	box-shadow: 0 6px 15px 0 rgba(243, 156, 18, .4);
}

.color-box.bg-warning::after {
	box-shadow: 0 6px 15px 0 rgba(230, 126, 34, .4);
}

.color-box.bg-red::after {
	box-shadow: 0 6px 15px 0 rgba(231, 76, 60, .4);
}

.color-box.bg-danger::after {
	box-shadow: 0 6px 15px 0 rgba(192, 57, 43, .4);
}

.color-box.bg-success::after {
	box-shadow: 0 6px 15px 0 rgba(84, 218, 140, .4);
}

.color-box.bg-green::after {
	box-shadow: 0 6px 15px 0 rgba(65, 204, 113, .4);
}

.color-box.bg-teal::after {
	box-shadow: 0 6px 15px 0 rgba(54, 174, 95, .4);
}

.color-box.bg-info::after {
	box-shadow: 0 6px 15px 0 rgba(61, 188, 155, .4);
}

.color-box.bg-cyan::after {
	box-shadow: 0 6px 15px 0 rgba(51, 160, 133, .4);
}

.color-box.bg-gray::after {
	box-shadow: 0 6px 15px 0 rgba(189, 195, 199, .6);
}

.color-box.bg-gray-dark::after {
	box-shadow: 0 6px 15px 0 rgba(149, 164, 166, .4);
}

.color-box.bg-secondary::after {
	box-shadow: 0 6px 15px 0 rgba(108, 116, 125, .4);
}

.color-box.bg-primary::after {
	box-shadow: 0 6px 15px 0 rgba(89, 253, 223, .4);
}

.color-box.bg-blue::after {
	box-shadow: 0 6px 15px 0 rgba(89, 139, 253, .4);
}

.color-box.bg-purple::after {
	box-shadow: 0 6px 15px 0 rgba(142, 68, 173, .4);
}

.color-box.bg-indigo::after {
	box-shadow: 0 6px 15px 0 rgba(51, 17, 119, .4);
}

.color-box.bg-dark-blue::after {
	box-shadow: 0 6px 15px 0 rgba(31, 32, 40, .4);
}

/* #Size
================================================== */

.size-12 {
	font-size: 12px;
}

.size-13 {
	font-size: 13px;
}

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

.size-15 {
	font-size: 15px;
}

.size-16 {
	font-size: 16px;
}

.size-17 {
	font-size: 17px;
}

.size-18 {
	font-size: 18px;
}

.size-19 {
	font-size: 19px;
}

.size-20 {
	font-size: 20px;
}

.size-21 {
	font-size: 21px;
}

.size-22 {
	font-size: 22px;
}

.size-23 {
	font-size: 23px;
}

.size-24 {
	font-size: 24px;
}

.size-25 {
	font-size: 25px;
}

.size-26 {
	font-size: 26px;
}

.size-27 {
	font-size: 27px;
}

.size-28 {
	font-size: 28px;
}

.size-29 {
	font-size: 29px;
}

.size-30 {
	font-size: 30px;
}

.size-40 {
	font-size: 40px;
}

.size-50 {
	font-size: 50px;
}

/* #Borders
================================================== */

.border-gray-light {
	border: 1px solid var(--gray-light);
}

/* #Elements
================================================== */

.section {
	position: relative;
	width: 100%;
	display: block;
}

.section-1400 {
	position: relative;
	width: 100%;
	max-width: 1430px;
	display: block;
	margin: 0 auto;
}

.over-hide {
	overflow: hidden;
}

.over-initial {
	overflow: initial;
}

.full-height {
	height: 100vh;
}

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

.height-90 {
	height: 90vh;
}

.height-85 {
	height: 85vh;
}

.height-80 {
	height: 80vh;
}

.height-70 {
	height: 70vh;
}

.height-60 {
	height: 60vh;
}

.height-50 {
	height: 50vh;
}

.padding-top-bottom {
	padding-top: 100px;
	padding-bottom: 100px;
}

.padding-top {
	padding-top: 100px;
}

.padding-bottom {
	padding-bottom: 100px;
}

.padding-top-bottom-120 {
	padding-top: 120px;
	padding-bottom: 120px;
}

.padding-top-120 {
	padding-top: 120px;
}

.padding-bottom-120 {
	padding-bottom: 120px;
}

.padding-top-bottom-80 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.padding-top-80 {
	padding-top: 80px;
}

.padding-bottom-80 {
	padding-bottom: 80px;
}

.border-4 {
	border-radius: 4px;
}

.border-circle {
	border-radius: 50%;
}

.z-bigger {
	z-index: 10;
}

.z-bigger-2 {
	z-index: 9;
}

.z-bigger-3 {
	z-index: 8;
}

.z-bigger-i {
	z-index: 100;
}

.z-bigger-i-2 {
	z-index: 101;
}

.opacity-0 {
	opacity: 0;
}

.opacity-20 {
	opacity: 0.2;
}

.font-style-normal {
	font-style: normal;
}

.letter-spacing-1 {
	letter-spacing: 1px;
}

.letter-spacing-2 {
	letter-spacing: 2px;
}

.letter-spacing-3 {
	letter-spacing: 3px;
}

.letter-spacing-4 {
	letter-spacing: 4px;
}

.letter-spacing-5 {
	letter-spacing: 5px;
}

.font-weight-100 {
	font-weight: 100;
}

.font-weight-200 {
	font-weight: 200;
}

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

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

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

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

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

.font-weight-800 {
	font-weight: 800;
}

.font-weight-900 {
	font-weight: 900;
}

.box-shadow-15 {
	box-shadow: 0 6px 15px 0 rgba(12, 22, 17, 0.1);
}

.text-line-through {
	text-decoration: line-through;
}

.img-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

.blockquote {
	margin-bottom: 0;
	padding: 20px 0;
	padding-left: 40px;
	border-left: 4px solid var(--primary);
}

.blockquote::after {
	font-family: 'unicons';
	content: "\e91e";
	position: absolute;
	top: 0;
	color: var(--secondary);
	left: 30px;
	z-index: -1;
	font-size: 70px;
	text-align: center;
	width: 80px;
	line-height: 1;
	opacity: 0.1;
}

.blockquote.text-right {
	padding-left: 0;
	padding-right: 40px;
	border-left: none;
	border-right: 4px solid var(--primary);
}

.blockquote.text-right::after {
	left: auto;
	right: 30px;
}

.blockquote.text-center {
	padding-left: 0;
	padding-bottom: 30px;
	border-left: none;
}

.blockquote.text-center::after {
	left: 50%;
	margin-left: -40px;
}

.blockquote.text-center::before {
	content: '';
	position: absolute;
	bottom: 0;
	height: 4px;
	width: 60px;
	background-color: var(--primary);
	left: 50%;
	margin-left: -30px;
}

.blockquote p {
	font-size: 18px;
	line-height: 1.55;
}

.blockquote-footer {
	display: block;
	margin-top: 20px;
	font-size: 15px;
	color: var(--primary);
}

.blockquote-footer::before {
	font-family: 'unicons';
	content: "\e84b";
	padding-right: 10px;
}

.list-style {
	padding: 0;
	margin: 0;
	list-style: none;
}

.list-style ul {
	padding-left: 35px;
	margin: 0;
	list-style: none;
	margin-top: 7px;
}

.list-style li {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-bottom: 7px;
}

.list-arrow li::before {
	font-family: 'unicons';
	content: "\e84b";
	padding-right: 10px;
	color: var(--primary);
}

.list-circle li::before {
	font-family: 'unicons';
	content: "\e8da";
	padding-right: 10px;
	color: var(--primary);
	webkit-transform: scale(.7);
	transform: scale(.7);
	display: inline-block;
}

.list-square li::before {
	font-family: 'unicons';
	content: "\ebab";
	padding-right: 10px;
	color: var(--primary);
	webkit-transform: scale(.7);
	transform: scale(.7);
	display: inline-block;
}

.list-star li::before {
	font-family: 'unicons';
	content: "\ebae";
	padding-right: 10px;
	color: var(--primary);
	webkit-transform: scale(.7);
	transform: scale(.7);
	display: inline-block;
}

.list-heart li::before {
	font-family: 'unicons';
	content: "\ea4a";
	padding-right: 10px;
	color: var(--primary);
	webkit-transform: scale(.7);
	transform: scale(.7);
	display: inline-block;
}

code {
	font-size: 14px;
	color: var(--orange);
	word-break: break-word;
}

pre {
	margin: 0;
	padding: 30px;
	background-image: linear-gradient(298deg, var(--indigo), var(--dark-blue));
	overflow: auto;
	display: block;
	font-size: 14px;
	color: var(--gray);
}

.alert {
	position: relative;
	padding: 15px 25px;
	margin-bottom: 0;
	border: none;
	border-radius: 4px;
}

.alert-primary {
	color: var(--white);
	background-image: linear-gradient(45deg, var(--blue), var(--primary));
}

.alert-secondary {
	color: var(--white);
	background-image: linear-gradient(45deg, var(--gray-dark), var(--secondary));
}

.alert-success {
	color: var(--white);
	background-image: linear-gradient(45deg, var(--cyan), var(--success));
}

.alert-danger {
	color: var(--white);
	background-image: linear-gradient(45deg, var(--red), var(--danger));
}

.alert-warning {
	color: var(--white);
	background-image: linear-gradient(45deg, var(--yellow), var(--warning));
}

.alert-info {
	color: var(--white);
	background-image: linear-gradient(45deg, var(--success), var(--info));
}

.alert-light {
	color: var(--gray-dark);
	background-image: linear-gradient(45deg, var(--light), rgba(193, 198, 202, .5));
}

.alert-dark {
	color: var(--white);
	background-image: linear-gradient(45deg, var(--secondary), var(--dark-blue));
}

.alert-dismissible {
	padding-right: 40px;
}

.alert-dismissible .close {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 0;
	color: var(--white);
	opacity: 0.9;
	font-size: 15px;
	text-shadow: none;
	-webkit-transition: opacity 200ms linear;
	transition: opacity 200ms linear;
}

.alert-dismissible .close.dark {
	color: var(--dark-blue);
}

.alert-dismissible .close:active,
.alert-dismissible .close:focus {
	border: none;
	box-shadow: none;
	outline: none;
}

.btn {
	border-radius: 4px;
	height: 48px;
	font-size: 16px;
	font-weight: 500;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	padding: 0 35px;
	letter-spacing: 0.2px;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
	border: none;
}


.btn-text-slide {
	--text: var(--white);
	--font-size: 20px;
	--duration: .34s;
	--move-hover: -4px;
	--font-shadow: var(--font-size);
	-webkit-transform: translateY(var(--y));
	transform: translateY(var(--y));
	transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
	transition: transform var(--duration) ease, box-shadow var(--duration) ease;
	transition: transform var(--duration) ease, box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
}

.btn-text-slide span {
	display: flex;
	overflow: hidden;
	text-shadow: 0 var(--font-shadow) 0 var(--text);
}

.btn-text-slide span i {
	display: block;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	font-style: normal;
	transition: -webkit-transform 0.25s ease;
	transition: transform 0.25s ease;
	transition: transform 0.25s ease, -webkit-transform 0.25s ease;
	-webkit-transform: translateY(var(--m));
	transform: translateY(var(--m));
}

.btn-text-slide span i:nth-child(1) {
	transition-delay: 0.05s;
}

.btn-text-slide span i:nth-child(2) {
	transition-delay: 0.1s;
}

.btn-text-slide span i:nth-child(3) {
	transition-delay: 0.15s;
}

.btn-text-slide span i:nth-child(4) {
	transition-delay: 0.2s;
}

.btn-text-slide span i:nth-child(5) {
	transition-delay: 0.25s;
}

.btn-text-slide span i:nth-child(6) {
	transition-delay: 0.3s;
}

.btn-text-slide span i:nth-child(7) {
	transition-delay: 0.35s;
}

.btn-text-slide span i:nth-child(8) {
	transition-delay: 0.4s;
}

.btn-text-slide span i:nth-child(9) {
	transition-delay: 0.45s;
}

.btn-text-slide span i:nth-child(10) {
	transition-delay: 0.5s;
}

.btn-text-slide span i:nth-child(11) {
	transition-delay: 0.55s;
}

.btn-text-slide:hover {
	--y: var(--move-hover);
}

.btn-text-slide:hover i {
	--m: calc(var(--font-size) * -1);
}

.btn:active,
.btn:focus {
	box-shadow: none;
}

.btn-fluid {
	width: 100%;
}

.btn-44 {
	width: 48px;
	text-align: center;
	padding: 0;
}

.btn-h-34 {
	height: 34px;
}

.btn-primary {
	color: var(--white);
	background-color: var(--primary);
}

.btn-primary:hover {
	color: var(--white);
	background-color: var(--primary);
	box-shadow: 0 6px 15px 0 rgba(89, 253, 223, .4);
}

.btn-secondary {
	color: var(--white);
	background-color: var(--secondary);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	color: var(--white);
	background-color: var(--secondary);
	box-shadow: 0 6px 15px 0 rgba(108, 116, 125, .4);
}

.btn-success {
	color: var(--white);
	background-color: var(--success);
}

.btn-success:active,
.btn-success:focus,
.btn-success:hover {
	color: var(--white);
	background-color: var(--success);
	box-shadow: 0 6px 15px 0 rgba(84, 218, 140, .4);
}

.btn-red {
	color: var(--white);
	background-color: var(--red);
}

.btn-red:active,
.btn-red:focus,
.btn-red:hover {
	color: var(--white);
	background-color: var(--red);
	box-shadow: 0 6px 15px 0 rgba(231, 76, 60, .4);
}

.btn-blue {
	color: var(--white);
	background-color: var(--blue);
}

.btn-blue:active,
.btn-blue:focus,
.btn-blue:hover {
	color: var(--white);
	background-color: var(--blue);
	box-shadow: 0 6px 15px 0 rgba(89, 139, 253, .4);
}

.btn-purple {
	color: var(--white);
	background-color: var(--purple);
}

.btn-purple:active,
.btn-purple:focus,
.btn-purple:hover {
	color: var(--white);
	background-color: var(--purple);
	box-shadow: 0 6px 15px 0 rgba(142, 68, 173, .4);
}

.btn-yellow {
	color: var(--white);
	background-color: var(--yellow);
}

.btn-yellow:active,
.btn-yellow:focus,
.btn-yellow:hover {
	color: var(--white);
	background-color: var(--yellow);
	box-shadow: 0 8px 35px 0 rgba(241, 196, 15, .35);
}

.btn-light {
	color: var(--gray-dark);
	background-color: var(--light);
}

.btn-light:active,
.btn-light:focus,
.btn-light:hover {
	color: var(--gray-dark);
	background-color: var(--light);
	box-shadow: 0 6px 15px 0 rgba(12, 22, 17, 0.1);
}

.btn-text-slide.btn-light {
	--text: var(--gray-dark);
}

.btn-dark {
	color: var(--white);
	background-color: var(--dark-blue);
}

.btn-dark:active,
.btn-dark:focus,
.btn-dark:hover {
	color: var(--white);
	background-color: var(--dark-blue);
	box-shadow: 0 6px 15px 0 rgba(31, 32, 40, .4);
}

.btn-dark-primary {
	color: var(--white);
	background-color: var(--dark);
}

.btn-dark-primary:hover {
	color: var(--white);
	background-color: var(--primary);
	box-shadow: 0 6px 15px 0 rgba(89, 253, 223, .4);
}

.btn-primary-line-dark {
	color: var(--white);
	background-color: transparent;
	border: 1px solid var(--primary);
}

.btn-primary-line-dark:active,
.btn-primary-line-dark:focus,
.btn-primary-line-dark:hover {
	color: var(--white);
	background-color: var(--primary);
	box-shadow: 0 6px 15px 0 rgba(89, 253, 223, .4);
	border: 1px solid var(--primary);
}

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

.btn-black-primary:active,
.btn-black-primary:focus,
.btn-black-primary:hover {
	color: var(--white);
	background-color: var(--primary);
	box-shadow: 0 6px 15px 0 rgba(89, 253, 223, .4);
}

.btn-light-dark {
	color: var(--dark);
	background-color: var(--light-2);
}

.btn-light-dark:active,
.btn-light-dark:focus,
.btn-light-dark:hover {
	color: var(--white);
	background-color: var(--dark-blue);
}

.btn-google {
	color: var(--white);
	background-color: #dd4b39;
}

.btn-twitter {
	color: var(--white);
	background-color: #55acee;
}

.btn-facebook {
	color: var(--white);
	background-color: #3b5999;
}

.btn-google:active,
.btn-google:focus,
.btn-google:hover,
.btn-twitter:active,
.btn-twitter:focus,
.btn-twitter:hover,
.btn-facebook:active,
.btn-facebook:focus,
.btn-facebook:hover {
	color: var(--white);
	background-color: var(--dark-blue);
	box-shadow: 0 14px 25px 0 rgba(0, 0, 0, 0.15);
}

.btn-user-profile {
	color: var(--gray-dark);
	background-color: transparent;
	font-size: 15px;
	text-align: left;
	height: 44px;
	padding: 0 15px;
}

.btn-user-profile:hover {
	color: var(--dark-blue);
	background-color: var(--light-2);
}

.btn-user-profile[aria-expanded="true"] {
	color: var(--dark-blue);
	background-color: var(--light-2);
}

.home-side-nav a.btn-user-profile .uil {
	opacity: 0.3;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.home-side-nav a.btn-user-profile:hover .uil {
	opacity: 1;
}

.home-side-nav a.btn-user-profile.mPS2id-highlight {
	color: var(--dark-blue);
	background-color: var(--light-2);
}

.home-side-nav a.btn-user-profile.mPS2id-highlight .uil {
	color: var(--primary);
	opacity: 1;
}

.btn-portfolio-nav {
	color: var(--white);
	background-color: var(--dark-blue);
	border-radius: 0;
	height: 100px;
}

.btn-portfolio-nav:hover {
	color: var(--white);
	background-color: var(--primary);
	box-shadow: none;
}

.btn-portfolio-nav-2 {
	color: var(--white);
	background-color: var(--darker);
	border-radius: 0;
	height: 100px;
}

.btn-portfolio-nav-2:hover {
	color: var(--white);
	background-color: var(--dark);
	box-shadow: none;
}


.btn-primary:disabled,
.btn-secondary:disabled,
.btn-success:disabled,
.btn-red:disabled,
.btn-blue:disabled,
.btn-purple:disabled,
.btn-light:disabled,
.btn-dark:disabled {
	opacity: 0.65;
	box-shadow: none;
}

.btn-primary:disabled {
	background-color: var(--primary);
}

.btn-secondary:disabled {
	background-color: var(--secondary);
}

.btn-success:disabled {
	background-color: var(--success);
}

.btn-red:disabled {
	background-color: var(--red);
}

.btn-blue:disabled {
	background-color: var(--blue);
}

.btn-purple:disabled {
	background-color: var(--purple);
}

.btn-light:disabled {
	background-color: var(--light);
	color: var(--gray-dark);
}

.btn-light:disabled:hover {
	color: var(--gray-dark);
}

.btn-dark:disabled {
	background-color: var(--dark-blue);
}

.btn-primary-gradient {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--success), var(--primary));
}

.btn-primary-gradient:active,
.btn-primary-gradient:focus,
.btn-primary-gradient:hover {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--success), var(--primary));
	box-shadow: 0 6px 15px 0 rgba(89, 253, 223, .4);
}

.btn-secondary-gradient {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--gray-dark), var(--secondary));
}

.btn-secondary-gradient:active,
.btn-secondary-gradient:focus,
.btn-secondary-gradient:hover {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--gray-dark), var(--secondary));
	box-shadow: 0 6px 15px 0 rgba(108, 116, 125, .4);
}

.btn-success-gradient {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--cyan), var(--success));
}

.btn-success-gradient:active,
.btn-success-gradient:focus,
.btn-success-gradient:hover {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--cyan), var(--success));
	box-shadow: 0 6px 15px 0 rgba(84, 218, 140, .4);
}

.btn-red-gradient {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--red), var(--danger));
}

.btn-red-gradient:active,
.btn-red-gradient:focus,
.btn-red-gradient:hover {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--red), var(--danger));
	box-shadow: 0 6px 15px 0 rgba(231, 76, 60, .4);
}

.btn-blue-gradient {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--indigo), var(--blue));
}

.btn-blue-gradient:active,
.btn-blue-gradient:focus,
.btn-blue-gradient:hover {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--indigo), var(--blue));
	box-shadow: 0 6px 15px 0 rgba(89, 139, 253, .4);
}

.btn-purple-gradient {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--dark), var(--purple));
}

.btn-purple-gradient:active,
.btn-purple-gradient:focus,
.btn-purple-gradient:hover {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--dark), var(--purple));
	box-shadow: 0 6px 15px 0 rgba(142, 68, 173, .4);
}

.btn-light-gradient {
	color: var(--gray-dark);
	background-image: linear-gradient(298deg, var(--light), rgba(193, 198, 202, .5));
}

.btn-light-gradient:active,
.btn-light-gradient:focus,
.btn-light-gradient:hover {
	color: var(--gray-dark);
	background-image: linear-gradient(298deg, var(--light), rgba(193, 198, 202, .5));
	box-shadow: 0 6px 15px 0 rgba(12, 22, 17, 0.1);
}

.btn-dark-gradient {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--secondary), var(--dark-blue));
}

.btn-dark-gradient:active,
.btn-dark-gradient:focus,
.btn-dark-gradient:hover {
	color: var(--white);
	background-image: linear-gradient(298deg, var(--secondary), var(--dark-blue));
	box-shadow: 0 6px 15px 0 rgba(31, 32, 40, .4);
}

.btn-icon-transparent {
	color: var(--dark-blue);
	background-color: transparent;
}

.btn-icon-transparent:active,
.btn-icon-transparent:focus,
.btn-icon-transparent:hover {
	color: var(--primary);
	background-color: transparent;
}

.btn-icon-transparent.blue:active,
.btn-icon-transparent.blue:focus,
.btn-icon-transparent.blue:hover {
	color: var(--blue);
	background-color: transparent;
}

.btn-small-icon {
	position: absolute;
	top: 5px;
	left: 50%;
	margin-left: 2px;
	z-index: 2;
	width: 18px;
	height: 18px;
	line-height: 18px;
	font-size: 12px;
	border-radius: 50%;
	display: block;
	text-align: center;
	font-weight: 500;
}

.link {
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	letter-spacing: 0.6px;
	color: var(--gray-dark);
	font-weight: 600;
	margin: 0;
	padding: 0;
	position: relative;
	display: inline-block;
}

.link.link-normal::after {
	display: none;
}

.link:hover {
	text-decoration: none;
	color: transparent;
}

.link::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
	content: attr(data-hover);
	color: var(--dark-blue);
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height 0.5s;
	-moz-transition: max-height 0.5s;
	transition: max-height 0.5s;
}

.link:hover::after {
	max-height: 100%;
}

.link.link-normal:hover {
	color: var(--primary);
}

.link.mPS2id-highlight {
	color: transparent;
}

.link.mPS2id-highlight::after {
	max-height: 100%;
}

.link:active,
.link:focus {
	box-shadow: none;
	outline: none;
	border: none;
}

.link-white-primary {
	color: var(--white);
}

.link-white-primary::after {
	background: var(--primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-primary {
	color: var(--primary);
}

.link-primary::after {
	background: linear-gradient(298deg, var(--success), var(--primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-primary.link-normal:hover {
	color: var(--success);
}

.link-secondary {
	color: var(--secondary);
}

.link-secondary::after {
	background: linear-gradient(298deg, var(--gray-dark), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-secondary.link-normal:hover {
	color: var(--gray-dark);
}

.link-success {
	color: var(--success);
}

.link-success::after {
	background: linear-gradient(298deg, var(--cyan), var(--success));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-success.link-normal:hover {
	color: var(--cyan);
}

.link-red {
	color: var(--red);
}

.link-red::after {
	background: linear-gradient(298deg, var(--red), var(--danger));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-red.link-normal:hover {
	color: var(--danger);
}

.link-blue {
	color: var(--blue);
}

.link-blue::after {
	background: linear-gradient(298deg, var(--indigo), var(--blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-blue.link-normal:hover {
	color: var(--indigo);
}

.link-purple {
	color: var(--purple);
}

.link-purple::after {
	background: linear-gradient(298deg, var(--dark), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-purple.link-normal:hover {
	color: var(--dark);
}

.link-gray {
	color: var(--gray);
}

.link-gray::after {
	background: var(--white);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-gray.link-normal:hover {
	color: var(--light);
}

.link-dark-primary {
	color: var(--dark-blue);
}

.link-dark-primary.link-normal:hover {
	color: var(--primary);
}

.link-dark-primary::after {
	background: var(--primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-light-primary {
	color: var(--light);
}

.link-light-primary.link-normal:hover {
	color: var(--primary);
}

.link-light-primary::after {
	background: var(--primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-dark-light {
	color: var(--dark-blue);
}

.link-dark-light.link-normal:hover {
	color: var(--light);
}

.link-dark-light::after {
	background: var(--light);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-dark-secondary {
	color: var(--dark-blue);
}

.link-dark-secondary.mPS2id-highlight {
	color: var(--dark-blue);
}

.link-dark-secondary.link-normal:hover {
	color: var(--secondary);
}

.link-dark-secondary::after {
	background: var(--secondary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-light-primary-2 {
	color: var(--light);
}

.link-light-primary-2.link-normal:hover {
	color: var(--primary);
}

.link-light-primary-2::after {
	background: var(--primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-dark-primary-2 {
	color: var(--dark-blue);
}

.link-dark-primary-2.link-normal:hover {
	color: var(--primary);
}

.link-dark-primary-2::after {
	background: var(--primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.link-gray-dark {
	color: var(--gray-dark);
}

.link-gray-dark.link-normal:hover {
	color: var(--dark-blue);
}

.link-gray-dark::after {
	background: var(--dark-blue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-center-v {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

/* #Navbar
================================================== */

.navbar {
	padding: 0;
	margin: 0;
}

.navbar-toggler {
	float: right;
	border: none;
	padding: 0;
	transition: color 300ms linear;
}

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

.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 18px;
	background-image: none;
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	border-bottom: 2px solid var(--dark-blue);
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
	width: 24px;
	position: absolute;
	height: 2px;
	background-color: var(--dark-blue);
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
	transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
	top: 8px;
	width: 18px;
	left: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
	width: 24px;
	left: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
	transition: all 300ms linear;
}

/* #Forms
================================================== */

.form-group {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
}

.form-style {
	padding: 13px 20px;
	height: 48px;
	width: 100%;
	font-weight: 400;
	border-radius: 4px;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.5px;
	outline: none;
	color: var(--dark-blue);
	background-color: var(--white);
	border: 1px solid rgba(200, 200, 200, .5);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-style.dark-version {
	color: var(--light-2);
	background-color: var(--black);
}

.form-style.dark-blue-version {
	color: var(--light-2);
	background-color: var(--dark-blue);
}

.form-style.gray-version {
	color: var(--dark-blue);
	background-color: var(--light-2);
}

.no-border {
	border: none;
}

.form-group.just-line-light .form-style {
	padding: 13px 0;
	height: 48px;
	font-size: 15px;
	border-radius: 0;
	background-color: transparent;
	border: none;
	color: var(--gray);
	font-weight: 700;
	border-bottom: 2px solid var(--secondary);
}

.form-group.just-line-light .form-style:focus,
.form-group.just-line-light .form-style:active {
	border-color: var(--primary);
	outline: none;
	box-shadow: none;
}

.form-style.search {
	padding: 10px 0;
	height: auto;
	font-weight: 700;
	border-radius: 0;
	font-size: 7.5vw;
	color: var(--dark);
	background-color: transparent;
	border: none;
	border-bottom: 3px solid rgba(200, 200, 200, .4);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-style.search:focus,
.form-style.search:active {
	border-color: var(--primary);
	outline: none;
	box-shadow: none;
}

.form-style.form-textarea {
	height: auto;
}

.form-style:focus,
.form-style:active {
	border-color: var(--primary);
	outline: none;
	box-shadow: 0 4px 8px 0 rgba(21, 21, 21, .03);
}

.form-style:invalid {
	border-color: var(--red);
}

.form-group input:-ms-input-placeholder {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input::-moz-placeholder {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input:-moz-placeholder {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input::-webkit-input-placeholder {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:-ms-input-placeholder {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea::-moz-placeholder {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:-moz-placeholder {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea::-webkit-input-placeholder {
	color: var(--gray-dark);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input:focus:-ms-input-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input:focus::-moz-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input:focus:-moz-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input:focus::-webkit-input-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:focus:-ms-input-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:focus::-moz-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:focus:-moz-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:focus::-webkit-input-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input:active:-ms-input-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input:active::-moz-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input:active:-moz-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group input:active::-webkit-input-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:active:-ms-input-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:active::-moz-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:active:-moz-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-group textarea:active::-webkit-input-placeholder {
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-style.big {
	padding: 18px 20px;
	height: 60px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	border: none;
	box-shadow: 0px 10px 30px -5px rgba(149, 164, 175, 0.3);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.form-style.dark-version.big {
	box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.2);
}

.form-style.dark-version.big:focus,
.form-style.dark-version.big:active {
	box-shadow: 0px 40px 70px -5px rgba(0, 0, 0, 0.4);
}

.form-style.dark-blue-version.big {
	box-shadow: 0px 10px 30px -5px rgba(149, 164, 175, 0.2);
}

.form-style.dark-blue-version.big:focus,
.form-style.dark-blue-version.big:active {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.form-style.big.form-textarea {
	height: auto;
}

.form-style.big.form-style-with-icon {
	padding-left: 60px;
}

.form-style.big:focus,
.form-style.big:active {
	border: none;
	outline: none;
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.form-style.big.with-border {
	border: 1px solid var(--gray-light);
}

.form-style.big.with-border:focus,
.form-style.big.with-border:active {
	border: 1px solid var(--primary);
}

.form-style.no-shadow {
	box-shadow: none;
}

.form-style.no-shadow:focus,
.form-style.no-shadow:active {
	box-shadow: none;
}

.input-icon {
	position: absolute;
	top: 0;
	left: 20px;
	height: 48px;
	font-size: 24px;
	line-height: 48px;
	text-align: left;
	color: var(--primary);
	opacity: 0.7;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.input-icon.big {
	height: 60px;
	line-height: 60px;
}

.form-style-with-icon {
	padding-left: 55px;
}


#contact-feedback {
	position: absolute;
	left: 0;
	bottom: -50px;
	font-size: 13px;
	width: 100%;
	z-index: 3;
}

#contact-feedback.success {
	color: var(--primary);
}

#contact-feedback.error {
	color: var(--red);
}

#contact-message-feedback {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 15px;
	line-height: 24px;
	width: 100%;
	text-align: center;
	z-index: 3;
	transition: all 300ms linear;
}

#contact-message-feedback.success {
	color: var(--primary);
	transition: all 300ms linear;
}

#contact-message-feedback.error {
	color: var(--red);
	transition: all 300ms linear;
}







.choose-file {
	position: relative;
	overflow: hidden;
	display: block;
}

.choose-file::before {
	position: absolute;
	font-family: 'unicons';
	content: '\e9cd';
	width: 100%;
	text-align: center;
	z-index: -1;
	left: 0;
	top: 30px;
	font-size: 22px;
	color: var(--primary);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.choose-file.avatar::before {
	z-index: 2;
}

.choose-file input[type=file] {
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	font-size: 15px;
	cursor: pointer;
	z-index: 4;
}

.choose-file label {
	border: 1px dashed rgba(200, 200, 200, .5);
	padding: 35px 20px;
	padding-top: 70px;
	display: block;
	text-align: center;
	border-radius: 4px;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.choose-file.avatar label {
	margin: 0;
	background-color: rgba(21, 21, 21, 0.4);
}

.choose-file.avatar:hover label {
	background-color: rgba(21, 21, 21, 0.6);
}

.choose-file:hover label {
	border-color: var(--primary);
}

.choose-file.colored-bg label {
	background-color: rgba(200, 200, 200, .2);
	border: none;
}

.choose-file.colored-bg:hover label {
	background-color: var(--primary);
	color: var(--white);
}

.choose-file.colored-bg::before {
	z-index: 3;
}

.choose-file.colored-bg:hover::before {
	color: var(--white);
}

.nice-select {
	-webkit-tap-highlight-color: var(--white);
	background-color: var(--white);
	border: 1px solid rgba(200, 200, 200, .5);
	border-radius: 4px;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	overflow: hidden;
	font-family: inherit;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.5px;
	outline: none;
	color: rgba(149, 165, 166, .7);
	outline: none;
	padding: 12px 20px;
	height: 48px;
	position: relative;
	text-align: left;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto;
}

.select-big .nice-select {
	padding: 18px 20px;
	height: 60px;
	font-size: 16px;
	line-height: 24px;
	color: var(--dark-blue);
	font-weight: 500;
	border: none;
	box-shadow: 0px 10px 30px -5px rgba(149, 164, 175, 0.2);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.select-big.checkout .nice-select {
	color: rgba(149, 165, 166, .7);
	padding-left: 60px;
}

.select-big.with-border .nice-select {
	border: 1px solid var(--gray-light);
}

.select-big .nice-select .list {
	color: rgba(149, 165, 166, 1);
	max-height: 230px;
}

.nice-select.primary-style {
	-webkit-tap-highlight-color: var(--primary);
	background-color: var(--primary);
	border: none;
	color: var(--white);
	padding: 13px 20px;
}

.nice-select.open {
	overflow: visible;
	background-color: var(--white);
	border: none;
}

.select-big .nice-select.open {
	border: none;
	outline: none;
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.select-big.with-border .nice-select.open {
	border: 1px solid var(--primary);
}

.nice-select:hover {
	background-color: var(--white);
	border: none;
}

.nice-select:after {
	border-bottom: 2px solid var(--gray-dark);
	border-right: 2px solid var(--gray-dark);
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.nice-select.primary-style:after {
	border-bottom: 2px solid var(--white);
	border-right: 2px solid var(--white);
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.nice-select.disabled {
	border-color: var(--gray);
	color: var(--black);
	pointer-events: none;
	border: none;
}

.nice-select.disabled:after {
	border-color: var(--gray);
	border: none;
}

.nice-select.wide {
	width: 100%;
	border: none;
}

.nice-select.wide .list {
	left: 0;
	right: 0;
	border: none;
}

.nice-select.right {
	float: right;
	border: none;
}

.nice-select.right .list {
	left: auto;
	right: 0;
	border: none;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
	border: none;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
	border: none;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
	border: none;
}

.nice-select .list {
	background-color: var(--white);
	color: rgba(149, 165, 166, .7);
	border-radius: 0;
	box-sizing: border-box;
	margin-top: 3px;
	opacity: 0;
	overflow: hidden;
	overflow-y: auto;
	max-height: 220px;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08);
	padding: 0;
	pointer-events: none;
	position: absolute;
	width: 100%;
	left: 0;
	margin-left: 0;
	top: 100%;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
	-webkit-transition: all 0.3s linear, opacity 0.2s ease-out;
	transition: all 0.3s linear, opacity 0.2s ease-out;
	z-index: 9;
	border: none;
	border-radius: 4px;
}

.nice-select .list::-webkit-scrollbar {
	width: 5px;
}

.nice-select .list::-webkit-scrollbar-track {
	background-color: var(--light);
}

.nice-select .list::-webkit-scrollbar-thumb {
	background-color: var(--gray);
}

.nice-select .list::-webkit-scrollbar-thumb:hover {
	background-color: var(--gray);
}

.nice-select .list:hover .option:not(:hover) {}

.nice-select.primary-style .list::-webkit-scrollbar-track {
	background-color: var(--light);
}

.nice-select.primary-style .list::-webkit-scrollbar-thumb {
	background-color: var(--primary);
}

.nice-select.primary-style .list::-webkit-scrollbar-thumb:hover {
	background-color: var(--primary);
}

.nice-select .option {
	cursor: pointer;
	list-style: none;
	font-size: 14px;
	padding-top: 11px;
	padding-bottom: 11px;
	outline: none;
	padding-left: 20px;
	padding-right: 15px;
	text-align: left;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
	background-color: var(--white);
	border: none;
}

.nice-select .option.focus {
	background-color: var(--light);
	border: none;
}

.nice-select .option.selected.focus {
	background-color: var(--light);
	border: none;
}

.nice-select .option:hover {
	color: var(--white);
	background-color: var(--primary);
	border: none;
}

.nice-select .option.selected {
	background-color: var(--gray);
}

.nice-select .option.selected:hover {
	color: var(--bali-hai);
}

.nice-select .option.disabled {
	background-color: transparent;
	color: var(--black);
	cursor: default;
	border: none;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

/* #Checkboxes & Radios
================================================== */

.form-group input[type="checkbox"] {
	visibility: hidden;
	display: none;
}

.checkbox {
	position: relative;
	padding-left: 36px;
	cursor: pointer;
	line-height: 20px;
}

.checkbox:after {
	position: absolute;
	content: '';
	top: -3px;
	left: 0;
	width: 26px;
	height: 26px;
	border-radius: 2px;
	border: solid 1px var(--gray);
	transition: all 200ms linear;
}

input[type="checkbox"]:checked+.checkbox:after {
	border-color: var(--primary);
}

.checkbox:before {
	position: absolute;
	font-family: 'unicons';
	content: '\e8d8';
	opacity: 0;
	top: -3px;
	left: 0;
	width: 26px;
	height: 26px;
	line-height: 26px;
	font-size: 20px;
	text-align: center;
	color: var(--primary);
	border-radius: 2px;
	z-index: 2;
	transition: all 200ms linear;
}

input[type="checkbox"]:checked+.checkbox:before {
	opacity: 1;
}

input[type="checkbox"]:disabled+.checkbox {
	opacity: 0.5;
}

input[type="checkbox"]:checked+.checkbox.secondary:after {
	border-color: var(--secondary);
}

.checkbox.secondary:before {
	color: var(--secondary);
}

input[type="checkbox"]:checked+.checkbox.warning:after {
	border-color: var(--warning);
}

.checkbox.warning:before {
	color: var(--warning);
}

input[type="checkbox"]:checked+.checkbox.blue:after {
	border-color: var(--blue);
}

.checkbox.blue:before {
	color: var(--blue);
}


.form-group input[type="radio"] {
	visibility: hidden;
	display: none;
}

.radio {
	position: relative;
	padding-left: 36px;
	cursor: pointer;
	line-height: 20px;
}

.radio:after {
	position: absolute;
	content: '';
	top: -3px;
	left: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: solid 1px var(--gray);
	transition: all 200ms linear;
}

input[type="radio"]:checked+.radio:after {
	border-color: var(--primary);
}

.radio:before {
	position: absolute;
	content: '';
	opacity: 0;
	top: 5px;
	left: 8px;
	width: 10px;
	height: 10px;
	text-align: center;
	background-color: var(--primary);
	border-radius: 50%;
	z-index: 2;
	transition: all 200ms linear;
}

input[type="radio"]:checked+.radio:before {
	opacity: 1;
}

input[type="radio"]:disabled+.radio {
	opacity: 0.5;
}

input[type="radio"]:checked+.radio.secondary:after {
	border-color: var(--secondary);
}

.radio.secondary:before {
	background-color: var(--secondary);
}

input[type="radio"]:checked+.radio.warning:after {
	border-color: var(--warning);
}

.radio.warning:before {
	background-color: var(--warning);
}

input[type="radio"]:checked+.radio.blue:after {
	border-color: var(--blue);
}

.radio.blue:before {
	background-color: var(--blue);
}

.h-30 {
	height: 30px;
}

.switch {
	position: relative;
	cursor: pointer;
	height: 30px;
	display: inline-block;
	width: 60px;
	border-radius: 15px;
	border: 1px solid var(--gray);
	transition: all 200ms linear;
}

input[type="checkbox"]:checked+.switch {
	border-color: var(--primary);
}

.switch:before {
	position: absolute;
	font-family: 'unicons';
	content: '\ebee';
	line-height: 24px;
	font-size: 16px;
	color: var(--white);
	text-align: center;
	left: 3px;
	top: 2px;
	border-radius: 50%;
	background-color: var(--gray);
	display: block;
	width: 24px;
	height: 24px;
	transition: all 200ms linear;
}

input[type="checkbox"]:checked+.switch:before {
	opacity: 0;
	transform: rotate(180deg);
	left: 30px;
}

.switch:after {
	position: absolute;
	font-family: 'unicons';
	content: '\e8d8';
	line-height: 24px;
	font-size: 16px;
	color: var(--white);
	text-align: center;
	left: 3px;
	top: 2px;
	border-radius: 50%;
	background-color: var(--primary);
	display: block;
	width: 24px;
	height: 24px;
	opacity: 0;
	transform: rotate(-180deg);
	transition: all 200ms linear;
}

input[type="checkbox"]:checked+.switch:after {
	opacity: 1;
	transform: rotate(0);
	left: 31px;
}

input[type="checkbox"]:checked+.switch.warning {
	border-color: var(--warning);
}

.switch.warning:after {
	background-color: var(--warning);
}

input[type="checkbox"]:checked+.switch.purple {
	border-color: var(--purple);
}

.switch.purple:after {
	background-color: var(--purple);
}

input[type="checkbox"]:checked+.switch.yellow {
	border-color: var(--yellow);
}

.switch.yellow:after {
	background-color: var(--yellow);
}

.checkbox-booking:checked+label,
.checkbox-booking:not(:checked)+label {
	position: relative;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
	padding: 0;
	padding: 6px 25px;
	line-height: 30px;
	letter-spacing: 1px;
	margin: 0 auto;
	margin-left: 6px;
	margin-right: 6px;
	margin-bottom: 16px;
	text-align: center;
	border-radius: 4px;
	cursor: pointer;
	color: var(--dark-blue);
	background-color: var(--light-2);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.checkbox-booking:not(:checked)+label::before {
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.checkbox-booking:checked+label::before {
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-booking:not(:checked)+label:hover::before {
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-booking:checked+label::before,
.checkbox-booking:not(:checked)+label::before {
	position: absolute;
	content: '';
	top: -2px;
	left: -2px;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	border-radius: 4px;
	z-index: -2;
	background-image: linear-gradient(298deg, var(--primary), var(--info));
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.checkbox-booking:not(:checked)+label::before {
	top: -1px;
	left: -1px;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
}

.checkbox-booking:checked+label::after,
.checkbox-booking:not(:checked)+label::after {
	position: absolute;
	content: '';
	top: -2px;
	left: -2px;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	border-radius: 4px;
	z-index: -2;
	background-color: var(--light-2);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.checkbox-booking:checked+label::after {
	opacity: 0;
}

.checkbox-booking:checked+label .uil,
.checkbox-booking:not(:checked)+label .uil {
	font-size: 20px;
}

.checkbox-booking:checked+label .text,
.checkbox-booking:not(:checked)+label .text {
	position: relative;
	display: inline-block;
	-webkit-transition: opacity 300ms linear;
	transition: opacity 300ms linear;
}

.checkbox-booking:checked+label .text {
	opacity: 0.6;
}

.checkbox-booking:checked+label .text::after,
.checkbox-booking:not(:checked)+label .text::after {
	position: absolute;
	content: '';
	width: 0;
	left: 0;
	top: 50%;
	margin-top: -1px;
	height: 2px;
	background-image: linear-gradient(298deg, var(--primary), var(--info));
	z-index: 1;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.checkbox-booking:not(:checked)+label .text::after {
	width: 0;
}

.checkbox-booking:checked+label .text::after {
	width: 100%;
}

.checkbox-tools:checked+label,
.checkbox-tools:not(:checked)+label {
	position: relative;
	display: inline-block;
	padding: 20px;
	width: 110px;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 1px;
	margin: 0 auto;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	text-transform: uppercase;
	color: var(--dark-blue);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.checkbox-tools:not(:checked)+label {
	background-color: var(--light-2);
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.checkbox-tools:checked+label {
	background-color: transparent;
	color: var(--white);
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-tools:not(:checked)+label:hover {
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-tools:checked+label::before,
.checkbox-tools:not(:checked)+label::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-image: linear-gradient(298deg, var(--primary), var(--info));
	z-index: -1;
}

.checkbox-tools:checked+label .uil,
.checkbox-tools:not(:checked)+label .uil {
	font-size: 24px;
	line-height: 24px;
	display: block;
	padding-bottom: 10px;
}

.checkbox-budget:checked+label,
.checkbox-budget:not(:checked)+label {
	position: relative;
	display: inline-block;
	padding: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 260px;
	font-size: 42px;
	line-height: 42px;
	font-weight: 900;
	letter-spacing: 1px;
	margin: 0 auto;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	text-transform: uppercase;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	-webkit-text-stroke: 1px var(--dark-blue);
	text-stroke: 1px var(--dark-blue);
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
}

.checkbox-budget:not(:checked)+label {
	background-color: var(--light-2);
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.checkbox-budget:checked+label {
	background-color: transparent;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
	-webkit-text-stroke: 1px var(--white);
	text-stroke: 1px var(--white);
	-webkit-text-fill-color: transparent;
}

.checkbox-budget:not(:checked)+label:hover {
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-budget:checked+label::before,
.checkbox-budget:not(:checked)+label::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-image: linear-gradient(298deg, var(--primary), var(--info));
	z-index: -1;
}

.checkbox-budget:checked+label span,
.checkbox-budget:not(:checked)+label span {
	position: relative;
	display: block;
}

.checkbox-budget:checked+label span::before,
.checkbox-budget:not(:checked)+label span::before {
	position: absolute;
	content: attr(data-hover);
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	-webkit-text-stroke: transparent;
	text-stroke: transparent;
	-webkit-text-fill-color: var(--white);
	text-fill-color: var(--white);
	color: var(--white);
	-webkit-transition: max-height 0.3s;
	-moz-transition: max-height 0.3s;
	transition: max-height 0.3s;
}

.checkbox-budget:not(:checked)+label span::before {
	max-height: 0;
}

.checkbox-budget:checked+label span::before {
	max-height: 100%;
}

.checkbox-contact:checked+label,
.checkbox-contact:not(:checked)+label {
	position: relative;
	display: block;
	padding: 25px 20px;
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0 auto;
	margin: 0;
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	color: var(--dark-blue);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.checkbox-contact.checkout:checked+label,
.checkbox-contact.checkout:not(:checked)+label {
	color: var(--gray-dark);
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.2px;
	padding: 20px 0;
}

.checkbox-contact.checkout:not(:checked)+label {
	background-color: var(--white);
	box-shadow: 0px 20px 40px -5px rgba(149, 164, 175, 0.4);
}

.checkbox-contact.checkout:not(:checked)+label:hover,
.checkbox-contact.checkout:checked+label {
	background-color: var(--primary);
	color: var(--white);
	box-shadow: 0 16px 25px 0 rgba(89, 253, 223, .4);
}

.checkbox-contact.checkout:not(:checked)+label:hover .uil {
	color: var(--white);
}

.checkbox-contact:not(:checked)+label {
	background-color: var(--white);
	box-shadow: 0px 20px 40px -5px rgba(149, 164, 175, 0.2);
}

.checkbox-contact:checked+label {
	background-color: transparent;
	color: var(--white);
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.checkbox-contact:not(:checked)+label:hover {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.checkbox-contact:checked+label::before,
.checkbox-contact:not(:checked)+label::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-color: var(--primary);
	z-index: -1;
}

.checkbox-contact:checked+label .uil,
.checkbox-contact:not(:checked)+label .uil {
	font-size: 24px;
	line-height: 24px;
	display: block;
	padding-bottom: 10px;
	color: var(--gray-dark);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.checkbox-contact:checked+label .uil {
	color: var(--white);
}

.checkbox-contact.ver-2:checked+label,
.checkbox-contact.ver-2:not(:checked)+label {
	padding: 15px;
	color: var(--gray-dark);
	font-weight: 600;
}

.checkbox-contact.ver-2:not(:checked)+label {
	background-color: var(--light-2);
}

.checkbox-contact.ver-2:checked+label,
.checkbox-contact.ver-2:not(:checked)+label:hover {
	color: var(--white);
	background-color: var(--primary);
}

.checkbox-contact.no-shadow:not(:checked)+label,
.checkbox-contact.no-shadow:checked+label,
.checkbox-contact.no-shadow:not(:checked)+label:hover {
	box-shadow: none;
}

.checkbox-contact.ver-2:checked+label,
.checkbox-contact.ver-2:not(:checked)+label {
	padding: 18px 15px;
	font-size: 15px;
	color: var(--gray);
}

.checkbox-contact.ver-2:not(:checked)+label {
	background-color: var(--white);
	box-shadow: 0px 20px 40px -5px rgba(149, 164, 175, 0.2);
}

.checkbox-contact.ver-2:checked+label {
	background-color: transparent;
	color: var(--white);
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}


/* #Modals
================================================== */

.modal-content {
	width: 100%;
	max-width: 580px;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: subpixel-antialiased;
	border-radius: 4px;
}

.modal-body .close {
	position: absolute;
	width: 54px;
	height: 34px;
	border-radius: 4px;
	top: 20px;
	right: 20px;
	padding: 0;
	margin: 0;
	opacity: 1;
	line-height: 34px;
	font-size: 18px;
	text-shadow: none;
	font-weight: normal;
	background-color: transparent;
	color: var(--gray-dark);
	cursor: pointer;
	z-index: 100;
	transition: all 200ms linear;
}

.modal-body .close:hover {
	background-color: var(--primary);
	color: var(--white);
}

.modal-body .close:active,
.modal-body .close:focus {
	border: none;
	outline: none;
	box-shadow: none;
}

.modal-dialog {
	position: absolute;
	width: auto;
	top: 50%;
	left: 50%;
	margin: 0 auto;
	pointer-events: none;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 580px;
	margin: 0;
	padding: 0;
	border-radius: 4px;
	max-height: 100vh;
}

.modal.fade .modal-dialog {
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	-webkit-transform: translate(-50%, -55%);
	transform: translate(-50%, -55%);
}

@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

.modal {
	z-index: 1121050;
	margin: 0;
	padding: 0;
	border-radius: 4px;
}

.modal-backdrop {
	z-index: 1121040;
	background-color: var(--dark);
}

.modal-backdrop.show {
	opacity: 0.4;
}

.modal.show .modal-dialog {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.modal-body {
	margin: 0;
	padding: 60px 35px;
	padding-bottom: 50px;
	border-radius: 4px;
}

.modal-header {
	border: none;
	margin: 0;
	padding: 0;
}

.modal-content {
	poasition: relative;
	overflow: hidden;
	border: none;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
	margin: 0;
	padding: 0;
	background-color: var(--white);
	border-radius: 4px;
}

.modal-footer {
	border-top: none;
	margin: 0;
	padding: 0;
}

.modal-search .modal-body {
	min-height: 100vh;
	border-radius: 0;
}

.modal-search .modal-content {
	max-width: 100%;
	border-radius: 0;
	background-color: rgba(255, 255, 255, .95);
}

.modal-search .modal-dialog {
	max-width: 100%;
	border-radius: 0;
}

.modal-small .modal-content {
	max-width: 420px;
}

.modal-small .modal-dialog {
	max-width: 420px;
}

.modal-large .modal-content {
	max-width: 920px;
}

.modal-large .modal-dialog {
	max-width: 920px;
}

/* #Pagination
================================================== */

.pagination {
	border-radius: 4px;
	padding: 0;
	margin: 0;
}

.page-link {
	padding: 12px 17px;
	margin-left: 0;
	margin-right: 8px;
	border-radius: 4px;
	line-height: 1.25;
	color: var(--dark-blue);
	background-color: transparent;
	border: 1px solid var(--light-2);
	transition: all 200ms linear;
}

.page-item:last-child .page-link {
	margin-right: 0;
}

.page-link:hover {
	color: var(--white);
	text-decoration: none;
	background-color: var(--primary);
	border-color: transparent;
}

.page-link:active,
.page-link:focus {
	box-shadow: none;
}

.page-item.disabled .page-link {
	color: var(--gray);
	background-color: transparent;
	border-color: var(--light-2);
}

.page-item.active .page-link {
	color: var(--white);
	text-decoration: none;
	background-color: var(--primary);
	border-color: transparent;
}

.pagination.circle .page-link {
	width: 45px;
	height: 45px;
	text-align: center;
	border-radius: 50%;
	line-height: 45px;
	padding: 0;
}

.pagination-lg .page-link {
	font-size: 20px;
	padding: 17px 24px;
}

.pagination-lg.circle .page-link {
	width: 60px;
	height: 60px;
	text-align: center;
	border-radius: 50%;
	line-height: 60px;
	padding: 0;
}

.pagination-lg .page-item:first-child .page-link,
.pagination-lg .page-item:last-child .page-link {
	border-radius: 4px;
}

.pagination-lg.circle .page-item:first-child .page-link,
.pagination-lg.circle .page-item:last-child .page-link {
	border-radius: 50%;
}

.pagination-sm .page-link {
	font-size: 13px;
	padding: 8px 13px;
}

.pagination-sm.circle .page-link {
	width: 34px;
	height: 34px;
	text-align: center;
	border-radius: 50%;
	line-height: 34px;
	padding: 0;
}

.pagination-sm .page-item:first-child .page-link,
.pagination-sm .page-item:last-child .page-link {
	border-radius: 4px;
}

.pagination-sm.circle .page-item:first-child .page-link,
.pagination-sm.circle .page-item:last-child .page-link {
	border-radius: 50%;
}

.pagination.dark .page-link {
	color: var(--white);
	background-color: var(--secondary);
	border: none;
}

.pagination.dark .page-item.disabled .page-link {
	opacity: 0.6;
}

.pagination.dark .page-item.active .page-link {
	color: var(--white);
	text-decoration: none;
	background-color: var(--primary);
	border-color: transparent;
}

.pagination.dark .page-link:hover {
	color: var(--white);
	text-decoration: none;
	background-color: var(--primary);
	border-color: transparent;
}

/* #Progress
================================================== */

.progress {
	height: 5px;
	background-color: var(--light-2);
	border-radius: 4px;
	overflow: initial;
}

.progress.w-label {
	margin-top: 30px;
}

.progress-bar {
	background-color: var(--primary);
	position: relative;
	overflow: initial;
	opacity: 0;
}

.progress-bar span {
	position: absolute;
	top: -30px;
	line-height: 27px;
	z-index: 2;
	right: 0;
	text-align: right;
	border-radius: 4px;
	border-bottom-right-radius: 0;
	font-size: 13px;
	font-weight: 400;
	background-color: var(--dark-blue);
	color: var(--white);
	height: 27px;
	padding: 0 10px;
}

.progress.w-label .progress-bar::after {
	position: absolute;
	content: '';
	bottom: 0;
	z-index: 4;
	right: 0;
	background-color: var(--dark-blue);
	width: 2px;
	height: 8px;
}

.progress-bar-striped {
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.35) 75%, transparent 75%, transparent);
}

.progress-bar-wrapper p {
	position: absolute;
	top: -30px;
	left: 0;
	z-index: 4;
}

@-webkit-keyframes animate-positive {
	0% {
		width: 0%;
	}
}

@keyframes animate-positive {
	0% {
		width: 0%;
	}
}

/* #Video
================================================== */

.video-section {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.video-wrapper,
figure.vimeo,
figure.youtube {
	margin: 0;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
	border-radius: 4px;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
}

figure.youtube a img,
figure.vimeo a img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	border-radius: 4px;
}

figure.vimeo a:after,
figure.youtube a:after {
	content: "";
	width: 60px;
	height: 60px;
	background: var(--primary);
	z-index: 9;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	box-shadow: 0px 0px 0px 10px rgba(0, 0, 0, 0.25);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

figure.vimeo:hover a:after,
figure.youtube:hover a:after {
	box-shadow: 0px 0px 0px 20px rgba(0, 0, 0, 0.25);
}

figure.vimeo a:before,
figure.youtube a:before {
	content: "";
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid var(--white);
	z-index: 10;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -3px;
	margin-top: -5px;
	display: block;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

figure.vimeo:hover a:before,
figure.youtube:hover a:before {
	border-left: 8px solid var(--white);
}

figure.vimeo a:hover img,
figure.youtube a:hover img {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

figure.vimeo a img,
figure.youtube a img {
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	a -webkit-transform: scale(1);
	transform: scale(1);
}

figure.vimeo:hover a:after,
figure.youtube:hover a:after {
	background-color: var(--dark);
}

/* #Accordion
================================================== */

.accordion>.card {
	background-color: #fff;
	border: 1px solid rgba(21, 21, 21, 0.14);
	border-radius: 4px;
	margin-bottom: 10px;
}

.accordion>.card .card-header {
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	border: none;
}

.accordion>.card .card-body {
	padding: 20px;
	padding-top: 0;
}

.accordion>.card:not(:first-of-type) .card-header:first-child {
	border-radius: 4px;
}

.accordion>.card:not(:first-of-type):not(:last-of-type) {
	border-bottom: 1px solid rgba(21, 21, 21, 0.14);
	border-radius: 4px;
}

.accordion>.card:first-of-type {
	border-bottom: 1px solid rgba(21, 21, 21, 0.14);
	border-radius: 4px;
}

.accordion>.card:last-of-type {
	border-radius: 4px;
	margin-bottom: 0;
}

.accordion.accordion-shadow-2>.card:not(:first-of-type):not(:last-of-type),
.accordion.accordion-shadow-2>.card:first-of-type,
.accordion.accordion-shadow-2>.card {
	border: none;
}

.accordion.accordion-shadow>.card {
	box-shadow: 0 6px 38px rgba(0, 0, 0, .05);
}

.accordion.accordion-shadow-2>.card {
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.3);
}

.btn-accordion {
	position: relative;
	display: block;
	width: 100%;
	padding: 12px 20px;
	cursor: pointer;
	font-family: 'Muli', sans-serif;
	font-weight: 600;
	letter-spacing: 0.4px;
	color: var(--dark-blue);
	font-size: 16px;
	line-height: 24px;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

.accordion.accordion-shadow-2>.card .btn-accordion {
	letter-spacing: 0.2px;
	font-size: 17px;
	line-height: 24px;
	padding: 20px 30px;
	font-weight: 700;
	color: var(--dark);
}

.accordion.accordion-shadow-2>.card .card-body {
	padding: 30px;
	padding-top: 10px;
}

.btn-accordion::before,
.btn-accordion::after {
	position: absolute;
	display: block;
	width: 13px;
	height: 1px;
	content: '';
	right: 20px;
	top: 25.5px;
	background-color: var(--gray-dark);
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.accordion.accordion-shadow-2>.card .btn-accordion::before,
.accordion.accordion-shadow-2>.card .btn-accordion::after {
	top: 31.5px;
	right: 25px;
}

.btn-accordion[aria-expanded="false"]::after {
	transform: rotate(90deg);
}

.btn-accordion[aria-expanded="false"]::before {
	transform: rotate(180deg);
}

/* #Dividers
================================================== */

.divider:before {
	position: absolute;
	height: 1px;
	width: 100%;
	content: '';
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: rgba(11, 11, 11, .12);
}

.divider.divider-light:before {
	background-color: rgba(255, 255, 255, .2);
}

.divider-icon {
	position: relative;
	padding: 5px 10px;
	background-color: var(--white);
	display: inline-block;
	border-radius: 4px;
}

.divider-icon.circle {
	border-radius: 50%;
	width: 44px;
	height: 44px;
	text-align: center;
	padding: 0;
	line-height: 44px;
}

.divider.dbl-dashed:before {
	background-color: transparent;
	height: 10px;
	border-top: 1px dashed rgba(11, 11, 11, .2);
	border-bottom: 1px dashed rgba(11, 11, 11, .2);
}

.divider.one-dashed:before {
	background-color: transparent;
	height: 1px;
	border-top: 1px dashed rgba(11, 11, 11, .2);
}

.divider.divider-red:before {
	border-color: var(--red);
}


.divider.divider-gray:before {
	background-color: var(--gray);
	opacity: 0.3;
}

/* #Gallery
================================================== */

.gallery-wrap {
	position: relative;
	display: block;
	width: 100%;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.gallery-wrap:hover {
	box-shadow: 0 6px 15px 0 rgba(31, 32, 40, .1);
}

.gallery-mask {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(14, 14, 14, .6);
	opacity: 0;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.gallery-wrap:hover .gallery-mask {
	opacity: 1;
}

.gallery-icon {
	position: absolute;
	display: block;
	width: 100%;
	height: 30px;
	top: 50%;
	left: 0;
	z-index: 1;
	margin-top: -15px;
	line-height: 30px;
	text-align: center;
}

/* #Testimonials
================================================== */

.testimonials-v1 {
	border-left: 4px solid var(--primary);
	padding: 40px;
	box-shadow: 0px 22px 62px rgba(44, 43, 43, 0.2);
}

.testimonials-v1.shadow-v2 {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.testimonials-v1 img {
	width: 70px;
	height: auto;
	display: block;
	border-radius: 50%;
}

.testimonials-v2 {
	border-top: 4px solid var(--primary);
	padding: 40px;
	box-shadow: 0px 22px 62px rgba(44, 43, 43, 0.2);
}

.testimonials-v2.blue-shadow {
	box-shadow: 0px 40px 100px -10px rgba(149, 164, 175, 0.4);
}

.testimonials-v2.no-shadow {
	padding: 30px;
	box-shadow: none;
}

.testimonials-v2:before {
	position: absolute;
	content: '';
	left: 20px;
	bottom: -12px;
	z-index: 2;
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid var(--white);
}

.testimonials-v2.bg-dark-blue:before {
	border-top: 12px solid var(--dark-blue);
}

.testimonials-v2.bg-light-2:before {
	border-top: 12px solid var(--light-2);
}

.testimonials-v2-img img {
	width: 70px;
	height: auto;
	display: block;
	border-radius: 50%;
}

.testimonials-v3 {
	border: 1px solid var(--gray-light);
	padding: 40px;
	border-radius: 4px;
}

.testimonials-v3 img {
	width: 70px;
	height: auto;
	display: block;
	border-radius: 4px;
}

.testimonials-v4 {
	border: 1px solid var(--gray-light);
	padding: 40px;
	border-radius: 4px;
}

.testimonials-v4:before {
	position: absolute;
	content: '';
	left: 20px;
	bottom: -12px;
	z-index: 2;
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid var(--gray-light);
}

.testimonials-v4-img img {
	width: 70px;
	height: auto;
	display: block;
	border-radius: 4px;
}

.swiper-testimonials-4 .swiper-slide {
	opacity: 0;
	transition: all 250ms linear;
}

.swiper-testimonials-4 .swiper-slide.swiper-slide-active,
.swiper-testimonials-4 .swiper-slide.swiper-slide-prev,
.swiper-testimonials-4 .swiper-slide.swiper-slide-next {
	opacity: 1;
}

.testimonials-v4.dark-ver {
	border: 1px solid var(--darker);
	border-radius: 4px;
	background-color: var(--dark-blue);
	transition: all 250ms linear;
}

.testimonials-v4.dark-ver:before {
	border-top: 12px solid var(--darker);
}

.testimonials-v4-img.dark-ver img {
	width: 150px;
	height: auto;
	display: block;
	border-radius: 0;
}

.swiper-testimonials-5 .swiper-slide.swiper-slide-active .testimonials-v4.dark-ver {
	box-shadow: 0px 40px 100px -5px rgba(0, 0, 0, 0.4);
	transform: scale(1.05);
}

/* #Animation
================================================== */

.anime-box {
	position: relative;
	display: block;
	border: 1px solid var(--gray-light);
	padding: 30px 20px;
	border-radius: 4px;
}

/* #Table
================================================== */

.table {
	font-size: 15px;
	width: 100%;
	line-height: 24px;
	border: 1px solid rgba(12, 12, 12, .08);
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.table th {
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
}

.table td {
	font-size: 14px;
	letter-spacing: 0.5px;
	border: none;
	border-right: 1px solid rgba(12, 12, 12, .08);
	border-bottom: 1px solid rgba(12, 12, 12, .08);
	padding: 8px 20px;
}

.table td:last-of-type {
	border-right: none;
}

.table tr {
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.table-hover tbody tr:hover {
	background-color: var(--dark-blue);
	color: var(--white);
}

.table thead th {
	border: none;
	border-right: 1px solid rgba(12, 12, 12, .08);
	border-bottom: 1px solid rgba(12, 12, 12, .08);
	padding: 12px 20px;
}

.table thead th:last-of-type {
	border-right: none;
}

.table-responsive::-webkit-scrollbar {
	width: 5px;
}

.table-responsive::-webkit-scrollbar-track {
	background-color: var(--gray);
}

.table-responsive::-webkit-scrollbar-thumb {
	background-color: var(--primary);
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
	background-color: var(--dark-blue);
}

/* #Breadcrumb
================================================== */

.breadcrumb {
	padding: 0;
	margin-bottom: 0;
	list-style: none;
	background-color: transparent;
	border-radius: 4px;
	border: 1px solid rgba(12, 12, 12, .08);
}

.breadcrumb-item+.breadcrumb-item {
	padding-left: 10px;
}

.breadcrumb-item+.breadcrumb-item::before {
	padding-right: 10px;
	color: var(--dark-blue);
	content: "/";
}

.breadcrumb-item.light+.breadcrumb-item.light::before {
	color: var(--light-2);
}

.breadcrumb-item.active {
	color: var(--gray-dark);
}

.breadcrumb.no-border {
	border: none;
}

.breadcrumb.bg-primary .breadcrumb-item+.breadcrumb-item::before,
.breadcrumb.bg-dark-blue .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white);
}

/* #Tooltip
================================================== */

.tooltip-templates {
	display: none;
}

.tooltip-templates img {
	width: 100%;
	height: auto;
	display: block;
}

.tooltipster-sidetip .tooltipster-content {
	color: var(--dark-blue);
	padding: 0;
	width: 100%;
	max-width: 500px;
}

.tooltipster-sidetip .tooltipster-content img {
	width: 100%;
	height: auto;
	display: block;
}

.tooltipster-sidetip .tooltipster-box {
	background: var(--white);
	border: none;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0px 22px 62px rgba(44, 43, 43, 0.2);
}

.tooltipster-update-fade {
	animation: tooltipster-fading 200ms;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: var(--white);
	top: 0;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: var(--white);
	left: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: var(--white);
	left: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: var(--white);
	top: 0;
}

.tooltipster-sidetip .tooltipster-arrow-border {
	border: none;
}

/* #Range Sliders
================================================== */

.irs {
	font-family: 'Roboto', sans-serif;
}

.irs--flat .irs-line {
	top: 31px;
	height: 6px;
}

.irs--flat .irs-bar {
	top: 31px;
	height: 6px;
	background-color: var(--primary);
}

.irs--flat .irs-handle>i:first-child {
	top: 0;
	left: 50%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-left: -10px;
	background-color: var(--white);
	cursor: ew-resize;
	box-shadow: 0px 2px 6px rgba(24, 23, 23, 0.2);
}

.irs--flat .irs-handle.state_hover>i:first-child,
.irs--flat .irs-handle:hover>i:first-child {
	background-color: var(--white);
}

.irs--flat .irs-min,
.irs--flat .irs-max {
	padding: 2px 4px;
	color: var(dark-blue);
	border-radius: 1px;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
	padding: 3px 6px;
	background-color: var(--dark-blue);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2px;
	border-radius: 3px;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
	border-top-color: var(--dark-blue);
}

.range-secondary .irs--flat .irs-bar {
	background-color: var(--secondary);
}

.range-red .irs--flat .irs-bar {
	background-color: var(--red);
}

.range-success .irs--flat .irs-bar {
	background-color: var(--success);
}

.range-blue .irs--flat .irs-bar {
	background-color: var(--blue);
}

.range-purple .irs--flat .irs-bar {
	background-color: var(--purple);
}

.range-yellow .irs--flat .irs-bar {
	background-color: var(--yellow);
}

.range-warning .irs--flat .irs-bar {
	background-color: var(--warning);
}

/* #Tabs
================================================== */

.nav-pills .nav-item {
	margin: 0;
	padding: 0;
	background-color: #e1e4e9;
}

.nav-pills .nav-link {
	margin: 0;
	padding: 12px 20px;
	color: var(--gray-dark);
	border-radius: 0;
	background-color: #e1e4e9;
}

.nav-pills .nav-link:before {
	display: none;
}

.nav-pills .nav-link:hover {
	color: var(--white);
	background-color: var(--primary);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	color: var(--white);
	background-color: var(--dark-blue);
}

/* #Navigation
================================================== */

.cbp-af-header {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	background-color: var(--white);
}

.cbp-af-header.header-transparent {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	background-color: transparent;
	border-bottom: 1px solid rgba(21, 21, 21, 0.05);
}

.cbp-af-header.header-transparent.cbp-af-header-shrink {
	background-color: var(--white);
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: none;
}

.cbp-af-header.cbp-af-header-shrink {
	background-color: var(--white);
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .padding-on-scroll {
	margin-top: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .navbar-brand {
	height: 50px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .nav-item {
	margin: 15px 20px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .nav-link {
	margin-top: 8px;
	margin-bottom: 8px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/* #Dark Navigation
================================================== */

.cbp-af-header.header-dark {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	background-color: var(--dark-blue);
}

.cbp-af-header.header-dark.cbp-af-header-shrink {
	background-color: var(--dark-blue);
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.cbp-af-header.header-dark.header-transparent {
	background-color: transparent;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: 1px solid rgba(221, 221, 221, 0.1);
}

.cbp-af-header.header-dark.header-transparent.cbp-af-header-shrink {
	background-color: var(--dark-blue);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: none;
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
}

.cbp-af-header.header-semi-transparent {
	background-color: rgba(255, 255, 255, .7);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: none;
}

.cbp-af-header.header-semi-transparent.cbp-af-header-shrink {
	background-color: var(--white);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: none;
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
}

.cbp-af-header.header-dark.header-semi-transparent {
	background-color: rgba(0, 0, 0, .4);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: none;
}

.cbp-af-header.header-dark.header-semi-transparent.cbp-af-header-shrink {
	background-color: var(--dark-blue);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: none;
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
}

.header-dark .btn-icon-transparent {
	color: var(--white);
	background-color: transparent;
}

.header-dark .btn-icon-transparent:active,
.header-dark .btn-icon-transparent:focus,
.header-dark .btn-icon-transparent:hover {
	color: var(--primary);
	background-color: transparent;
}

.header-dark .navbar-light .navbar-toggler-icon {
	border-bottom: 2px solid var(--light-2);
}

.header-dark .navbar-light .navbar-toggler-icon:after,
.header-dark .navbar-light .navbar-toggler-icon:before {
	background-color: var(--light-2);
}

.header-dark .nav-link::before {
	background-color: var(--gray);
}

.header-dark .nav-link {
	color: var(--light-3);
}

.header-dark .nav-link:hover {
	color: var(--primary);
}

.header-dark .dropdown-menu {
	background-color: var(--black);
}

.header-dark .dropdown-item {
	color: var(--gray-light);
}

.header-dark .dropdown-item:hover {
	color: var(--primary);
}

.header-dark .dropdown-item.active {
	color: var(--primary);
}

/* #Float Navigation
================================================== */

.cbp-af-header.header-float {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	max-width: 1400px;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 20px;
	border-radius: 5px;
	box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.5);
}

.cbp-af-header.header-float.cbp-af-header-shrink {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	max-width: 100%;
	left: 0;
	transform: translateX(0);
	margin-top: 0;
	border-radius: 0;
}

.cbp-af-header.header-float .padding-on-scroll {
	padding-top: 0;
	padding-bottom: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.cbp-af-header.header-float.cbp-af-header-shrink .padding-on-scroll {
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.cbp-af-header.header-float .dropdown-menu {
	margin-top: 20px;
}

.cbp-af-header.header-float .mega-menu-dropdown {
	margin-top: 0;
}





.nav-border-bottom {
	border-bottom: 1px solid rgba(21, 21, 21, 0.05);
}

.nav-border-bottom-light {
	border-bottom: 1px solid rgba(221, 221, 221, 0.1);
}

.padding-on-scroll {
	padding-top: 15px;
	padding-bottom: 15px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navigation-wrap {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10000;
}

.navbar {
	padding: 0;
}

.navbar-brand {
	position: relative;
	height: 60px;
	display: block;
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navbar-brand img {
	height: 100%;
	width: auto;
	display: block;
	margin: 0;
	padding: 0;
}

.navbar-toggler {
	float: right;
	border: none;
	padding: 0;
	transition: color 300ms linear;
}

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

.navbar-light .navbar-toggler-icon {
	width: 16px;
	height: 18px;
	background-image: none;
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	margin-right: 7px;
	border-bottom: 2px solid var(--dark);
	transform: translateX(8px);
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
	width: 16px;
	position: absolute;
	height: 2px;
	background-color: var(--dark);
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
	transform: translateX(-8px);
	transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
	top: 8px;
	width: 24px;
	left: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: translateX(-8px) rotate(45deg);
	width: 24px;
	left: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translate(-8px, 8px) rotate(-45deg);
	width: 24px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
	transition: all 300ms linear;
}

.nav-item {
	position: relative;
	margin: 20px;
	padding: 0;
	display: inline-block;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.nav-link {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	margin: 0;
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 0;
	display: inline-block;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.nav-link::before {
	position: absolute;
	content: '';
	bottom: -12px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--dark);
	opacity: 0;
	transition: all 250ms linear;
}

.nav-link.active::before,
.nav-link:hover::before {
	bottom: -8px;
	opacity: 1;
}

.nav-link:hover {
	color: var(--dark-blue);
}

.one-page-nav .nav-link.mPS2id-highlight {
	color: var(--primary);
}

.one-page-nav .nav-link.mPS2id-highlight::before,
.one-page-nav .nav-link.mPS2id-highlight::before {
	bottom: -8px;
	opacity: 1;
}

.one-page-side-nav-for-scroll .link.mPS2id-highlight {
	color: var(--primary);
}


.nav-item .dropdown-menu {
	transform: translate3d(0, 5px, 0);
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	display: block;
	padding: 0;
	margin: 0;
	pointer-events: none;
	transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	max-height: 9999px;
	transform: translate3d(0, 0px, 0);
}

.nav-item.show .dropdown-menu .nav-item .dropdown-menu {
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	display: block;
	padding: 0;
	margin: 0;
	pointer-events: none;
	transform: translate3d(0, 5px, 0);
}

.nav-item.show .dropdown-menu .nav-item.show .dropdown-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	max-height: 999px;
	transform: translate3d(0, 0, 0);
}

.nav-item.show .dropdown-menu .nav-item .dropdown-menu,
.nav-item.show .dropdown-menu .nav-item.show .dropdown-menu {
	margin-top: -52px;
}

@media (min-width: 1200px) {

	.nav-item .dropdown-menu .nav-item .dropdown-menu.drop-right-sub,
	.nav-item .dropdown-menu .nav-item.show .dropdown-menu.drop-right-sub,
	.nav-item.show .dropdown-menu .nav-item .dropdown-menu.drop-right-sub,
	.nav-item.show .dropdown-menu .nav-item.show .dropdown-menu.drop-right-sub {
		right: -100%;
		left: auto;
	}

	.nav-item .dropdown-menu .nav-item .dropdown-menu.drop-left-sub,
	.nav-item .dropdown-menu .nav-item.show .dropdown-menu.drop-left-sub,
	.nav-item.show .dropdown-menu .nav-item .dropdown-menu.drop-left-sub,
	.nav-item.show .dropdown-menu .nav-item.show .dropdown-menu.drop-left-sub {
		left: -100%;
	}
}

.nav-item .dropdown-menu .nav-item.show .dropdown-menu::before {
	display: none;
}

.dropdown-menu {
	padding: 8px 0;
	min-width: 226px;
	margin: 0;
	margin-top: 35px;
	background-color: var(--white);
	border: none;
	border-radius: 0;
	box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .05);
	border-top: 2px solid var(--primary);
}

.dropdown-menu .nav-item {
	margin: 0;
	padding: 0;
	display: block;
	width: 100%;
}

.cbp-af-header.cbp-af-header-shrink .dropdown-menu .nav-item {
	margin: 0;
	padding: 0;
	display: block;
}

.dropdown-menu::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 40px;
	left: 0;
	top: -40px;
}

.cbp-af-header.cbp-af-header-shrink .dropdown-menu {
	margin-top: 20px;
}

.cbp-af-header.cbp-af-header-shrink .dropdown-menu::before {
	height: 25px;
	top: -25px;
}

.mega-menu-dropdown-link {
	position: static;
}

.mega-menu-dropdown {
	width: 100%;
	max-width: 1400px;
	margin-top: 15px;
}

.full-width-mega-menu .mega-menu-dropdown {
	width: 100%;
	max-width: 100%;
}

.mega-menu-dropdown.full-width {
	max-width: 100%;
}

.cbp-af-header.cbp-af-header-shrink .mega-menu-dropdown {
	margin-top: 5px;
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: 8px 20px;
	clear: both;
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 0.4px;
	color: var(--gray-dark);
	font-weight: 500;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	text-decoration: none;
	border: 0;
	transition: all 200ms linear;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-ms-flex-pack: center;
}

.dropdown-item:hover {
	color: var(--dark-blue);
	padding-left: 23px;
}

.dropdown-item.active {
	color: var(--dark-blue);
	background-color: transparent;
}

.dropdown-item::after {
	padding: 10px 20px;
	opacity: 0;
	transition: all 400ms linear;
}

.dropdown-item:hover::after {
	opacity: 1;
}

.dropdown-item:hover,
.dropdown-item:focus {
	letter-spacing: 0.4px;
	color: var(--gray-dark);
	font-weight: 600;
	text-decoration: none;
	background-color: transparent;
}

.dropdown-item.drop-left-sub::before,
.dropdown-item.drop-right-sub::before {
	position: absolute;
	font-family: 'unicons';
	content: '\e82f';
	right: 10px;
	top: 12px;
	z-index: 4;
	font-size: 19px;
	line-height: 19px;
	color: var(--gray);
}

/* #Menu Labels
================================================== */

.label {
	padding: 0 5px;
	border-radius: 4px;
	display: inline-block;
	font-size: 8px;
	font-weight: 800;
	line-height: 16px;
	letter-spacing: 0.2px;
	margin-left: 5px;
	text-transform: uppercase;
	font-family: 'Muli', sans-serif;
}

.label.new {
	background-color: var(--red);
	color: var(--white);
}

.label.hot {
	background-color: var(--primary);
	color: var(--dark-blue);
}

.label.popular {
	background-color: var(--purple);
	color: var(--white);
}

.label.sale {
	background-color: var(--yellow);
	color: var(--white);
}

.label.info {
	background-color: var(--blue);
	color: var(--white);
}

/* #Overlay Navigation
================================================== */

.nav-but-wrap {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	padding-top: 15px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.menu-icon {
	height: 30px;
	width: 30px;
	position: relative;
	z-index: 2;
	cursor: pointer;
	display: block;
}

.menu-icon__line {
	height: 2px;
	width: 30px;
	display: block;
	background-color: var(--white);
	margin-bottom: 7px;
	cursor: pointer;
	-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, background-color .5s ease;
	transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}

.menu-icon__line-left {
	width: 16.5px;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.menu-icon__line-right {
	width: 16.5px;
	float: right;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
	width: 30px;
}

.nav-overlay {
	position: fixed;
	z-index: 98;
}

.nav-overlay:before,
.nav-overlay:after {
	content: "";
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(20, 21, 26, 0.4);
	border-bottom-left-radius: 200%;
	z-index: -1;
	-webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	-webkit-transform: translateX(100%) translateY(-100%);
	transform: translateX(100%) translateY(-100%);
}

.nav-overlay:after {
	background: var(--dark-blue);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.nav-overlay:before {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

.nav-overlay-social {
	position: absolute;
	bottom: -100px;
	transform: translateY(30px);
	width: 100%;
	text-align: center;
	z-index: 1;
	opacity: 0;
	transition: all 250ms linear;
}

.nav__content {
	position: fixed;
	visibility: hidden;
	top: 50%;
	margin-top: 40px;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	width: 100%;
	text-align: center;
}

.nav__list {
	position: relative;
	padding: 0;
	margin: 0;
	z-index: 2;
}

.nav__list-item {
	position: relative;
	display: block;
	-webkit-transition-delay: 0.8s;
	transition-delay: 0.8s;
	opacity: 0;
	text-align: center;
	color: #fff;
	overflow: hidden;
	font-size: 8vh;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 3px;
	-webkit-transform: translate(100px, 0%);
	transform: translate(100px, 0%);
	-webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, transform .3s ease;
	transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
	margin-top: 0;
	margin-bottom: 0;
}

.nav__list-item a {
	position: relative;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.6);
	overflow: hidden;
	cursor: pointer;
	padding-left: 5px;
	padding-right: 5px;
	z-index: 2;
	display: inline-block;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.nav__list-item a:after {
	position: absolute;
	content: '';
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 0;
	opacity: 0;
	margin-top: 3px;
	background-color: var(--primary);
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.nav__list-item a:hover:after {
	height: 20px;
	opacity: 0.7;
}

.nav__list-item a:hover {
	color: rgba(255, 255, 255, 1);
}

.nav__list-item.active-nav a {
	color: rgba(255, 255, 255, 1);
}

.nav__list-item.active-nav a:after {
	height: 20px;
	opacity: 0.7;
}

body.nav-active .nav__content {
	visibility: visible;
}

body.nav-active .menu-icon__line {
	background-color: #fff;
	-webkit-transform: translate(0px, 0px) rotate(-45deg);
	transform: translate(0px, 0px) rotate(-45deg);
}

body.nav-active .menu-icon__line-left {
	width: 15px;
	-webkit-transform: translate(2px, 4px) rotate(45deg);
	transform: translate(2px, 4px) rotate(45deg);
}

body.nav-active .menu-icon__line-right {
	width: 15px;
	float: right;
	-webkit-transform: translate(-3px, -3.5px) rotate(45deg);
	transform: translate(-3px, -3.5px) rotate(45deg);
}

body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
	width: 15px;
}

body.nav-active .nav-overlay {
	visibility: visible;
}

body.nav-active .nav-overlay:before,
body.nav-active .nav-overlay:after {
	-webkit-transform: translateX(0%) translateY(0%);
	transform: translateX(0%) translateY(0%);
	border-radius: 0;
}

body.nav-active .nav-overlay:after {
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}

body.nav-active .nav-overlay:before {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

body.nav-active .nav__list-item {
	opacity: 1;
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}

body.nav-active .nav-overlay-social {
	opacity: 1;
	transform: translateY(0);
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}

body.nav-active .nav__list-item:nth-child(0) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

body.nav-active .nav__list-item:nth-child(1) {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

body.nav-active .nav__list-item:nth-child(2) {
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

body.nav-active .nav__list-item:nth-child(3) {
	-webkit-transition-delay: 0.7s;
	transition-delay: 0.7s;
}

body.nav-active .nav__list-item:nth-child(4) {
	-webkit-transition-delay: 0.8s;
	transition-delay: 0.8s;
}

body.nav-active .nav__list-item:nth-child(5) {
	-webkit-transition-delay: 0.9s;
	transition-delay: 0.9s;
}

body.nav-active .nav__list-item:nth-child(6) {
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}

body.nav-active .nav__list-item:nth-child(7) {
	-webkit-transition-delay: 1.1s;
	transition-delay: 1.1s;
}

body.nav-active .nav__list-item:nth-child(8) {
	-webkit-transition-delay: 1.2s;
	transition-delay: 1.2s;
}

body.nav-active .nav__list-item:nth-child(9) {
	-webkit-transition-delay: 1.3s;
	transition-delay: 1.3s;
}

body.nav-active .nav__list-item:nth-child(10) {
	-webkit-transition-delay: 1.4s;
	transition-delay: 1.4s;
}

/* #Side navigation
================================================== */

.side-nav-wrap {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	height: 100vh;
	z-index: 1000;
	width: 100px;
}

.side-nav-wrap.top-position {
	height: auto;
	width: 100%;
}

.side-nav-wrap.top-position.cbp-af-header {
	background-color: transparent;
	padding: 20px 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: 1px solid rgba(23, 23, 23, 0.05);
}

.side-nav-wrap.top-position.cbp-af-header.cbp-af-header-shrink {
	background-color: var(--white);
	padding: 12px 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-color: transparent;
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
}

.side-nav-wrap.top-position.cbp-af-header.dark-version {
	background-color: transparent;
	padding: 20px 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.side-nav-wrap.top-position.cbp-af-header.dark-version.cbp-af-header-shrink {
	background-color: var(--dark-blue);
	padding: 12px 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-color: transparent;
	box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
}

.side-nav-wrap.top-position.cbp-af-header.cbp-af-header-shrink img {
	width: 50px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.side-nav-wrap.top-position img {
	width: 55px;
	height: auto;
	display: block;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}


.side-nav-wrap img {
	width: 60px;
	height: auto;
	display: block;
	margin: 0 auto;
	text-align: center;
}

.side-nav-wrap .nav-but-wrap {
	position: relative;
	display: block;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.side-nav-wrap .menu-icon {
	height: 30px;
	width: 30px;
	position: relative;
	z-index: 2;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	text-align: center;
}

.side-nav-wrap .menu-icon__line {
	height: 2px;
	width: 30px;
	display: block;
	background-color: var(--dark-blue);
	margin-bottom: 7px;
	cursor: pointer;
	-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, background-color .5s ease;
	transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}

.side-nav-wrap .menu-icon__line-left {
	width: 16.5px;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.side-nav-wrap .menu-icon__line-right {
	width: 16.5px;
	float: right;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.side-nav-wrap .menu-icon:hover .menu-icon__line-left,
.side-nav-wrap .menu-icon:hover .menu-icon__line-right {
	width: 30px;
}


.modal.show#modalNavigation~.side-nav-wrap .menu-icon__line,
.modal.show#modalNavigation~.section .menu-icon__line {
	-webkit-transform: translate(0px, 0px) rotate(-45deg);
	transform: translate(0px, 0px) rotate(-45deg);
}

.modal.show#modalNavigation~.side-nav-wrap .menu-icon__line-left,
.modal.show#modalNavigation~.section .menu-icon__line-left {
	width: 15px;
	-webkit-transform: translate(2px, 4px) rotate(45deg);
	transform: translate(2px, 4px) rotate(45deg);
}

.modal.show#modalNavigation~.side-nav-wrap .menu-icon__line-right,
.modal.show#modalNavigation~.section .menu-icon__line-right {
	width: 15px;
	float: right;
	-webkit-transform: translate(-3px, -3.5px) rotate(45deg);
	transform: translate(-3px, -3.5px) rotate(45deg);
}

.modal.show#modalNavigation~.side-nav-wrap .menu-icon:hover .menu-icon__line-left,
.modal.show#modalNavigation~.side-nav-wrap .menu-icon:hover .menu-icon__line-right,
.modal.show#modalNavigation~.section .menu-icon:hover .menu-icon__line-left,
.modal.show#modalNavigation~.section .menu-icon:hover .menu-icon__line-right {
	width: 15px;
}



body.modal-open {}

.modal-side-nav .modal-body {
	min-height: 100vh;
	border-radius: 0;
}

.modal-side-nav .modal-content {
	max-width: 100%;
	border-radius: 0;
}

.modal-side-nav .modal-dialog {
	max-width: 100%;
	width: 360px;
	border-radius: 0;
	top: 0;
	left: 0;
	border-radius: 0;
	-webkit-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
}

.modal.fade.modal-side-nav .modal-dialog {
	-webkit-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
}

@media (prefers-reduced-motion: reduce) {
	.modal.fade.modal-side-nav .modal-dialog {
		-webkit-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}
}

.modal.show.modal-side-nav .modal-dialog {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.modal-side-nav .modal-body {
	margin: 0;
	padding: 30px 0;
	border-radius: 0;
}

.logo-side-nav img {
	width: 60px;
	height: auto;
	display: block;
}

.close-side-nav {
	position: absolute;
	display: block;
	top: 40px;
	right: 30px;
	padding: 0;
	border: none;
	outline: none;
	box-shadow: none;
	width: 30px;
	height: 30px;
	z-index: 4000;
	background: transparent;
}

.close-side-nav::after,
.close-side-nav::before {
	position: absolute;
	display: block;
	top: 50%;
	right: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: var(--white);
	z-idex: 4;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.close-side-nav::after {
	transform: rotate(45deg);
}

.close-side-nav::before {
	transform: rotate(-45deg);
}

.close-side-nav:hover::after,
.close-side-nav:hover::before {
	transform: rotate(0);
}

.close-side-nav:active,
.close-side-nav:focus {
	border: none;
	outline: none;
	box-shadow: none;
}

.side-nav-link-col .uil {
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.side-nav-link-col[aria-expanded="true"] .uil:last-child {
	transform: rotate(90deg);
}

.side-nav-link-col {
	color: var(--light-2);
	margin-bottom: 5px;
}

.side-nav-link-col:hover {
	color: var(--primary);
}

.side-nav-link-col[aria-expanded="true"] {
	color: var(--primary);
}

.side-nav-collapse-wrap {
	padding: 0 15px;
}

.modal-side-nav .link.active {
	color: var(--primary);
}


/* #Titles
================================================== */

.title-text-top {
	position: relative;
	display: inline-block;
}

.title-text-top::before {
	position: absolute;
	display: block;
	content: '';
	left: 0;
	bottom: -3px;
	height: 2px;
	width: 100%;
	background-color: var(--primary);
	z-index: 2;
}

.title-text-left-line {
	position: relative;
	padding-left: 120px;
}

.title-text-left-line::before {
	position: absolute;
	top: 13px;
	left: 40px;
	content: '';
	height: 2px;
	width: 60px;
	background-color: var(--primary)
}

.title-w-24 {
	width: 24px;
}

.title-line-bottom {
	position: relative;
	display: inline-block;
}

.title-line-bottom::before {
	position: absolute;
	display: block;
	content: '';
	left: 0;
	bottom: 2px;
	height: 6px;
	border-radius: 4px;
	width: 100%;
	background-color: var(--primary);
	z-index: 2;
	opacity: 0.6;
}

.title-text-left-line-small {
	position: relative;
	padding-left: 60px;
}

.title-text-left-line-small::before {
	position: absolute;
	top: 14px;
	left: 20px;
	content: '';
	height: 2px;
	width: 20px;
	background-color: var(--primary)
}


/* #Hero sections
================================================== */

.hero-center-section {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 5;
	transform: translateY(-50%);
}

.hero-bottom-section {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	z-index: 5;
}

.hero-left-section {
	position: absolute;
	bottom: 70px;
	left: 30px;
	z-index: 15;
}

.hero-left-full-section {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	z-index: 15;
}

.hero-radius-img-anime {
	position: absolute;
	top: 15vh;
	right: 100px;
	height: 70vh;
	display: block;
	overflow: hidden;
	z-index: 3;
	animation: border-transform 17s linear infinite alternate forwards;
}

.hero-radius-img-anime img {
	height: 100%;
	width: auto;
	display: block;
}

.display-1 {
	font-size: 120px;
	line-height: 1.1;
	font-weight: 900;
}

.text-stroke-dark {
	-webkit-text-stroke: 2px var(--dark-blue);
	text-stroke: 2px var(--dark-blue);
}

.text-vertical {
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
}

@-webkit-keyframes border-transform {

	0%,
	100% {
		border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
	}

	14% {
		border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
	}

	28% {
		border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
	}

	42% {
		border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
	}

	56% {
		border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
	}

	70% {
		border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
	}

	84% {
		border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
	}
}

@keyframes border-transform {

	0%,
	100% {
		border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
	}

	14% {
		border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
	}

	28% {
		border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
	}

	42% {
		border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
	}

	56% {
		border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
	}

	70% {
		border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
	}

	84% {
		border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
	}
}

.blend-mode-normal {
	mix-blend-mode: normal;
}

.blend-mode-multiply {
	mix-blend-mode: multiply;
}

.blend-mode-screen {
	mix-blend-mode: screen;
}

.blend-mode-overlay {
	mix-blend-mode: overlay;
}

.blend-mode-darken {
	mix-blend-mode: darken;
}

.blend-mode-lighten {
	mix-blend-mode: lighten;
}

.blend-mode-color-dodge {
	mix-blend-mode: color-dodge;
}

.blend-mode-color-burn {
	mix-blend-mode: color-burn;
}

.blend-mode-difference {
	mix-blend-mode: difference;
}

.blend-mode-exclusion {
	mix-blend-mode: exclusion;
}

.blend-mode-hue {
	mix-blend-mode: hue;
}

.blend-mode-saturation {
	mix-blend-mode: saturation;
}

.blend-mode-color {
	mix-blend-mode: color;
}

.blend-mode-luminosity {
	mix-blend-mode: luminosity;
}

.hero-circle-img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 45%;
	display: block;
	transform: translate(-50%, -50%);
	z-index: 3;
}

.hero-circle-img img {
	height: 100%;
	width: auto;
	display: block;
	border-radius: 50%;
}

.hero-circle-img h6 {
	position: absolute;
	width: 200%;
	bottom: -20px;
	left: -50%;
	z-index: 3;
}

.display-2 {
	font-size: 13vw;
	line-height: 0.9;
	font-weight: 900;
}

.hero-subtitle {
	padding: 12px 22px;
	border-radius: 4px;
	background-color: var(--light-3);
}

.display-3 {
	font-size: 11vw;
	line-height: 0.9;
	font-weight: 900;
	-webkit-text-stroke: 2px var(--light-2);
	text-stroke: 2px var(--light-2);
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
}

.hero-subtitle-2 {
	padding: 10px 22px;
	border-radius: 4px;
	background-color: rgba(239, 237, 245, .8);
}


.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}



.swiper-hero-design-studio .swiper-button-next,
.swiper-hero-design-studio .swiper-button-prev {
	position: absolute;
	top: 50%;
	bottom: auto;
	border-radius: 50%;
	border: 1px solid var(--gray-light);
	background-color: transparent;
	color: var(--gray);
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.2px;
	line-height: 50px;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	z-index: 10;
	cursor: pointer;
	background-image: none;
	transition: all 200ms linear;
}

.swiper-hero-design-studio .swiper-button-next:hover,
.swiper-hero-design-studio .swiper-button-prev:hover {
	border-color: var(--primary);
	background-color: transparent;
	box-shadow: none;
	color: var(--primary);
}

.swiper-hero-design-studio .swiper-button-prev {
	right: auto;
	left: 30px;
}

.swiper-hero-design-studio .swiper-button-next {
	right: 30px;
	left: auto;
}

.swiper-hero-design-studio .swiper-button-next:active,
.swiper-hero-design-studio .swiper-button-prev:active,
.swiper-hero-design-studio .swiper-button-next:focus,
.swiper-hero-design-studio .swiper-button-prev:focus {
	border: 1px solid var(--gray-light);
	outline: none;
	box-shadow: none;
}

.swiper-hero-design-studio .swiper-button-next:active:hover,
.swiper-hero-design-studio .swiper-button-prev:active:hover,
.swiper-hero-design-studio .swiper-button-next:focus:hover,
.swiper-hero-design-studio .swiper-button-prev:focus:hover {
	border-color: var(--primary);
}

.arrow-animation {
	animation: fade-arrow-animation 2.7s linear infinite;
}

@keyframes fade-arrow-animation {
	0% {
		opacity: 0.6;
		transform: translateY(-20px);
	}

	50% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0.6;
		transform: translateY(-20px);
	}
}

.swiper-hero-branding .swiper-button-next,
.swiper-hero-branding .swiper-button-prev {
	position: absolute;
	top: 50%;
	bottom: auto;
	border-radius: 4px;
	border: 1px solid var(--secondary);
	background-color: transparent;
	color: var(--gray);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.2px;
	line-height: 40px;
	width: 40px;
	height: 40px;
	z-index: 10;
	cursor: pointer;
	background-image: none;
	transition: all 200ms linear;
}

.swiper-hero-branding .swiper-button-next:hover,
.swiper-hero-branding .swiper-button-prev:hover {
	border-color: var(--primary);
	background-color: transparent;
	box-shadow: none;
	color: var(--white);
	background-color: var(--primary);
}

.swiper-hero-branding .swiper-button-prev {
	right: 30px;
	left: auto;
	margin-top: 5px;
}

.swiper-hero-branding .swiper-button-next {
	right: 30px;
	left: auto;
	margin-top: -45px;
}

.swiper-hero-branding .swiper-button-next:active,
.swiper-hero-branding .swiper-button-prev:active,
.swiper-hero-branding .swiper-button-next:focus,
.swiper-hero-branding .swiper-button-prev:focus {
	border: 1px solid var(--secondary);
	outline: none;
	box-shadow: none;
}

.swiper-hero-branding .swiper-button-next:active:hover,
.swiper-hero-branding .swiper-button-prev:active:hover,
.swiper-hero-branding .swiper-button-next:focus:hover,
.swiper-hero-branding .swiper-button-prev:focus:hover {
	border-color: var(--primary);
}

.swiper-hero-branding .swiper-pagination {
	bottom: auto;
	top: 50%;
	margin-top: -15px;
	width: 120px;
	color: var(--white);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 30px;
	height: 30px;
	font-weight: 100;
	font-style: italic;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
}

.swiper-hero-branding .swiper-pagination-current,
.swiper-hero-branding .swiper-pagination-total {
	font-size: 20px;
	margin: 0 8px;
	font-weight: 300;
}

.hero-center-creative-v2-section {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -50%;
	width: 200%;
	z-index: 1;
}

.display-4 {
	font-family: 'Muli', sans-serif;
	font-size: 40vw;
	line-height: 0.75;
	font-weight: 900;
	letter-spacing: 0;
}

.display-5 {
	font-family: 'Muli', sans-serif;
	font-size: 10vw;
	line-height: 0.85;
	font-weight: 900;
	letter-spacing: 0;
}

.swiper-container-horizontal.swiper-hero-creative-v2>.swiper-pagination-bullets {
	position: absolute;
	bottom: 150px;
	top: auto;
	left: 0;
	width: 100%;
	z-index: 200;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.display-6 {
	font-family: 'Muli', sans-serif;
	font-size: 70px;
	line-height: 1.1;
	font-weight: 900;
}

.swiper-hero-creative-v3 .swiper-pagination {
	bottom: 5px;
	top: auto;
	width: 200%;
	left: -50%;
	color: var(--black);
	font-family: 'Roboto', sans-serif;
	font-size: 100px;
	line-height: 0.5;
	font-weight: 300;
	font-style: italic;
	z-index: 0;
	opacity: 0.5;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
	transition: all 250ms linear;
}

.swiper-hero-creative-v3 .swiper-pagination-current,
.swiper-hero-creative-v3 .swiper-pagination-total {
	font-size: 200px;
	transition: all 250ms linear;
}

.swiper-hero-creative-v3 .swiper-button-next,
.swiper-hero-creative-v3 .swiper-button-prev {
	position: absolute;
	top: 50%;
	bottom: auto;
	border-radius: 50%;
	border: none;
	background-color: transparent;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, .3);
	z-index: 10;
	cursor: pointer;
	background-image: none;
	margin-top: -25px;
	transition: all 200ms linear;
}

.swiper-hero-creative-v3 .swiper-button-next img,
.swiper-hero-creative-v3 .swiper-button-prev img {
	height: 9px;
	width: auto;
	display: block;
}

.swiper-hero-creative-v3 .swiper-button-next:hover,
.swiper-hero-creative-v3 .swiper-button-prev:hover {
	box-shadow: none;
	opacity: 1;
}

.swiper-hero-creative-v3 .swiper-button-prev {
	right: auto;
	left: 40px;
}

.swiper-hero-creative-v3 .swiper-button-next {
	right: 40px;
	left: auto;
}

.swiper-hero-creative-v3 .swiper-button-prev:hover {
	border: 1px solid rgba(255, 255, 255, .6);
}

.swiper-hero-creative-v3 .swiper-button-next:hover {
	border: 1px solid rgba(255, 255, 255, .6);
}

.swiper-hero-creative-v3 .swiper-button-next:active,
.swiper-hero-creative-v3 .swiper-button-prev:active,
.swiper-hero-creative-v3 .swiper-button-next:focus,
.swiper-hero-creative-v3 .swiper-button-prev:focus {
	border: 1px solid rgba(255, 255, 255, .3);
}

.swiper-hero-creative-v3 .swiper-button-next:active:hover,
.swiper-hero-creative-v3 .swiper-button-prev:active:hover,
.swiper-hero-creative-v3 .swiper-button-next:focus:hover,
.swiper-hero-creative-v3 .swiper-button-prev:focus:hover {
	border: 1px solid rgba(255, 255, 255, .6);
}

.hero-slider-text-creative-v3 {
	position: absolute;
	top: -16px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 100;
}

.link-hero-creative-v3 {
	letter-spacing: 5px;
	color: var(--white);
	font-weight: 900;
	font-size: 26px;
	line-height: 1;
	margin: 0;
	padding: 0;
	position: relative;
	display: inline-block;
	transition: all 350ms linear;
}

.link-hero-creative-v3:hover {
	text-decoration: none;
	color: var(--primary);
}


.hero-center-section-v3 {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	z-index: 1;
}

.hero-center-section-v3 img {
	position: relative;
	height: 50vh;
	width: auto;
	display: block;
	z-index: 2;
}

.hero-center-section-v3 .display-6-wrap-v3,
.hero-center-section-v3 .display-6-wrap-v3-2 {
	position: absolute;
	bottom: -40px;
	left: -100%;
	width: 300%;
	z-index: 1;
	text-align: center;
}

.hero-center-section-v3 .display-6-wrap-v3-2 {
	z-index: 10;
}

.hero-center-section-v3 .display-6-wrap-v3 .display-6 {
	font-size: 10vw;
	line-height: 0.5;
	color: var(--white);
}

.hero-center-section-v3 .display-6-wrap-v3-2 .display-6 {
	font-size: 10vw;
	line-height: 0.5;
	-webkit-text-stroke: 2px var(--white);
	text-stroke: 2px var(--white);
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
}

.swiper-scrollbar {
	border-radius: 0;
	position: relative;
	-ms-touch-action: none;
	background: var(--light);
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 30%;
	right: 30%;
	bottom: 60px;
	z-index: 50;
	height: 1px;
	width: 40%;
}

.swiper-container-horizontal>.swiper-scrollbar.bottom-name {
	bottom: 140px;
}

.swiper-scrollbar-drag {
	height: 19px;
	border-radius: 50%;
	position: relative;
	background: var(--light);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	left: 0;
	top: -10px;
	cursor: pointer;
	transition: all 250ms linear;
}

.swiper-scrollbar-drag:hover {
	box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.1);
}

.swiper-scrollbar-drag:active,
.swiper-scrollbar-drag:focus {
	cursor: grabbing;
	box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.1);
}



.swiper-hero-creative-v4 .swiper-slide {
	position: relative;
	padding: 0;
	margin: 0;
	width: 40%;
}

.section-hero-v4 {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

.section-hero-v4 img {
	width: 60%;
	display: block;
	height: auto;
	box-shadow: 0px 40px 70px -5px rgba(0, 0, 0, 0.5);
}

.section-hero-v4 h2 {
	font-size: 2.3vw;
	font-weight: 900;
}

.swiper-hero-creative-v4 .swiper-scrollbar {
	background: var(--black);
	left: 50%;
	right: auto;
	bottom: 50px;
	height: 5px;
	width: 200px;
	margin-left: -100px;
	border-radius: 3px;
}

.swiper-hero-creative-v4 .swiper-scrollbar-drag {
	height: 5px;
	border-radius: 3px;
	background: var(--primary);
	top: 0;
}

.swiper-hero-creative-v4 .swiper-scrollbar-drag:hover {
	box-shadow: 0 0 0 15px rgba(11, 11, 11, 0);
}

.swiper-hero-creative-v4 .swiper-scrollbar-drag:active,
.swiper-hero-creative-v4 .swiper-scrollbar-drag:focus {
	box-shadow: 0 0 0 15px rgba(11, 11, 11, 0);
}

.swiper-hero-creative-v4 .swiper-pagination {
	bottom: 37px;
	top: auto;
	width: 70px;
	left: 180px;
	color: var(--white);
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	line-height: 1;
	font-weight: 300;
	font-style: italic;
	z-index: 0;
	opacity: 0.5;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
	transition: all 250ms linear;
}

.swiper-hero-creative-v4 .swiper-pagination-current,
.swiper-hero-creative-v4 .swiper-pagination-total {
	font-size: 24px;
	transition: all 250ms linear;
}

.swiper-hero-creative-v4 .swiper-pagination-current {
	padding-right: 10px;
}

.swiper-hero-creative-v4 .swiper-pagination-total {
	padding-left: 10px;
}

.swiper-hero-creative-v4 .swiper-button-next,
.swiper-hero-creative-v4 .swiper-button-prev {
	position: absolute;
	top: auto;
	bottom: 30px;
	border-radius: 4px;
	border: none;
	background-color: transparent;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .3);
	z-index: 10;
	cursor: pointer;
	background-image: none;
	margin-top: -25px;
	transition: all 200ms linear;
}

.swiper-hero-creative-v4 .swiper-button-next img,
.swiper-hero-creative-v4 .swiper-button-prev img {
	height: 10px;
	width: auto;
	display: block;
}

.swiper-hero-creative-v4 .swiper-button-next:hover,
.swiper-hero-creative-v4 .swiper-button-prev:hover {
	box-shadow: none;
	opacity: 1;
}

.swiper-hero-creative-v4 .swiper-button-prev {
	right: auto;
	left: 60px;
}

.swiper-hero-creative-v4 .swiper-button-next {
	right: auto;
	left: 110px;
}

.swiper-hero-creative-v4 .swiper-button-prev:hover {
	border: 1px solid rgba(255, 255, 255, .6);
}

.swiper-hero-creative-v4 .swiper-button-next:hover {
	border: 1px solid rgba(255, 255, 255, .6);
}

.swiper-hero-creative-v4 .swiper-button-next:active,
.swiper-hero-creative-v4 .swiper-button-prev:active,
.swiper-hero-creative-v4 .swiper-button-next:focus,
.swiper-hero-creative-v4 .swiper-button-prev:focus {
	border: 1px solid rgba(255, 255, 255, .3);
}

.swiper-hero-creative-v4 .swiper-button-next:active:hover,
.swiper-hero-creative-v4 .swiper-button-prev:active:hover,
.swiper-hero-creative-v4 .swiper-button-next:focus:hover,
.swiper-hero-creative-v4 .swiper-button-prev:focus:hover {
	border: 1px solid rgba(255, 255, 255, .6);
}

.hero-bottom-section-v4 {
	position: fixed;
	left: 50px;
	bottom: 100px;
	line-height: 1;
	z-index: 1;
	width: 100%;
}

.display-7 {
	font-size: 12vw;
	line-height: 0.9;
	opacity: 0.1;
}


.swiper-hero-corporate-v1 .swiper-button-next,
.swiper-hero-corporate-v1 .swiper-button-prev {
	position: absolute;
	top: 50%;
	bottom: auto;
	border-radius: 50%;
	border: none;
	background-color: transparent;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, .3);
	z-index: 10;
	cursor: pointer;
	background-image: none;
	margin-top: -25px;
	transition: all 200ms linear;
}

.swiper-hero-corporate-v1 .swiper-button-next img,
.swiper-hero-corporate-v1 .swiper-button-prev img {
	height: 9px;
	width: auto;
	display: block;
}

.swiper-hero-corporate-v1 .swiper-button-next:hover,
.swiper-hero-corporate-v1 .swiper-button-prev:hover {
	box-shadow: none;
	opacity: 1;
}

.swiper-hero-corporate-v1 .swiper-button-prev {
	right: auto;
	left: 40px;
}

.swiper-hero-corporate-v1 .swiper-button-next {
	right: 40px;
	left: auto;
}

.swiper-hero-corporate-v1 .swiper-button-prev:hover {
	border: 1px solid rgba(255, 255, 255, .6);
}

.swiper-hero-corporate-v1 .swiper-button-next:hover {
	border: 1px solid rgba(255, 255, 255, .6);
}

.swiper-hero-corporate-v1 .swiper-button-next:active,
.swiper-hero-corporate-v1 .swiper-button-prev:active,
.swiper-hero-corporate-v1 .swiper-button-next:focus,
.swiper-hero-corporate-v1 .swiper-button-prev:focus {
	border: 1px solid rgba(255, 255, 255, .3);
}

.swiper-hero-corporate-v1 .swiper-button-next:active:hover,
.swiper-hero-corporate-v1 .swiper-button-prev:active:hover,
.swiper-hero-corporate-v1 .swiper-button-next:focus:hover,
.swiper-hero-corporate-v1 .swiper-button-prev:focus:hover {
	border: 1px solid rgba(255, 255, 255, .6);
}

.swiper-hero-corporate-v1 .swiper-pagination {
	bottom: 50px;
	top: auto;
	width: 100%;
	left: 0;
	color: var(--white);
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	line-height: 1;
	font-weight: 300;
	font-style: italic;
	z-index: 5;
	opacity: 1;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
	transition: all 250ms linear;
}

.swiper-hero-corporate-v1 .swiper-pagination-current,
.swiper-hero-corporate-v1 .swiper-pagination-total {
	font-size: 24px;
	transition: all 250ms linear;
}

.swiper-hero-corporate-v1 .swiper-pagination-current {
	padding-right: 10px;
}

.swiper-hero-corporate-v1 .swiper-pagination-total {
	padding-left: 10px;
}

.swiper-hero-corporate-v2 .swiper-pagination {
	bottom: 120px;
}

.hero-corporate-v3-bottom {
	position: absolute;
	bottom: -1px;
	left: -1px;
	width: calc(100% + 2px);
	height: 100%;
	z-index: 1;
}

.hero-corporate-v3-top {
	position: absolute;
	top: -1px;
	left: -1px;
	width: calc(100% + 2px);
	height: 100%;
	z-index: 1;
}

.swiper-hero-portfolio-v3 img {
	height: 100%;
	width: auto;
	display: block;
}

.swiper-hero-portfolio-v3 .swiper-slide {
	width: auto;
}

.swiper-hero-portfolio-v3-wrap {
	transition: all 250ms linear;
}

.swiper-hero-portfolio-v3-wrap:hover {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.swiper-hero-portfolio-v3-wrap h2 {
	position: absolute;
	display: block;
	width: 100%;
	text-align: center;
	top: 50%;
	left: 0;
	opacity: 0;
	z-index: 5;
	margin-top: -50px;
	transition: all 250ms linear;
}

.swiper-hero-portfolio-v3-wrap:hover h2 {
	opacity: 1;
}

.portfolio-mask-black {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0);
	transition: all 250ms linear;
}

.swiper-hero-portfolio-v3-wrap:hover .portfolio-mask-black {
	background-color: rgba(0, 0, 0, 0.6);
}

.swiper-hero-portfolio-v3 .swiper-scrollbar {
	background: var(--dark);
	left: 50%;
	transform: translateX(-50%);
	right: auto;
	bottom: 50px;
	height: 6px;
	width: 300px;
	border-radius: 4px;
}

.swiper-hero-portfolio-v3 .swiper-scrollbar-drag {
	height: 6px;
	border-radius: 4px;
	background: var(--primary);
	top: 0;
}

.swiper-hero-portfolio-v3 .swiper-scrollbar-drag:hover {
	box-shadow: 0 0 0 15px rgba(11, 11, 11, 0);
}

.swiper-hero-portfolio-v3 .swiper-scrollbar-drag:active,
.swiper-hero-portfolio-v3 .swiper-scrollbar-drag:focus {
	box-shadow: 0 0 0 15px rgba(11, 11, 11, 0);
}


.swiper-hero-shop-v1 .swiper-button-next,
.swiper-hero-shop-v1 .swiper-button-prev {
	position: absolute;
	top: 50%;
	bottom: auto;
	border-radius: 4px;
	border: none;
	background-color: var(--dark-blue);
	width: 40px;
	height: 40px;
	border: none;
	z-index: 10;
	cursor: pointer;
	background-image: none;
	margin-top: 0;
	right: 30px;
	left: auto;
	transition: all 200ms linear;
}

.swiper-hero-shop-v1 .swiper-button-next img,
.swiper-hero-shop-v1 .swiper-button-prev img {
	height: 9px;
	width: auto;
	display: block;
}

.swiper-hero-shop-v1 .swiper-button-next:hover,
.swiper-hero-shop-v1 .swiper-button-prev:hover {
	box-shadow: none;
	opacity: 1;
}

.swiper-hero-shop-v1 .swiper-button-prev {
	margin-top: -45px;
	transform: rotate(90deg);
}

.swiper-hero-shop-v1 .swiper-button-next {
	margin-top: 5px;
	transform: rotate(90deg);
}

.swiper-hero-shop-v1 .swiper-button-prev:hover {
	border: none;
	background-color: var(--primary);
}

.swiper-hero-shop-v1 .swiper-button-next:hover {
	border: none;
	background-color: var(--primary);
}

.swiper-hero-shop-v1 .swiper-button-next:active,
.swiper-hero-shop-v1 .swiper-button-prev:active,
.swiper-hero-shop-v1 .swiper-button-next:focus,
.swiper-hero-shop-v1 .swiper-button-prev:focus {
	border: none;
}

.swiper-hero-shop-v1 .swiper-button-next:active:hover,
.swiper-hero-shop-v1 .swiper-button-prev:active:hover,
.swiper-hero-shop-v1 .swiper-button-next:focus:hover,
.swiper-hero-shop-v1 .swiper-button-prev:focus:hover {
	border: none;
}


.swiper-hero-shop-v2 .swiper-button-next,
.swiper-hero-shop-v2 .swiper-button-prev {
	position: absolute;
	top: 50%;
	bottom: auto;
	border-radius: 50%;
	border: none;
	background-color: transparent;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(0, 0, 0, .6);
	z-index: 10;
	cursor: pointer;
	background-image: none;
	margin-top: -25px;
	transition: all 200ms linear;
}

.swiper-hero-shop-v2 .swiper-button-next img,
.swiper-hero-shop-v2 .swiper-button-prev img {
	height: 9px;
	width: auto;
	display: block;
}

.swiper-hero-shop-v2 .swiper-button-next:hover,
.swiper-hero-shop-v2 .swiper-button-prev:hover {
	box-shadow: none;
	opacity: 1;
}

.swiper-hero-shop-v2 .swiper-button-prev {
	right: auto;
	left: 40px;
}

.swiper-hero-shop-v2 .swiper-button-next {
	right: 40px;
	left: auto;
}

.swiper-hero-shop-v2 .swiper-button-prev:hover {
	border: 1px solid rgba(0, 0, 0, .9);
}

.swiper-hero-shop-v2 .swiper-button-next:hover {
	border: 1px solid rgba(0, 0, 0, .9);
}

.swiper-hero-shop-v2 .swiper-button-next:active,
.swiper-hero-shop-v2 .swiper-button-prev:active,
.swiper-hero-shop-v2 .swiper-button-next:focus,
.swiper-hero-shop-v2 .swiper-button-prev:focus {
	border: 1px solid rgba(0, 0, 0, .6);
}

.swiper-hero-shop-v2 .swiper-button-next:active:hover,
.swiper-hero-shop-v2 .swiper-button-prev:active:hover,
.swiper-hero-shop-v2 .swiper-button-next:focus:hover,
.swiper-hero-shop-v2 .swiper-button-prev:focus:hover {
	border: 1px solid rgba(0, 0, 0, .9);
}

.swiper-hero-shop-v2 .swiper-pagination {
	bottom: 50px;
	top: auto;
	width: 100%;
	left: 0;
	color: var(--black);
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	line-height: 1;
	font-weight: 300;
	font-style: italic;
	z-index: 5;
	opacity: 1;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
	transition: all 250ms linear;
}

.swiper-hero-shop-v2 .swiper-pagination-current,
.swiper-hero-shop-v2 .swiper-pagination-total {
	font-size: 24px;
	transition: all 250ms linear;
}

.swiper-hero-shop-v2 .swiper-pagination-current {
	padding-right: 10px;
}

.swiper-hero-shop-v2 .swiper-pagination-total {
	padding-left: 10px;
}

/* #Services sections
================================================== */

.services-wrap-1 img {
	width: 60px;
	height: auto;
	display: block;
}

.services-wrap-2 img {
	width: 50px;
	height: auto;
	display: block;
}

.service-back-text {
	position: absolute;
	display: block;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
	font-weight: 100;
	font-size: 80px;
	line-height: 80px;
}

.services-shadow-primary {
	box-shadow: 0 8px 30px 0 rgba(89, 253, 223, .2);
	border-top: 2px solid var(--primary);
}

.services-shadow-yellow {
	box-shadow: 0 8px 30px 0 rgba(241, 196, 15, .2);
	border-top: 2px solid var(--yellow);
}

.services-shadow-purple {
	box-shadow: 0 8px 30px 0 rgba(142, 68, 173, .15);
	border-top: 2px solid var(--purple);
}

.services-shadow-blue {
	box-shadow: 0 8px 30px 0 rgba(89, 139, 253, .17);
	border-top: 2px solid var(--blue);
}

.services-shadow-red {
	box-shadow: 0 8px 30px 0 rgba(231, 76, 60, .15);
	border-top: 2px solid var(--red);
}

.services-shadow-orange {
	box-shadow: 0 8px 30px 0 rgba(243, 156, 18, .2);
	border-top: 2px solid var(--orange);
}

.section-box-icon {
	position: relative;
	display: block;
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	text-align: center;
}

.services-wrap-3 {
	overflow: hidden;
	background-color: var(--white);
	transition: all 250ms linear;
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.5);
}

.services-wrap-3:hover {
	background-color: var(--primary);
	transform: translateY(-3px);
}

.services-wrap-3.ver-blog-pages {
	box-shadow: none;
	height: 234px;
}

.services-wrap-3.ver-blog-pages:hover {
	transform: translateY(0);
}

.services-wrap-3.ver-blog-pages-2 {
	box-shadow: none;
	height: 468px;
}

.services-wrap-3.ver-blog-pages-2:hover {
	transform: translateY(0);
}

.services-wrap-3.light-version {
	background-color: var(--light);
	box-shadow: none;
}

.services-wrap-3.light-version:hover {
	background-color: var(--primary);
	transform: translateY(-3px);
}

.services-wrap-3 .uil {
	color: var(--primary);
	transition: all 250ms linear;
}

.services-wrap-3:hover .uil {
	color: var(--white);
}

.services-wrap-3 h5,
.services-wrap-3 h6,
.services-wrap-3 p {
	transition: all 250ms linear;
}

.services-wrap-3:hover h5,
.services-wrap-3:hover h6,
.services-wrap-3:hover p {
	color: var(--white);
}

.services-wrap-3.bg-yellow h5,
.services-wrap-3.bg-yellow h6,
.services-wrap-3.bg-yellow p,
.services-wrap-3.bg-yellow .uil {
	color: var(--white);
}

.services-wrap-3.bg-yellow:hover h5,
.services-wrap-3.bg-yellow:hover h6,
.services-wrap-3.bg-yellow:hover p,
.services-wrap-3.bg-yellow:hover .uil {
	color: var(--white);
}

.services-wrap-3.bg-yellow:hover {
	background-color: var(--primary);
}

.services-wrap-3.bg-purple h5,
.services-wrap-3.bg-purple h6,
.services-wrap-3.bg-purple p,
.services-wrap-3.bg-purple .uil {
	color: var(--white);
}

.services-wrap-3.bg-purple:hover h5,
.services-wrap-3.bg-purple:hover h6,
.services-wrap-3.bg-purple:hover p,
.services-wrap-3.bg-purple:hover .uil {
	color: var(--white);
}

.services-wrap-3.bg-purple:hover {
	background-color: var(--primary);
}

.services-wrap-3.bg-red h5,
.services-wrap-3.bg-red h6,
.services-wrap-3.bg-red p,
.services-wrap-3.bg-red .uil {
	color: var(--white);
}

.services-wrap-3.bg-red:hover h5,
.services-wrap-3.bg-red:hover h6,
.services-wrap-3.bg-red:hover p,
.services-wrap-3.bg-red:hover .uil {
	color: var(--white);
}

.services-wrap-3.bg-red:hover {
	background-color: var(--primary);
}

.services-wrap-3.bg-blue h5,
.services-wrap-3.bg-blue h6,
.services-wrap-3.bg-blue p,
.services-wrap-3.bg-blue .uil {
	color: var(--white);
}

.services-wrap-3.bg-blue:hover h5,
.services-wrap-3.bg-blue:hover h6,
.services-wrap-3.bg-blue:hover p,
.services-wrap-3.bg-blue:hover .uil {
	color: var(--white);
}

.services-wrap-3.bg-blue:hover {
	background-color: var(--primary);
}

.services-wrap-3.bg-primary h5,
.services-wrap-3.bg-primary h6,
.services-wrap-3.bg-primary p,
.services-wrap-3.bg-primary .uil {
	color: var(--white);
}

.services-wrap-3.bg-primary:hover h5,
.services-wrap-3.bg-primary:hover h6,
.services-wrap-3.bg-primary:hover p,
.services-wrap-3.bg-primary:hover .uil {
	color: var(--white);
}

.services-wrap-3.bg-orange h5,
.services-wrap-3.bg-orange h6,
.services-wrap-3.bg-orange p,
.services-wrap-3.bg-orange .uil {
	color: var(--white);
}

.services-wrap-3.bg-orange:hover h5,
.services-wrap-3.bg-orange:hover h6,
.services-wrap-3.bg-orange:hover p,
.services-wrap-3.bg-orange:hover .uil {
	color: var(--white);
}

.services-wrap-3.bg-orange:hover {
	background-color: var(--primary);
}

.services-wrap-3.process {
	overflow: initial;
}

.services-wrap-3.process::before {
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -2px;
	height: 0;
	right: -70px;
	z-index: 2;
	border-top: 3px dashed var(--gray);
	width: 50px;
	transition: all 250ms linear;
}

.services-wrap-3.process-2 {
	overflow: initial;
}

.services-wrap-3.process-2::before {
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -2px;
	height: 0;
	right: -100px;
	z-index: 2;
	border-top: 3px dashed var(--gray);
	width: 80px;
	transition: all 250ms linear;
}

.services-wrap-3.process-2.light-border::before,
.services-wrap-3.process.light-border::before {
	border-color: var(--gray-light);
}

.services-wrap-3.process:hover::before,
.services-wrap-3.process-2:hover::before {
	transform: translateY(3px);
}

.services-wrap-3 .service-back-text {
	transition: all 250ms linear;
}

.services-wrap-3:hover .service-back-text {
	color: var(--white);
}


.btn-play-video {
	border-radius: 50%;
	width: 100px;
	height: 100px;
	background-color: var(--light-2);
	color: var(--dark-blue);
}

.btn-play-video:hover {
	background-color: var(--primary);
	color: var(--light-2);
}

.btn-play-video.animated {
	position: relative;
	width: 70px;
	height: 70px;
}

.btn-play-video.animated::before {
	position: absolute;
	content: '';
	animation: border-transform 10s linear infinite alternate forwards;
	background-color: var(--white);
	width: 100px;
	height: 100px;
	top: -15px;
	left: -15px;
	opacity: 0.2;
}

.btn-play-video-dark {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	background-color: var(--dark-blue);
	color: var(--light-2);
}

.btn-play-video-dark:hover {
	background-color: var(--primary);
	color: var(--light-2);
}


.swiper-process-1-thumbs .services-wrap-3 {
	cursor: pointer;
}

.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 h5,
.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 h6,
.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 p,
.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 .uil {
	color: var(--white);
}

.swiper-process-1-thumbs .swiper-slide-thumb-active .services-wrap-3 {
	background-color: var(--primary);
}

.facts-hover-section {
	transition: all 250ms linear;
}

.facts-hover-section:hover {
	background-color: var(--primary);
	transform: translateY(-3px);
}

.facts-hover-section h5,
.facts-hover-section p {
	transition: all 250ms linear;
}

.facts-hover-section:hover h5,
.facts-hover-section:hover p {
	color: var(--white);
}



/* #About us sections
================================================== */

.sign-wrap img {
	width: 110px;
	height: auto;
	display: block;
}

.big-shadow-block {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.5);
}


/* #Team sections
================================================== */

.team-wrap-1 {
	box-shadow: 0 6px 28px rgba(23, 23, 23, 0.15);
}

.team-wrap-2 {
	border-radius: 4px;
	overflow: hidden;
}

.radius-img-anime-1 {
	animation: border-transform 17s linear infinite alternate forwards;
}

.radius-img-anime-2 {
	animation: border-transform 15s linear infinite alternate forwards;
}

.radius-img-anime-3 {
	animation: border-transform 16s linear infinite alternate forwards;
}

.radius-img-anime-4 {
	animation: border-transform 14s linear infinite alternate forwards;
}

/* #Logos sections
================================================== */

.logos-wrap-1 {
	height: 66px;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
}

.logos-wrap-1 img {
	width: 180px;
	height: auto;
	display: block;
	text-align: center;
	margin: 0 auto;
}

.logos-wrap-1.smaller-img img {
	width: 150px;
	height: auto;
	display: block;
	text-align: center;
	margin: 0 auto;
}

.logos-wrap-2 {
	height: 140px;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
}

.logos-wrap-2 img {
	width: 140px;
	height: auto;
	display: block;
	text-align: center;
	margin: 0 auto;
}

/* #Portfolio sections
================================================== */

.portfolio-wrap-1 {
	position: relative;
	display: block;
	border-radius: 4px;
	width: 100%;
	overflow: hidden;
	transition: all 250ms linear;
}

.portfolio-wrap-1:hover {
	box-shadow: 0 6px 28px rgba(23, 23, 23, 0.15);
}

.portfolio-wrap-1.no-shadow:hover {
	box-shadow: none;
}

.portfolio-wrap-1 h6 {
	transition: all 250ms linear;
}

.portfolio-wrap-1:hover h6 {
	padding-left: 10px;
}

.portfolio-wrap-1 h6 {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
}

.portfolio-wrap-1 h6::before {
	position: absolute;
	display: block;
	content: '';
	bottom: 0;
	left: 0;
	z-index: 2;
	height: 2px;
	width: 0;
	background-color: var(--primary);
	transition: all 250ms linear;
}

.portfolio-wrap-1:hover h6::before {
	width: 70px;
	left: 10px;
}

.portfolio-wrap-1 p {
	position: absolute;
	display: block;
	width: calc(100% - 60px);
	bottom: 25px;
	left: 30px;
	letter-spacing: 1px;
	z-index: 4;
	transition: all 250ms linear;
}

.portfolio-wrap-1 .lead {
	font-size: 17px;
}

.port-wrap-text {
	position: absolute;
	display: block;
	width: calc(100% - 60px);
	top: 25px;
	left: -10px;
	letter-spacing: 1px;
	z-index: 4;
	opacity: 0;
	font-size: 17px;
	line-height: 26px;
	font-weight: 500;
	transition: all 250ms linear;
}

.portfolio-wrap-1:hover .port-wrap-text {
	opacity: 1;
	left: 30px;
}

.wrap-mask {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 2;
	background-color: var(--dark-blue);
	transition: all 250ms linear;
}

.wrap-mask-black {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 2;
	background-color: var(--black);
	transition: all 250ms linear;
}

.portfolio-wrap-1:hover .wrap-mask {
	opacity: .8;
}

.port-v-line {
	border-right: 2px solid var(--gray-light);
}

.portfolio-wrap-2 {
	position: relative;
	display: block;
	border-radius: 4px;
	width: 100%;
	margin-bottom: 50px;
	transition: all 250ms linear;
}

.portfolio-wrap-2:hover {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
	transform: translateY(-5px);
}

.portfolio-wrap-2.no-shadow {
	box-shadow: none;
}

.portfolio-wrap-2.no-shadow .portfolio-wrap-2-text {
	box-shadow: none;
}

.portfolio-wrap-2:hover .wrap-mask {
	opacity: .4;
}

.portfolio-wrap-2:hover .wrap-mask-black {
	opacity: .7;
}

.portfolio-wrap-2-text {
	position: absolute;
	display: block;
	border-radius: 4px;
	overflow: hidden;
	padding: 15px 0;
	z-index: 30;
	bottom: -50px;
	left: 15px;
	width: calc(100% - 30px);
	background-color: var(--white);
	box-shadow: 0 13px 50px rgba(0, 0, 0, .1);
	transition: all 250ms linear;
}

.portfolio-wrap-2:hover .portfolio-wrap-2-text {
	bottom: -40px;
}

.portfolio-wrap-2.ver-2 {
	margin-bottom: 0;
	transition: all 250ms linear;
}

.portfolio-wrap-2.ver-2 .section {
	transition: all 250ms linear;
}

.portfolio-wrap-2.ver-2:hover .section {
	transform: scale(1.04);
}

.portfolio-wrap-2.ver-2 .portfolio-wrap-2-text {
	bottom: auto;
	transition: all 250ms linear;
	background-color: transparent;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	box-shadow: none;
	opacity: 0;
}

.portfolio-wrap-2.ver-2:hover .portfolio-wrap-2-text {
	opacity: 1;
	transform: translate3d(0, -50%, 40px);
}

.filter-wrapper-mix {
	position: relative;
	margin: 0 auto;
	max-width: 100%;
	width: 1430px;
	display: block;
}

@media (min-width: 1200px) {
	.filter-wrapper-mix.bigger-gap {
		width: 1460px;
	}

	.mix.bigger-gap {
		padding: 0 30px;
	}
}

.filter-wrapper-mix.fullwidth {
	width: calc(100% - 30px);
}

.filter-wrapper-mix.fullwidth-wide {
	width: 100%;
}

.filter-wrapper-mix:after {
	content: '';
	display: block;
	clear: both;
}

.mix {
	position: relative;
	float: left;
	display: inline-block;
	box-sizing: border-box;
	overflow: hidden;
	width: calc(33.3333333333% - 0.5px);
	padding: 0 15px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.mix.mix-2-col {
	width: calc(50% - 0.5px);
}

.mix.mix-4-col {
	width: calc(25% - 0.5px);
}

.mix.mix-5-col {
	width: calc(20% - 0.5px);
}

.mix.mix-6-col {
	width: calc(16.666666666666% - 0.5px);
}



.filter-wrapper-mix.portfolio-1400 {
	max-width: 100%;
	width: 1430px;
}

.filter-wrapper-mix.portfolio-1400.with-gutter {
	max-width: 100%;
	width: 1400px;
}

.filter-wrapper-mix.portfolio-1400.with-gutter.mixed-fix {
	max-width: 100%;
	width: 1404px;
	-webkit-transform: translateX(2px);
	transform: translateX(2px);
}

.portfolio-wrap-columns {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	transition: all 250ms linear;
}

.portfolio-wrap-columns .wrap-mask-black {
	background-color: var(--dark-blue);
}

.portfolio-wrap-columns:hover .wrap-mask-black {
	opacity: .7;
}

.mix.poftfolio-showcase {
	width: calc(33.3333333333%);
	padding: 0;
	margin: 0;
	-webkit-transform: translateX(1px);
	transform: translateX(1px);
	margin-left: -1px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.mix.showcase-2-col {
	width: 50%;
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
	margin-left: -3px;
}

.mix.showcase-4-col {
	width: 25%;
}

.portfolio-wrap-center-section {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	z-index: 20;
	opacity: 0;
	margin-top: 50px;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.portfolio-wrap-columns:hover .portfolio-wrap-center-section {
	opacity: 1;
	margin-top: 0;
}

.btn-portfolio-icon {
	color: var(--white);
	background-color: var(--black);
	padding: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-shadow: 0 22px 50px -3px rgba(0, 0, 0, .2);
}

.btn-portfolio-icon:hover {
	color: var(--white);
	background-color: var(--primary);
}

.swiper-portfolio-slider-in .swiper-pagination {
	position: absolute;
	bottom: auto;
	top: 20px;
	left: 20px;
	text-align: left;
}

.swiper-portfolio-slider-in .swiper-pagination span {
	border-radius: 10px;
}

.swiper-portfolio-slider-in .swiper-pagination-bullet {
	width: 8px;
	background-color: var(--light);
}

.swiper-portfolio-slider-in .swiper-pagination-bullet:hover {
	background-color: var(--primary);
}

.swiper-portfolio-slider-in .swiper-pagination-bullet-active:hover,
.swiper-portfolio-slider-in .swiper-pagination-bullet-active {
	width: 30px;
	background-color: var(--primary);
}


.btn-filter {
	background-color: transparent;
	border: none;
}

.btn-filter.active::after {
	max-height: 100%;
}

.btn-filter.light {
	color: var(--light);
}

.btn-filter.light.active::after {
	max-height: 100%;
	color: var(--primary);
}

.btn-filter.light.link::after {
	background: var(--primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.isotope-item {
	z-index: 2;
}

.isotope-hidden.isotope-item {
	pointer-events: none;
	z-index: 1;
}

.isotope,
.isotope .isotope-item {
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

.isotope {
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	transition-property: height, width;
}

.isotope .isotope-item {
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-ms-transition-property: -ms-transform, opacity;
	-o-transition-property: top, left, opacity;
	transition-property: transform, opacity;
}

.typed i {
	color: var(--gray-light);
}

.typed-cursor {
	color: var(--gray-light);
	-webkit-animation: 0.7s blink step-end infinite;
	-moz-animation: 0.7s blink step-end infinite;
	-ms-animation: 0.7s blink step-end infinite;
	-o-animation: 0.7s blink step-end infinite;
	animation: 0.7s blink step-end infinite;
}

@keyframes "blink" {

	from,
	to {
		color: transparent;
	}

	50% {
		color: var(--gray-light);
	}
}

@-webkit-keyframes "blink" {

	from,
	to {
		color: transparent;
	}

	50% {
		color: var(--gray-light);
	}
}


/* #Portfolio Slice Reveal
================================================== */

.scroll-img {
	width: 800px;
	max-width: 100%;
	min-width: 200px;
	height: 40vh;
	min-height: 250px;
	background-size: cover;
	overflow: hidden;
}

.uncover__img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
}

.uncover__slices {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
}

.uncover__slices--vertical {
	flex-direction: row;
}

.uncover__slices--horizontal {
	flex-direction: column;
}

.uncover__slices--horizontal-double {
	display: grid;
	grid-template-columns: 50% 50%;
}

.uncover__slices--vertical-double {
	display: grid;
	grid-template-rows: 50% 50%;
}

.uncover__slice {
	color: var(--white);
	background-color: var(--white);
	flex: 1;
}

.hover-portfolio-box .scroll-img:after {
	position: absolute;
	background-color: var(--dark-blue);
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	opacity: 0;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.hover-portfolio-box:hover .scroll-img:after {
	opacity: 0.7;
}

.hover-portfolio-box p {
	position: absolute;
	bottom: 25px;
	left: 25px;
	color: var(--light-2);
	font-size: 16px;
	line-height: 16px;
	font-style: italic;
	opacity: 0;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
	cursor: pointer;
	letter-spacing: 3px;
	margin: 0;
	padding: 0;
	z-index: 3;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.hover-portfolio-box:hover p {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.hover-portfolio-box h5 {
	position: absolute;
	bottom: 25px;
	right: 25px;
	color: var(--white);
	line-height: 1;
	opacity: 0;
	-webkit-transform: translateY(-20px);
	transform: translateY(-20px);
	cursor: pointer;
	margin: 0;
	padding: 0;
	z-index: 4;
	letter-spacing: 1px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.hover-portfolio-box:hover h5 {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}


.hover-portfolio-box .blog-date-slice {
	position: absolute;
	top: 25px;
	right: 25px;
	line-height: 1;
	opacity: 0;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	cursor: pointer;
	margin: 0;
	padding: 7px 15px;
	border-radius: 4px;
	z-index: 8;
	font-size: 13px;
	line-height: 1.65;
	font-weight: 600;
	letter-spacing: 0.2px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.hover-portfolio-box:hover .blog-date-slice {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* #Full screen portfolio
================================================== */

.portfolio-background-fullscreen {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}



/* #News
================================================== */

.blog-wrap-1 img {
	width: 220px;
	height: auto;
	display: block;
	border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
}

.link-heading {
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	letter-spacing: inherit;
	font-weight: inherit;
}

.link-heading:hover {
	color: var(--primary);
	text-decoration: none;
}

.link-heading-light {
	color: var(--light);
	text-decoration: none;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	letter-spacing: inherit;
	font-weight: inherit;
}

.link-heading-light:hover {
	color: var(--primary);
	text-decoration: none;
}

.link-heading.disabled,
.link-heading-light.disabled {
	opacity: 0.1;
	pointer-events: none;
}

.link-heading.pag,
.link-heading-light.pag {
	opacity: 0.7;
}

.link-heading.pag.disabled,
.link-heading-light.pag.disabled {
	opacity: 0.3;
}

.link-heading.pag.disabled:hover,
.link-heading-light.pag.disabled:hover {
	padding: 0;
}

.link-heading.pag:hover,
.link-heading-light.pag:hover {
	padding: 0 10px;
}

.tag {
	padding: 5px 10px;
	border-radius: 4px;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: 0.2px;
	font-family: 'Muli', sans-serif;
	transition: all 200ms linear;
}

.tag.new {
	background-color: var(--red);
	color: var(--white);
}

.tag.hot {
	background-color: var(--primary);
	color: var(--dark-blue);
}

.tag.popular {
	background-color: var(--purple);
	color: var(--white);
}

.tag.sale {
	background-color: var(--yellow);
	color: var(--dark-blue);
}

.tag.info {
	background-color: var(--blue);
	color: var(--white);
}

.tag:hover {
	background-color: var(--dark-blue);
	color: var(--white);
	text-decoration: none;
}

.blog-wrap-2 {
	border-top: 1px solid rgba(32, 32, 32, .08);
}

.blog-wrap-2 img {
	width: 50px;
	height: auto;
	display: block;
	border-radius: 50%;
}

.blog-wrap-3 {
	overflow: hidden;
}

.blog-wrap-3-mask {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--dark-blue);
	opacity: 0.4;
	z-index: 1;
	transition: all 250ms linear;
}

.blog-wrap-3:hover .blog-wrap-3-mask {
	opacity: 0.8;
}

.blog-wrap-3-text {
	position: absolute;
	display: block;
	left: 0;
	bottom: 30px;
	padding: 0 30px;
	width: 100%;
	z-index: 4;
	transform: translateY(55px);
	transition: all 250ms linear;
}

.blog-wrap-3:hover .blog-wrap-3-text {
	transform: translateY(0);
}

.blog-wrap-3.ver-2-blog-pages .blog-wrap-3-text {
	transform: translateY(0);
	bottom: 20px;
	padding: 0 20px;
}

.blog-wrap-3-link {
	transform: translateY(20px);
	opacity: 0;
}

.blog-wrap-3:hover .blog-wrap-3-link {
	transform: translateY(0);
	opacity: 1;
}

.blog-wrap-3-tag {
	transform: translateY(-25px);
	opacity: 0;
}

.blog-wrap-3:hover .blog-wrap-3-tag {
	transform: translateY(0);
	opacity: 1;
}

.blog-wrap-3-tag:nth-child(2) {
	transition: opacity 0.5s, transform 0.5s, background-color 0.25s, color 0.25s;
}

.blog-wrap-3-tag:nth-child(3) {
	transition: opacity 0.7s, transform 0.7s, background-color 0.25s, color 0.25s;
}

.blog-wrap-3-tag:nth-child(4) {
	transition: opacity 0.9s, transform 0.9s, background-color 0.25s, color 0.25s;
}

.blog-wrap-3-tag:nth-child(5) {
	transition: opacity 1.1s, transform 1.1s, background-color 0.25s, color 0.25s;
}

.blog-wrap-4 {
	transition: all 250ms linear;
	box-shadow: 0px 40px 100px -5px rgba(149, 164, 175, 0.4);
}

.blog-wrap-4:hover {
	transform: translateY(-4px);
}

.blog-wrap-4.no-shadow-version {
	box-shadow: none;
}

@media (min-width: 1700px) {
	.blog-wrap-4.no-shadow-version img {
		width: 350px;
	}
}

.blog-wrap-4 img {
	width: 220px;
	height: auto;
	display: block;
	border-radius: 4px;
	transition: all 250ms linear;
}

.blog-wrap-4 img:hover {
	opacity: 0.7;
}

.blog-wrap-4.full-img img {
	width: 100%;
	margin-bottom: 30px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.blog-wrap-4.small {
	box-shadow: none;
}

.blog-wrap-4.small:hover {
	transform: translateY(0);
}

.blog-wrap-4.small img {
	width: 120px;
}

.blog-section-gradient-top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 55vh;
	background-image: linear-gradient(to top, rgba(20, 20, 20, 0), rgb(20, 20, 20));
	pointer-events: none;
	z-index: 25;
}

.blog-section-gradient-top-light {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 45vh;
	background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255));
	pointer-events: none;
	z-index: 25;
}

.blog-filter-button {
	position: fixed;
	bottom: 50px;
	left: 50px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	background-color: var(--primary);
	color: var(--white);
	z-index: 24;
	cursor: pointer;
	transition: all 250ms linear;
}

.blog-filter-button:hover {
	background-color: var(--dark);
	color: var(--white);
}

.bg-blog-filter {
	background-color: rgba(20, 20, 20, 0.8);
}

.bg-blog-filter-light {
	background-color: rgba(255, 255, 255, 0.9);
}

.blog-mix-wrap {
	display: none;
}

.blog-mix-wrapper {
	-webkit-backface-visibility: hidden;
}

.blog-mix-wrapper:after {
	content: '';
	display: inline-block;
	width: 100%;
}

.btn-filter-tag {
	padding: 0;
	background-color: transparent;
	color: var(--light-2);
	height: auto;
	font-size: 40px;
	font-weight: 800;
}

.btn-filter-tag.light {
	color: var(--dark);
}

.btn-filter-tag:hover {
	padding: 0;
	background-color: transparent;
	color: var(--primary);
	height: auto;
	font-size: 40px;
	font-weight: 800;
}

.btn-filter-tag.active {
	color: var(--primary);
}

.btn-filter-icon {
	position: absolute;
	top: -25px;
	right: -25px;
	z-index: 2;
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 15px;
	border-radius: 50%;
	display: block;
	text-align: center;
	font-weight: 500;
	transition: all 250ms linear;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
}

.btn-filter-tag.active .btn-filter-icon,
.btn-filter-tag:hover .btn-filter-icon {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.blog-mix-wrap-1 {
	display: none;
}

.blog-mix-wrapper-1 {
	-webkit-backface-visibility: hidden;
}

.blog-mix-wrapper-1:after {
	content: '';
	display: inline-block;
	width: 100%;
}

.btn-filter-tag-small {
	padding: 0;
	background-color: transparent;
	color: var(--gray-dark);
	height: auto;
	font-size: 17px;
	font-weight: 800;
}

.btn-filter-tag-small:hover {
	padding: 0;
	background-color: transparent;
	color: var(--primary);
	height: auto;
	font-size: 17px;
	font-weight: 800;
}

.btn-filter-tag-small.active {
	color: var(--primary);
}

.btn-filter-icon-small {
	position: absolute;
	top: -20px;
	right: -15px;
	z-index: 2;
	width: 26px;
	height: 26px;
	line-height: 26px;
	font-size: 13px;
	border-radius: 50%;
	display: block;
	letter-spacing: 0;
	text-align: center;
	font-weight: 500;
	transition: all 250ms linear;
	transform: translateY(5px);
	opacity: 0;
	pointer-events: none;
}

.btn-filter-tag-small.active .btn-filter-icon-small,
.btn-filter-tag-small:hover .btn-filter-icon-small {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}


.btn-filter-icon-small-relative {
	position: relative;
	z-index: 2;
	width: 26px;
	height: 26px;
	line-height: 26px;
	font-size: 13px;
	border-radius: 50%;
	display: block;
	letter-spacing: 0;
	text-align: center;
	font-weight: 500;
	transition: all 250ms linear;
	transform: translateX(-5px);
	opacity: 0;
	pointer-events: none;
}

.btn-filter-tag-small.active .btn-filter-icon-small-relative,
.btn-filter-tag-small:hover .btn-filter-icon-small-relative {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}


.blog-stories-color {
	background: linear-gradient(to left, var(--gray-light), var(--white));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.swiper-home-blog-v2 .swiper-pagination {
	position: absolute;
	bottom: auto;
	top: 30px;
	left: 50px;
	text-align: left;
}

.swiper-home-blog-v2 .swiper-pagination span {
	border-radius: 10px;
}

.swiper-home-blog-v2 .swiper-pagination-bullet {
	width: 8px;
	background-color: var(--light);
}

.swiper-home-blog-v2 .swiper-pagination-bullet:hover {
	background-color: var(--primary);
}

.swiper-home-blog-v2 .swiper-pagination-bullet-active:hover,
.swiper-home-blog-v2 .swiper-pagination-bullet-active {
	width: 30px;
	background-color: var(--primary);
}

.blog-tag-box {
	position: relative;
	display: block;
	transition: all 250ms linear;
	border-radius: 4px;
	background-size: cover;
	background-position: center;
	width: 100%;
	overflow: hidden;
}

.blog-tag-box:hover {
	transform: translateY(-3px);
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.blog-tag-box.no-shadow-ver:hover {
	box-shadow: none;
}

.blog-tag-box-num {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
}

.blog-tag-box-divider {
	position: relative;
	display: block;
	width: 100%;
	border-top: 1px dashed var(--light-2);
}

.blog-date {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 20;
	padding: 7px 15px;
	display: block;
	border-radius: 4px;
}


.blog-grid-1-col-img img {
	display: block;
	width: 60px;
	height: auto;
}

.blog-grid-1-col-img-hover img {
	transition: all 250ms linear;
}

.blog-grid-1-col-img-hover img:hover {
	opacity: 0.85;
}

.comment-aut-img img {
	display: block;
	width: 65px;
	height: auto;
}

.comment-wrapper {
	position: relative;
	width: 100%;
	border-radius: 14px;
	border-top-left-radius: 0;
	display: block;
	background-image: linear-gradient(to top, var(--white), rgba(240, 239, 243, .8));
	padding: 20px;
	box-shadow: 0px 12px 30px -5px rgba(0, 0, 0, 0.1);
}


/* #Shop
================================================== */

.shop-wrap-1 {
	transition: all 250ms linear;
}

.shop-wrap-1:hover {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.shop-wrap-1 img {
	width: 100%;
	height: auto;
	display: block;
}

.shop-mask-dark {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: block;
	background-color: rgba(12, 12, 12, 0);
	transition: all 250ms linear;
}

.shop-wrap-1:hover .shop-mask-dark {
	background-color: rgba(12, 12, 12, 0.6);
}

.shop-mask-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -28px;
	margin-left: -28px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	text-align: center;
	line-height: 56px;
	background-color: var(--dark);
	color: var(--white);
	z-index: 3;
	display: block;
	opacity: 0;
	box-shadow: 0px 10px 40px 0 rgba(0, 0, 0, 0.8);
	transition: all 250ms linear;
}

.shop-wrap-1:hover .shop-mask-circle {
	opacity: 1;
}

.shop-over-text {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 4;
	display: block;
	border-radius: 4px;
	padding: 8px 15px;
	padding-top: 9px;
	box-shadow: 0px 6px 20px 0 rgba(20, 20, 20, 0.07);
	transition: all 250ms linear;
}

.shop-over-text.bottom-left {
	top: auto;
	right: auto;
	bottom: 30px;
	left: 30px;
}

.shop-over-text.bottom-right {
	top: auto;
	bottom: 30px;
}

.shop-wrap-2 {
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.2);
	transition: all 250ms linear;
}

.shop-wrap-2:hover {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.shop-mask-dark-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: block;
	background-color: rgba(12, 12, 12, 0);
	transition: all 250ms linear;
}

.shop-wrap-2:hover .shop-mask-dark-2 {
	background-color: rgba(12, 12, 12, 0.4);
}

.shop-wrap-3 {
	padding-bottom: 70px;
	transition: all 250ms linear;
}

.shop-wrap-3:hover {
	transform: translateY(-5px);
}

.shop-wrap-3 img {
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.2);
	transition: all 250ms linear;
}

.shop-wrap-3:hover img {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.shop-wrap-2-text {
	position: absolute;
	display: block;
	border-radius: 4px;
	padding: 15px 20px;
	padding-top: 20px;
	z-index: 30;
	bottom: 0;
	left: 10px;
	width: calc(100% - 20px);
	background-color: var(--white);
	box-shadow: 0 13px 30px rgba(0, 0, 0, .1);
	transition: all 250ms linear;
}

.shop-wrap-3:hover .shop-wrap-2-text {
	box-shadow: 0 13px 40px rgba(0, 0, 0, .15);
}

.shop-wrap-2-size {
	position: absolute;
	display: block;
	border-radius: 4px;
	overflow: hidden;
	padding: 5px 10px;
	z-index: 30;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--dark-blue);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
	transition: all 250ms linear;
}

.shop-wrap-2-left {
	position: absolute;
	display: block;
	z-index: 30;
	top: 20px;
	left: 20px;
	transition: all 250ms linear;
}

.shop-wrap-2-left-circle {
	position: relative;
	display: block;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}

.shop-wrap-2-right {
	position: absolute;
	display: block;
	z-index: 30;
	top: 20px;
	right: -20px;
	opacity: 0;
	pointer-events: none;
	transform: rotate(-5deg);
	transition: all 250ms linear;
}

.shop-wrap-3:hover .shop-wrap-2-right {
	right: 20px;
	opacity: 1;
	pointer-events: auto;
	transform: rotate(0);
}

.shop-wrap-2-right-circle {
	position: relative;
	display: block;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background-color: var(--dark);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
	transition: all 250ms linear;
}

.shop-wrap-2-right-circle:hover {
	background-color: var(--primary);
	color: var(--white);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.shop-mix-wrap-1 {
	display: none;
}

.shop-mix-wrapper-1 {
	-webkit-backface-visibility: hidden;
}

.shop-mix-wrapper-1:after {
	content: '';
	display: inline-block;
	width: 100%;
}

/* #Product page
================================================== */

.product-thumbs {
	cursor: pointer;
	transition: all 250ms linear;
}

.product-thumbs::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: transparent;
	opacity: 0.3;
	transition: all 250ms linear;
}

.product-thumbs:hover::after {
	background-color: var(--dark-blue);
}

.swiper-product-page-thumbs .swiper-slide-thumb-active .product-thumbs::after {
	background-color: var(--dark-blue);
}



.checkbox-color:checked+label,
.checkbox-color:not(:checked)+label {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
	border: 3px solid transparent;
	cursor: pointer;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.checkbox-color:not(:checked)+label {}

.checkbox-color:checked+label {
	border-color: var(--dark-blue);
}

.checkbox-color:not(:checked)+label:hover {
	border-color: var(--dark-blue);
}

.checkbox-color:checked+label::after,
.checkbox-color:not(:checked)+label::after {
	position: absolute;
	font-family: 'unicons';
	content: '\e8d8';
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: center;
	line-height: 34px;
	font-size: 20px;
	color: var(--white);
	cursor: pointer;
	opacity: 0;
	z-index: 10;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.checkbox-color:checked+label::after {
	opacity: 1;
}

.checkbox-size:checked+label,
.checkbox-size:not(:checked)+label {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
	margin: 0;
	border-radius: 4px;
	text-align: center;
	line-height: 40px;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--dark-blue);
	overflow: hidden;
	cursor: pointer;
	background-color: var(--light-2);
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.checkbox-size:checked+label {
	background-color: var(--dark-blue);
	color: var(--white);
}

.checkbox-size:not(:checked)+label:hover {
	background-color: var(--dark-blue);
	color: var(--white);
}




.checkbox-review:checked+label,
.checkbox-review:not(:checked)+label {
	position: relative;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
	width: 100%;
	height: 50px;
	color: var(--gray-dark);
	background-color: var(--light-2);
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
	border: none;
	cursor: pointer;
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.checkbox-review:checked+label {
	background-color: var(--dark-blue);
	color: var(--white);
}

.checkbox-review:not(:checked)+label:hover {
	background-color: var(--dark-blue);
	color: var(--white);
}

.checkbox-review+label .uil {
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.checkbox-review:checked+label .uil {
	color: var(--yellow);
}

.checkbox-review:not(:checked)+label:hover .uil {
	color: var(--yellow);
}




.quantity.shop-quantity input {
	position: relative;
	width: 150px;
	height: 48px;
	font-weight: 400;
	font-size: 18px;
	line-height: 48px;
	display: block;
	color: var(--white);
	padding: 0;
	margin: 0;
	border: none;
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
	background-color: var(--dark-blue);
	background-image: none;
}

.quantity.shop-quantity.light input {
	color: var(--secondary);
	background-color: var(--white);
}

.quantity.shop-quantity .quantity-nav {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
}

.quantity.shop-quantity .quantity-button {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	width: 48px;
	height: 48px;
	display: inline-block;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	opacity: 1;
	display: block;
}

.quantity.shop-quantity .quantity-button.quantity-up {
	right: 0;
	left: auto;
}

.quantity.shop-quantity .quantity-button.quantity-up::after,
.quantity.shop-quantity .quantity-button.quantity-down::after {
	position: absolute;
	font-family: 'unicons';
	top: 0;
	left: 0;
	width: 100%;
	height: 48px;
	text-align: center;
	line-height: 48px;
	font-size: 15px;
	color: var(--white);
	background-color: var(--dark);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.quantity.shop-quantity.light .quantity-button.quantity-up::after,
.quantity.shop-quantity.light .quantity-button.quantity-down::after {
	color: var(--secondary);
	background-color: var(--light-4);
}

.quantity.shop-quantity .quantity-button.quantity-up::after {
	content: '\eb20';
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.quantity.shop-quantity .quantity-button.quantity-down::after {
	content: '\ead3';
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.quantity.shop-quantity .quantity-button.quantity-up:hover::after,
.quantity.shop-quantity .quantity-button.quantity-down:hover::after {
	background-color: var(--primary);
}

.quantity.shop-quantity.light .quantity-button.quantity-up:hover::after,
.quantity.shop-quantity.light .quantity-button.quantity-down:hover::after {
	background-color: var(--primary);
	color: var(--white);
}

.shop-review-height {
	height: 120px;
}

.border-radius-img-chat {
	border-radius: 50%;
	border-top-right-radius: 0;
}

.shop-cart-img img {
	width: 100px;
	height: auto;
	display: block;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.shop-cart-img img:hover {
	opacity: 0.7;
}




/* #Section backgrounds
================================================== */
.section-shadow-blue {
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.4);
}

.section-shadow-dark-small {
	box-shadow: 0px 15px 45px -5px rgba(0, 0, 0, 0.4);
}

.background-img-top {
	background-position: center top;
}

.background-img-center {
	background-position: center;
}

/* #Section backgrounds over
================================================== */

.background-dark-over {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: var(--black);
	opacity: 0.3;
}

.background-dark-blue-over {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: var(--dark-blue);
	opacity: 0.6;
}

.background-dark-blue-over-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: var(--dark-blue);
	opacity: 0.4;
}

.background-dark-blue-over-darker {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: var(--dark-blue);
	opacity: 0.8;
}

.background-dark-blue-over-darker-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: var(--dark-blue);
	opacity: 0.9;
}

.background-dark-blue-over-lighter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: var(--dark-blue);
	opacity: 0.4;
}

.background-light-over {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: var(--light);
	opacity: 0.3;
}

.background-light-over-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background-image: linear-gradient(to top, rgba(255, 255, 255, 0), var(--white));
}

.background-dark-over-hotel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0), var(--dark-blue));
}

/* #Parallax on mouse move
================================================== */

.section-absolute {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}

.parallax-elements {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: perspective(300px);
	transform: perspective(300px);
}

.parallax-elements:hover .z-tran-10 {
	-webkit-transform: translateZ(10px);
	transform: translateZ(10px);
}

.parallax-elements:hover .z-tran-20 {
	-webkit-transform: translateZ(20px);
	transform: translateZ(20px);
}

.parallax-elements:hover .z-tran-30 {
	-webkit-transform: translateZ(30px);
	transform: translateZ(30px);
}

.parallax-elements:hover .z-tran-40 {
	-webkit-transform: translateZ(40px);
	transform: translateZ(40px);
}

.parallax-elements:hover .z-tran-50 {
	-webkit-transform: translateZ(50px);
	transform: translateZ(50px);
}

/* #Section testimonials
================================================== */

.swiper-testimonials {}

.swiper-wrapper {
	list-style: none;
	margin: 0;
	padding: 0;
}

.swiper-slide {
	width: 100%;
	margin: 0;
	padding: 0;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: auto;
	bottom: 0;
	border-radius: 4px;
	border: none;
	background-color: transparent;
	color: var(--secondary);
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.2px;
	line-height: 50px;
	width: 50px;
	height: 50px;
	margin-top: 0;
	z-index: 10;
	cursor: pointer;
	background-image: none;
	transition: all 200ms linear;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	border-color: transparent;
	background-color: transparent;
	box-shadow: none;
	color: var(--primary);
}

.swiper-button-prev {
	right: 50px;
	left: auto;
}

.swiper-button-next {
	right: 0;
	left: auto;
}

.swiper-button-next:active,
.swiper-button-prev:active,
.swiper-button-next:focus,
.swiper-button-prev:focus {
	border: none;
	outline: none;
	box-shadow: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: .25;
	cursor: auto;
	pointer-events: none;
}

.testimonials-wrap-1 img {
	width: 60px;
	height: auto;
	display: block;
	border-radius: 50%;
}

.border-radius-bubble-1 {
	border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
}

.border-radius-bubble-2 {
	border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
}

.border-radius-bubble-3 {
	border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
}

.border-radius-bubble-4 {
	border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
}

.section-background-gradient-white-gray {
	position: absolute;
	background-image: linear-gradient(to right, rgba(240, 239, 243, 0.1), rgba(240, 239, 243, 0.95) 50%);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.swiper-testimonials-3 .swiper-slide .section {
	opacity: 0;
	transition: opacity 250ms linear;
}

.swiper-testimonials-3 .swiper-slide.swiper-slide-prev .section,
.swiper-testimonials-3 .swiper-slide.swiper-slide-next .section,
.swiper-testimonials-3 .swiper-slide.swiper-slide-active .section {
	opacity: 1;
}

/* #Pricing sections
================================================== */

.pricing-wrap-1 {}

.pricing-wrap-1.with-shadow {
	box-shadow: 0px 40px 60px -10px rgba(149, 164, 175, 0.3);
	transition: all 250ms linear;
}

.pricing-wrap-1.with-shadow:hover {
	transform: translateY(-5px);
}

.btn-pricing {
	color: var(--white);
	background-color: var(--success);
	height: 160px;
	border-radius: 0;
}

.btn-pricing:active,
.btn-pricing:focus,
.btn-pricing:hover {
	color: var(--white);
	background-color: var(--dark-blue);
}

.btn-pricing.h-80,
.btn-pricing-2.h-80 {
	height: 80px;
}

.btn-pricing-2 {
	color: var(--white);
	background-color: var(--orange);
	height: 160px;
	border-radius: 0;
}

.btn-pricing-2:active,
.btn-pricing-2:focus,
.btn-pricing-2:hover {
	color: var(--white);
	background-color: var(--dark-blue);
}


.switch-pricing {
	position: relative;
	cursor: pointer;
	height: 50px;
	display: inline-block;
	width: 200px;
	border-radius: 4px;
	border: none;
	overflow: hidden;
	display: inline-block;
	background-color: var(--light-2);
	transition: all 200ms linear;
}

input[type="checkbox"]:checked+.switch-pricing {}

.switch-pricing:after,
.switch-pricing:before {
	position: absolute;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	content: 'Monthly';
	line-height: 50px;
	font-size: 16px;
	color: var(--white);
	text-align: center;
	left: 0;
	top: 0;
	background-color: var(--primary);
	width: 100px;
	height: 50px;
	transition: all 200ms linear;
}

.switch-pricing:after {
	content: 'Yearly';
	left: 100px;
	color: var(--dark);
	background-color: transparent;
}

input[type="checkbox"]:checked+.switch-pricing:before {
	color: var(--dark);
	background-color: transparent;
}

input[type="checkbox"]:checked+.switch-pricing:after {
	color: var(--white);
	background-color: var(--primary);
}

.pricing-opt-2 {
	position: absolute;
	left: 15px;
	top: 0;
	display: block;
	width: calc(100% - 30px);
	z-index: 2;
	transition: all 200ms linear;
	opacity: 0;
	pointer-events: none;
}

body.pricing-opt-body-2 .pricing-opt-2 {
	opacity: 1;
	pointer-events: auto;
}

/* #Separator sections
================================================== */

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 200;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.swiper-pagination-bullet {
	width: 14px;
	height: 6px;
	display: inline-block;
	border-radius: 1px;
	background-color: var(--gray-light);
	opacity: 1;
	cursor: pointer;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.swiper-pagination-bullet:hover {
	background-color: var(--gray);
}

.swiper-pagination-bullet-active:hover,
.swiper-pagination-bullet-active {
	opacity: 1;
	background-color: var(--primary);
	width: 40px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.swiper-pagination-bullet:active,
.swiper-pagination-bullet:focus {
	border: none;
	outline: none;
}

.separator-img-shadow {
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.5);
}

.translate-top-120 {
	transform: translateY(-120px);
}

.translate-top-200 {
	transform: translateY(-200px);
}

.translate-bottom-120 {
	transform: translateY(120px);
}

.translate-top-60 {
	transform: translateY(-60px);
}

.separator-wrap-1 {
	width: 100%;
	max-width: 500px;
}

.border-counters-right {
	border-right: 1px solid rgba(21, 21, 21, .12);
}

.counter-big-num {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	color: var(--light-3);
	font-size: 85px;
	font-weight: 700;
	line-height: 1.1;
}

/* #Cookie
================================================== */

.alert-style-fixed {
	position: fixed;
	background-image: linear-gradient(to right, var(--dark), var(--dark-blue));
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
	z-index: 20000;
	width: 1400px;
	max-width: calc(100% - 40px);
	left: 50%;
	bottom: 40px;
	padding: 15px 5px;
	transform: translateX(-50%);
	border-radius: 4px;
}

/* #Footers
================================================== */

.mb-fix-22 {
	margin-bottom: 22px;
}

.footer-logo img {
	width: 70px;
	height: auto;
	display: block;
}

.footer-logo-2 img {
	width: 50px;
	height: auto;
	display: block;
}

.footer-logo-app img {
	width: 45px;
	height: auto;
	display: block;
}

/* #Pages
================================================== */

.top-header-parallax-section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* #Cafe page
================================================== */

.footer-logo-cafe img {
	width: auto;
	height: 50px;
	display: block;
}

.swiper-services.niche-slider-1 .swiper-pagination-bullet:hover,
.swiper-services.niche-slider-1 .swiper-pagination-bullet-active:hover,
.swiper-services.niche-slider-1 .swiper-pagination-bullet-active {
	background-color: var(--red);
}

.btn-play-video-dark.red:hover {
	background-color: var(--red);
}

.services-wrap-niche {
	overflow: hidden;
	border-radius: 4px;
	transition: all 250ms linear;
	box-shadow: 0px 14px 35px -5px rgba(21, 21, 21, 0.3);
}

.services-wrap-niche:hover {
	box-shadow: 0px 14px 35px -5px rgba(21, 21, 21, 0.5);
}

.services-wrap-niche h5 {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 4;
}

.services-mask-niche {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(31, 32, 41, 0.2);
	transition: all 250ms linear;
}

.services-wrap-niche:hover .services-mask-niche {
	background-color: rgba(31, 32, 41, 0.7);
}

.services-mask-niche-img {
	position: absolute;
	bottom: 30px;
	right: 30px;
	z-index: 3;
}

.services-mask-niche-img img {
	width: 70px;
	height: auto;
	display: block;
	opacity: 0.3;
	transition: all 250ms linear;
}

.services-wrap-niche:hover .services-mask-niche-img img {
	opacity: 1;
}

.services-wrap-niche-1 {
	overflow: hidden;
	border-radius: 4px;
	transition: all 250ms linear;
	box-shadow: 0px 14px 35px -5px rgba(21, 21, 21, 0.3);
}

.services-wrap-niche-1:hover {
	transform: translateY(-4px);
	background-color: var(--black);
	box-shadow: 0px 14px 35px -5px rgba(21, 21, 21, 0.5);
}

.services-wrap-niche-1 img {
	width: auto;
	height: 70px;
	display: block;
	opacity: 0.5;
	margin: 0 auto;
	text-align: centar;
	transition: all 250ms linear;
}

.services-wrap-niche-1:hover img {
	opacity: 1;
}

.swiper-testimonials.for-niche-cafe .swiper-button-prev:hover,
.swiper-testimonials.for-niche-cafe .swiper-button-next:hover {
	color: var(--red);
}

.swiper-niche-1 .swiper-pagination-bullet:hover,
.swiper-niche-1 .swiper-pagination-bullet-active:hover,
.swiper-niche-1 .swiper-pagination-bullet-active {
	background-color: var(--red);
}

.swiper-niche-1 .swiper-slide {
	width: auto;
}

.niche-slide-1 {
	box-shadow: 0px 12px 25px -5px rgba(21, 21, 21, 0.2);
	transition: all 250ms linear;
}

.niche-slide-1:hover {
	transform: translateY(-4px);
	box-shadow: 0px 14px 35px -5px rgba(21, 21, 21, 0.5);
}

.niche-slide-1 img {
	width: auto;
	height: 350px;
	display: block;
}

.niche-slide-1:hover .services-mask-niche {
	background-color: rgba(31, 32, 41, 0.7);
}

.services-mask-niche-plus {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 10;
	opacity: 0;
	text-align: center;
	transform: translateY(-50%);
	transition: all 250ms linear;
}

.niche-slide-1:hover .services-mask-niche-plus {
	opacity: 1;
}

.active-blue {
	color: var(--blue);
}

.side-nav-wrap.top-position .logo-fashion img {
	width: 120px;
}

.side-nav-wrap.top-position.cbp-af-header.cbp-af-header-shrink .logo-fashion img {
	width: 100px;
}

.footer-logo-fashion img {
	width: 120px;
	height: auto;
	display: block;
}

.product-wrap-fashion {
	border-radius: 4px;
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.3);
	transition: all 250ms linear;
}

.product-wrap-fashion:hover {
	box-shadow: 0px 40px 100px -5px rgba(149, 164, 175, 0.4);
}

.product-wrap-fashion img {
	border-radius: 4px;
}

.product-wrap-fashion h5 {
	position: absolute;
	top: 20px;
	right: -15px;
	z-index: 10;
	color: var(--dark-blue);
	transition: all 250ms linear;
}

.product-wrap-fashion:hover h5 {
	color: var(--blue);
}

.product-wrap-fashion-over {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0);
	transition: all 250ms linear;
}

.product-wrap-fashion:hover .product-wrap-fashion-over {
	background-color: rgba(255, 255, 255, 0.6);
}

.product-wrap-fashion-cart {
	position: absolute;
	bottom: -15px;
	left: -15px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	z-index: 3;
	background-color: var(--dark-blue);
	color: var(--white);
	border-radius: 50%;
	text-align: center;
	transition: all 250ms linear;
}

.product-wrap-fashion-cart:hover {
	background-color: var(--blue);
}

.product-wrap-fashion:hover .product-wrap-fashion-cart {
	box-shadow: 0px 8px 20px -5px rgba(21, 21, 21, 0.4);
	transform: rotate(360deg);
}

.product-wrap-fashion-size {
	position: absolute;
	top: 20px;
	left: -5px;
	z-index: 10;
	opacity: 0;
	transition: all 250ms linear;
}

.product-wrap-fashion:hover .product-wrap-fashion-size {
	left: -15px;
	opacity: 1;
}

.bakery-thumbs-wrap {
	position: absolute;
	top: 50%;
	right: 140px;
	z-index: 1;
	transform: translateY(-50%);
}

.bakery-thumbs {
	position: relative;
	display: block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	transition: all 250ms linear;
	transform: scale(0.8);
	box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.5);
}

.bakery-thumbs:hover {
	box-shadow: 0px 16px 30px rgba(0, 0, 0, 0.8);
	transform: scale(0.9);
}

.swiper-bakery-thumbs .swiper-slide-thumb-active .bakery-thumbs {
	box-shadow: 0px 16px 30px rgba(0, 0, 0, 0.8);
	transform: scale(1);
}

.bakery-thumbs img {
	width: 100%;
	height: auto;
	display: block;
}

.swiper-bakery .swiper-button-next,
.swiper-bakery .swiper-button-prev {
	position: absolute;
	top: 50%;
	bottom: auto;
	border-radius: 50%;
	border: none;
	background-color: var(--white);
	box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.5);
	width: 40px;
	height: 40px;
	border: none;
	z-index: 10;
	cursor: pointer;
	background-image: none;
	margin-top: 0;
	right: 30px;
	left: auto;
	transition: all 200ms linear;
}

.swiper-bakery .swiper-button-next img,
.swiper-bakery .swiper-button-prev img {
	height: 9px;
	width: auto;
	display: block;
}

.swiper-bakery .swiper-button-next:hover,
.swiper-bakery .swiper-button-prev:hover {
	box-shadow: 0px 16px 30px rgba(0, 0, 0, 0.8);
	opacity: 1;
	border: none;
}

.swiper-bakery .swiper-button-prev {
	margin-top: -45px;
}

.swiper-bakery .swiper-button-next {
	margin-top: 5px;
}

.swiper-bakery .swiper-button-next:active,
.swiper-bakery .swiper-button-prev:active,
.swiper-bakery .swiper-button-next:focus,
.swiper-bakery .swiper-button-prev:focus {
	border: none;
	box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.5);
}

.swiper-bakery .swiper-button-next:active:hover,
.swiper-bakery .swiper-button-prev:active:hover,
.swiper-bakery .swiper-button-next:focus:hover,
.swiper-bakery .swiper-button-prev:focus:hover {
	border: none;
	box-shadow: 0px 16px 30px rgba(0, 0, 0, 0.8);
}

.bakery-contact-wrap {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	z-index: 15;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
}

.bakery-contact-wrap p {
	background-color: var(--dark-blue);
	padding-top: 5px;
	padding-bottom: 15px;
	padding-right: 3px;
	border-radius: 4px;
}

.bakery-contact-wrap .uil-wrap {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 10px;
	transform: rotate(90deg);
}

.fitness-box-wrap-1 {
	cursor: pointer;
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.3);
	transition: all 250ms linear;
}

.fitness-box-wrap-1:hover {
	cursor: pointer;
	box-shadow: 0px 30px 70px -5px rgba(149, 164, 175, 0.4);
	transform: translateY(-4px);
}

.fitness-box-wrap-1:hover .shop-over-text {
	background-color: var(--dark-blue);
	transition: all 250ms linear;
}

.fitness-box-wrap-1:hover .shop-over-text p {
	color: var(--white);
	transition: all 250ms linear;
}

.fitness-box-wrap-2 {
	cursor: pointer;
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.3);
	background-color: var(--white);
	transition: all 250ms linear;
	background-position: calc(100% - 30px) calc(100% - 30px);
	background-size: 60px auto;
	background-repeat: no-repeat;
}

.fitness-box-wrap-2:hover {
	cursor: pointer;
	box-shadow: 0px 40px 90px -5px rgba(149, 164, 175, 0.4);
	transform: translateY(-4px);
}

.fitness-box-wrap-2 p {
	opacity: 0.4;
}

.shedule-box {
	height: 69px;
	line-height: 20px;
	color: var(--white);
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding-top: 14.5px;
	cursor: pointer;
	transition: all 250ms linear;
}

.shedule-box-2 {
	height: 158px;
	line-height: 20px;
	color: var(--white);
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding-top: 59px;
	cursor: pointer;
	transition: all 250ms linear;
}

.shedule-box:hover,
.shedule-box-2:hover {
	transform: scale(1.15);
	box-shadow: 0px 30px 70px -5px rgba(149, 164, 175, 0.4);
}

.shedule-box.d-none,
.shedule-box-2.d-none {
	cursor: initial;
}

.shedule-box.d-none:hover,
.shedule-box-2.d-none:hover {
	transform: scale(1);
	box-shadow: none;
}


video.video_background {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 2;
	overflow: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

#video-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	overflow: hidden;
}

#flight-datepicker-1 input {
	margin: 0;
	padding: 0;
	padding-left: 0;
	padding-top: 0;
	padding-bottom: 0;
	background-color: var(--light-2);
	font-size: 34px;
	line-height: 80px;
	width: 100%;
	height: 80px;
	text-transform: none;
	letter-spacing: 1px;
	font-weight: 400;
	text-align: center;
	color: var(--dark-blue);
	border: none;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

#flight-datepicker-1 input:focus,
#flight-datepicker-1 input:active {
	border: none;
	outline: none;
	box-shadow: none;
}

#flight-datepicker-1 .form-item {
	display: inline-block;
	width: 50%;
	float: left;
}

#flight-datepicker-1 .form-item:nth-child(2) input {
	background-color: var(--white);
}

#flight-datepicker-1 input::-webkit-input-placeholder {
	color: var(--dark);
	font-size: 17px;
	line-height: 80px;
	text-transform: uppercase;
	font-weight: 400;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

#flight-datepicker-1 input:-moz-placeholder {
	color: var(--dark);
	font-size: 17px;
	line-height: 80px;
	text-transform: uppercase;
	font-weight: 400;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

#flight-datepicker-1 input::-moz-placeholder {
	color: var(--dark);
	font-size: 17px;
	line-height: 80px;
	text-transform: uppercase;
	font-weight: 400;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

#flight-datepicker-1 input:-ms-input-placeholder {
	color: var(--dark);
	font-size: 17px;
	line-height: 80px;
	text-transform: uppercase;
	font-weight: 400;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}


.datepicker-dropdown:before,
.datepicker-dropdown:after {
	display: none;
}

.datepicker-dropdown.datepicker-orient-top:after {
	display: none;
}

.datepicker-dropdown.datepicker-orient-bottom:after {
	display: none;
}

.datepicker.dropdown-menu {
	overflow: hidden;
	background-clip: border-box;
	border: none;
	background-color: rgba(0, 0, 0, .9);
	border-radius: 4px;
	box-shadow: 0 7px 16px -3px rgba(0, 0, 0, 0.4);
	-webkit-animation: popup .2s ease-out forwards;
	animation: popup .2s ease-out forwards;
	padding: 10px;
}

.datepicker.dropdown-menu.datepicker-orient-top {
	margin-top: -15px;
}

.datepicker.dropdown-menu.datepicker-orient-bottom {
	margin-top: 25px;
}

.datepicker.dropdown-menu table {
	background-color: transparent;
}

.datepicker.dropdown-menu table thead {
	background-color: rgba(0, 0, 0, .3);
}

.datepicker.dropdown-menu table thead tr {
	border-top: 0;
}

.datepicker.dropdown-menu table tbody {
	background-color: transparent;
}

.datepicker.dropdown-menu table tr {
	border-top: 1px solid rgba(0, 0, 0, .3);
}

.datepicker.dropdown-menu table tr td,
.datepicker.dropdown-menu table tr th {
	width: auto;
	height: 24px;
	padding: 6px;
	font-size: 14px;
	color: #fff;
	background-color: transparent;
	border-radius: 0;
	transition: background-color .6s ease-out;
}

.datepicker.dropdown-menu table tr td:hover,
.datepicker.dropdown-menu table tr td.active:hover,
.datepicker.dropdown-menu table tr td:active:hover,
.datepicker.dropdown-menu table tr th:hover,
.datepicker.dropdown-menu table tr th.active:hover,
.datepicker.dropdown-menu table tr th:active:hover {
	border-radius: 0;
	transition: background-color .2s ease-out;
	color: #fff;
}

.datepicker.dropdown-menu table tr td.focused,
.datepicker.dropdown-menu table tr td.selected,
.datepicker.dropdown-menu table tr th.focused,
.datepicker.dropdown-menu table tr th.selected {
	border-color: rgba(0, 0, 0, .3);
	border-radius: 0;
	color: #fff;
}

.datepicker.dropdown-menu table tr td.active,
.datepicker.dropdown-menu table tr td.active:focus,
.datepicker.dropdown-menu table tr td.active.active:hover,
.datepicker.dropdown-menu table tr td:active:focus,
.datepicker.dropdown-menu table tr td.highlighted,
.datepicker.dropdown-menu table tr th.active,
.datepicker.dropdown-menu table tr th.active:focus,
.datepicker.dropdown-menu table tr th.active.active:hover,
.datepicker.dropdown-menu table tr th:active:focus,
.datepicker.dropdown-menu table tr th.highlighted {
	border-color: rgba(0, 0, 0, .3);
	color: #fff;
}

.datepicker.dropdown-menu table tr th.datepicker-switch {
	font-size: 12px;
	font-weight: 400;
	line-height: 2;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #ffffff;
	background-color: inherit;
	border-radius: 0;
}

.datepicker.dropdown-menu table tr th.prev,
.datepicker.dropdown-menu table tr th.next {
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0);
	border-radius: 0;
	font-weight: 400;
	font-size: 15px;
}

.datepicker.dropdown-menu table tr th.dow {
	padding: 2px 12px;
	font-size: 12px;
	font-weight: 400;
	line-height: 2;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0);
	border-top: 1px solid rgba(0, 0, 0, .7);
	border-radius: 0;
}

.datepicker.dropdown-menu table tr td.day {
	width: 24px;
	border-right: 1px solid rgba(0, 0, 0, .3);
	border-radius: 2px;
	text-shadow: none;
}

.datepicker.dropdown-menu .old:hover {
	background-color: transparent;
}

.datepicker.dropdown-menu table tr td.day:last-child {
	border-right-width: 0;
}

.datepicker.dropdown-menu table tr td.range {
	background-color: rgba(0, 0, 0, 0);
}

.datepicker.dropdown-menu .new,
.datepicker.dropdown-menu .old,
.datepicker.dropdown-menu .disabled,
.datepicker.dropdown-menu .disabled:hover {
	color: #888;
}

.datepicker.dropdown-menu table tr td.day:hover,
.datepicker.dropdown-menu table tr td.focused,
.datepicker.dropdown-menu table tr td.selected,
.datepicker.dropdown-menu table tr th.focused,
.datepicker.dropdown-menu table tr th.selected,
.datepicker.dropdown-menu table tr td.active,
.datepicker.dropdown-menu table tr td.active:focus,
.datepicker.dropdown-menu table tr td.active.active:hover,
.datepicker.dropdown-menu table tr td:active:focus,
.datepicker.dropdown-menu table tr td.highlighted,
.datepicker.dropdown-menu table tr th.active,
.datepicker.dropdown-menu table tr th.active:focus,
.datepicker.dropdown-menu table tr th.active.active:hover,
.datepicker.dropdown-menu table tr th:active:focus,
.datepicker.dropdown-menu table tr th.highlighted,
.datepicker.dropdown-menu table tr td:hover,
.datepicker.dropdown-menu table tr td.active:hover,
.datepicker.dropdown-menu table tr td:active:hover,
.datepicker.dropdown-menu table tr th:hover,
.datepicker.dropdown-menu table tr th.active:hover,
.datepicker.dropdown-menu table tr th:active:hover {
	background-color: var(--primary);
}

.quantity {
	position: relative;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.quantity input[type=number] {
	-moz-appearance: textfield;
}

.quantity input:focus {
	outline: 0;
	border: none;
	box-shadow: none;
}

.quantity-nav {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
}

.quantity-button {
	position: relative;
	cursor: pointer;
	width: 20px;
	height: 40px;
	display: block;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	opacity: 0.3;
}

.quantity-button:hover {
	opacity: 1;
}

.quantity-button.quantity-up::after,
.quantity-button.quantity-down::after {
	position: absolute;
	font-family: 'unicons';
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 22px;
	color: var(--dark-blue);
}

.quantity-button.quantity-up::after {
	content: '\e850';
}

.quantity-button.quantity-down::after {
	content: '\e844';
}

.btn-white-hotel {
	color: var(--dark-blue);
	background-color: var(--white);
	border-radius: 0;
	height: 80px;
	font-size: 13px;
	text-transform: uppercase;
}

.btn-white-hotel:active,
.btn-white-hotel:focus,
.btn-white-hotel:hover {
	color: var(--white);
	background-color: var(--primary);
}

.room-wrap {
	box-shadow: 0px 30px 60px -5px rgba(149, 164, 175, 0.3);
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.room-wrap:hover {
	box-shadow: 0px 30px 70px -5px rgba(149, 164, 175, 0.4);
	transform: translateY(-4px);
}

.img-room-bottom img {
	width: 30px;
	height: auto;
	display: block;
}

.room-wrap-name {
	position: absolute;
	top: 30px;
	left: 30px;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	z-index: 2;
}

.room-wrap-stars {
	position: absolute;
	top: 70px;
	left: 30px;
	background-color: var(--dark);
	color: var(--yellow);
	z-index: 3;
	height: 30px;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
}

.hotel-services {
	box-shadow: 0px 20px 60px -5px rgba(149, 164, 175, 0.3);
	background-color: var(--white);
	-webkit-transition: all 250ms linear;
	transition: all 250ms linear;
}

.hotel-services:hover {
	box-shadow: 0px 30px 70px -5px rgba(149, 164, 175, 0.4);
	transform: translateY(-4px);
}

.hotel-services img {
	width: 70px;
	height: auto;
	display: block;
}

.hotel-gallery-wrap:hover .mask {
	opacity: 0.9;
}

.hotel-left-top {
	position: absolute;
	top: 60px;
	left: 20px;
}

.icon-box-landing {
	position: relative;
	display: inline-block;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	background-color: var(--white);
	color: var(--primary);
	text-align: center;
	line-height: 70px;
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.4);
}

.border-radius-landing-1 {
	border-radius: 34px;
}

.landing-shadow-1 {
	box-shadow: 0px 30px 60px -5px rgba(0, 0, 0, 0.7);
}

.landing-shadow-2 {
	box-shadow: 0px -20px 30px -5px rgba(0, 0, 0, 0.2);
}

.landing-shadow-3 {
	box-shadow: 0px 30px 70px -5px rgba(149, 164, 175, 0.4);
}

.landing-shadow-4 {
	box-shadow: 0px 20px 50px -5px rgba(149, 164, 175, 0.4);
}

.landing-shadow-5 {
	box-shadow: 0px 16px 35px -5px rgba(0, 0, 0, 0.2);
}

.img-nav-ver-3 {
	max-width: 480px;
}

@media (max-width: 1400px) {
	.img-nav-ver-3 {
		max-width: 380px;
	}
}


body.triger-anime .load-anime-left {
	opacity: 0;
	transform: translateX(-100px);
}

.load-anime-left {
	opacity: 1;
	transform: translateX(0);
	transition: all 500ms linear;
	transition-delay: 400ms;
}

body.triger-anime .load-anime-right {
	opacity: 0;
	transform: translateX(100px);
}

.load-anime-right {
	opacity: 1;
	transform: translateX(0);
	transition: all 500ms linear;
	transition-delay: 600ms;
}

body.triger-anime .load-anime-top {
	opacity: 0;
	transform: translateY(80px);
}

.load-anime-top {
	opacity: 1;
	transform: translateY(0);
	transition: all 500ms linear;
	transition-delay: 900ms;
}


.colord-text-linear-gradient {
	color: var(--white);
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(298deg, var(--primary), var(--orange));
	-webkit-background-clip: text;
}


/* #Countdown
================================================== */

.countdown-block {
	position: relative;
	display: inline-block;
	width: 250px;
	max-width: 100%;
}

.countdown-block-1 {
	position: relative;
	display: inline-block;
	width: 150px;
	max-width: 100%;
}

.display-11 {
	font-family: 'Muli', sans-serif;
	font-size: 30vw;
	line-height: 0.75;
	font-weight: 900;
	letter-spacing: 0;
}

.countdown-block-2 {
	width: 60px;
}


/* #Google map
================================================== */

#google-container {
	position: relative;
	width: 100%;
}

.h-350-map {
	height: 350px;
}

.h-550-map {
	height: 550px;
}

#cd-google-map {
	position: relative;
}

#cd-google-map address {
	position: absolute;
	z-index: 30;
	width: auto;
	max-width: calc(100% - 60px);
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 8px 25px;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
	box-shadow: 0px 40px 70px -5px rgba(149, 164, 175, 0.6);
}

.no-touch #cd-zoom-in:hover,
.no-touch #cd-zoom-out:hover {
	background-color: var(--dark-blue);
}

#cd-zoom-in:hover,
#cd-zoom-out:hover {
	background-color: var(--dark-blue);
}

#cd-zoom-in {
	margin-top: 140px;
	background-position: 50% 0;
}

#cd-zoom-out {
	margin-top: 5px;
	background-position: 50% -32px;
}

.gm-control-active {
	margin-top: 140px;
	margin-right: 20px;
}

.content-map .gm-control-active {
	margin-top: 15px;
	margin-right: 15px;
}

.content-map #cd-zoom-in {
	margin-top: 15px;
	margin-left: 15px;
}

.content-map #cd-zoom-out {
	margin-left: 15px;
}


.form .register-form {
	display: none;
}


/* #Media
================================================== */

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {}

@media (max-width: 1700px) {
	.hero-radius-img-anime {
		top: 20vh;
		right: 50px;
		height: 60vh;
	}

	.hero-left-full-section {
		top: auto;
		transform: translateY(0);
		bottom: 50px;
		left: auto;
		right: 20px;
	}
}

@media (max-width: 1600px) {
	.bakery-contact-wrap {
		top: auto;
		bottom: 20px;
		transform: translate(-50%, 0);
		left: 50%;
		-webkit-writing-mode: initial;
		writing-mode: initial;
	}

	.bakery-contact-wrap p {
		background-color: var(--dark-blue);
		padding-top: 0;
		padding-bottom: 0;
		padding-right: 15px;
		padding-left: 8px;
		border-radius: 4px;
		display: block;
	}

	.bakery-contact-wrap .uil-wrap {
		margin-bottom: 0;
		margin-right: 5px;
		transform: rotate(0);
	}
}

@media (max-width: 1500px) {
	.hero-radius-img-anime {
		top: 25vh;
		right: 50px;
		height: 50vh;
	}

	.mix.mix-6-col {
		width: calc(20% - 0.5px);
	}
}

@media (max-width: 1400px) {
	.mix.mix-5-col {
		width: calc(25% - 0.5px);
	}

	.mix.mix-6-col {
		width: calc(25% - 0.5px);
	}
}

@media (max-width: 1300px) {
	.hero-radius-img-anime {
		top: 30vh;
		right: 50px;
		height: 40vh;
	}

	.mix.mix-4-col {
		width: calc(33.3333333333% - 0.5px);
	}

	.swiper-hero-creative-v3 .swiper-button-next,
	.swiper-hero-creative-v3 .swiper-button-prev {
		background-color: var(--black);
		border: none;
	}

	.swiper-hero-creative-v3 .swiper-button-prev {
		left: 20px;
	}

	.swiper-hero-creative-v3 .swiper-button-next {
		right: 20px;
	}

	.swiper-hero-creative-v3 .swiper-button-prev:hover {
		border: none;
	}

	.swiper-hero-creative-v3 .swiper-button-next:hover {
		border: none;
	}

	.swiper-hero-creative-v3 .swiper-button-next:active,
	.swiper-hero-creative-v3 .swiper-button-prev:active,
	.swiper-hero-creative-v3 .swiper-button-next:focus,
	.swiper-hero-creative-v3 .swiper-button-prev:focus {
		border: none;
	}

	.swiper-hero-creative-v3 .swiper-button-next:active:hover,
	.swiper-hero-creative-v3 .swiper-button-prev:active:hover,
	.swiper-hero-creative-v3 .swiper-button-next:focus:hover,
	.swiper-hero-creative-v3 .swiper-button-prev:focus:hover {
		border: none;
	}
}

@media (max-width: 1199px) {
	.product-wrap-fashion h5 {
		right: 20px;
	}

	.product-wrap-fashion-cart {
		bottom: 15px;
		left: 15px;
	}

	.product-wrap-fashion-size {
		left: 30px;
	}

	.product-wrap-fashion:hover .product-wrap-fashion-size {
		left: 20px;
	}

	.navbar-collapse.collapsing {
		max-height: 450px;
	}

	.navigation-wrap {
		position: relative;
		top: auto;
		left: auto;
		display: block;
	}

	.navigation-wrap.one-page-nav {
		position: fixed;
		top: 0;
		left: 0;
		display: block;
	}

	.cbp-af-header.header-transparent,
	.cbp-af-header.header-transparent.cbp-af-header-shrink {
		background-color: var(--white);
		box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		border-bottom: none;
	}

	.cbp-af-header.header-dark,
	.cbp-af-header.header-dark.header-transparent,
	.cbp-af-header.header-dark.header-semi-transparent,
	.cbp-af-header.header-dark.cbp-af-header-shrink,
	.cbp-af-header.header-dark.header-transparent.cbp-af-header-shrink,
	.cbp-af-header.header-dark.header-semi-transparent.cbp-af-header-shrink {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		background-color: var(--black);
		border-bottom: none;
		box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
	}

	.cbp-af-header,
	.cbp-af-header.cbp-af-header-shrink,
	.cbp-af-header.header-semi-transparent,
	.cbp-af-header.header-semi-transparent.cbp-af-header-shrink {
		background-color: var(--white);
		box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	.cbp-af-header.header-float.cbp-af-header-shrink,
	.cbp-af-header.header-float {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		max-width: 100%;
		left: 0;
		transform: translateX(0);
		margin-top: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.cbp-af-header.header-float .dropdown-menu {
		margin-top: 0;
	}

	.cbp-af-header.header-float .mega-menu-dropdown {
		margin-top: 0;
	}

	.cbp-af-header.header-float .padding-on-scroll,
	.cbp-af-header.header-float.cbp-af-header-shrink .padding-on-scroll,
	.cbp-af-header.cbp-af-header-shrink .padding-on-scroll,
	.padding-on-scroll {
		padding-top: 17px;
		padding-bottom: 17px;
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	.cbp-af-header.cbp-af-header-shrink .navbar-brand,
	.navbar-brand {
		height: 45px;
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	.cbp-af-header.cbp-af-header-shrink .nav-item,
	.nav-item {
		padding: 10px 0;
		margin: 0;
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	.cbp-af-header.cbp-af-header-shrink .nav-link,
	.nav-link {
		margin-top: 0;
		margin-bottom: 0;
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	.nav-link::before {
		display: none;
	}

	.padding-top-mob-nav {
		padding-top: 20px;
	}

	.navbar-collapse {
		padding-left: 20px;
		padding-right: 20px;
	}

	.progress-wrap {
		right: 20px;
		bottom: 20px;
		height: 40px;
		width: 40px;
		background-color: var(--dark-blue);
		box-shadow: none;
	}

	.progress-wrap::after {
		line-height: 40px;
		font-size: 20px;
		color: var(--white);
		height: 40px;
		width: 40px;
	}

	.progress-wrap::before {
		line-height: 40px;
		font-size: 20px;
		height: 40px;
		width: 40px;
	}

	.dropdown-menu {
		padding: 0;
		min-width: 240px;
		margin-top: 0;
		box-shadow: none;
		border-top: none;
	}

	.dropdown-menu::before {
		display: none;
	}

	.cbp-af-header.cbp-af-header-shrink .dropdown-menu {
		margin-top: 0;
	}

	.dropdown-item {
		padding: 8px 10px;
		border-bottom: 1px solid rgba(11, 11, 11, .06);
	}

	.dropdown-item:hover {
		padding-left: 10px;
	}

	.dropdown-item:focus,
	.dropdown-item:active {
		border-bottom: 1px solid rgba(11, 11, 11, .06);
	}

	.dropdown-item::after {
		padding: 8px 10px;
	}

	.nav-item.show .dropdown-menu .nav-item .dropdown-menu,
	.nav-item.show .dropdown-menu .nav-item.show .dropdown-menu {
		margin-top: 0;
	}

	.nav-item .dropdown-menu .nav-item .dropdown-menu {
		margin-left: 20px;
	}

	.mega-menu-dropdown,
	.cbp-af-header.cbp-af-header-shrink .mega-menu-dropdown {
		margin-top: 0;
	}

	.mega-menu-background-1,
	.mega-menu-background-2,
	.mega-menu-background-3 {
		background-image: none;
	}

	.blend-mode-xl-normal {
		mix-blend-mode: normal;
	}

	.full-height-xl {
		height: calc(100vh - 79px);
	}

	.min-full-height.full-height-xl {
		min-height: calc(100vh - 79px);
	}

	.hero-radius-img-anime {
		top: 50%;
		right: auto;
		left: 50%;
		height: 60vh;
		transform: translate(-50%, -50%);
		opacity: 0.2;
	}

	.display-1 {
		font-size: 80px;
	}

	.hero-circle-img {
		height: auto;
		width: 40%;
	}

	.hero-circle-img img {
		height: auto;
		width: 100%;
	}

	.display-2 {
		font-size: 16vw;
	}

	.filter-wrapper-mix.fullwidth {
		width: 100%;
	}

	.display-6 {
		font-size: 60px;
	}

	.display-8 {
		font-size: 45px;
	}

	.services-wrap-3.process::before,
	.services-wrap-3.process-2::before {
		display: none;
	}

	.swiper-hero-creative-v4 .swiper-slide {
		width: 70%;
	}

	.section-hero-v4 h2 {
		font-size: 4vw;
	}

	.blog-filter-button {
		bottom: 90px;
		left: auto;
		right: 20px;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}

	.room-wrap-name {
		top: 20px;
		left: 20px;
	}

	.room-wrap-stars {
		top: 60px;
		left: 20px;
	}

	.countdown-block {
		width: 150px;
	}

	#cd-zoom-in {
		margin-top: 15px;
		margin-left: 15px;
	}

	#cd-zoom-out {
		margin-left: 15px;
	}

	.gm-control-active {
		margin-top: 15px;
		margin-right: 15px;
	}

	.h-550-map {
		height: 370px;
	}

	.mix.poftfolio-showcase {
		width: 50%;
	}

	.mix.showcase-2-col {
		width: 50%;
		-webkit-transform: translateX(1px);
		transform: translateX(1px);
		margin-left: -1px;
	}

	.mix.showcase-4-col {
		width: 50%;
	}

	.mix.mix-5-col {
		width: calc(33.3333333333% - 0.5px);
	}

	.mix.mix-6-col {
		width: calc(33.3333333333% - 0.5px);
	}

	.services-wrap-3.ver-blog-pages-2 {
		height: 234px;
	}
}

@media (max-width: 991px) {

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

	h2,
	.h2 {
		font-size: 30px;
		line-height: 40px;
	}

	h3,
	.h3 {
		font-size: 26px;
		line-height: 36px;
	}

	h4,
	.h4 {
		font-size: 20px;
		line-height: 28px;
	}

	h5,
	.h5 {
		font-size: 18px;
		line-height: 24px;
	}

	h6,
	.h6 {
		font-size: 15px;
		line-height: 22px;
	}

	.section-background-gradient-white-gray {
		background-image: none;
		background-color: rgba(240, 239, 243, 0.9);
	}

	.border-counters-right {
		border-right: none;
	}

	.mix {
		width: calc(50% - 0.5px);
	}

	.mix.mix-4-col {
		width: calc(50% - 0.5px);
	}

	.display-3 {
		font-size: 14vw;
		-webkit-text-stroke: 2px transparent;
		text-stroke: 2px transparent;
		-webkit-text-fill-color: var(--light-2);
		text-fill-color: var(--light-2);
		color: var(--light-2);
	}

	.display-5 {
		font-size: 13vw;
		line-height: 0.9;
	}

	.display-6 {
		font-size: 50px;
	}

	.display-8 {
		font-size: 40px;
	}

	.swiper-hero-creative-v4 .swiper-slide {
		width: 100%;
	}

	.hero-bottom-section-v4 {
		left: 0;
		bottom: 60px;
		text-align: center;
	}

	.section-hero-v4 h2 {
		font-size: 6vw;
	}

	.swiper-home-blog-v2 .swiper-pagination {
		top: 30px;
		left: auto;
		right: 30px;
		text-align: right;
	}

	.side-nav-wrap {
		height: auto;
		width: 100%;
	}

	.side-nav-wrap img {
		width: 50px;
	}

	.full-height.height-side-nav-mob {
		height: auto;
	}

	.bakery-thumbs-wrap {
		top: auto;
		bottom: 90px;
		right: auto;
		left: 50%;
		transform: translate(-50%, 0);
		width: 320px;
		height: auto;
	}

	.shedule-box,
	.shedule-box-2 {
		height: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.countdown-block-1 {
		width: 100px;
	}

	.mix.mix-5-col {
		width: calc(50% - 0.5px);
	}

	.mix.mix-6-col {
		width: calc(50% - 0.5px);
	}
}

@media (max-width: 767px) {
	.display-1 {
		font-size: 60px;
	}

	.swiper-hero-design-studio .swiper-button-prev {
		left: 10px;
		margin-top: -130px;
	}

	.swiper-hero-design-studio .swiper-button-next {
		right: 10px;
		margin-top: -130px;
	}

	.display-6 {
		font-size: 45px;
	}

	.display-8 {
		font-size: 35px;
	}

	.link-hero-creative-v3 {
		letter-spacing: 3px;
		font-size: 20px;
	}

	#flight-datepicker-1 .form-item input {
		background-color: var(--white);
	}

	#flight-datepicker-1 .form-item:nth-child(2) input {
		background-color: var(--light-2);
	}

	body.triger-anime .load-anime-left {
		opacity: 0;
		transform: translate(0, 40px);
	}

	.load-anime-left {
		opacity: 1;
		transform: translate(0);
		transition: all 500ms linear;
		transition-delay: 600ms;
	}

	body.triger-anime .load-anime-right {
		opacity: 0;
		transform: translate(0, 40px);
	}

	.load-anime-right {
		opacity: 1;
		transform: translate(0);
		transition: all 500ms linear;
		transition-delay: 300ms;
	}

	.countdown-block {
		width: 100px;
	}
}

@media (max-width: 575px) {
	.padding-sm-top-bottom-50 {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.padding-sm-top-50 {
		padding-top: 50px;
	}

	.padding-sm-bottom-50 {
		padding-bottom: 50px;
	}

	.list-style ul {
		padding-left: 20px;
	}

	.modal-dialog {
		top: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		min-height: 100vh;
		-webkit-transform: translate(0);
		transform: translate(0);
		border-radius: 0;
	}

	.modal.fade .modal-dialog {
		-webkit-transform: translate(0);
		transform: translate(0);
	}

	@media (prefers-reduced-motion: reduce) {
		.modal.fade .modal-dialog {
			-webkit-transform: translate(0);
			transform: translate(0);
		}
	}

	.modal-body {
		min-height: 100vh;
		padding: 60px 15px;
	}

	.modal-small .modal-content {
		max-width: 100%;
	}

	.modal-small .modal-dialog {
		max-width: 100%;
	}

	.display-1 {
		font-size: 36px;
	}

	.blog-wrap-1 img {
		width: 100%;
	}

	.btn-pricing {
		height: 60px;
	}

	.btn-pricing-2 {
		height: 60px;
	}

	.hero-circle-img {
		width: 50%;
	}

	.display-2 {
		font-size: 18vw;
	}

	.hero-center-section.hero-center-push-top-mob {
		margin-top: -60px;
	}

	.hero-center-creative-v2-section.hero-center-push-top-mob {
		margin-top: -60px;
	}

	.mix {
		width: 100%;
	}

	.mix.mix-2-col {
		width: 100%;
	}

	.mix.mix-4-col {
		width: 100%;
	}

	.mix.mix-5-col {
		width: 100%;
	}

	.mix.mix-6-col {
		width: 100%;
	}

	.swiper-hero-branding .swiper-button-next,
	.swiper-hero-branding .swiper-button-prev {
		display: none;
	}

	.swiper-hero-branding .swiper-pagination {
		bottom: 180px;
		top: auto;
		margin-top: 0;
		width: 100%;
	}

	.title-text-left-line {
		position: relative;
		padding-left: 60px;
	}

	.title-text-left-line::before {
		left: 20px;
		width: 30px;
	}

	.swiper-container-horizontal.swiper-hero-creative-v2>.swiper-pagination-bullets {
		bottom: 80px;
	}

	.display-6 {
		font-size: 35px;
	}

	.display-8 {
		font-size: 33px;
	}

	.blog-wrap-4 img {
		width: 100%;
	}

	.hero-center-section-v3 img {
		box-shadow: none;
	}

	.swiper-container-horizontal>.swiper-scrollbar {
		bottom: -20px;
		left: 15%;
		right: 15%;
		width: 70%;
	}

	.swiper-hero-creative-v3 .swiper-pagination {
		bottom: -80px;
	}

	.swiper-hero-creative-v4 .swiper-scrollbar {
		background: var(--gray-light);
		left: 50%;
		right: auto;
		bottom: -20px;
		height: 5px;
		width: 200px;
		margin-left: -100px;
		border-radius: 3px;
	}

	.swiper-hero-creative-v4 .swiper-pagination {
		bottom: 40px;
		width: 100%;
		left: 0;
		font-weight: 400;
	}

	.swiper-hero-creative-v4 .swiper-button-next,
	.swiper-hero-creative-v4 .swiper-button-prev {
		bottom: -20px;
		margin-top: 0;
	}

	.swiper-hero-creative-v4 .swiper-button-prev {
		right: auto;
		left: 20px;
	}

	.swiper-hero-creative-v4 .swiper-button-next {
		right: 20px;
		left: auto;
	}

	.swiper-hero-corporate-v1 .swiper-button-prev {
		left: 10px;
	}

	.swiper-hero-corporate-v1 .swiper-button-next {
		right: 10px;
	}

	.hero-left-section {
		bottom: 20px;
		left: 0;
	}

	.btn-filter-tag {
		font-size: 30px;
	}

	.btn-filter-tag:hover {
		font-size: 30px;
	}

	.modal-side-nav .modal-dialog {
		width: 100%;
	}

	.swiper-hero-portfolio-v3 .swiper-scrollbar {
		background: var(--dark);
		left: 50%;
		transform: translateX(-50%);
		right: auto;
		bottom: 80px;
		width: 80%;
	}

	.swiper-hero-shop-v2 .swiper-button-prev {
		left: 10px;
	}

	.swiper-hero-shop-v2 .swiper-button-next {
		right: 10px;
	}

	.niche-slide-1 img {
		height: 200px;
	}

	.bakery-contact-wrap {
		width: calc(100% - 20px);
		text-align: center;
	}

	.bakery-contact-wrap p {
		background-color: var(--dark-blue);
		padding-top: 0;
		padding-bottom: 0;
		padding-right: 15px;
		padding-left: 8px;
		border-radius: 4px;
		display: block;
	}

	.blog-wrap-4.small img {
		width: 70px;
	}

	.img-room-bottom img {
		width: 20px;
	}

	.countdown-block {
		width: 70px;
	}

	.countdown-block-1 {
		width: 70px;
	}

	.title-text-left-line-small {
		padding-left: 0;
	}

	.title-text-left-line-small::before {
		display: none;
	}

	#cd-google-map address {
		position: absolute;
		z-index: 30;
		width: calc(100% - 40px);
		max-width: calc(100% - 40px);
	}

	.mix.poftfolio-showcase,
	.mix.showcase-2-col,
	.mix.showcase-4-col {
		width: 100%;
	}
}