html, body {
	margin: 0;
	overflow-x: clip;
	scroll-behavior: smooth;
	background-color: #fdfdfd;
}

a, a:hover, a:visited, a:active {
	color: inherit ;
	text-decoration: none;
}
 
 button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
textarea:focus, input:focus{
    outline: none;
}
.color1{color: #ee4023;}
.color2{color: #263c81;}

.c {display: flex;justify-content: center;align-items: center;}

.desktop {visibility:visible;display: block;}
.mobile {display: none !important;}

.s0{font-size: calc(100vw - 94vw)!important; }
.s1{font-size: calc(100vw - 96vw) !important;}
.s1b{font-size: calc(100vw - 97vw) !important;}
.s2{font-size: calc(100vw - 98.5vw) !important;}
.s3{font-size: calc(100vw - 98.8vw) !important;}
.s4{font-size: calc(100vw - 99vw) !important;}

.f1{font-family:poppinThin !important;}
.f2{font-family:poppinRegular !important;}
.f3{font-family:poppinBold !important;}	

.no-image{width:50% !important; }

.hamburger {
	background-color: #333;
	width: 10vw;
	color: #999;
	text-align: center;
	padding: 15px;
	position: absolute;
	z-index: 999;
}

.black {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.7);
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}
	
.overlay a {
  padding: 0;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(95%,-5%);
}



div#slider { width: 100%; height: 100%; float: right; overflow: hidden;}

div#slider figure {
	width: 300%;
	height: 100vh;	
	position: relative;
	margin: 0;
	left: 0;
	animation: 30s slidy infinite;
}

div#slider figure img {
	width: calc(100vw - 0vw);
	height: 100%;	
	float: left;
	object-fit: cover;
	object-position: center bottom;
}

@keyframes slidy {
0% { left: 0%; }
35% { left: 0%; }
40% { left: -100%; }
70% { left: -100%; }
75% { left: -200%; }
95% { left: -200%; }
100% { left: 0%;}
}

.nav_header{width:100vw; height:15vh; position:absolute; z-index: 800;}
.headerA{width:40%;height: auto;position:relative;float:left; z-index: 20;}
.headerA img {width: 45%; padding: 2% 8%; box-sizing: content-box;}
.headerB{width:60%;height: auto;position:relative;float:left; z-index: 20;}

.dark-overlay{
	width:100%;
	height:15vh;
	position:absolute;
	z-index: 10;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(360deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	background: -webkit-linear-gradient(360deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	background: linear-gradient(360deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1); 
}

#navbar {
	background: rgba(255, 255, 255, 1);
	position: fixed;
	top: -500px;
	width: 100%;
	height: 10vh;
	display: flex;
	transition: top 0.3s;
	z-index: 1000;
	box-shadow: 0 1px 10px rgba(0,0,0,0.3);
	justify-content: center;
	align-items: center;
}
#navbar div:nth-child(1){width: calc(100vw - 55vw); height:100%; position:relative; float:left; display: flex; justify-content: center; align-items: center;}
#navbar div:nth-child(1) img { width: 40%; padding: 1% 0 1% 5%; box-sizing: border-box; left:0; position:absolute; }

.header_btn {
	width: max-content;
	height: auto;
	position: relative;
	float: left;
	margin: 3% 2% !important;
	text-align: center;
	transition: all ease 500ms;
	cursor: pointer;
	color: #f4f4f4 !important;
}
.header_btn:hover {
	color:#ee4023 !important;
}

.nav_btn {
	width: max-content;
	height: auto;
	position: relative;
	float: left;
	margin: 1% 1% !important;
	text-align: center;
	color: #0094D6;
	transition: all ease 500ms;
	cursor:pointer;	
}
.nav_btn:hover{
	color:#F12C30;
}

.dropbtn {
	background-color: transparent;
	color: #f4f4f4;
	border: none;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color:  #f4f4f4;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);transform: translateY(0);
  z-index: 1; 
}
.dropdown-content a {
	color: #333 !important;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	width: 300px;	
}
.dropdown:hover .dropdown-content {
display: block; transition: all .5s ease;
}
.dropdown-content a:hover {
background-color: #ee4023; color:#f4f4f4 !important;; transition: all 500ms ease-out;
}
.dropdown:hover .dropbtn {
background-color: transparent; 
}


.index_con1 {
	width: 100vw;
	height: 100vh;
	position: absolute;
	z-index: -1;
	/*clip-path: ellipse(50% 150% at 50% 5%); */
}


/*.index-1 {
	width: calc(100vw - 35vw);
	height: calc(100vh - 10vh);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-65%, -50%);
	z-index: 100;
	background-image: url("../images/index_1-01.png");
	background-size: contain;
	background-repeat: no-repeat;
	animation: index1 2s;
	animation-fill-mode:both;
}*/

.index-1 {
	width: calc(100vw - 50vw);
	height: calc(100vh - 10vh);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-72%, -42%);
	z-index: 100;
	animation: index1 2s;
	animation-fill-mode: both;
}

@keyframes index1{
	from {left:-20%; opacity:0;}
	to {left:45%; opacity:1;}
}
.index-1 img {
	/*width: calc(100vw - 50vw);*/	
	height: calc(100Vh - 15vh);
	position: absolute;
	z-index: 10;
}

.quote-btn, .inquiry-btn {
	width: max-content;
	height: auto;
	position: absolute;
	background: #ee4023;
	color: #f4f4f4;
	padding: 5px 10px;
	box-sizing: border-box;
	bottom: calc(100vh - 88vh);
	left: calc(100vw - 100vw);
	z-index: 30;
	transition: 1s ease all;
}

.quote-btn:hover, .inquiry-btn:hover{
	background:#263c81;
}

.inquiry-btn {
	position: relative;
	left: 50%;
	transform: translate(-50%);
	border-radius: 20px;
	padding: 10px 30px;
	float: left;
	margin-top: 20px;
	bottom: unset;
}

.index_con3 {
	width: 100%;
	height: 70vh;
	position: absolute;
	background:#f00;
	z-index: 10;
	margin-top: calc(100vh - 0vh);
	/*padding: 10vh 25%;*/
	box-sizing: border-box;
	background-image: url("../images/index_bg3.jpg");
	background-size: cover;
	background-attachment: fixed;
}
.index_con3-text {
	width: 50%;
	height: auto;
	position: absolute;
	text-align: left;
	color:#333;
	left: 70%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.index_con2 {
	width: 100%;
	height: 100vh;
	position: absolute;
	background: #151515;
	z-index: 10;
	float: left;
	margin-top: calc(100vh - -70vh);
	padding: 0 25%;
	box-sizing: border-box;
	background-image: url("../images/index_bg2.jpg");
	background-size: cover;
}

.index_con2-box {
	width: 50%;
	height: auto;
	position: absolute;
	/* left: 50%; */
	/* top: 50%; */
	/* transform: translate(-50%, -50%); */
	display: flex;
	justify-content: center;
	align-items: center;
}

.index_con2-title{
	width:100%;
	height:auto;
	position:relative;
	color:#999;
	text-align:center;
	padding-top:10vh;
	box-sizing: border-box;
	margin-bottom: 0%;
}

.input-con{
	width:50%;
	height:auto;
	position:relative;
	float:left;
	padding:0 1%;
	box-sizing: border-box;
}

.input-con2 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	padding: 0 1%;
	box-sizing: border-box;
}
.input-quotation-label{width:100; height:auto; position:relative; color:#f4f4f4;}
.input-quotation {
	width: 100%;
	height: auto;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 20px;
	border: none;
	margin-bottom:20px;
}
.input-select {
	width: 100%;
	height: auto;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 20px;
	border: none;
	margin-bottom:20px;
	background:#fff;
}

.input-textarea {
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  font-size: 16px;
  resize: none;
  border:none;
}

.profile_con1, .service_con1, .product_con1, .contact_con1 {
	width: 100vw;
	height: 70vh;
	position: relative;
	float: left;
	background-size: cover;
	background-position: center 65%;
	clip-path: polygon(0% 0%, 100% 0%, 91.5% 100%, 4.2% 88.3%);
}
.profile_con1 { background-image: url("../images/profile_1.jpg"); background-position: center 73%; background-size: 100%;}
.service_con1 {	background-image: url("../images/service_1.jpg"); background-position: center 45%;}
.product_con1 {	background-image: url("../images/product_1.jpg"); background-position: center 45%;}
.contact_con1 {	background-image: url("../images/contact_1.jpg"); background-position: center 45%;}

.contact_con2{
	width:100%;
	height:30vh;
	position:relative;
	float:left;
	text-align:center;
	color:#333;
	line-height:normal;	
}

.profile_con2{
	width:100%;
	height:30vh;
	position:relative;
	float:left;
	text-align:center;
	color:#333;
	line-height:70px;	
}

.profile_con3 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	color: #333;
	padding: 1% 8%;
	box-sizing: border-box;
}
.profile_con3 div:nth-child(1){ width:50%; height:100%; position:relative; float:left; }
.profile_con3 div:nth-child(1) img{ width:100%;}
.profile_con3 div:nth-child(2){ width:50%; height:auto; position:relative; float:left; padding:0 5%; box-sizing:border-box;} 

.profile_con4 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	padding: 1% 8%;
	box-sizing: border-box;
	/* display: grid; */
	/* grid-template-columns: auto auto auto; */
	display: flex;
	gap: 5%;
	overflow:hidden;
}
.profile_con4-box{
	width:30vw;
	height:50vh;
	position:relative;
	float:left;
	border:2px solid #999;
	border-radius:20px;
	margin-top: 15vh;
}
.profile_con4-box div:nth-child(1) {
	width: 150px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
}
.profile_con4-box div:nth-child(1) img{
	width:100%;
	margin:0 auto;
	display:block;
	border:2px solid #999;
	background:#fff;
	border-radius:50%;
	padding:10%;
	box-sizing:border-box;
}
.profile_con4-box div:nth-child(1) span {
	width: max-content;
	height: auto;
	position: relative;
	display: block;
	margin: 0 auto;
}

.profile_con4-box div:nth-child(2) {
	width: 90%;
	position: relative;
	text-align: left;
	margin: 15vh auto;
}

.service_con2{
	width:70%;
	height:auto;
	position:relative;
	margin:0 auto;
	color:#666;
	text-align: center;
}
.service_con3 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	padding: 1% 8%;
	box-sizing: border-box;
	display: grid; 
	grid-template-columns: auto auto auto;
	overflow: hidden;
}
.service_3-box {
	width: 25vw;
	height: auto;
	position: relative;
	float: left;
	border: 1px solid #999;
	padding: 8%;
	box-sizing: border-box;
	margin: 10% 0;
}
.service_3-box img {
	width:100%;
	height:30vh;
	object-fit: cover;
	padding:2%;
	box-sizing:border-box;
}
.service_3-box-title{width:100%;height:auto; position:relative; color: #ee4023;}
.service_3-box-content{width:100%;height:auto; position:relative; color: #333;}

.product_con {
	width: 100vw;
	height: auto;
	position: relative;
	float: left;
	display: grid;
	grid-template-columns: 33% 33% 33%;
	place-items: center;
	padding: 0 5%;
	box-sizing: border-box;
}

.product_con2 {
	width: 60%;
	height: 30vh;
	position: relative;
	float: left;
	text-align: center;
	color: #333;
	line-height: normal;
	left: 50%;
	transform: translate(-50%);
}

.product_box {
	width: 80%;
	height: auto;
	position: relative;
	float: left;
	border: 1px solid #666;
	padding: 2%;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	margin: 5% 0;
}
.product_box img {
	width: 100%;
	height: 255px;
	object-fit: cover;
	transition: 100ms ease-in;
}
.product_box span {
	width:max-content;
}
.product_box img:hover{
	filter:brightness(130%);
}

/*.product_description {
	width: 85%;
	height: auto;
	position: absolute;
	background: rgba(0,0,0,0.5);
	color: #f4f4f4;
	padding: 10px 20px;
	box-sizing: border-box;
	z-index: 10;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0%);
}*/
.product_description {
	width: 35vw;
	height: auto;
	position: absolute;
	background: rgba(0,0,0,0.8);
	color: #f4f4f4;
	padding: 20px 20px;
	box-sizing: border-box;
	z-index: 10;
	left: 50%;
	top: 50%;
	transform: translate(-130%, -30%);
}
.product_description span{color:#ee4023;}

.content_box{
	width:100%;
	height:auto;
	position:relative;
	float:left;
	background-image: url("../images/productContent_bg.jpg");
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.content_description{
	width:90%;
	height:auto;
	position:relative;
	padding:5%;
	box-sizing: border-box;
	margin: 0 auto;
}

.container_flickity {
	width: 100%;
	height: 100vh;
	position: relative;
	background-color: #fff;
}
/*.gallery-cell {
	width: 100%;
	height: 100%;
}
.gallery-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}*/
.gallery-cell {
	width: 100%;
	height: 100%;
	background: #000;
}
.gallery-cell img {
	/*width: 98%;*/
	height: 100%;
	object-fit: cover;
	margin: 0 auto;
	position: relative;
	display: block;
}

.gallery-cell div {
	width: 100%;
	height: auto;
	color: #333;
	text-align: center;
}	

#footer {
	width: 100%;
	height: auto;
	position: relative;
	background-color: #000;
	padding: 10vh 0;
	box-sizing: border-box;
	float: left;
	background-image: url("../images/footer_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position-y: 20%;	
}

.contact_con{
	width:100vw;
	height:auto;
	position:relative;
	float:left;
}
.contact_conA, .contact_conB{
	width:50%;
	height:auto;
	position:relative;
	float:left;
}
.contact_conA {padding: 2% 0 2% 2%;;box-sizing: border-box;}

.footerA {width:30%; height:auto; position:relative; float:left;}
	.footerA div:nth-child(1){ width:100%;}
	.footerA div:nth-child(1) img {width: 40%;margin: 0 auto;display: block;}
	.footerA div:nth-child(2) {width: 65%;color: #333;margin: 0 auto;text-align: center; margin-top:1%;}
	.footerA div:nth-child(3) {width: 60%;margin: 30px auto; grid-template-columns: auto auto auto auto; display: grid;}
	.footerA div:nth-child(3) img{width: 70%;}

.footerB {width:30%; height:auto; position:relative; float:left;}
	.footerB-title { width: fit-content; color:#ee4023;}
	.footerB-product{ width:100%; color:#333; grid-template-columns: auto; display: grid;}
	.footerB-cursor{ width: max-content; cursor:pointer;}
	/*.footerB div:nth-child(2){ width:100%; color:#999; }
	.footerB div:nth-child(2) li { margin:10px 0; }*/

.footerC {width:40%; height:auto; position:relative; float:left; padding-left: 5vw; box-sizing: border-box;}
	.footerC div:nth-child(1){width: fit-content; color:#ee4023;}
	.footerC div:nth-child(2){width:100%; color:#333; margin-top:10px;}
	.footerC div:nth-child(3){width:75%; color:#333; margin-top: 20px;}
    .footerC div:nth-child(3)::before {
        content: "";
        display: block;
        width: 40px;
        height: 80px;
        position: relative;
        float: left;
        background-image: url("../images/icon-01.png");
        background-size: 50%;
        background-repeat: no-repeat;
        filter: invert(40%) sepia(0%) saturate(0%) hue-rotate(137deg) brightness(97%) contrast(86%);
        padding: 2px 10px;
    }
	.footerC div:nth-child(4){width:100%; color:#333; margin-top:5px; position: relative; float:left;}
	.footerC div:nth-child(4)::before {
		content: "";
		display: block;
		width: 40px;
		height: 30px;
		position: relative;
		float: left;
		background-image: url("../images/icon-02.png");
		background-size: 50%;
		background-repeat: no-repeat;
		filter: invert(40%) sepia(0%) saturate(0%) hue-rotate(137deg) brightness(97%) contrast(86%);
		padding: 2px 10px;
}
	.footerC div:nth-child(5){width:100%; color:#333; margin-top:5px; position: relative; float:left;}
	.footerC div:nth-child(5)::before {
		content: "";
		display: block;
		width: 40px;
		height: 30px;
		position: relative;
		float: left;
		background-image: url("../images/icon-03.png");
		background-size: 50%;
		background-repeat: no-repeat;
		filter: invert(40%) sepia(0%) saturate(0%) hue-rotate(137deg) brightness(97%) contrast(86%);
		padding: 2px 10px; 
}

	.footerC div:nth-child(6){width:100%; color:#333; margin-top:5px; position: relative; float:left;}
	.footerC div:nth-child(6)::before {
		content: "";
		display: block;
		width: 40px;
		height: 30px;
		position: relative;
		float: left;
		background-image: url("../images/icon-03.png");
		background-size: 50%;
		background-repeat: no-repeat;
		filter: invert(40%) sepia(0%) saturate(0%) hue-rotate(137deg) brightness(97%) contrast(86%);
		padding: 2px 10px; 
}
@media screen and (max-width: 800px) { 

html, body {
	margin: 0;
	overflow-x: clip;
	scroll-behavior: smooth;
	background-color: #fdfdfd;
}

a, a:hover, a:visited, a:active {
	color: inherit;
	text-decoration: none ;
}
 
 button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
textarea:focus, input:focus{
    outline: none;
}
.color1{color: #ee4023;}
.color2{color: #263c81;}

.c {display: flex;justify-content: center;align-items: center;}

.desktop {visibility:hidden; display: none;}
.mobile {display: block !important;}	
	
.f1{font-family:poppinThin !important;}
.f2{font-family:poppinRegular !important;}
.f3{font-family:poppinBold !important;}	

.s0{font-size: calc(100vw - 86vw)!important;}
.s1{font-size: calc(100vw - 90vw) !important;}
.s1b{font-size: calc(100vw - 92vw) !important;}
.s2{font-size: calc(100vw - 93vw) !important;}
.s3{font-size: calc(100vw - 95vw) !important;}
.s4{font-size: calc(100vw - 96vw) !important;}
.s5{font-size:10px!important;}
	
.no-image{width:50% !important; }

.hamburger {
	background-color: #333;
	width: 10vw;
	color: #999;
	text-align: center;
	padding: 15px;
	box-sizing: content-box;
	position: fixed;
	z-index: 999;
}

.black {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.7);
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}
	
.overlay a {
	padding: 0;
	text-decoration: none;
	font-size: 36px;
	color: #818181;
	display: block;
	transition: 0.3s;
	margin-top: 20px;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
	position: absolute;
	top: 0;
	left: 100%;
	transform: translate(-150%,-5%);
}

.overlay-content,  .overlay-content-2{
  position: relative;
  top: 10%;
  width: 100%;
  height:100%;
  text-align: center;
  margin-top: 0;
}

.overlay-content-2{ text-align: left !important; padding: 30px 10px 0 30px; box-sizing: border-box;}

.collapsible {
	color: #818181;
	cursor: pointer;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	margin-top: 20px;
}

.collapse-content {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	color:#818181;
}
.collapse-content div{
	width:100%;
	height:auto;
	position:relative;
	float:left;
	color:#fff;
}


div#slider { width: 100%; height: 100%; float: right; overflow: hidden;}

div#slider figure {
	width: 300%;
	height: 100vh;	
	position: relative;
	margin: 0;
	left: 0;
	animation: 30s slidy infinite;
}

div#slider figure img {
	width: calc(100vw - 0vw);
	height: 100%;	
	float: left;
	object-fit: cover;
	object-position: center bottom;
}

@keyframes slidy {
0% { left: 0%; }
35% { left: 0%; }
40% { left: -100%; }
70% { left: -100%; }
75% { left: -200%; }
95% { left: -200%; }
100% { left: 0%;}
}

.nav_header{width:100vw; height:15vh; position:absolute; z-index: 800;}
.headerA{width:50%;height: auto;position:relative;float:left; z-index: 20;}
.headerA img {width: 45%; padding: 2% 8%; box-sizing: content-box;}
.headerB{width:50%;height: auto;position:relative;float:left; z-index: 20;}

.dark-overlay{
	width:100%;
	height:15vh;
	position:absolute;
	z-index: 10;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(360deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	background: -webkit-linear-gradient(360deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	background: linear-gradient(360deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1); 
}

#navbar {
	background: rgba(255, 255, 255, 1);
	position: fixed;
	top: -500px;
	width: 100%;
	height: 10vh;
	display: block;
	transition: top 0.3s;
	z-index: 1000;
	box-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
#navbar div:nth-child(1){width: calc(100vw - 50vw); height:100%; position:relative; float:left; display: flex; justify-content: center; align-items: center;}
#navbar div:nth-child(1) img { width: 40%; padding: 1% 0 1% 5%; box-sizing: border-box; /* margin: 5%; */ /* margin: 1% 0 0 5%; */ }

.header_btn {
	width: max-content;
	height: auto;
	position: relative;
	float: left;
	margin: 5% 2% !important;
	text-align: center;
	transition: all ease 500ms;
	cursor: pointer;
	color: #f4f4f4 !important;
}
.header_btn:hover {
	color:#ee4023 !important;
}

.nav_btn {
	width: max-content;
	height: auto;
	position: relative;
	float: left;
	margin: 1% 1% !important;
	text-align: center;
	color: #0094D6;
	transition: all ease 500ms;
	cursor:pointer;	
}
.nav_btn:hover{
	color:#F12C30;
}

.dropbtn {
	background-color: transparent;
	color: #f4f4f4;
	border: none;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color:  #f4f4f4;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);transform: translateY(0);
  z-index: 1; 
}
.dropdown-content a {
	color: #333 !important;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	width: 150px;	
}
.dropdown:hover .dropdown-content {
display: block; transition: all .5s ease;
}
.dropdown-content a:hover {
background-color: #ee4023; color:#f4f4f4 !important;; transition: all 500ms ease-out;
}
.dropdown:hover .dropbtn {
background-color: transparent; 
}


.index_con1 {
	width: 100vw;
	height: 100vh;
	position: relative;
	float: left;	
	z-index: -1;
	clip-path: unset;
	/*clip-path: ellipse(55% 85% at 50% 35%);*/
}


/*.index-1 {
	width: calc(100vw - 35vw);
	height: calc(100vh - 10vh);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-65%, -50%);
	z-index: 100;
	background-image: url("../images/index_1-01.png");
	background-size: contain;
	background-repeat: no-repeat;
	animation: index1 2s;
	animation-fill-mode:both;
}*/

.index-1 {
	width: calc(100vw - 10vw);
	height: auto;
	position: absolute;
	top: unset;
	left: 50%;
	transform: translate(-50%, calc(100vh - 80vh));
	z-index: 100;
	animation: index1 2s;
	animation-fill-mode: both;
	bottom: 50%;
}
@keyframes index1{
	from {left:-20%; opacity:0;}
	to {left:50%; opacity:1;}
}
.index-1 img {
	width: calc(100vw - 20vw);
	height: 100%;
	position: relative;
	z-index: 10;
	object-fit: contain;
	margin: 0 auto;
	display: block;
}

.quote-btn, .inquiry-btn {
	width: max-content;
	height: 10vh;
	position: absolute;
	background: #ee4023;
	color: #f4f4f4;
	padding: 5px 10px;
	box-sizing: border-box;
	left: 50%;
	z-index: 100;
	transition: 1s ease all;
	transform: translate(-50%, calc(100vh - 75vh));
	top: 50%;
	bottom: unset;
}

.quote-btn:hover, .inquiry-btn:hover{
	background:#263c81;
}

.inquiry-btn {
	margin: 20% auto 10% auto;
	position: relative;
	left: 50%;
	transform: translate(-50%);
	border-radius: 20px;
	padding: 5px 50px;
	height: auto;
}

.index_con3 {
	width: 100%;
	height: auto;
	position: relative;
	background: #f00;
	z-index: 30;
	margin-top: unset;
	/* padding: 10vh 25%; */
	box-sizing: border-box;
	background-image: url("../images/index_bg3.jpg");
	background-size: cover;
	background-attachment: fixed;
	float: left;
	padding: 10% 5%;
}
.index_con3-text {
	width: 90%;
	height: auto;
	position: relative;
	text-align: left;
	color: #333;
	left: unset;
	top: unset;
	transform: unset;
	margin: 0 auto;
}
.index_con2 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	background: #151515;
	z-index: 10;
	float: left;
	margin-top: unset;
	padding: 5% 5%;
	box-sizing: border-box;
	background-image: url("../images/index_bg2.jpg");
	background-size: cover;
	background-position: center;
}

.index_con2-box {
	width: 100%;
	height: auto;
	position: relative;
	left: unset;
	top: unset;
	transform: unset;
	float: left;
}

.index_con2-title {
	width: 100%;
	height: auto;
	position: relative;
	color: #999;
	text-align: left;
	padding-top: 10vh;
	box-sizing: border-box;
	margin-bottom: 10%;
}

.input-con{
	width:100%;
	height:auto;
	position:relative;
	float:left;
	padding:0 1%;
	box-sizing: border-box;
}

.input-con2 {
	width: 100%;
	height: 15vh;
	position: relative;
	float: left;
	padding: 0 1%;
	box-sizing: border-box;
}

.input-quotation-label{width:100; height:auto; position:relative; color:#f4f4f4;}
.input-quotation {
	width: 100%;
	height: auto;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: unset;
	border: none;
	margin-bottom:10px;
}
.input-select {
	width: 100%;
	height: auto;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: unset;
	border: none;
	margin-bottom:10px;
	background:#fff;
}

.input-textarea {
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  box-sizing: border-box;
  border-radius: unset;
  background-color: #fff;
  font-size: 16px;
  resize: none;
  border:none;
}

.profile_con1, .service_con1, .product_con1, .contact_con1 {
	width: 100vw;
	height: 30vh;
	position: relative;
	float: left;
	background-size: cover;
	background-position: center 65%;
	clip-path: polygon(0% 0%, 100% 0%, 91.5% 100%, 4.2% 88.3%);
}
.profile_con1 { background-image: url("../images/profile_1.jpg"); background-position: center 73%; background-size: 140%;}
.service_con1 {	background-image: url("../images/service_1.jpg"); background-position: center 45%;}
.product_con1 {	background-image: url("../images/product_1.jpg"); background-position: center 45%;}
.contact_con1 {	background-image: url("../images/contact_1.jpg"); background-position: center 45%;}

.contact_con2 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	text-align: center;
	color: #333;
	line-height: normal;
	padding: 5%;
	box-sizing: border-box;
}

.profile_con2 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	text-align: center;
	color: #333;
	line-height: 100%;
	padding: 5%;
	box-sizing: border-box;
}

.profile_con3 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	color: #333;
	padding: 1% 5%;
	box-sizing: border-box;
}
.profile_con3 div:nth-child(1){ width:100%; height:100%; position:relative; float:left; }
.profile_con3 div:nth-child(1) img{ width:100%;}
.profile_con3 div:nth-child(2){ width:100%; height:auto; position:relative; float:left; padding:0 5%; box-sizing:border-box;} 

.profile_con4 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	padding: 1% 8%;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: auto;
	/* display: flex; */
	gap: 5%;
	overflow: hidden;
}
.profile_con4-box {
	width: 100%;
	height: 46vh;
	position: relative;
	float: left;
	border: 2px solid #999;
	border-radius: 20px;
	margin-top: 50%;
}
.profile_con4-box div:nth-child(1) {
	width: 150px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
}
.profile_con4-box div:nth-child(1) img{
	width:100%;
	margin:0 auto;
	display:block;
	border:2px solid #999;
	background:#fff;
	border-radius:50%;
	padding:10%;
	box-sizing:border-box;
}
.profile_con4-box div:nth-child(1) span {
	width: max-content;
	height: auto;
	position: relative;
	display: block;
	margin: 0 auto;
}

.profile_con4-box div:nth-child(2) {
	width: 90%;
	position: relative;
	text-align: left;
	margin: 20vh auto;
}

.service_con2 {
	width: 90%;
	height: auto;
	position: relative;
	margin: 0 auto;
	color: #666;
	text-align: left;
}
.service_con3 {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	padding: 1% 5%;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: auto;
	overflow: hidden;
}
.service_3-box {
	width: 100%;
	height: auto;
	position: relative;
	float: left;
	border: 1px solid #cacaca;
	padding: 5%;
	box-sizing: border-box;
	margin: 10% 0;
}
.service_3-box img {
	width:100%;
	height:30vh;
	object-fit: cover;
	padding:2%;
	box-sizing:border-box;
}
.service_3-box-title{width:100%;height:auto; position:relative; color: #ee4023;}
.service_3-box-content{width:100%;height:auto; position:relative; color: #333;}

.product_con {
	width: 100vw;
	height: auto;
	position: relative;
	float: left;
	display: grid;
	grid-template-columns: auto auto;
	place-items: center;
	padding: 0 5%;
	box-sizing: border-box;
}

.product_con2 {
	width: 90%;
	height: auto;
	position: relative;
	float: left;
	text-align: center;
	color: #333;
	line-height: normal;
	left: 50%;
	transform: translate(-50%);
}

.product_box {
	width: 90%;
	height: 30vh;
	position: relative;
	float: left;
	border: 1px solid #666;
	padding: 2%;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	margin: 5% 0;
}
.product_box img {
	width: 100%;
	height: 15vh;
	object-fit: cover;
	transition: 100ms ease-in;
}
.product_box span {
	width:max-content;
}
.product_box img:hover{
	filter:brightness(130%);
}

/*.product_description {
	width: 85%;
	height: auto;
	position: absolute;
	background: rgba(0,0,0,0.5);
	color: #f4f4f4;
	padding: 10px 20px;
	box-sizing: border-box;
	z-index: 10;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0%);
}*/
.product_description {
	width: 100%;
	height: auto;
	position: relative;
	background: rgba(0,0,0,0.8);
	color: #f4f4f4;
	padding: 20px 20px;
	box-sizing: border-box;
	z-index: 10;
	left: unset;
	top: unset;
	transform: unset;
	float: left;
}
.product_description span{color:#ee4023;}

.container_flickity {
	width: 100%;
	height: 80vh;
	position: relative;
	background-color: #fff;
}
/*.gallery-cell {
	width: 100%;
	height: 100%;
}
.gallery-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}*/
.gallery-cell {
	width: 100%;
	height: 100%;
	background: #000;
}
.gallery-cell img {
	width: 95%;
	height: 80vh;
	object-fit: cover;
	margin: 0 auto;
	position: relative;
	display: block;
}

.gallery-cell div {
	width: 100%;
	height: auto;
	color: #333;
	text-align: center;
}	

#footer {
	width: 100vw;
	height: auto;
	position: relative;
	float: left;
	background-color: #1D1D1D;
	padding: 5%;
	box-sizing: border-box;
	margin-top: 0 !important;
	
}

.contact_con{
	width:100vw;
	height:auto;
	position:relative;
	float:left;
}
.contact_conA, .contact_conB{
	width:100%;
	height:auto;
	position:relative;
	float:left;
}
.contact_conA {height:50vh;padding: 5%;box-sizing: border-box;}

.footerA {width:100%; height:auto; position:relative; float:left; padding:10% 0; box-sizing:border-box;}
	.footerA div:nth-child(1){ width:100%;}
	.footerA div:nth-child(1) img { width: 75%; margin: 0 auto; display: block; }
	.footerA div:nth-child(2) {width: 100%;color: #666;margin: 0 auto;text-align: center; margin-top:3vh;}
	.footerA div:nth-child(3) {width: 90%;color: #666;margin: 30px auto;text-align: center;}

.footerB {width:100%; height:auto; position:relative; float:left; margin: 10% 0;}
    .footerB-title { width: fit-content; color: #ee4023; margin: unset; letter-spacing: unset; border-bottom: 1px solid #ee4023; }	
    .footerB-product{ width:100%; color: #333; grid-template-columns: auto; display: grid; gap: 10px 10px;}
	.footerB-product li { margin:8px 0; transition:all ease .3s;}
	.footerB-product li:hover { color:#999;}

.footerC {width:100%; height:auto; position:relative; float:left; padding: 0 5% 0 0; box-sizing: border-box;}
	.footerC div:nth-child(1) { width: fit-content; color: #ee4023; letter-spacing: unset; border-bottom: 1px solid #ee4023; margin: unset; }
	.footerC div:nth-child(3) { width: 100%; height: auto; position: relative; float: left; }
    .footerC div:nth-child(3) img { width: 160%; height: 300px; object-fit: cover; object-position: -20px 30px; position: relative; top: 0; cursor: pointer; opacity: .5; transition: all ease .5s; }
    .footerC div:nth-child(3) img:hover{opacity:1;}

.footer_list_style { padding: 0 30px; display: block; grid-template-columns: unset; list-style: none; text-align: center; }
	
.whatsapp {
	width: 20vw;
	height: auto;
	position: fixed;
	z-index: 800;
	bottom: 3%;
	right: 5%;
}
.whatsapp img {width:100%;}	

}