@font-face {
	font-family: AktivGrotesk-Medium;
	src: url(../../../fonts/AktivGrotesk-Medium.otf);
}
@font-face {
	font-family: AktivGrotesk-Regular;
	src: url(../../../fonts/AktivGrotesk-Regular.otf);
}
@font-face {
	font-family: Segoe-UI;
	src: url(../../../fonts/Segoe-UI.ttf);
}
@font-face {
	font-family: Inter-Medium;
	src: url(../../../fonts/Inter-Medium.ttf);
}

.html_loading {
	width: 100%;
	overflow: hidden;
	position: fixed;
}
body {
	margin: 0;
	padding: 0;
	background: #FFFFFF;
	min-width: 260px;
}
body::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
body::-webkit-scrollbar-track {
	border-radius: 100px;
}
body::-webkit-scrollbar-thumb {
	background-color: #191919;
	border-radius: 100px;
}
a, button {
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
a:hover, button:hover {
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
a:active, button:active {
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
a:focus, button:focus {
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
	-moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
a {
	text-decoration: none !important;
	outline: none !important;
}
a:hover {
	text-decoration: none !important;
	outline: none !important;
}
a:active {
	text-decoration: none !important;
	outline: none !important;
}
a:focus {
	text-decoration: none !important;
	outline: none !important;
}
button::-moz-focus-inner {
	outline: none !important;
    border: 0 !important;
    -moz-outline-style: none !important;
}
button {
	text-decoration: none !important;
	outline: none !important;
	-moz-outline-style: none !important;
	padding: 0 !important;
}
button:hover {
	text-decoration: none !important;
	outline: none !important;
	-moz-outline-style: none !important;
	padding: 0 !important;
}
button:active {
	text-decoration: none !important;
	outline: none !important;
	-moz-outline-style: none !important;
	padding: 0 !important;
}
button:focus {
	text-decoration: none !important;
	outline: none !important;
	-moz-outline-style: none !important;
	padding: 0 !important;
}


/* Loading */

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #191919;
	z-index: 100;
}
@keyframes spin {
	from {
		transform: rotate(0);
	}
	to{
		transform: rotate(359deg);
	}
}
.circle-border {
	position: absolute;
	width: 100px;
	height: 100px;
	padding: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: rgb(252,196,49);
	background: linear-gradient(0deg, rgba(252,196,49,0.1) 33%, rgba(252,196,49,1) 100%);
	animation: spin .8s linear 0s infinite;
	left: 50%;
	top: 50%;
	margin-left: -50px;
	margin-top: -50px;
}
.circle-core {
	width: 100%;
	height: 100%;
	background-color: #191919;
	border-radius: 50%;
}


/* Wrapper */

.wrapper {
	position: relative;
	width: 100%;
	height: auto;
}


/* Menu */

#menu_botton {
	width: 35px;
	height: 23px;
	position: absolute;
    top: 100px;
	left: 75.5px;
	z-index: 15;
	cursor: pointer;
}
#menu_botton span {
	position: absolute;
	width: 100%;
	height: 4px;
	right: 0;
	display: block;
	background: #FFFFFF;
	border-radius: 100px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
#menu_botton span:nth-child(1) {
	top: 0px;
}
#menu_botton span:nth-child(2) {
	top: 9px;
}
#menu_botton span:nth-child(3) {
	top: 18px;
}
#menu_botton.open span:nth-child(1) {
	width: 100%;
	top: 9px;
	left: -2px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#menu_botton.open span:nth-child(2) {
	opacity: 0;
}
#menu_botton.open span:nth-child(3) {
	width: 100%;
    top: 9px;
    left: -2px;	
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 400px;
	height: 100vh;
	min-height: 625px;
	background: #191919;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
    -webkit-transform: translateX(-140px);
    -moz-transform: translateX(-140px);
    -ms-transform: translateX(-140px);
    -o-transform: translateX(-140px);
    transform: translateX(-140px);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.menu_active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.menu .logo {
	position: absolute;
	display: block;
	right: 0;
    -webkit-transform: translateX(calc(100% - 88px));
    -moz-transform: translateX(calc(100% - 88px));
    -ms-transform: translateX(calc(100% - 88px));
    -o-transform: translateX(calc(100% - 88px));
    transform: translateX(calc(100% - 88px));
}
.menu_center {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	margin-left: 80px;
	flex-wrap: wrap;
	visibility: hidden;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: visibility 0.4s, opacity 0.4s linear;
    -moz-transition: visibility 0.4s, opacity 0.4s linear;
    -ms-transition: visibility 0.4s, opacity 0.4s linear;
    -o-transition: visibility 0.4s, opacity 0.4s linear;
    transition: visibility 0.4s, opacity 0.4s linear;
}
.menu_center_active {
    visibility: visible;
    opacity: 1;
}
.menu_center div a {
	position: relative;
	width: auto;
	margin: 25px  0;
	padding: 0;
	display: block;
	font-style: normal;
	font-weight: 600;
	font-size: 25px;
	font-family: Segoe-UI;
	color: #FFFFFF;
	letter-spacing: 2px;
	-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
	-ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;	
}
.menu_center div a:hover {
	color: #FCC431;
}
.menu_center div span {
	position: relative;
	width: 4px;
	height: 70px;
	border-radius: 400px;
	background: #FFFFFF;
	display: block;
	margin: 15px 0 15px 10px;
}


/* Home */

.section_1 {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 625px;
}
.logo_mobile {
	display: none;
}
.section_1_1 {
	position: relative;
	width: 100%;
	height: 100%;
}
.section_1_1 .carousel {
    position: relative;
    width: 100%;
    height: 100%;
}
.section_1_1 .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}
.section_1_1 .carousel-indicators li {
    width: 15px;
    height: 15px;
    margin: 5px 0;
    background-color: #000\9;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 100%;
}
.section_1_1 .carousel-indicators .active {
    width: 15px;
    height: 15px;
	margin: 5px 0;
    background-color: #FCC431;
	border: 1px solid #FCC431;
}
.section_1_1 .carousel-inner .item {
    width: 100%;
    height: 100%;
	background-size: cover ! important;
    background-position: center center ! important;
}  
.section_1_1 .vertical.carousel .carousel-indicators {
	bottom: auto;
	top: 50%;
	left: auto;
	right: 80px;
	width: 15px;
	margin: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 6;
}
.section_1_1 .vertical.carousel .carousel-inner > .item {
	left: 0;
	top: 0;
}
.section_1_1 .vertical.carousel .carousel-inner > .item > img {
	width: 100%;
}
.section_1_1 .vertical.carousel .carousel-inner > .item.next,
.section_1_1 .vertical.carousel .carousel-inner > .item.active.right {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	top: 0;
}
.section_1_1 .vertical.carousel .carousel-inner > .item.prev,
.section_1_1 .vertical.carousel .carousel-inner > .item.active.left {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	top: 0;
}
.section_1_1 .vertical.carousel .carousel-inner > .item.next.left,
.section_1_1 .vertical.carousel .carousel-inner > .item.prev.right,
.section_1_1 .vertical.carousel .carousel-inner > .item.active {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	top: 0;
}
.section_1_1 .vertical.carousel .carousel-inner > .active,
.section_1_1 .vertical.carousel .carousel-inner > .next.left,
.section_1_1 .vertical.carousel .carousel-inner .prev.right {
	top: 0;
}
.section_1_1 .vertical.carousel .carousel-inner > .next,
.section_1_1 .vertical.carousel .carousel-inner > .active.right {
	top: 100%;
	left: 0;
}
.section_1_1 .vertical.carousel .carousel-inner > .prev,
.section_1_1 .vertical.carousel .carousel-inner > .active.left {
	top: -100%;
	left: 0;
}


/* Project */

.section_2 {
	position: relative;
	width: 100%;
	height: auto;
}
.section_2_1 {
	position: relative;
	width: 100%;
	height: auto;
	margin: auto;
}
.section_2_1 h1 {
    position: relative;
    width: 100%;
    margin: auto;
	padding: 50px 215px 40px 215px;
    text-align: center;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	font-family: AktivGrotesk-Medium;
	letter-spacing: 2px;
    color: #2C3033;
}
.section_2_1_1 {
	position: relative;
	width: 100%;
	background: #262626;
}
.section_2_1_1 .splide {
	position: relative;
	padding: 100px 0 0 0;
	width: 100%;
	max-width: 1920px;
	margin: auto;
}
.section_2_1_1 .splide__slide {
	position: relative;
	display: flex;
}
.section_2_1_1 .splide__slide__auto {
	position: relative;
	width: calc(100% - 295px);
	margin: 0;
	margin-left: 215px;
	display: flex;
}
.section_2_1_1 .splide__slide__auto .count_slide {
    position: absolute;
	bottom: -16px;
    margin: auto;
	font-style: normal;
	font-weight: 400;
	font-size: 150px;
	font-family: AktivGrotesk-Regular;
	letter-spacing: 1.5px;
    color: #C5C5C5;	
}
.section_2_1_1 .splide__slide__info {
	position: relative;
	width: 40%;
	max-width: 570px;
}
.section_2_1_1 .splide__slide__info h2 {
    position: relative;
    width: 100%;
    margin: auto;
	margin-top: 70px;
	margin-bottom: 5px;
	letter-spacing: 2px;
	font-style: normal;
	font-weight: 400;
	font-size: 45px;
	font-family: AktivGrotesk-Regular;
    color: #FFFFFF;
}
.section_2_1_1 .splide__slide__info h3 {
    position: relative;
    width: 100%;
    margin: auto;
	margin-bottom: 30px;
	letter-spacing: 2px;
	font-style: normal;
	font-weight: 400;
	font-size: 35px;
	font-family: AktivGrotesk-Regular;
    color: #FFFFFF;	
}
.section_2_1_1 .splide__slide__info p {
    position: relative;
    width: 100%;
    height: calc(100% - 410px);
    overflow-x: hidden;
    margin: auto;
	padding: 0;
	letter-spacing: 0.8px;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	font-family: Segoe-UI;
	line-height: 24px;
    color: #FFFFFF;	
}
.section_2_1_1 .splide__slide__img {
	position: relative;
	width: 55%;
	max-width: 817px;
	margin-left: auto;
	padding-bottom: 100px;
}
.section_2_1_1 .splide__slide__img img {
	position: relative;
	display: block;
	width: 100%;
}
.section_2_1_1 .splide__pagination {
	display: none;
}
.section_2_1_1 .splide__arrows {
	position: absolute;
	width: 147px;
	height: 67px;
	bottom: 0;
	left: 415px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}
.section_2_1_1 .splide__arrows button {
    -webkit-transform: initial;
    -moz-transform: initial;
    -ms-transform: initial;
    -o-transform: initial;
    transform: initial;
	-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
	-ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;	
}
.section_2_1_1 .splide__arrows button[disabled]{
	-webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
	cursor: no-drop;
}
.section_2_1_1 .splide__arrow--prev {
	width: 67px;
	height: 100%;
	left: 0;
	top: 0;
	border-radius: 0 !important;
	opacity: 1 !important;	
	background:url(/img/icon/prev.jpg) no-repeat;
	background-size: cover;
    background-position: center center;
}
.section_2_1_1 .splide__arrow--next {
	width: 67px;
	height: 100%;
	left: 80px;
	top: 0;
	border-radius: 0 !important;
	opacity: 1 !important;	
	background:url(/img/icon/next.jpg) no-repeat;
	background-size: cover;
    background-position: center center;
}


/* About */

.section_3 {
	position: relative;
	padding: 90px 0 40px 0;
	width: 100%;
	height: auto;
	background: #D9D9D9;
	margin-top: 150px;
}
.section_3_1 {
	position: relative;
	width: 100%;
	max-width: 1920px;
	height: auto;
	margin: auto;
	background:url(/img/background/about.png) no-repeat;
	background-size: auto auto;
    background-position: right 205px center;
}
.section_3_1_1 {
	position: relative;
	width: calc(100% - 420px);
	min-height: 520px;
	margin: auto;
}
.section_3_1_1_1 {
	position: relative;
	width: 40%;
	max-width: 570px;
	display: inline-block;
}
.section_3_1_1_1 h2 {
    position: relative;
    width: 100%;
    margin: auto;
	margin-bottom: 5px;
	letter-spacing: 2px;
	font-style: normal;
	font-weight: 400;
	font-size: 45px;
	font-family: AktivGrotesk-Regular;
    color: #262626;
}
.section_3_1_1_1 h3 {
    position: relative;
    width: 100%;
    margin: auto;
	margin-bottom: 30px;
	letter-spacing: 2px;
	font-style: normal;
	font-weight: 400;
	font-size: 35px;
	font-family: AktivGrotesk-Regular;
    color: #262626;	
}
.section_3_1_1_1 p {
    position: relative;
    width: 100%;
    margin: auto;
	padding: 0;
	letter-spacing: 0.8px;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	font-family: Segoe-UI;
	line-height: 24px;
    color: #262626;	
}


/* Footer */

.section_4 {
	position: relative;
	padding: 40px 0 50px 0;
	width: 100%;
	height: auto;
	background: #191919;
}
.section_4_1 {
	position: relative;
	width: 100%;
	max-width: 1920px;
	margin: auto;
	height: auto;
}
.section_4_1_1 {
	width: calc(100% - 560px);
	margin: auto;
	display: flex;
}
.section_4_1_1_1 h1 {
    position: relative;
    width: 100%;
    margin: auto;
	margin-bottom: 25px;
	letter-spacing: 2px;
	font-style: normal;
	font-weight: 400;
	font-size: 27px;
	font-family: Inter-Medium;
    color: #FFFFFF;
}
.section_4_1_1_1 h2 {
    position: relative;
    width: 100%;
    margin: auto;
	margin-top: 15px;
	margin-bottom: 5px;
	letter-spacing: 1.5px;
	font-style: normal;
	font-weight: 400;
	font-size: 23px;
	font-family: Inter-Medium;
    color: #FFFFFF;
}
.section_4_1_1_1 p {
    position: relative;
    width: 100%;
    margin: auto;
	letter-spacing: 1.5px;
	font-size: 16px;
	font-family: Inter-Medium;
	line-height: 25px;
    color: #E9E9E9;
}
.section_4_1_1_1 p a {
    color: #E9E9E9;
}
.section_4_1_1_2 {
    margin-left: auto;
}
.section_4_1_1_2 h1 {
    position: relative;
    width: 100%;
    margin: auto;
	margin-bottom: 25px;
	letter-spacing: 2px;
	font-style: normal;
	font-weight: 400;
	font-size: 27px;
	font-family: Inter-Medium;
    color: #FFFFFF;
}
.section_4_1_1_2 div {
	position: relative;
	display: flex;
}
.section_4_1_1_2 a {
	position: relative;
	width: auto;
	width: 40px;
	height: 40px;
	margin-right: 15px;
	border-radius: 100%;
	border: 2px solid #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #FFFFFF;
	-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
	-ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.section_4_1_1_2 a i {
	display: block;
}
.section_4_1_1_2 a:hover {
	background: #FFFFFF;
	color: #191919;
}


/* Media */

@media only screen and (max-width:1600px) {
	.menu .logo {
		width: 700px;
		-webkit-transform: translateX(calc(100% - 70px));
		-moz-transform: translateX(calc(100% - 70px));
		-ms-transform: translateX(calc(100% - 70px));
		-o-transform: translateX(calc(100% - 70px));
		transform: translateX(calc(100% - 70px));
	}
	.menu_center div a {
		margin: 20px 0;
		font-size: 22px;
		letter-spacing: 1.5px;
	}
	.menu_center div span {
		margin: 10px 0 10px 10px;
	}
	.section_1_1 .vertical.carousel .carousel-indicators {
		right: 40px;
	}
	.section_2_1 h1 {
		padding: 40px 180px 30px 180px;
		font-size: 36px;
		letter-spacing: 1.5px;
	}
	.section_2_1_1 .splide {
		padding: 80px 0 0 0;
	}
	.section_2_1_1 .splide__slide__auto {
		width: calc(100% - 210px);
		margin-left: 150px;
	}
	.section_2_1_1 .splide__slide__auto .count_slide {
		font-size: 135px;
		letter-spacing: 0;
	}
	.section_2_1_1 .splide__slide__info {
		width: 55%;
	}
	.section_2_1_1 .splide__slide__info h2 {
		margin-top: 50px;
		letter-spacing: 1.5px;
		font-size: 42px;
	}
	.section_2_1_1 .splide__slide__info h3 {
		margin-bottom: 20px;
		letter-spacing: 1.5px;
		font-size: 32px;
	}
	.section_2_1_1 .splide__slide__info p {
		height: calc(100% - 340px);
		line-height: 23px;
	}
	.section_2_1_1 .splide__slide__img {
		width: 48%;
	}
	.section_2_1_1 .splide__arrows {
		width: 125px;
		height: 55px;
		left: 330px;
	}
	.section_2_1_1 .splide__arrow--prev {
		width: 55px;
	}
	.section_2_1_1 .splide__arrow--next {
		width: 55px;
		left: 70px;
	}
	.section_3 {
		padding: 70px 0 30px 0;
		margin-top: 120px;
	}
	.section_3_1 {
		background-size: 530px auto;
		background-position: right 130px center;
	}
	.section_3_1_1 {
		width: calc(100% - 295px);
		min-height: 450px;
	}
	.section_3_1_1_1 {
		width: 55%;
	}
	.section_3_1_1_1 h2 {
		letter-spacing: 1.5px;
		font-size: 42px;
	}
	.section_3_1_1_1 h3 {
		margin-bottom: 20px;
		letter-spacing: 1.5px;
		font-size: 32px;
	}
	.section_3_1_1_1 p {
		line-height: 23px;
	}
	.section_4 {
		padding: 30px 0 40px 0;
	}
	.section_4_1_1 {
		width: calc(100% - 440px);
	}
	.section_4_1_1_1 h1 {
		margin-bottom: 20px;
		letter-spacing: 1.5px;
		font-size: 25px;
	}
	.section_4_1_1_1 h2 {
		letter-spacing: 1px;
		font-size: 21px;
	}
	.section_4_1_1_1 p {
		letter-spacing: 1px;
		font-size: 15px;
		line-height: 23px;
	}
	.section_4_1_1_2 h1 {
		margin-bottom: 20px;
		letter-spacing: 1.5px;
		font-size: 25px;
	}
	.section_4_1_1_2 a {
		width: 35px;
		height: 35px;
		margin-right: 12px;
		font-size: 18px;
	}
}
@media only screen and (max-width:1450px) {
	.menu {
		width: 360px;
		min-height: 545px;
	}
	.menu .logo {
		width: 600px;
		-webkit-transform: translateX(calc(100% - 60px));
		-moz-transform: translateX(calc(100% - 60px));
		-ms-transform: translateX(calc(100% - 60px));
		-o-transform: translateX(calc(100% - 60px));
		transform: translateX(calc(100% - 60px));
	}
	.menu_center div a {
		margin: 10px 0;
		font-size: 20px;
		letter-spacing: 1.5px;
	}
	.section_1 {
		min-height: 545px;
	}
	.section_2_1 h1 {
		padding: 30px 120px 20px 120px;
		font-size: 34px;
	}
	.section_2_1_1 .splide {
		padding: 60px 0 0 0;
	}
	.section_2_1_1 .splide__slide__auto {
		width: calc(100% - 160px);
		margin-left: 110px;
	}
	.section_2_1_1 .splide__slide__auto .count_slide {
		font-size: 120px;
		bottom: -13px;
	}
	.section_2_1_1 .splide__slide__info {
		width: 55%;
		max-width: 610px;
	}
	.section_2_1_1 .splide__slide__info h2 {
		margin-top: 30px;
		font-size: 38px;
	}
	.section_2_1_1 .splide__slide__info h3 {
		margin-bottom: 15px;
		font-size: 28px;
	}
	.section_2_1_1 .splide__slide__info p {
		height: calc(100% - 260px);
		line-height: 21px;
	}
	.section_2_1_1 .splide__slide__img {
		width: 44%;
		padding-bottom: 80px;
	}
	.section_2_1_1 .splide__arrows {
		left: 270px;
	}
	.section_3 {
		padding: 50px 0 20px 0;
		margin-top: 80px;
	}
	.section_3_1 {
		background-size: 440px auto;
	}
	.section_3_1_1 {
		width: calc(100% - 200px);
		min-height: 370px;
	}
	.section_3_1_1_1 {
		width: 55%;
		max-width: 610px;
	}
	.section_3_1_1_1 h2 {
		font-size: 38px;
	}
	.section_3_1_1_1 h3 {
		margin-bottom: 15px;
		font-size: 28px;
	}
	.section_3_1_1_1 p {
		line-height: 21px;
	}
	.section_4_1_1 {
		width: calc(100% - 360px);
	}
}
@media only screen and (max-width:1300px) {
	.menu .logo {
		width: 550px;
		-webkit-transform: translateX(calc(100% - 55px));
		-moz-transform: translateX(calc(100% - 55px));
		-ms-transform: translateX(calc(100% - 55px));
		-o-transform: translateX(calc(100% - 55px));
		transform: translateX(calc(100% - 55px));
	}
	.section_2_1_1 .splide__slide__auto {
		width: 90%;
		margin-left: 0;
		margin: auto;
		margin-top: 0;
		margin-bottom: 0;
	}
	.section_2_1_1 .splide__slide__auto .count_slide {
		font-size: 100px;
		bottom: -10px;
	}
	.section_2_1_1 .splide__slide__info h2 {
		margin-top: 10px;
		font-size: 34px;
	}
	.section_2_1_1 .splide__slide__info h3 {
		margin-bottom: 10px;
		font-size: 24px;
	}
	.section_2_1_1 .splide__slide__info p {
		height: calc(100% - 200px);
		line-height: 20px;
	}
	.section_2_1_1 .splide__slide__img {
		width: 40%;
	}
	.section_2_1_1 .splide__arrows {
		width: 100px;
		height: 45px;	
		left: 200px;
	}
	.section_2_1_1 .splide__arrow--prev {
		width: 45px;
	}
	.section_2_1_1 .splide__arrow--next {
		width: 45px;
		left: 55px;
	}
	.section_3 {
		padding: 40px 0 20px 0;
		margin-top: 60px;
	}
	.section_3_1 {
		background-size: 440px auto;
		background-position: right 70px center;
	}
	.section_3_1_1 {
		width: 90%;
	}
	.section_3_1_1_1 h2 {
		font-size: 34px;
	}
	.section_3_1_1_1 h3 {
		margin-bottom: 10px;
		font-size: 24px;
	}
	.section_3_1_1_1 p {
		line-height: 20px;
	}
	.section_4_1_1 {
		width: 90%;
	}
}
@media only screen and (max-width:1200px) {
	.menu {
		width: 310px;
	}	
	.menu .logo {
		width: 450px;
		-webkit-transform: translateX(calc(100% - 45px));
		-moz-transform: translateX(calc(100% - 45px));
		-ms-transform: translateX(calc(100% - 45px));
		-o-transform: translateX(calc(100% - 45px));
		transform: translateX(calc(100% - 45px));
	}
	.section_1_1 .vertical.carousel .carousel-indicators {
		right: 20px;
	}
	.section_2_1 h1 {
		padding: 20px 80px 15px 80px;
		font-size: 30px;
	}
	.section_2_1_1 .splide__slide__auto {
		width: 95%;
	}
	.section_2_1_1 .splide__slide__auto .count_slide {
		font-size: 80px;
		bottom: -5px;
	}
	.section_2_1_1 .splide__slide__info h2 {
		margin-top: 0;
		font-size: 30px;
	}
	.section_2_1_1 .splide__slide__info h3 {
		margin-bottom: 5px;
		font-size: 20px;
	}
	.section_2_1_1 .splide__slide__info p {
		height: calc(100% - 155px);
		line-height: 19px;
		font-size: 16px;
	}
	.section_2_1_1 .splide__arrows {
		width: 90px;
		height: 40px;
		left: 140px;
	}
	.section_2_1_1 .splide__arrow--prev {
		width: 40px;
	}
	.section_2_1_1 .splide__arrow--next {
		width: 40px;
		left: 50px;
	}
	.section_3 {
		padding: 30px 0 10px 0;
		margin-top: 50px;
	}
	.section_3_1 {
		background-size: 400px auto;
	}
	.section_3_1_1 {
		width: 95%;
		min-height: 325px;
	}
	.section_3_1_1_1 h2 {
		font-size: 30px;
	}
	.section_3_1_1_1 h3 {
		margin-bottom: 5px;
		font-size: 20px;
	}
	.section_3_1_1_1 p {
		line-height: 19px;
		font-size: 16px;
	}
	.section_4 {
		padding: 20px 0 30px 0;
	}
	.section_4_1_1 {
		width: 95%;
	}
	.section_4_1_1_1 h1 {
		font-size: 22px;
	}
	.section_4_1_1_1 h2 {
		font-size: 19px;
	}
	.section_4_1_1_1 p {
		font-size: 14px;
		line-height: 21px;
	}
	.section_4_1_1_2 h1 {
		font-size: 22px;
	}
}
@media only screen and (max-width:1000px) {
	#menu_botton {
		position: fixed;
		top: 15px;
		left: 15px;	
	}
	#menu_botton span {
		box-shadow: 1px 1px 5px #888888;
	}
	#menu_botton.open span {
		box-shadow: none;
	}
	.menu {
		position: fixed;
		width: 100%;
		height: 100%;
		min-height: 320px;
		-webkit-transform: translateX(-105%);
		-moz-transform: translateX(-105%);
		-ms-transform: translateX(-105%);
		-o-transform: translateX(-105%);
		transform: translateX(-105%);
	}
	.menu_active {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
	.menu .logo {
		display: none;
	}
	.section_1 {
		min-height: 320px;
	}
	.logo_mobile {
		position: absolute;
		width: 60%;
		max-width: calc(100% - 100px);
		display: block;
		top: 50%;
		left:50%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		z-index: 7;
	}
	@media all and (orientation:portrait) {		
		.section_1 {
			max-height: 320px;
		}
	}	
	.section_1_1 .vertical.carousel .carousel-indicators {
		width: 10px;
	}
	.section_1_1 .carousel-indicators li {
		width: 10px;
		height: 10px;
		margin: 2px 0;
	}
	.section_1_1 .carousel-indicators .active {
		width: 10px;
		height: 10px;
		margin: 2px 0;
	}
	.section_2_1_1 .splide {
		padding: 40px 0 0 0;
	}	
	.section_2_1_1 .splide__slide__auto {
		flex-wrap: wrap;
	}
	.section_2_1_1 .splide__slide__info {
		width: 100%;
		max-width: 100%;
	}	
	.section_2_1_1 .splide__slide__info p {
		height: auto;
		line-height: 19px;
		font-size: 16px;
		overflow-x: initial;
	}
	.section_2_1_1 .scrollbot-inner-parent {
		overflow: initial !important;
	}
	.section_2_1_1 .scrollbot-scrollbar-holder {
		display: none !important;
	}
	.section_2_1_1 .splide__slide__img {
		width: 60%;
		margin: auto;
		padding-top: 30px;
		padding-bottom: 100px;
	}
	.section_2_1_1 .splide__arrows {
		left: 130px;
	}
	.section_3_1 {
		background-size: 350px auto;
		background-position: right 50px center;
	}	
	.section_3_1_1_1 {
		width: 100%;
		max-width: 100%;
		min-height: 290px;
	}
}
@media only screen and (max-width:500px) {
	.section_3_1 {
		background-position: center center;
	}
	.section_4_1_1 {
		flex-wrap: wrap;
		width: 250px;
	}
	.section_4_1_1_1 {
		width: 100%;
	}
	.section_4_1_1_2 {
		margin-left: initial;
		width: 100%;
		margin-top: 30px;
	}
	.section_4_1_1_2 a {
		width: 30px;
		height: 30px;
		margin-right: 10px;
		font-size: 16px;
	}
}