/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

html {
	font-size: 14px;
}

body {
	--landing-font-family: Jost;
	font-size: 1rem;
	font-weight: 400;
	font-family: Jost, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: "liga", "kern";
	text-rendering: optimizelegibility;
}

.g-font-jost,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Jost, sans-serif;
}

.g-font-size-default {
	font-size: 1rem;
}

main.landing-public-mode {
	line-height: 1.6;
	font-weight: 200;
}

.landing-public-mode .h1,
.landing-public-mode .h2,
.landing-public-mode .h3,
.landing-public-mode .h4,
.landing-public-mode .h5,
.landing-public-mode .h6,
.landing-public-mode .h7,
.landing-public-mode h1,
.landing-public-mode h2,
.landing-public-mode h3,
.landing-public-mode h4,
.landing-public-mode h5,
.landing-public-mode h6 {
	font-weight: 500;
}

/* ==========================================================================
   PAGE TRANSITION
   ========================================================================== */

@keyframes page-transition {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

body.landing-page-transition::after {
	opacity: 1;
	background: #ffffff;
	animation: page-transition 2s 1s forwards;
}

/* ==========================================================================
   ICON FONTS - ONLY USED ICONS
   ========================================================================== */

@font-face {
	font-family: "simple-line-icons";
	src: url("/front/fonts/icon/font.woff2") format("woff2"),
	     url("/front/fonts/icon/font.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Font Awesome 6 Brands";
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url("/front/fonts/fab/font.woff2") format("woff2");
}

@font-face {
	font-family: "Font Awesome 6 Pro";
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url("/front/fonts/far/font.woff2") format("woff2");
}

@font-face {
	font-family: "Font Awesome 6 Pro";
	font-style: normal;
	font-weight: 100;
	font-display: block;
	src: url("/front/fonts/fat/font.woff2") format("woff2");
}

.icon-clock,
.icon-screen-smartphone,
.icon-envelope {
	font-family: "simple-line-icons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-clock::before {
	content: "\e081";
}

.icon-screen-smartphone::before {
	content: "\e010";
}

.icon-envelope::before {
	content: "\e086";
}

.fa,
.far,
.fat,
.fab {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.fa,
.far {
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
}

.fat,
.fa.fat {
	font-family: "Font Awesome 6 Pro";
	font-weight: 100;
}

.fa-youtube,
.fa-telegram {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
}

.fa-youtube::before {
	content: "\f167";
}

.fa-telegram::before {
	content: "\f2c6";
}

.fa-chevron-left::before {
	content: "\f053";
}

.fa-chevron-right::before {
	content: "\f054";
}

.fa-handshake::before {
	content: "\f2b5";
}

.fa-hands-holding-heart::before {
	content: "\f4c3";
}

.fa-helmet-safety::before {
	content: "\f807";
}

.fa-house-blank::before {
	content: "\f80a";
}

.fa-mobile-notch::before {
	content: "\e1ee";
}

.fa-envelope::before {
	content: "\f0e0";
}

/* ==========================================================================
   ANIMATIONS - ONLY USED
   ========================================================================== */

.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.animation-none,
.js-animation {
	opacity: 0;
}

.js-animation.animated,
.animated:not(.animation-none) {
	opacity: 1;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadeIn {
	animation-name: fadeIn;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInLeft {
	animation-name: fadeInLeft;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInRight {
	animation-name: fadeInRight;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInUp {
	animation-name: fadeInUp;
}

@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	animation-name: slideInLeft;
}

@keyframes pulse {
	from {
		transform: scale3d(1, 1, 1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		transform: scale3d(1, 1, 1);
	}
}

.pulse {
	animation-name: pulse;
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	50% {
		opacity: 1;
	}
}

.zoomIn {
	animation-name: zoomIn;
}

/* ==========================================================================
   HAMBURGER - ONLY SLIDER VARIANT
   ========================================================================== */

.hamburger {
	padding: 0;
	display: inline-block;
	cursor: pointer;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.hamburger:hover {
	opacity: 0.7;
}

.hamburger-box {
	width: 25px;
	height: 18px;
	display: inline-block;
	position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 25px;
	height: 1px;
	background-color: currentColor;
	position: absolute;
	border-radius: 0;
	transition: transform .15s ease, opacity .15s ease;
}

.hamburger-inner {
	top: 0;
	display: block;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: 9px;
}

.hamburger-inner::after {
	top: 18px;
}

.hamburger--slider.is-active .hamburger-inner {
	transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
	transform: rotate(-45deg) translate3d(-5.7px, -6px, 0);
	opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
	transform: translate3d(0, -18px, 0) rotate(-90deg);
}

/* ==========================================================================
   SLIDER RESET / REBUILD
   ========================================================================== */

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
}

.js-carousel.is-rebuilt .slick-track {
	display: block !important;
	width: auto !important;
	transform: none !important;
	opacity: 1 !important;
}

.js-carousel.is-rebuilt .js-slide {
	float: none !important;
	width: 100% !important;
	left: auto !important;
	top: auto !important;
	z-index: auto !important;
	display: none !important;
	opacity: 1 !important;
}

.js-carousel.is-rebuilt .js-slide.is-active {
	display: block !important;
}

.js-carousel.is-rebuilt .js-next,
.js-carousel.is-rebuilt .js-prev {
	opacity: 1;
}

.js-carousel.is-rebuilt .u-arrow-v1.slick-disabled {
	opacity: .35;
	pointer-events: none;
	display: block !important;
}

.js-carousel.is-rebuilt .js-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 0;
	margin-bottom: 0;
}

.js-carousel.is-rebuilt .js-pagination li {
	list-style: none;
	margin: 0 5px 5px;
}

.js-carousel.is-rebuilt .js-pagination button {
	width: 10px;
	height: 10px;
	border: 0;
	border-radius: 50%;
	background-color: #ccc;
	opacity: .7;
	padding: 0;
	cursor: pointer;
}

.js-carousel.is-rebuilt .js-pagination .slick-active button,
.js-carousel.is-rebuilt .js-pagination .slick-current button {
	background-color: var(--primary);
	opacity: 1;
}

/* ==========================================================================
   GO TO TOP
   ========================================================================== */

.js-go-to {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.65);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	z-index: 9999;

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}

.js-go-to:hover {
	background: var(--primary, #e46d2e);
	color: #ffffff;
}

.js-go-to.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}