@charset "UTF-8";

section.fv {
    height: 100vh;
    width: 100%;
}

.fv_inner {
    height: 100vh;
    width: 100%;
    background: rgba(0,0,0,0.5);
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1.fv_title {
    font-family: "Poppins", serif;
    color: #fff;
    font-size: 52px;
    font-weight: bold;
    text-align: center;
}

h1.fv_title span {
    display: block;
    font-size: 28px;
}

.fv_cap {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    max-width: 530px;
    text-align: center;
    margin: 30px auto 0;
}

a.fv_link {
    margin: 60px auto 0;
    background: #fff;
    display: block;
    color: #000;
    text-align: center;
    font-family: "Poppins", serif;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px;
    width: 240px;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

a.fv_link:hover {
	background: #E4007F;
	color: #fff;
	transform: scale(1.2);
}

/*services*/
.ornament {
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -240px;
}

section.services {
    padding: 100px 0;
    position: relative;
    box-shadow: 0 -30px 80px rgba(0,0,0,0.5);
}

.services_inner {
    max-width: 95%;
    margin: 0 auto;
}

.services_inner h2 {
    color: #E4007F;
    font-family: "Poppins", serif;
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 80px;
}

ul.services_contents {
    display: flex;
    justify-content: space-between;
}

ul.services_contents li {
    width: 32.5%;
	position: relative;
}

ul.services_contents li a {
    display: block;
    color: #000;
}

h3.services_box_title {
    font-weight: bold;
    font-size: 24px;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.services_contents li:hover h3.services_box_title {
    color: #E4007F;
}

h3.services_box_title span {
    margin-right: 10px;
}

.services_contents li p {
    font-size: 15px;
    color: #666;
    line-height: 20px;
}

.services_image {
    width: 100%;
    background: #ddd;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -6px 6px 12px rgba(0,0,0,0.1);
	position: relative;
}

.services_image:hover .light_on {
	left: 120%;
}

span.light_on {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.75) 100%);
    width: 60%;
    height: 200%;
    display: block;
    position: absolute;
    transform: rotate(25deg);
    left: -100%;
    top: -110px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.services_box_cap {
    padding: 0 8%;
}

.service_comingsoon {
    position: absolute;
    z-index: 99;
    text-align: center;
    font-size: 24px;
    font-family: "Poppins", serif;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.75);
    font-weight: 600;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/*featured*/
section.featured {
    padding: 100px 0;
    background: #f5f5f5;
    position: relative;
}

.featured_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.featured_inner h2 {
    text-align: center;
    font-size: 38px;
    font-family: 'Poppins';
    margin-bottom: 80px;
    font-weight: bold;
    color: #E4007F;
}

ul.featured_list {
    display: flex;
    justify-content: space-between;
}

ul.featured_list li {
    width: 32%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

ul.featured_list li h3 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Poppins';
}

ul.featured_list li p {
    font-size: 15px;
    color: #666;
    line-height: 20px;
    text-align: center;
}

ul.featured_list li h3 span {
    margin: 0 auto 15px;
    display: block;
    width: max-content;
}

ul.featured_list li h3 span img {
    width: 100%;
    height: 50px;
}

section.inquery {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%);
	width: 100%;
	margin: 0 auto;
}

.inquery_inner {
    background-image: url("../img/home/bg_inquery.jpg");
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    background-repeat: no-repeat;
    width: 96%;
	border-radius: 10px;
    margin: 0 auto;
}

a.inquery_btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    width: 500px;
    position: relative;
    font-size: 18px;
    font-family: "Poppins", serif;
    display: block;
    margin: 0 auto;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

a.inquery_btn:hover {
	background: #fff;
	color: #E4007F;
}

a.inquery_btn:hover span {
	background: #E4007F;
	padding: 3px 6px;
	border-radius: 100%;
	margin-top: -8px;
}

a.inquery_btn span {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

p.inquery_cap {
    text-align: center;
    font-size: 15px;
    color: #fff;
    margin-top: 20px;
}

section.history {
    padding: 100px 0;
	background-image: url("../img/home/bg_wave.svg");
	background-size: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.history_inner {
    max-width: 1100px;
    margin: 0 auto 100px;
}

.history h2 {
    font-size: 38px;
    text-align: center;
    font-weight: bold;
    font-family: 'Poppins';
    color: #E4007F;
    margin-bottom: 80px;
}

.history_inner h3 {
    font-size: 24px;
    font-family: 'Poppins';
    font-weight: bold;
    padding-left: 20px;
    border-left: 1px solid #000;
    margin-bottom: 50px;
}

ul.history_list li {
    display: flex;
    align-items: center;
}

.history_year:after {
    position: absolute;
    width: 7px;
    height: 7px;
    border: 3px solid #E4007F;
    display: block;
    content: "";
    right: -7px;
    background: #fff;
    border-radius: 100%;
    top: 50%;
    margin-top: -7px;
}

.history_year {
	position: relative;
    width: 16%;
    border-right: 1px solid #ddd;
    font-size: 40px;
    font-family: 'Poppins';
    padding: 20px 0;
    font-weight: bold;
}

.history_content {
    width: 84%;
    padding-left: 6%;
    color: #666;
    font-size: 16px;
}

.awards h3 {
    font-size: 24px;
    border-left: 1px solid #000;
    padding-left: 20px;
    max-width: 1100px;
    margin: 0 auto 50px;
    font-weight: bold;
    font-family: 'Poppins';
}

.awards_box {
    text-align: center;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.awards_year {
    line-height: 16px;
    background: #E4007F;
    color: #fff;
    border-radius: 100px;
    margin: 0 auto;
    font-family: 'Poppins';
    text-align: center;
    padding: 4px 20px 2px;
    margin-bottom: 12px;
    font-size: 15px;
    width: max-content;
}

.awards_box h4 {
    font-weight: 500;
    font-size: 15px;
}

.slick-list.draggable {
    padding-top: 20px!important;
    padding-bottom: 20px!important;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	
h1.fv_title {
    font-size: 40px;
    line-height: 40px;
    padding: 0 7%;
}

.fv_cap {
    font-size: 13px;
    padding: 0 7%;
    margin: 20px auto 0;
}

h1.fv_title span {
    font-size: 20px;
    margin-top: 5px;
}

a.fv_link {
    font-size: 15px;
    margin: 30px auto 0;
    width: 80%;
    border-radius: 6px;
}

.fv_inner {
    height: 80vh;
}

section.fv {
    height: 80vh!important;
}

.ornament {
    width: 90%;
    margin-left: -45%;
    top: -19px;
}

section.services {
    padding: 30px 5%;
}

.services_inner h2 {
    font-size: 25px;
    margin-bottom: 30px;
}

ul.services_contents {
    display: block;
}

ul.services_contents li {
    width: 100%;
    margin-bottom: 30px;
}

.services_inner {
    max-width: 100%;
}

.services_box_cap {
    padding: 0 5%;
}

.services_contents li p {
    font-size: 13px;
    line-height: 18px;
}

h3.services_box_title {
    font-size: 22px;
    align-items: center;
    font-weight: 500;
    margin-bottom: 10px;
}

h3.services_box_title span {
    width: 24px;
    margin-right: 8px;
}

.featured_inner h2 {
    font-size: 25px;
    margin-bottom: 30px;
}

section.featured {
    padding: 30px 5%;
}

ul.featured_list {
    display: block;
}

ul.featured_list li {
    width: 100%;
    margin-bottom: 10px;
}

ul.featured_list li h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

ul.featured_list li p {
    font-size: 13px;
    line-height: 18px;
}

ul.featured_list li h3 span {
    width: 42px;
    margin-bottom: 10px;
}

ul.featured_list li h3 span img {
    height: 38px;
}

.inquery_inner {
    padding: 60px 5%;
    width: 90%;
	background-size: 200%;
}

a.inquery_btn {
    width: 100%;
    font-size: 15px;
}

p.inquery_cap {
    font-size: 13px;
}

section.history {
    padding: 50px 0 30px;
}
	
section.history .ornament {
    display: none;
}

.history h2 {
    font-size: 25px;
    margin-bottom: 30px;
}

.history_inner h3 {
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 30px;
}

.history_year {
    width: 20%;
    font-size: 20px;
}

.history_content {
    font-size: 13px;
    w: 80%;
    line-height: 18px;
}

.history_inner {
    margin: 0 auto 30px;
    padding: 0 5%;
}

.awards h3 {
    margin-bottom: 10px;
    font-size: 18px;
    width: 90%;
}

.awards_year {
    font-size: 13px;
}

.awards_box h4 {
    font-size: 13px;
    line-height: 18px;
}
}