
@import url("themify-icons.css");

@font-face {
	font-family: 'Graphik';
	src: url('../fonts/Graphik-Regular.woff') format("woff");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: 'Graphik';
	src: url('../fonts/Graphik-Medium.woff') format("woff");
	font-weight: 500;
	font-style: normal
}

:root {
	--dark-bg: #111f1f;
	--background: #ffffff;
	--dark-text: #111f1f;
	--light-text: #ffffff;
	--grey: #f1f6f8;
	--darkgrey: #9b9b9b;
	--dark-grey: #636772;
	--lightred: #3d6d54;
	--red: #214835;
	/* --red: #e1000f; */
	--dark-t-bg: rgba(0, 0, 0, 0.16);
	--color-mode: "light";
	--light-font-weight-multiplier: 0.835;
	--dark-font-weight-multiplier: 1;
}

/* :root[data-theme=dark] {
	--color-mode: 'dark';
	--background: #141414;
	--dark-text-color: #ffffff;
	--light-text-color: #141414;
	--dark-t-bg: rgba(230, 174, 34, 0.548);
}

@media (prefers-color-scheme:dark) {
	:root:not([data-theme]) {
		--color-mode: 'dark';
		--background: #141414;
		--dark-text: #ffffff;
		--light-text: #141414;
		--dark-t-bg: rgba(230, 174, 34, 0.548);
	}
} */

@keyframes move {
	0% {
		transform: translateY(45px)
	}

	to {
		transform: translateY(0)
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(32px)
	}

	to {
		opacity: 1;
		transform: translate(0)
	}
}

* {
	margin: 0;
	padding: 0;
}

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

::-moz-selection {
	background: var(--red)
}

::selection {
	background: var(--red)
}

::-webkit-scrollbar {
	width: 10px;
	height: 2px
}

::-webkit-scrollbar-track {
	background: #f2f2f2
}

::-webkit-scrollbar-thumb {
	background: var(--red)
}

html {
	scroll-behavior: smooth;
}

html,
body {
	height: auto;
	scrollbar-width: thin
}

html {
	font-size: 10px;
	font-size: 62.5%;
	overflow: -moz-scrollbars-vertical;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-family: 'Graphik';
	color: var(--dark-text);
	text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	font-variant-ligatures: common-ligatures;
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	background-color: var(--background);
	font-feature-settings: "kern";
	letter-spacing: .05rem;
	font-kerning: normal;
	position: relative;
}


a {
	color: inherit;
	display: block;
	text-decoration: none;
	transition: all .3s cubic-bezier(.65, 0, .25, 1);
}

a:hover {
	text-decoration: none;
}

img,
img a {
	border: none;
	outline: none;
}

ul,
ol,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1;
}

h1 {
	font-size: 4rem;
}

h2 {
	font-size: 3.2rem;
}

h3 {
	font-size: 2.5rem;
}

h4 {
	font-size: 1.6rem;
}

h5 {
	font-size: 1.4rem;
}

p {
	font-size: 1.1862rem;
	line-height: 2;
}

button {
	border: none;
	outline: none;
	cursor: pointer;
	background: none;
	-webkit-appearance: none;
}

button {
	border: none;
	outline: none;
	cursor: pointer;
	background: none;
	-webkit-appearance: none;
}

header,
footer,
section,
main {
	width: 100%;
	height: auto;
	display: block;
}

main {
	position: relative;
}

.container,
.row {
	width: 100%;
	height: auto;
}

.bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.bg::after {
	content: "";
	background-image: radial-gradient(circle,
			rgba(0, 0, 0, 0),
			rgba(0, 0, 0, 0.46));
	position: absolute;
	z-index: 1;
	bottom: 0px;
	right: 0px;
	left: 0px;
	top: 0px;
}

._flex {
	display: flex;
	flex-flow: row wrap;
}

._flex--c {
	display: flex;
	flex-direction: column;
}

.jc-sp {
	justify-content: space-between;
}

.jc-c {
	justify-content: center;
}

.jc-fs {
	justify-content: flex-start;
}

.jc-fe {
	justify-content: flex-end;
}

.ai-fs {
	align-items: flex-start;
}

.ai-fe {
	align-items: flex-end;
}

.ai-c {
	align-items: center;
}

.ai-s {
	align-items: stretch;
}

.as-fe {
	align-self: flex-end;
}

img {
	width: 100%;
	height: 100%;
	user-select: none;
	object-fit: cover;
	display: inline-block;
	position: absolute;
	bottom: 0rem;
	right: 0rem;
	left: 0rem;
	top: 0rem;
}

/*-------------------------
	The main container
--------------------------*/

.header {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	padding: 0rem 5rem;
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	position: absolute;
	z-index: 6;
	top: 5rem;
}

.is-fixed .header {
	position: fixed;
}

.header .brand,
.header .nav_wrap .nav {
	opacity: 1;
	display: flex;
	visibility: visible;
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	position: relative;
}

.is-fixed .header .brand,
.is-fixed .header .nav_wrap .nav {
	opacity: 0;
	visibility: hidden;
	display: none;
}

.is-visible .header .brand,
.is-visible .header .nav_wrap .nav {
	opacity: 1;
	visibility: visible;
	display: flex;
}

.header .brand {
	width: auto;
	display: inline-block;
}

.header .brand img {
	width: auto;
	height: 13rem;
	display: inline-block;
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	margin: auto;
}

.header .nav_wrap {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: nowrap;
	margin: 0 0 0 auto;
}

.header .nav_wrap .nav {
	width: 100%;
}

.header .nav_wrap .nav>li {
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	border-top: 1px solid rgba(255, 255, 255, .16);
	border-left: 1px solid rgba(255, 255, 255, .16);
	border-bottom: 1px solid rgba(255, 255, 255, .16);
	display: inline-block;
}

.header .nav_wrap .nav li:last-child {
	border-right: 1px solid rgba(255, 255, 255, .16);
}

.is-grey .header .nav_wrap .nav li {
	border-color: rgba(99, 103, 114, .15);
}

.is-visible .header .nav_wrap .nav li {
	border-color: var(--red);
}

.header .nav_wrap .nav li .nav-btn {
	height: 7.6rem;
	cursor: pointer;
	font-weight: 500;
	font-size: 1.68rem;
	color: var(--light-text);
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	display: inline-flex;
	align-items: center;
	padding: 0rem 2rem;
	overflow: hidden;
	position: relative;
}

.is-grey .header .nav_wrap .nav li .nav-btn {
	color: var(--dark-grey);
}

.is-visible .header .nav_wrap .nav li .nav-btn {
	color: var(--red);
}

.header .nav_wrap .nav li .nav-btn span {
	position: relative;
}

.header .nav_wrap .nav li .nav-btn:hover,
.header .nav_wrap .nav li .nav-btn.active {
	color: var(--light-text);
}

.header .nav_wrap .nav li .nav-btn:before {
	content: "";
	width: 100%;
	height: 0rem;
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	background-color: var(--red);
	position: absolute;
	bottom: 0;
	left: 0;
}

.header .nav_wrap .nav li:hover .nav-btn:before,
.header .nav_wrap .nav li .nav-btn.active:before {
	height: 100%;
}

.header .menuButton {
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	border: 1px solid var(--background);
	display: inline-block;
	margin-left: 1rem;
	position: relative;
}

.is-grey .header .menuButton,
.is-fixed .header .menuButton {
	border-color: rgba(99, 103, 114, .15);
}

.is-visible .header .menuButton {
	margin-left: 5rem;
	border-color: var(--background);
}

.c-hamburger {
	width: 7.6rem;
	height: 7.6rem;
	cursor: pointer;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	position: relative;
}

.c-hamburger:before {
	content: "";
	width: 100%;
	height: 0rem;
	transition: height .5s cubic-bezier(.65, 0, .25, 1);
	background: var(--background);
	position: absolute;
	bottom: 0;
	left: 0;
}

.is-fixed .c-hamburger:before,
.c-hamburger:hover:before,
.c-hamburger.is-active:before {
	height: 100%;
}

.c-hamburger span,
.c-hamburger span::after,
.c-hamburger span::before {
	height: .2rem;
	display: block;
	background: var(--background);
	transition-timing-function: cubic-bezier(.65, 0, .25, 1);
	position: absolute;
}

.c-hamburger span {
	width: 2.8rem;
	transform: translateX(-50%);
	left: 50%;
	top: 50%;
}

.c-hamburger span::after,
.c-hamburger span::before {
	content: "";
	width: 100%;
	left: 0;
}

.c-hamburger span::before {
	top: -6px
}

.c-hamburger span::after {
	bottom: -6px
}

.is-grey .c-hamburger span,
.is-grey .c-hamburger span::before,
.is-grey .c-hamburger span::after {
	background: var(--dark-grey);
}

.is-fixed .c-hamburger span,
.is-fixed .c-hamburger span::before,
.is-fixed .c-hamburger span::after,
.c-hamburger:hover span,
.c-hamburger:hover span::before,
.c-hamburger:hover span::after {
	background: var(--red);
}

.c-hamburger--htx span,
.is-visible .c-hamburger--htx span {
	transition: background 0s 0s
}

.c-hamburger--htx span::after,
.c-hamburger--htx span::before {
	transition-duration: .3s, .3s;
	transition-delay: .3s, 0s
}

.c-hamburger--htx span::before {
	transition-property: top, transform
}

.c-hamburger--htx span::after {
	transition-property: bottom, transform
}

.c-hamburger--htx.is-active span {
	background: 0 0
}

.c-hamburger--htx.is-active span::before {
	top: 0;
	transform: rotate(45deg)
}

.c-hamburger--htx.is-active span::after {
	bottom: 0;
	transform: rotate(-45deg)
}

.c-hamburger--htx.is-active span::after,
.c-hamburger--htx.is-active span::before {
	background: var(--red);
	transition-delay: 0s, .3s
}

.main-menu {
	width: 100vw;
	display: flex;
	overflow: hidden;
	position: fixed;
	z-index: 5;
	bottom: 0;
	left: 0;
	top: 0;
}

.main-menu .main-menu-wrap {
	width: 100%;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAARtCAMAAADlBHwjAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAByUExURf////zh4fvY2P739/zc3Pzm5v77+/zb2vvV1P3s6/719f3p6f7x8fzb2/vV1f3t7fvf3/ve3vzi4vzZ2f309Pzl5fzd3f7v7/zk5P729vvW1vvX1/7u7v74+P/9/f/8/Pzh4Pza2v7z8/7y8v75+fzg4OHol5sAAAHrSURBVHja7d3rjoIwGIRhWBZai4KIi7on93j/t7jVG2BMJiRr3uf3F0hoMplILUUB4AYraSq4plYhxBCeFrxj9sQyA7hrW1dinlMaU2pmptbT1E3TynJHeQoA/qtGmrIl5v7athfO6JplBnDX2mWTvLom+dp1xw0LCADF4Mro5prR+2XbdssCArhre2nKl6ubS5JXtG0A8NH2Yii5eiy7sjzPTR36l75/dyX5igUEALHVKrk6XNq2rd8/sjQAUKylKSVX17lHH2an6tzJj7Ykp20DQFHsfG37IT5sTNeibQOATsnVtzSm+dePuxDD1nRH2jYA6Fmo5GqZ2/ZguhZtGwB0tn/FF8ec5L+0bQAw8u3ubkMUDpdq0ph+aNsAYOTb3d3mts1OEgBYnrJD5Kvsyvk9gaf6uf6mbQOA0autbR9y265N16JtA4DuQ5hp+pd+fk9glTu58q8f2jYAqHxnd1chhlfTtWjbAKDTvlCgJjltGwCWp+RqkzNa2WFI2wYAL98ZVEVOcuFQbto2AJhJZ1Btu+ltfuo0JuFQbto2AMiMXxh+jEG5Gl+3AQAv6cuO7XNtm+JbkgBgJv0ePUSplNO2AcBLektZjSdhatdJhw7WPHQAsNLeUkaplAceJwBYGd9SDvGTtg3gRn8AqQyjwFQvpAAAAABJRU5ErkJggg==);
	background-repeat: repeat-x;
	background-position: top;
	overflow: auto;
}

.main-menu .main-menu-wrap .main-menu-nav-wrap {
	width: 63.6665%;
	padding-left: 5rem;
	padding-top: 15rem;
}

.main-menu .main-menu-wrap .main-menu-nav {
	width: 100%;
	height: auto;
	margin-top:5rem;
}

.main-menu .main-menu-wrap .main-menu-nav li {
	width: 100%;
}

.main-menu .main-menu-wrap .main-menu-nav li.is-mobile {
	visibility: hidden;
	margin-top: -8.6rem;
}

.main-menu .main-menu-wrap .main-menu-nav li a {
	display: block;
	font-weight: 500;
	font-size: 8.6rem;
	transition: color .5s cubic-bezier(.65, 0, .25, 1);
	overflow: hidden;
	line-height: 1;
}

.main-menu .main-menu-wrap .main-menu-nav li a span {
	display: block;
	transform: translateY(-100%);
}

.main-menu .main-menu-wrap .main-menu-nav:not(:hover) li a {
	color: var(--red);
}

.main-menu .main-menu-wrap .main-menu-nav:hover li a:not(:hover).active,
.main-menu .main-menu-wrap .main-menu-nav:hover li a {
	color: var(--dark-grey);
}

.main-menu .main-menu-wrap .main-menu-nav li a:hover,
.main-menu .main-menu-wrap .main-menu-nav li a.active {
	color: var(--red);
}

.main-menu .main-menu-wrap .main-menu-content-wrap {
	width: 36.3335%;
	height: 100vh;
	display: flex;
	overflow: hidden;
	padding: 0rem 5rem 5rem;
	position: relative;
}

.main-menu .main-menu-wrap .main-menu-content-wrap:before {
	content: '';
	background: var(--grey);
	transform: translateX(-100%);
	transition: transform 1.2s cubic-bezier(.65, 0, .25, 1);
	position: absolute;
	bottom: 0rem;
	right: 0rem;
	left: 0rem;
	top: 0rem;
}

.main-menu .main-menu-wrap .main-menu-content {
	width: 100%;
	font-weight: 500;
}

.main-menu .main-menu-wrap .main-menu-content .title {
	line-height: 1;
	display: block;
	overflow: hidden;
	font-size: 5.26rem;
}

.main-menu .main-menu-wrap .main-menu-content p {
	line-height: 1;
	font-size: 1.486rem;
	margin: 4rem 0rem;
	overflow: hidden;
}

.main-menu .main-menu-wrap .main-menu-content p span,
.main-menu .main-menu-wrap .main-menu-content .title span {
	display: inline-block;
	transform: translateY(-100%);
}

.not-visible .main-menu {
	visibility: hidden;
	transform: translate3d(0, -100%, 0);
	transition: all 1.2s cubic-bezier(.65, 0, .25, 1);
}

.is-visible .main-menu {
	visibility: visible;
	transition-delay: .5rem;
}

.not-visible .main-menu .main-menu-wrap .main-menu-nav li a span {
	transform: translateY(100%);
	transition: transform .625s cubic-bezier(.65, 0, .25, 1);
}

.is-visible .main-menu .main-menu-wrap .main-menu-nav li a span {
	transform: translateY(0);
	transition: transform 1s cubic-bezier(.65, 0, .25, 1);
}

.is-visible .main-menu .main-menu-wrap .main-menu-nav li:first-child a span {
	transition-delay: .325s
}

.is-visible .main-menu .main-menu-wrap .main-menu-nav li:nth-child(2) a span {
	transition-delay: .345s
}

.is-visible .main-menu .main-menu-wrap .main-menu-nav li:nth-child(3) a span {
	transition-delay: .365s
}

.is-visible .main-menu .main-menu-wrap .main-menu-nav li:nth-child(4) a span {
	transition-delay: .385s
}

.is-visible .main-menu .main-menu-wrap .main-menu-nav li:nth-child(5) a span {
	transition-delay: .405s
}

.is-visible .main-menu .main-menu-wrap .main-menu-nav li:nth-child(6) a span {
	transition-delay: .425s
}

.not-visible .main-menu .main-menu-wrap .main-menu-content p span,
.not-visible .main-menu .main-menu-wrap .main-menu-content .title span {
	transform: translateY(100%);
	transition: transform .625s cubic-bezier(.65, 0, .25, 1);
}

.is-visible .main-menu .main-menu-wrap .main-menu-content p span,
.is-visible .main-menu .main-menu-wrap .main-menu-content .title span {
	transform: translateY(0);
	transition: transform 1s cubic-bezier(.65, 0, .25, 1) .345s;
}

.not-visible .main-menu .main-menu-wrap .main-menu-content .in-cta {
	opacity: 0;
	transition: opacity .625s cubic-bezier(.65, 0, .25, 1);
}

.is-visible .main-menu .main-menu-wrap .main-menu-content .in-cta {
	opacity: 1;
	transition: opacity 1s cubic-bezier(.65, 0, .25, 1) .325s;
}

.not-visible .main-menu .main-menu-wrap .main-menu-content-wrap:before {
	transform: translateX(100%);
	transition: transform .625s cubic-bezier(.65, 0, .25, 1);
}

.is-visible .main-menu .main-menu-wrap .main-menu-content-wrap:before {
	transform: translateX(0);
	transition: transform 1s cubic-bezier(.65, 0, .25, 1) .325s;
}

/*.. END OF HEADER ..*/

.container {
	width: 100%;
	height: auto;
	position: relative;
}

.hero-header {
	width: 100%;
	padding: 22rem 5rem 6rem;
}

.hero-header .breadcrumb {
	width: 100%;
}

.hero-header .breadcrumb li {
	font-weight: 500;
	font-size: 1.66rem;
	display: inline-block;
}

.hero-header .breadcrumb li .link {
	line-height: 2;
	color: var(--dark-grey);
	transition: all 1.2s cubic-bezier(.65, 0, .25, 1);
}

.hero-header .breadcrumb li:not(:first-child) .link:before {
	content: " — ";
	display: inline-block;
	margin: 0rem .2rem;
}

.hero-header .breadcrumb li .link:hover,
.hero-header .breadcrumb li .link.active {
	color: var(--red);
}

.hero-header .hero-wrap {
	width: 100%;
	margin-top: 5rem;
}

.hero-header div[data-v-h1] {
	font-weight: 400;
	font-size: 3.46rem;
	color: var(--dark-grey);
	margin-top: 8rem;
}

.hero-header div[data-v-h1] span {
	font-weight: 500;
}

.hero-header div[data-v-h1] span:after {
	content: " — ";
	display: inline-block;
	margin: 0rem 1rem;
}

.hero-header .hero-wrap .m_tx,
.hero-header .hero-wrap .l_tx,
.hero-header .hero-wrap .xl_tx {
	line-height: 1;
	font-weight: 500;
	color: var(--red);
}

.hero-header .hero-wrap .m_tx {
	width: 56.55%;
	font-size: 4.46rem;
}

.hero-header .hero-wrap .l_tx {
	font-size: 8.6rem;
}

.hero-header .hero-wrap .xl_tx {
	font-size: 11.2rem;
	padding-right: 5rem;
	padding-left: 5rem;
}

.hero-header .hero-wrap .l-main {
	width: 37.45%;
}

.hero-header .hero-wrap .xl-main {
	width: 76.45%;
	margin-top: 5rem;
}

.hero-header .hero-wrap .l-main p,
.hero-header .hero-wrap .xl-main p {
	font-weight: 400;
	font-size: 2.36rem;
	color: var(--dark-grey);
	line-height: 1.36;
}

.hero-header .hero-wrap .l-main p:not(:last-child),
.hero-header .hero-wrap .xl-main p:not(:last-child) {
	margin-bottom: 3rem;
}

.align-center {
	width: 100%;
}

.align-center[data-v1] {
	padding: 7rem 10%;
}

.align-center[data-v2] {
	padding: 7rem 0%;
}

.align-center .ac-block {
	width: 100%;
	position: relative;
}

.align-center[data-v1] .ac-block {
	height: 42.5vw;
}

.align-center[data-v2] .ac-block {
	height: 42.5vw;
}

.bnr {
	width: 100%;
	position: relative;
}

div[data-v-hero] {
	width: 100%;
	height: 100vh;
	position: relative;
}

.section {
	width: 100%;
	padding: 8rem 5rem;
	background: var(--background);
	position: relative;
	z-index: 1;
}

.section.ptb {
	padding-top: 22.4vw;
	padding-bottom: 12rem;
}

.b-plus {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAARtCAMAAADlBHwjAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAByUExURf////zh4fvY2P739/zc3Pzm5v77+/zb2vvV1P3s6/719f3p6f7x8fzb2/vV1f3t7fvf3/ve3vzi4vzZ2f309Pzl5fzd3f7v7/zk5P729vvW1vvX1/7u7v74+P/9/f/8/Pzh4Pza2v7z8/7y8v75+fzg4OHol5sAAAHrSURBVHja7d3rjoIwGIRhWBZai4KIi7on93j/t7jVG2BMJiRr3uf3F0hoMplILUUB4AYraSq4plYhxBCeFrxj9sQyA7hrW1dinlMaU2pmptbT1E3TynJHeQoA/qtGmrIl5v7athfO6JplBnDX2mWTvLom+dp1xw0LCADF4Mro5prR+2XbdssCArhre2nKl6ubS5JXtG0A8NH2Yii5eiy7sjzPTR36l75/dyX5igUEALHVKrk6XNq2rd8/sjQAUKylKSVX17lHH2an6tzJj7Ykp20DQFHsfG37IT5sTNeibQOATsnVtzSm+dePuxDD1nRH2jYA6Fmo5GqZ2/ZguhZtGwB0tn/FF8ec5L+0bQAw8u3ubkMUDpdq0ph+aNsAYOTb3d3mts1OEgBYnrJD5Kvsyvk9gaf6uf6mbQOA0autbR9y265N16JtA4DuQ5hp+pd+fk9glTu58q8f2jYAqHxnd1chhlfTtWjbAKDTvlCgJjltGwCWp+RqkzNa2WFI2wYAL98ZVEVOcuFQbto2AJhJZ1Btu+ltfuo0JuFQbto2AMiMXxh+jEG5Gl+3AQAv6cuO7XNtm+JbkgBgJv0ePUSplNO2AcBLektZjSdhatdJhw7WPHQAsNLeUkaplAceJwBYGd9SDvGTtg3gRn8AqQyjwFQvpAAAAABJRU5ErkJggg==);
	background-repeat: repeat-x;
	background-position: bottom;
	padding-bottom: 10rem;
}

.section .s-hd,
.section .m-hd,
.section .l-hd,
.section .xl-hd {
	line-height: 1;
	font-weight: 500;
}

.section .s-hd {
	font-size: 1.72rem;
	color: var(--dark-grey);
	margin-bottom: 2rem;
}

.section .m-hd {
	font-size: 4.46rem;
	color: var(--red);
}

.section .l-hd {
	font-size: 8.6rem;
	color: var(--red);
}

.section .xl-hd {
	font-size: 11.2rem;
	color: var(--red);
}

.section .in-wrap {
	width: 100%;
}

.section .in-wrap .m-hd.w,
.section .in-wrap .xl-hd.w {
	width: 56.55%;
}

.section .l-main {
	width: 37.45%;
}

.section .l-main p {
	font-weight: 400;
	font-size: 2.36rem;
	color: var(--dark-grey);
	line-height: 1.36;
}

.section .l-main p:not(:last-child) {
	margin-bottom: 3rem;
}

.section .l-main .in-cta {
	margin-top: 5rem;
}

.section .in-wrap .in-hd {
	width: 56.55%;
	position: relative;
}

.section .grid {
	margin: 0 -5rem;
}

.section .grid .grid-2 {
	flex: 1;
}

.section .grid .grid-2 .img__wrap,
.section .grid .grid-2 .dsc__wrap {
	overflow: hidden;
	position: relative;
}

.section .grid .grid-2 .img__wrap {
	height: 26.33vw;
}

.section .grid .grid-2 .dsc__wrap {
	height: 26.33vw;
	padding: 0rem 4rem;
	background: var(--grey);
	flex: 1;
}

.section .grid .grid-2 .dsc__wrap:before,
.section .grid .grid-2 .dsc__wrap:after {
	content: "";
	width: 100%;
	position: absolute;
	left: 0;
}

.section .grid .grid-2 .dsc__wrap:before {
	content: "";
	height: 0rem;
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	background-color: var(--red);
	bottom: 0;
}

.section .grid .grid-2 .dsc__wrap:after {
	opacity: .15;
	height: calc(100% + 45px);
	animation: move 5s linear infinite;
	background: url(../img/cross.svg) repeat 50%;
	background-size: 45px 45px;
	background-position: 0 0;
	will-change: transform;
	pointer-events: none;
	top: -45px;
}

.section .grid .grid-2:hover .dsc__wrap:before {
	height: 100%;
}

.section .grid .grid-2 .dsc__wrap .ic,
.section .grid .grid-2 .dsc__wrap .title {
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	position: relative;
	z-index: 1;
}

.section .grid .grid-2 .dsc__wrap .title {
	font-weight: 500;
	font-size: 6.6rem;
	color: var(--dark-grey);
	margin-bottom: 4rem;
	text-align: center;
}

.section .grid .grid-2 .dsc__wrap .ic {
	font-size: 5.6rem;
	color: var(--red);
}

.section .grid .grid-2:hover .dsc__wrap .title,
.section .grid .grid-2:hover .dsc__wrap .ic {
	color: var(--light-text);
}

.section div[data-v-01] {
	margin-left: -5rem;
	margin-right: -5rem;
	position: relative;
}

.section div[data-v-01] .slider .items [class$="-wrap"] {
	width: 50%;
}

.section div[data-v-01] .slider .items .i-wrap {
	order: 1;
	height: 40.5vw;
}

.section div[data-v-01] .slider .items .i-wrap .img {
	height: 40.5vw;
}

.section div[data-v-01] .slider .items .o-wrap {
	order: 2;
	height: 52vw;
	background: var(--red);
}

.section div[data-v-01] .slider .items .o-wrap .o-wrap_inner {
	padding: 15rem 8rem 0;
	color: var(--light-text);
}

.section div[data-v-01] .slider .items .o-wrap .o-wrap_inner .title {
	line-height: 1;
	font-weight: 500;
	font-size: 4.8rem;
}

.section div[data-v-01] .slider .items .o-wrap .o-wrap_inner>div {
	display: block;
	margin-top: 4rem;
	margin-bottom: 40%;
}

.section div[data-v-01] .slider .items .o-wrap .o-wrap_inner>div p {
	line-height: 1.3;
	font-weight: 400;
	font-size: 2.46rem;
}

.section div[data-v-01] .slider .owl-nav {
	width: auto;
	padding: 0 3rem;
	left: calc(50% + 5rem);
	top: 0rem;
}

.section div[data-v-01] .slider-counter {
	left: 86%;
	top: 0;
}

.section div[data-v-02] {
	width: 100%;
	padding-left: 5rem;
	padding-right: 5rem;
}

.section div[data-v-02] [data-v-2x] {
	width: 50%;
	height: 32vw;
	position: relative;
}

.section div[data-v-02] .content {
	padding: 5rem;
	border: 1px solid var(--grey);
}

.section div[data-v-02] .content div[data-v-0e14] {
	width: 100%;
	margin-bottom: auto;
	position: relative;
}

.section div[data-v-02] .content .title {
	line-height: 1;
	font-weight: 500;
	font-size: 5.4rem;
	color: var(--red);
	margin-bottom: 4rem;
	transition: all .4s cubic-bezier(.65, 0, .25, 1);
}

.section div[data-v-02] .content p {
	line-height: 1.3;
	font-weight: 400;
	font-size: 2.2rem;
	color: var(--dark-grey);
	transition: all .4s cubic-bezier(.65, 0, .25, 1);
}

.section div[data-v-02] .content:hover p,
.section div[data-v-02] .content:hover .title {
	color: var(--light-text);
}

.section div[data-v-02] .content:before,
.section div[data-v-02] .content:after {
	content: "";
	position: absolute;
}

.section div[data-v-02] .content:before {
	content: "";
	height: 0rem;
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	background-color: var(--red);
	bottom: -1px;
	right: -1px;
	left: -1px;
}

.section div[data-v-02] .content:after {
	opacity: .15;
	width: 100%;
	height: calc(100% + 45px);
	animation: move 5s linear infinite;
	background: url(../img/cross.svg) repeat 50%;
	background-size: 45px 45px;
	background-position: 0 0;
	will-change: transform;
	pointer-events: none;
	left: 0rem;
	top: -45px;
}

.section div[data-v-02] .content:hover:before {
	height: calc(100% + 2px);
}

.section div[data-v-02]:not(:last-child) {
	margin-bottom: 5rem;
}

.section div[data-v-03] {
	padding-left: 10%;
	margin-right: -5rem;
	position: relative;
}

.section div[data-v-03] .page--title__rotate {
	display: block;
	transform: rotate(-90deg);
	transform-origin: left top;
	position: absolute;
	left: 0rem;
	top: 30rem;
}

.section div[data-v-03] .page--title__rotate .ltr {
	display: flex;
	font-weight: 500;
	font-size: 4.68rem;
	color: rgba(99, 103, 114, 0.4);
}

.section .i__wrap {
	width: 72.8vw;
	height: 32.5vw;
	position: absolute;
	right: 5rem;
	top: 12rem;
}

.section .ic-wrap {
	width: 78.6vw;
	height: 36.5vw;
	background-color: var(--red);
	padding: 0rem 10rem;
	margin-left: -5rem;
	position: relative;
}

.section .ic-wrap .l-hd,
.section .ic-wrap .m-hd {
	color: var(--light-text);
}

.section .ic-wrap p {
	font-weight: 400;
	font-size: 3rem;
	color: var(--light-text);
	margin: 4rem 0 6rem;
	line-height: 1.36;
}

.section [class*="v-align_"] {
	width: calc(50% + 5rem);
	min-height: 2rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.section .v-align_l {
	padding-right: 8rem;
	padding-left: 5rem;
	margin-left: -5rem;
}

.section .v-align_l li {
	width: 100%;
}

.section .v-align_l li .m-hd {
	line-height: 1;
	font-weight: 500;
	font-size: 2.4rem;
	color: var(--red);
	margin-bottom: 1rem;
}

.section .v-align_l li .li {
	line-height: 1.36;
	font-weight: 400;
	font-size: 1.68rem;
	color: var(--dark-grey);
}

.section .v-align_l li:not(:last-child) {
	margin-bottom: 2.6rem;
}

.section .v-align_s {
	margin-right: -5rem;
	background: var(--red);
	color: var(--light-text);
	padding-right: 5rem;
	padding-left: 8rem;
}

.section .v-align_s .m-hd {
	color: var(--light-text);
	margin-bottom: 2.6rem;
}

.section .v-align_s p {
	font-weight: 400;
	font-size: 2.462rem;
	line-height: 1.36;
}

.section .v-align_s .in-cta {
	margin-top: 6rem;
}

.section .in-wrap+.inco-dm {
	margin-top: 12rem;
}

.section .inco-dm[data-v2] blockquote {
	width: 100%;
	padding-left: 12.29%;
	position: relative;
}

.section .inco-dm[data-v2] p {
	font-weight: 500;
	font-size: 5.826rem;
	line-height: 1;
}

.section .inco-dm[data-v2] blockquote i {
	font-size: 10.6rem;
	position: absolute;
	left: 5%;
	top: 0;
}

.section .inco-dm[data-v2] blockquote i:before {
	content: '\201C';
}

.section .inco-dm[data-v3] {
	padding: 0 14%;
}

.section .inco-dm[data-v3] p {
	font-weight: 400;
	font-size: 2rem;
	color: var(--dark-grey);
	line-height: 1.3;
}

.section .inco-dm[data-v3] p:not(:last-child) {
	margin-bottom: 3rem;
}


.section .inco-dm ul,
.section .inco-dm ol {
	width: 100%;
	display: flex;
	align-items: center;
	flex-flow: row wrap;
	justify-content: flex-start;
}

.section .inco-dm ul li,
.section .inco-dm ol li {
	width: 100%;
	line-height: 2;
	font-size: 1.6rem;
	text-transform: capitalize;
	position: relative;
}

.section .inco-dm ul li:before,
.section .inco-dm ol li:before {
	content: '';
	width: 5px;
	height: 5px;
	display: inline-block;
	background: var(--dark-text);
	transform: translateY(-0.25rem);
	border-radius: 50%;
	margin-right: 1rem;
}

.section .inco-dm ul li:not(:last-child),
.section .inco-dm ol li:not(:last-child) {
	margin-bottom: 1.2rem;
}

.section .in-offset {
	width: 100%;
}

.section .in-wrap+.in-offset {
	margin-top: 8rem;
}

.section .in-offset .in-offset_wrap {
	width: 100%;
}

.section .in-offset .in-offset_wrap:not(:last-child) {
	margin-bottom: 3rem;
}

.section .in-offset .in-offset_wrap aside {
	width: 28%;
	height: auto;
	display: inline-block;
	padding-top: 6rem;
}

.section .in-offset .in-offset_wrap aside .button {
	display: block;
	font-weight: 500;
	font-size: 2.86rem;
	color: var(--dark-grey);
	transition: all .3s cubic-bezier(.65, 0, .25, 1);
	line-height: .95;
	cursor: pointer;
}

.section .in-offset .in-offset_wrap aside .button:not(:last-child) {
	margin-bottom: 4rem;
}

.section .in-offset .in-offset_wrap aside .button:hover {
	color: var(--dark-text);
}

.section .in-offset .in-offset_wrap aside .button.active {
	color: var(--red);
}

.section .in-offset .in-offset_wrap .in-md_wrap {
	width: 66%;
	padding: 6rem;
	display: block;
	background: var(--red);
	color: var(--light-text);
	position: relative;
}

.section .in-offset .in-offset_wrap .in-md_wrap .close {
	display: none;
}

.section .in-offset .in-offset_wrap .in-md_wrap .md-h {
	line-height: 1;
	font-weight: 500;
	font-size: 4.82rem;
}

.section .in-offset .in-offset_wrap .in-md_wrap .sm-dsc {
	display: block;
	margin-top: 4rem;
	margin-bottom: 6rem;
}

.section .in-offset .in-offset_wrap .in-md_wrap .sm-dsc p {
	font-weight: 400;
	font-size: 1.86rem;
	line-height: 1.3;
}

.section .in-offset .in-offset_wrap .in-md_wrap .sm-dsc p:not(:last-child) {
	margin-bottom: 2.6rem;
}

.section .in-offset .in-offset_wrap .in-md_wrap .sm-dsc ul li {
	display: block;
	line-height: 1.3;
	font-size: 1.68rem;
	padding-left: 2.8rem;
	position: relative;
}

.section .in-offset .in-offset_wrap .in-md_wrap .sm-dsc ul li:before {
	content: '';
	width: 1.6rem;
	height: 1px;
	background: var(--background);
	display: inline-block;
	position: absolute;
	left: 0rem;
	top: .05rem;
}

.section .in-offset .in-offset_wrap .in-md_wrap .sm-dsc ul li:not(:last-child) {
	margin-bottom: 1.6rem;
}

.section .in-offset .in-offset_wrap .sm-l {
	width: 22%;
	font-weight: 500;
	font-size: 2.64rem;
	text-transform: capitalize;
}

.section .in-offset .in-offset_wrap .in-sm_wrap {
	width: 78%;
}

.section .in-offset .in-offset_wrap .in-sm_wrap .sm-img {
	width: 22.5%;
}

.section .in-offset .in-offset_wrap .in-sm_wrap .sm-img img {
	width: 100%;
	position: relative;
}

.section .in-offset .in-offset_wrap .in-sm_wrap .sm-img:not(:nth-child(4n)) {
	margin-right: 3.33%;
}

.section .in-offset .in-offset_wrap .in-sm_wrap .sm-img:nth-child(n+5) {
	margin-top: 2rem;
}

/*-- Slider --*/
.slider {
	position: relative;
	z-index: 1;
}

.slider .items {
	width: 100%;
	position: relative;
}

.slider .items[data-v12] {
	height: 100vh;
	overflow: hidden;
}

.slider .items[data-v12] .img-slide {
	width: 100%;
	height: 100%;
	will-change: transform;
	transform: translateY(100%);
	transition: transform .825s cubic-bezier(.65, 0, .25, 1);
}

.slider .owl-item.active .items[data-v12] .img-slide {
	transform: translateY(0)
}

.slider .items[data-v12] .caption {
	width: 46rem;
	padding: 5rem;
	color: var(--light-text);
	border-bottom: 2px dashed rgba(0, 0, 0, .14);
	transition: transform .825s cubic-bezier(.65, 0, .25, 1);
	transform: translateY(100%);
	background: var(--red);
	position: absolute;
	bottom: 10rem;
	left: 10rem;
}

.slider .owl-item.active .items[data-v12] .caption {
	transform: translateY(0);
}

.slider .items[data-v12] .caption .title {
	line-height: 1;
	font-weight: 500;
	font-size: 2.86rem;
}

.slider .items[data-v12] .caption .desc {
	line-height: 1;
	font-weight: 400;
	font-size: 1.68rem;
	margin-top: 3rem;
}

.slider .items .i-wrap {
	width: 100%;
	height: 42.5vw;
	overflow: hidden;
}

.slider .items .i-wrap .img {
	width: 100%;
	height: 42.5vw;
	transform: translateY(100%);
	transition: transform .4s cubic-bezier(.65, 0, .25, 1);
	position: relative;
}

.slider .owl-item.active .items .i-wrap .img {
	transform: translateY(0);
	transition-delay: 0s;
}

.slider .owl-nav {
	width: 46rem;
	height: 10rem;
	padding: 0 5rem;
	background: var(--red);
	position: absolute;
	left: 10rem;
	top: calc(100% - 10rem);
}

.slider .owl-nav [class*='owl-'] {
	width: auto;
	height: 10rem;
	line-height: 10rem;
	text-align: center;
	color: var(--light-text) !important;
	transition: color .825s cubic-bezier(.65, 0, .25, 1);
	position: relative;
}

.slider .owl-nav [class*='owl-'] span {
	font-size: 3.86rem;
}

.slider .owl-nav [class*='owl-']:hover {
	background: transparent;
}

.slider .owl-nav [class*='owl-'].disabled {
	opacity: 1;
	pointer-events: none !important;
	color: rgba(0, 0, 0, .4) !important;
}

.slider .owl-nav [class*='owl-']:not(:last-child) {
	margin-right: 2rem;
}

.slider-counter {
	font-weight: 500;
	font-size: 3.26rem;
	color: var(--light-text);
	line-height: 10rem;
	position: absolute;
	z-index: 5;
	left: 45rem;
	top: calc(100% - 10rem);
}

/*-- Other Elements --*/
.animated {
	visibility: visible !important;
	animation-duration: 0ms !important;
}

/* .owl-item.animated {
	visibility: visible;
} */
.fadeOut {
	animation-name: fadeOut;
}

.spinner:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0rem;
  right: 0rem;
  left: 0rem;
  top: 0rem;
}

.spinner::after {
  content: "";
  width: 2.24rem;
  height: 2.24rem;
  border-radius: 100%;
  border: 1px solid var(--dark-text);
  border-top: 1px solid var(--light-text);
  animation: spin .5s infinite linear;
  will-change: transform;
}

.in-cta {
	line-height: 2.36;
	font-weight: 500;
	outline: 2px solid var(--grey);
	justify-content: flex-start;
	display: inline-flex;
	align-items: center;
	flex-flow: row wrap;
	padding-right: 3rem;
	padding-left: 3rem;
	position: relative;
}

.in-cta .tx,
.in-cta .ic {
	color: var(--dark-grey);
	transition: color .5s cubic-bezier(.65, 0, .25, 1);
	display: inline-block;
	position: relative;
}

.in-cta .tx {
	font-size: 1.72rem;
}

.in-cta .ic {
	font-size: 2.2468rem;
	margin-left: 2rem;
}

.in-cta:hover .tx,
.in-cta:hover .ic {
	color: var(--light-text);
}

.in-cta:before {
	content: "";
	height: 0rem;
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
	background-color: var(--red);
	position: absolute;
	bottom: -2px;
	right: -2px;
	left: -2px;
}

.in-cta:hover:before {
	height: calc(100% + 4px);
}

.in-cta.alt {
	outline: .2rem solid var(--background);
}

.in-cta.alt .tx,
.in-cta.alt .ic {
	color: var(--light-text);
}

.in-cta.alt:hover .tx,
.in-cta.alt:hover .ic {
	color: var(--red);
}

.in-cta.alt:before {
	bottom: 0;
	right: 0;
	left: 0;
}

.in-cta.alt:hover:before {
	height: 100%;
	background: var(--background);
}

/*-- FOOTER --*/

.footer {
	width: 100%;
	height: auto;
	display: block;
	border-top: 1px solid var(--grey);
}

.footer .in-wrap_nav {
	width: 100%;
	height: auto;
	color: var(--dark-text);
}

.footer .in-wrap_nav .col-md {
	width: 30%;
	padding: 6rem 5rem;
	border-right: 1px solid var(--grey);
}

.footer .in-wrap_nav .col-md .logo {
	width: auto;
	display: inline-block;
}

.footer .in-wrap_nav .col-md .logo img {
	width: auto;
	height: 12rem;
	display: inline-block;
	margin-right: 30px;
	position: relative;
}


.footer .in-wrap_nav .col-lg {
	width: 40%;
	padding: 6rem 5rem;
	border-right: 1px solid var(--grey);
}

.footer .in-wrap_nav .col-md .list-sm {
	width: 100%;
}

.footer .in-wrap_nav .col-lg .list-sm {
	width: 40%;
}

.footer .in-wrap_nav .col-lg .list-sm .m-hd {
	font-weight: 500;
	font-size: 1.72rem;
	color: var(--red);
	margin-bottom: 1.68rem;
}

.footer .in-wrap_nav [class*="col-"] .list-sm .list_wrap {
	width: 100%;
}

.footer .in-wrap_nav .col-lg .list-sm .list_wrap a,
.footer .in-wrap_nav .col-md .list-sm .list_wrap .a {
	line-height: 1;
	font-weight: 400;
	font-size: 1.62rem;
	color: rgba(118, 126, 136, .7);
	transition: all .5s cubic-bezier(.65, 0, .25, 1);
}

.footer .in-wrap_nav .col-lg .list-sm .list_wrap a:not(:last-child),
.footer .in-wrap_nav .col-md .list-sm .list_wrap .a:not(:last-child) {
	margin-bottom: 1.62rem;
}

.footer .in-wrap_nav .col-lg .list-sm .list_wrap a:hover {
	color: var(--red);
	backface-visibility: hidden;
}

.footer .in-wrap_nav .col-lg .list-sm:nth-child(n+3) {
	margin-top: 7rem;
}