@charset "UTF-8";
/*  變數======================================================*/
/*標準色*/
/*字大小 大標內文*/
/*  mix========================*/
/* 基本Basic ==========================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");

* {
	font-family: "微軟正黑體", "Noto Sans TC", sans-serif;
	margin: 0px;
	padding: 0px;
	border: 0;
}

html,
body {
	width: 100vw;
	max-width: 100vw;
	/* max-height: 100vh; */
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow: hidden auto;
}

body {
	background: white;
	position: relative;
}

img {
	display: block;
	border: 0;
}

.img-fluid {
	width: 100%;
	height: auto;
}

.d-1200-none {
	display: block !important;
}

@media (max-width: 1200px) {
	.d-1200-none {
		display: none !important;
	}
}

.d-1200-block {
	display: none !important;
}

@media (max-width: 1200px) {
	.d-1200-block {
		display: block !important;
	}
}

.d-992-none {
	display: block !important;
}

@media (max-width: 992px) {
	.d-992-none {
		display: none !important;
	}
}

.d-992-block {
	display: none !important;
}

@media (max-width: 992px) {
	.d-992-block {
		display: block !important;
	}
}

.d-768-none {
	display: block !important;
}

@media (max-width: 767.98px) {
	.d-768-none {
		display: none !important;
	}
}

.d-768-block {
	display: none !important;
}

@media (max-width: 767.98px) {
	.d-768-block {
		display: block !important;
	}
}

.d-mac {
	display: block !important;
}

@media (max-width: 1200px) {
	.d-mac {
		display: none !important;
	}
}

.d-phone {
	display: none !important;
}

@media (max-width: 1200px) {
	.d-phone {
		display: block !important;
	}
}

/*字反白*/
::-moz-selection {
	background: #1684CE;
	color: #FFF;
}

::selection {
	background: #1684CE;
	color: #FFF;
}

::-moz-selection {
	background: #1684CE;
	color: #FFF;
}

/*連結不要有顏色*/
a {
	color: #ffffff;
	text-decoration: none;
}

/* 每單元基本設定 ===================================================*/
.container {
	width: 65%;
	margin: 50px auto;
	overflow: hidden;
}

@media screen and (max-width: 1920px) {
	.container {
		width: 65%;
	}
}

@media screen and (max-width: 1680px) {
	.container {
		width: 75%;
	}
}

@media screen and (max-width: 1360px) {
	.container {
		width: 80%;
	}
}

@media screen and (max-width: 767.98px) {
	.container {
		width: calc(74% - 4px);
		margin: 0px auto 50px;
		padding: 0 2px;
	}
}

/*單元大標==========================================================*/
.unit-title {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.unit-title {
		margin-top: 25px;
	}
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.unit-title {
		margin-top: 50px;
	}
}

.unit-title .line-before {
	width: 38%;
	height: 1px;
	background: #00418E;
	margin-top: 15px;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.unit-title .line-before {
		width: 25%;
	}
}

.unit-title .title-word {
	width: 24%;
	text-align: center;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.unit-title .title-word {
		width: 50%;
	}
}

.unit-title .title-word small {
	font-size: 22px;
	letter-spacing: 2px;
	margin-bottom: 20px;
	color: #686768;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.unit-title .title-word small {
		font-size: 14px;
		margin-bottom: 15px;
	}
}

.unit-title .title-word h3 {
	font-size: 42px;
	letter-spacing: 2px;
	margin-bottom: 15px;
	color: #00418E;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.unit-title .title-word h3 {
		font-size: 28px;
		margin-bottom: 10px;
	}
}

.unit-title .line-after {
	width: 38%;
	height: 1px;
	background: #00418E;
	margin-top: 15px;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.unit-title .line-after {
		width: 25%;
	}
}

/*nav==========================================================*/
nav {
	background: white;
	display: flex;
	justify-content: space-between;
	padding: 0 6%;
}

@media screen and (max-width: 1024px) {
	nav {
		display: block;
	}
}

nav .logo {
	margin: 35px 0 25px;
}

@media screen and (max-width: 1024px) {
	nav .logo {
		margin: 0;
		padding: 20px 0 15px;
	}
}

nav .logo img {
	width: 250px;
}

@media screen and (max-width: 1024px) {
	nav .logo img {
		width: 35%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 767.98px) {
	nav .logo img {
		width: 45%;
	}
}

nav .navbar-toggler-bt {
	display: none;
}

@media screen and (max-width: 1024px) {
	nav .navbar-toggler-bt {
		display: block;
		cursor: pointer;
		position: absolute;
		right: 20px;
		top: 20px;
		border: 1px solid #4b4b4b;
		border-radius: 3px;
		width: 35px;
		height: 30px;
		padding: 0 5px;
	}

	nav .navbar-toggler-bt span {
		background: #000;
		display: block;
		height: 2px;
		margin: 5px 0;
		width: 25px;
	}
}

nav ul {
	font-size: 0px;
	margin-top: 45px;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	nav ul {
		display: none;
		background: #d2d2d2;
		margin-top: 0px;
	}
}

nav ul a {
	color: #686768;
}

@media screen and (max-width: 1024px) {
	nav ul a {
		color: #000;
	}
}

nav ul a:hover {
	color: #00418E;
}

nav ul a.active {
	color: #00418E;
}

@media screen and (max-width: 1024px) {
	nav ul a:hover {
		color: #00418E;
	}
}

nav ul li {
	display: inline-block;
	font-size: 20px;
	letter-spacing: 2px;
	text-align: center;
	padding: 0 12px;
	transition-duration: 0.5s;
}


@media screen and (max-width: 1024px) {
	nav ul li {
		display: block;
		font-size: 14px;
		border-bottom: 1px solid #e9e9e9;
		padding: 10px 0;
	}
}

/*index==========================================================*/
.company-philosophy {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.company-philosophy {
		display: block;
	}
}

.company-philosophy .left-people {
	position: relative;
	width: 35%;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.company-philosophy .left-people {
		width: 80%;
		margin: 15% auto -5%;
	}
}

.company-philosophy .left-people .circle-back {
	width: 100%;
}

.company-philosophy .left-people .circle-people {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	z-index: 100;
}

.company-philosophy .right-word {
	width: 50%;
	margin-left: 10%;
	color: black;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.company-philosophy .right-word {
		width: 80%;
		margin: 100px auto 0px auto;
	}
}

.company-philosophy .right-word small {
	font-size: 22px;
	letter-spacing: 2px;
	margin-bottom: 20px;
	color: #686768;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.company-philosophy .right-word small {
		font-size: 14px;
		margin-bottom: 15px;
	}
}

.company-philosophy .right-word h3 {
	color: #00418E;
	font-size: 45px;
	letter-spacing: 2px;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.company-philosophy .right-word h3 {
		font-size: 28px;
		margin-bottom: 10px;
	}
}

.company-philosophy .right-word p {
	font-size: 18px;
	letter-spacing: 3px;
	line-height: 40px;
	text-align: justify;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.company-philosophy .right-word p {
		font-size: 14px;
		letter-spacing: 2px;
		line-height: 26px;
	}
}

.three-idea {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.three-idea {
		display: block;
	}
}

.three-idea .idea {
	width: 22%;
	min-height: 470px;
	text-align: center;
	color: #fff;
	background: #00418E;
	border: 1px solid #fff;
	box-shadow: 0px 0px 5px #ffffff;
	border-radius: 50px;
	padding: 2% 4%;
	margin: 8% 0;
}

.three-idea .idea h4{
	transition: 0.3s;
}

.three-idea .idea:hover h4{
	font-size: 30px;
	text-shadow: #00B9FF 1px 0 10px;
}

.three-idea .idea img{
	transition: 0.3s;
}

.three-idea .idea:hover img{
	width: 50%;
	filter: drop-shadow(0px 0px 5px #00B9FF);
}

.three-idea .idea p{
	transition: 0.3s;
}

.three-idea .idea:hover p{
	font-size: 20px;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.three-idea .idea {
		width: 27%;
		padding: 2% 2%;
	}
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.three-idea .idea {
		width: 60%;
		min-height: auto;
		padding: 0% 10% 10%;
		margin: 8% auto;
		border-radius: 30px;
	}
}

.three-idea .idea h4 {
	font-size: 24px;
	letter-spacing: 2px;
	margin-top: 8%;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.three-idea .idea h4 {
		font-size: 22px;
		margin-top: 10%;
	}
}

.three-idea .idea img {
	width: 30%;
	margin: 20% auto 15%;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.three-idea .idea img {
		width: 25%;
		margin: 5% auto 5%;
	}
}

.three-idea .idea p {
	font-size: 15px;
	letter-spacing: 2px;
	line-height: 30px;
	text-align: justify;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.three-idea .idea p {
		font-size: 14px;
		letter-spacing: 1.5px;
		line-height: 26px;
	}
}

.actual-Case {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-top: 50px;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.actual-Case {
		margin-top: 10px;
	}
}

.actual-Case .case {
	position: relative;
	width: 30%;
	margin: 20px 0;
	overflow: hidden;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.actual-Case .case {
		width: 45%;
	}
}

.actual-Case .case img {
	width: 100%;
	transition: 0.3s;
}

.actual-Case .case .case-back {
	transition-duration: 0.5s;
}

.actual-Case .case .case-back:hover {
	transform: scale(1.3);
}

.actual-Case .case .bluearea {
	position: absolute;
	bottom: 0;
	left: 0;
	transition-duration: 0.5s;
}

.actual-Case .case .bluearea {
    height: 0px;
	width: calc(100% - 30px);
	background: #686768;
	padding: 20px 15px;
	transition: 0.3s;
	opacity: 0;
}

.actual-Case .case:hover .bluearea {
	height: 100px;
	opacity: 1;
}

.actual-Case .case:hover img{
	scale: 1.25;
}

.blueareatext{
	font-size: 20px;
	color: white;
}

.blueareatitlediv{
	width: 100%;
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.blueareatitle{
	font-size: 30px;
	color: white;
}

.blueareatitleline{
	width: 35%;
	border-bottom: 1px white solid;
}

.blueareatitleno{
	font-size: 40px;
	color: white;
}

.more-case-bt {
	text-align: center;
	margin: 50px auto 50px;
}

.more-case-bt a {
	border: 1px #686768 solid;
	color: #686768;
	font-size: 22px;
	padding: 10px 20px;
	transition-duration: 0.3s;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.more-case-bt a {
		font-size: 16px;
	}
}

.more-case-bt a:hover {
	/* box-shadow: 0px 0px 15px #1684CE; */
	padding: 5px 35px;
}

.four-service-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.four-service-items {
		margin-top: 10px;
	}
}

.four-service-items .service-items {
	width: 23%;
	background: #00418E;
	margin: 20px 0;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.four-service-items .service-items {
		width: 45%;
	}
}

.four-service-items .service-items img {
	width: 100%;
	height: calc(100% - 60px);
}

.service-items-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 120px 0 120px;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.service-items-inner {
		margin: 40px 0 120px;
	}
}

.service-items-inner .service-BTlist {
	width: 16%;
	list-style: none;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.service-items-inner .service-BTlist {
		width: 100%;
		margin-bottom: 30px;
	}
}

.service-items-inner .service-BTlist li {
	font-size: 20px;
	color: #686768;
	padding: 15px 0;
	border-bottom: 1px solid #686768;
}

.service-items-inner .service-BTlist li a{
	color: #686768;
}

.service-items-inner .service-BTlist li a:hover{
	color: #00B9FF;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.service-items-inner .service-BTlist li {
		font-size: 16px;
		padding: 10px 0;
	}
}

.casemaindiv{
	position: relative;
	margin-top: 50px;
}

.container{
	overflow: visible;
}

#maintitle{
	position: absolute;
	top: -50px;
	left: -70px;
	width: 190px;
	background: #0A529A;
	color: white;
	font-size: 25px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 999;
}

.bold{
	font-weight: bold;
}

@media screen and (orientation: portrait) and (max-width: 800px) {
	#maintitle {
		position: initial;
		width: calc(100% - 20px);
		background: #0A529A;
		color: white;
		font-size: 25px;
		padding: 10px;
		margin: 10px 0px;
		display: flex;
		align-items: center;
		justify-content: space-around;
	}

	.container{
		width: 90%;
	}
}

.service-items-inner .service-BTlist li a.active {
	color: #00418E;
	font-weight: bold;
}

.service-items-inner .service-content {
	width: 75%;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.service-items-inner .service-content {
		width: 100%;
	}
}

.service-items-inner .service-content small {
	font-size: 20px;
	letter-spacing: 2px;
	color: #1684CE;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.service-items-inner .service-content small {
		font-size: 14px;
	}
}

.service-items-inner .service-content .title h3 {
	font-size: 35px;
	letter-spacing: 4px;
	color: #00418E;
	display: inline;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.service-items-inner .service-content .title h3 {
		font-size: 28px;
		background: rgba(19, 74, 152, 0);
	}
}

.service-items-inner .service-content .title hr {
	width: 100%;
	border: 1px solid #fff;
	margin-top: -12px;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.service-items-inner .service-content .title hr {
		border: 0px solid #fff;
	}
}

.service-items-inner .service-content .service-content-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
}

.service-items-inner .service-content .service-content-inner p {
	width: 55%;
	font-size: 16px;
	line-height: 30px;
	text-align: justify;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.service-items-inner .service-content .service-content-inner p {
		width: 100%;
	}
}

.service-items-inner .service-content .service-content-inner img {
	width: 40%;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.service-items-inner .service-content .service-content-inner img {
		width: 100%;
	}
}

.service-items-inner .tab-pane {
	display: none;
}

.service-items-inner .tab-pane.active {
	display: block;
}

.flex-area {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.flex-area {
		flex-direction: row-reverse;
	}
}

.flex-area .left-area {
	width: 50%;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.flex-area .left-area {
		width: 100%;
		order: 2;
	}
}

.flex-area .left-area form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 60px;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.flex-area .left-area form {
		margin-top: 30px;
	}
}

.flex-area .left-area form input,
.flex-area .left-area form textarea {
	width: 100%;
	margin: 15px 0;
	padding: 16px 15px;
	border: 1px solid #c2c2c2;
	font-size: 16px;
	letter-spacing: 1px;
	border-radius: 10px;
}

@media (max-width: 1024px) {

	.flex-area .left-area form input,
	.flex-area .left-area form textarea {
		margin: 15px 0;
		padding: 10px 12px;
	}
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {

	.flex-area .left-area form input,
	.flex-area .left-area form textarea {
		margin: 10px 0;
		padding: 10px 12px;
		font-size: 14px;
	}
}

.flex-area .left-area form input::-moz-placeholder,
.flex-area .left-area form textarea::-moz-placeholder {
	color: #5D5D5D;
}

.flex-area .left-area form input::placeholder,
.flex-area .left-area form textarea::placeholder {
	color: #5D5D5D;
}

.flex-area .left-area form input:focus,
.flex-area .left-area form textarea:focus {
	border: 1px solid #000;
}

.flex-area .left-area form button {
	width: 100px;
	height: 40px;
	border-radius: 10px;
	margin: 5px 0 0;
	background: #B7B7B7;
	color: white;
	font-size: 20px;
	letter-spacing: 2px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.5s;
}

.flex-area .left-area form button:hover {
	background: #00418E;
	color: #fff;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.flex-area .left-area form button {
		width: 100%;
		margin-top: 20px;
		margin-bottom: 50px;
		font-size: 16px;
	}
}

.flex-area .right-area {
	width: 45%;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.flex-area .right-area {
		width: 100%;
		order: 1;
	}
}

.flex-area .right-area .aboutUS-map {
	width: 100%;
	height: 250px;
	background: #fff;
	border-radius: 10px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-area .right-area .aboutUS-map iframe {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.flex-area .right-area .aboutUS-info {
	margin-top: 35px;
	background: #fff;
	border-radius: 10px;
	padding: 20px 25px;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.flex-area .right-area .aboutUS-info {
		padding: 20px 15px;
	}
}

.flex-area .right-area .aboutUS-info h3 {
	font-size: 28px;
	letter-spacing: 2px;
	margin-bottom: 15px;
	color: #00418E;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
	.flex-area .right-area .aboutUS-info h3 {
		font-size: 24px;
		margin-bottom: 10px;
	}
}

.flex-area .right-area .aboutUS-info p {
	font-size: 18px;
	letter-spacing: 3px;
	line-height: 40px;
	color: #5D5D5D;
}

@media (max-width: 1024px) {
	.flex-area .right-area .aboutUS-info p {
		font-size: 14px;
		letter-spacing: 2px;
		line-height: 26px;
	}
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.flex-area .right-area .aboutUS-info p {
		font-size: 13px;
		letter-spacing: 0px;
		line-height: 40px;
	}
}

.flex-area .right-area .aboutUS-info p span {
	display: flex;
}

.flex-area .right-area .aboutUS-info p img {
	width: 25px;
	margin-right: 5px;
}

.fix-line-people {
	position: fixed;
	right: -2%;
	bottom: 10%;
	z-index: 100;
	width: 10%;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	.fix-line-people {
		width: 25%;
	}
}

.fix-line-people img {
	width: 100%;
	transition: 0.3s;
}

.fix-line-people:has(.line-people-hover:hover)>img:first-child{
	opacity: 0;
}

.fix-line-people .line-people-hover {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	opacity: 0;
	transition: 0.3s;
}

.fix-line-people .line-people-hover:hover {
	opacity: 1;
}

/* plugins swiper 修改================*/
* * *

/* plugins swiper 修改================*/
.swiper-button-prev {
	width: 100px;
	height: 100px;
}

.swiper-button-next {
	width: 100px;
	height: 100px;
}

.swiper-button-next:after {
	content: "";
}

.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
	content: "";
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url(../images/pre.svg);
	left: 0px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url(../images/next.svg);
	right: 0px;
}

.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	background: #ac9257;
	opacity: 0.4;
}

:root {
	--swiper-theme-color: #fff;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0px;
}

.swiper-pagination-bullet-active {
	opacity: 1;
}

@media screen and (max-width: 767px) {

	.swiper-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-bullets.swiper-pagination-horizontal,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: 30px;
	}

	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}

	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		background-image: url(../images/pre.svg);
	}

	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		background-image: url(../images/next.svg);
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 50px;
		height: 50px;
	}
}

/* 動畫 ==========================================================*/
.light-rotate-animate {
	animation: light-rotate 5s infinite ease;
	animation-fill-mode: forwards;
	transform-origin: center;
}

@keyframes light-rotate {
	0% {
		transform: scale(0.5) rotate(0deg);
		opacity: 0.35;
	}

	50% {
		transform: scale(1.5) rotate(360deg);
		opacity: 1;
	}

	100% {
		transform: scale(0.5) rotate(0deg);
		opacity: 0.35;
	}
}

.circle-back {
	animation: circle 2s infinite ease;
	animation-fill-mode: forwards;
	transform-origin: center;
}

@keyframes circle {
	0% {
		transform: scale(0.8);
		filter: blur(0px);
		opacity: 0.6;
	}

	50% {
		transform: scale(1);
		filter: blur(8px);
		opacity: 1;
	}

	100% {
		transform: scale(0.8);
		filter: blur(0px);
		opacity: 0.6;
	}
}

[data-aos=clip] {
	opacity: 0;
	-webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
	clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
}

[data-aos=clip].aos-animate {
	opacity: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

[data-aos=clip-topdown] {
	opacity: 0;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

[data-aos=clip-topdown].aos-animate {
	opacity: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

[data-aos=clip-left] {
	opacity: 0;
	-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

[data-aos=clip-left].aos-animate {
	opacity: 1;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

[data-aos=clip-right] {
	opacity: 0;
	-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

[data-aos=clip-right].aos-animate {
	opacity: 1;
	-webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
	clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

/*FOOTER==========================================================*/
footer {
	overflow: hidden;
	background: #00418E;
	color: #fff;
	line-height: 30px;
	padding: 25px 3% 30px;
	margin-top: 100px;
}

@media (max-width: 767.98px) {
	footer {
		padding: 15% 0% 3%;
	}
}

footer .container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
}

footer .container .unit-bt {
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 45px;
	font-weight: 600;
	color: #fff;
	transition-duration: 0.5s;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	footer .container .unit-bt {
		font-size: 18px;
	}
}

@media screen and (orientation: portrait) and (max-width: 400px) {
	footer .container .unit-bt {
		font-size: 16px;
		line-height: 40px;
	}
}

footer .container .unit-bt:hover {
	font-size: 20px;
	filter: drop-shadow(0px 0px 6px #1684CE);
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	footer .container .unit-bt:hover {
		font-size: 18px;
	}
}
footer .container .footer-logo {
	width: 23%;
	margin-top: 15px;
}

@media (max-width: 1200px) {
	footer .container .footer-logo {
		width: 30%;
	}
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	footer .container .footer-logo {
		width: 65%;
		margin-bottom: 6%;
	}
}

footer .container .footer-logo img {
	width: 100%;
}

footer .container .footer-contact p {
	font-size: 16px;
}

@media (max-width: 1200px) {
	footer .container .footer-contact p {
		font-size: 14px;
		line-height: 32px;
		letter-spacing: 1px;
	}
}

@media (max-width: 400px) {
	footer .container .footer-contact p {
		font-size: 13px;
	}
}

footer .container .footer-FB {
	margin: 10px 0;
}

@media (max-width: 1200px) {
	footer .container .footer-FB {
		margin: 20px 0;
	}
}

footer .container .footer-FB a {
	font-size: 20px;
	font-weight: 800;
	border: 1px solid #fff;
	padding: 5px 10px;
	transition-duration: 0.5s;
}

@media screen and (orientation: portrait) and (max-width: 767.98px) {
	footer .container .footer-FB a {
		font-size: 18px;
	}
}

@media screen and (orientation: portrait) and (max-width: 420px) {
	footer .container .footer-FB a {
		font-size: 16px;
	}
}

footer .container .footer-FB a:hover {
	background: #fff;
	color: #00418E !important;
}

footer p.copy-right {
	font-size: 15px;
	text-align: center;
	font-weight: bold;
}

@media (max-width: 1200px) {
	footer p.copy-right {
		font-size: 14px;
		margin: 20px 0 10px;
	}
}

/*# sourceMappingURL=main.css.map */

.casemain{
	width: calc(100% - 40px);
	background: whitesmoke;
	border-radius: 10px;
	font-size: 20px;
	padding: 20px;
}

.casemain>table{
	width: 100%;
	border-collapse: collapse;
}

.casemain>table th,.casemain>table td{
	border: 1px black solid;
	padding: 5px;
}

.width-25per{
	width: 25%;
}

.width-75per{
	width: 75%;
}

.textsecondary{
	color: #686768 !important;
}

.companyphilosophysubtitle{
	color: #00418E;
	font-size: 25px;
	margin: 15px 0px;
}

.talentrecruitmentwelfare{
	border-left: 10px solid #00418E;
	color: #00418E;
	font-size: 30px;
	padding: 0px 0px 0px 30px;
	margin: 35px 20px 35px 0px;
}

.talentrecruitmentwelfareul{
	padding: 0px 10px 0px 0px;
}

.talentrecruitmentwelfareul > div{
	font-size: 20px;
	display: flex;
	align-items: center;
	padding: 0px 0px 0px 30px;
	margin: 20px 0px;
}

.talentrecruitmentwelfartext{
	font-size: 20px;
	width: calc(100% - 40px);
	padding: 0px 0px 0px 5px;
}

.talentrecruitmentwelfarecircle{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #00418E;
	display: inline-block;
	margin: 0px 10px 0px 0px;
}

.image{
	max-width: 100%;
	max-height: 100%;
}

.serviceitemtitle{
	position: absolute;
	top: 0px;
	width: 100%;
	height: 30px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: white;
	margin: 15px 0px;
	transition: 0.3s linear;
	z-index: 300;
}

.four-service-items .service-items img{
	position: absolute;
	top: 60px;
	height: 250px;
	transition: 0.3s linear;
	z-index: 200;
}

.service-items{
	position: relative;
	height: 310px;
	transition: 0.3s linear;
}

.service-items:hover .serviceitemtitle{
	position: absolute;
	top: 90px;
}

.service-items:hover img{
	top: 0px;
	filter: brightness(50%);
}

.serviceitemlink{
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%,-0%);
	background: white;
	color: #686768;
	text-align: center;
	width: 100px;
	font-size: 20px;
	padding: 5px 15px;
	border-radius: 20px;
	margin: 15px auto;
	display: block;
	z-index: 100;
}

.joinus{
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
}

.joinustitle{
	width: 100%;
	text-align: center;
	font-size: 25px;
	color: #00418E;
	margin: 30px 0px;
}

.joinusbuttondiv{
	width: 100%;
	display: flex;
	align-items: center;
    justify-content: space-evenly;
}

.joinusbutton{
	background: #00418E;
	color: white;
	font-size: 25px;
	padding: 10px 20px;
	border-radius: 20px;
	border: none;
	cursor: pointer;
	transition: 0.3s linear;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.joinushiddentext{
	width: 0px;
	opacity: 0;
	transition: 0.3s linear;
}

.joinusbutton:hover .joinushiddentext{
	opacity: 1;
	width: 37px;
	margin: 0px 0px 0px 10px;
}

footer{
	width: calc(100vw - 20px);
	padding: 30px 10px;
}

.joinusmaintitle{
    font-size: 40px;
    color: #00418E;
    text-align: center;
    margin: 20px 0px;
}

.joinusmaindecription{
	font-size: 20px;
	color: #686768;
    line-height: 2;
}

@media screen and (max-width: 800px) {
	.joinusbutton{
		font-size: 20px;
		padding: 10px;
	}

	.serviceitemtitle{
		font-size: 15px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

@media screen and (max-width: 1200px) {
	footer .container {
		display: flex;
		width: 90%;
		margin: 0px auto;
	}

	.blueareatitle{
		font-size: 25px;
	}

	.blueareatitleno{
		font-size: 35px;
	}

	.actual-Case .case:hover .bluearea{
		height: 75px !important;
	}

	.four-service-items .service-items img{
		height: 225px;
	}

	.service-items{
		position: relative;
		height: 280px;
		transition: 0.3s linear;
	}
}

@media screen and (max-width: 800px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		width: 90%;
		margin: 0px auto;
	}

	.footer-logo{
		text-align: center;
		margin: 15px auto;
	}

	.footer-bt{
		width: 100%;
		text-align: center;
	}

	.footer-contact{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.footer-contact>div{
		text-align: center;
	}

	.footer-contact>div>p{
		text-align: left;
	}

	.footer-FB{
		width: 100%;
		text-align: center;
	}

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