/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Open Sans", sans-serif;
	color: #444444;
}

a {
	color: #0A9C79;
	text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Roboto", sans-serif;
}

.mainContent {
	margin: 4rem auto;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #3fbbc0;
	border-top-color: #ecf8f9;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #3fbbc0;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #5ec6ca;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	background: #3fbbc0;
	color: #fff;
	height: 40px;
	font-size: 16px;
	font-weight: 600;
	z-index: 996;
	transition: all 0.5s;
}

#topbar.topbar-scrolled {
	top: -40px;
}

#topbar i {
	padding-right: 6px;
	line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	padding: 20px 0;
	top: 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	min-height: 11vh;
}

@media (max-width: 992px) {
	#header {
		padding: 15px 0;
		min-height: 9vh;
	}
}

#header.header-scrolled {
	top: 0;
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

#header .logo a {
	color: #555555;
}

#header .logo img {
	max-height: 60px;
}

/**
* Appointment Button
*/
.appointment-btn {
	margin-left: 25px;
	background: #3fbbc0;
	color: #fff;
	border-radius: 4px;
	padding: 8px 25px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
	display: inline-block;
}

.appointment-btn:hover {
	background: #65c9cd;
	color: #fff;
}

@media (max-width: 768px) {
	.appointment-btn {
		margin: 0 15px 0 0;
		padding: 6px 15px;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
	margin: 0 5rem;
}

@media (max-width: 768px) {
	.navbar {
		margin: 0;
	}

	.searchBox {
		margin: 0 1rem;
	}
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	justify-content: center;
	/* padding: 10px 0 10px 30px; */
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	color: #626262;
	/* white-space: nowrap; */
	transition: 0.3s;
	text-transform: uppercase;
	font-weight: 500;
	width: 130px;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #009B63;
}

.navbar .active {
	position: relative;
}

.navbar .active:after {
	position: absolute;
	content: '';
	width: 40px;
	height: 2px;
	background-color: #009B63;
	display: block;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}

.navbar .dropdown ul {
	transition: 0.3s;
	display: block;
	position: absolute;
	visibility: hidden;
	width: 100%;
	top: 40px;
	left: 0;
	z-index: 50;
	/* padding: 8px 22px 8px; */
	background-color: rgba(49, 49, 49, 0.7);
	font-size: 16px;
	border-top: 5px solid #009B63;
	text-align: center;
	opacity: 0;
}

.navbar .dropdown ul li {
	min-width: 200px;
	/* height: 40px; */
	/* line-height: 40px; */
	color: #fff;
}

.navbar .dropdown ul a {
	padding: 15px 20px;
	text-transform: none;
	color: #ffffff;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #3fbbc0;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #555555;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	/* overflow: hidden; */
	top: 11vh;
	height: 89vh;
	right: 0;
	left: 0;
	bottom: 0;
	/* background: rgba(60, 60, 60, 0.9); */
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: -7.2vh;
	right: 0.7rem;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	width: 35vw;
	/* min-height: 100vh; */
	background: #0B714C;
	top: 0;
	right: 0;
	z-index: 2000;
}

.navbar-mobile a {
	padding: 10px 12px;
	font-size: 12px;
	color: #ffffff;
	justify-content: flex-start;
	border-bottom: 1px solid #ffffff;
}

.navbar-mobile a:focus,
.navbar-mobile a:hover {
	justify-content: flex-start;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #ffffff;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	/* margin: 10px 20px; */
	/* padding: 10px 0; */
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background-color: #0B714C;
	border-top: 0;
	/* background: #fff; */
	/* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
	text-indent: 6px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #3fbbc0;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/

.news .single-blog .blog-img {
	margin-bottom: 25px;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	height: 13.24vw;
}

.news .single-blog .blog-img a {
	display: block
}

.news .single-blog .blog-img a img {
	width: 100%;
	-webkit-transition: all .3s ease-out 0s;
	transition: all .3s ease-out 0s
}

.news .single-blog .blog-content h4 {
	margin-bottom: 20px;
}

.news .single-blog .blog-content h4 a {
	color: #333333;
	font-size: 20px;
}

.news .single-blog .blog-content h4:hover a {
	color: #00adb5
}

.news .single-blog .blog-content p {
	font-size: 16px;
	color: #AEAEAE;
	line-height: 25px;
	margin-bottom: 20px
}

.news .single-blog:hover .blog-img img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3)
}


.read-more {
	font-size: 16px;
	font-weight: 500;
	color: #00adb5;
	font-family: "Raleway", sans-serif
}

.read-more i {
	margin-left: 15px;
	-webkit-transition: all .3s ease-out 0s;
	transition: all .3s ease-out 0s
}

.read-more:hover i {
	margin-left: 30px
}

.mb-30 {
	margin-bottom: 30px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	/* height: 100vh; */
	/*margin-top: 10vh;*/
	background-color: rgba(60, 60, 60, 0.8);
	overflow: hidden;
	position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
	/* position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0; */
}

#hero .carousel-item {
	/* background-size: cover;
	background-position: center;
	background-repeat: no-repeat; */
	display: flex;
	justify-content: center;
	align-items: flex-end;
	/* background-size: 100% 100%; */
}

#hero .carousel-item img {
	width: 100%;
	height: auto;
}

/* #hero .container {
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 50px;
	border-top: 4px solid #3fbbc0;
} */

@media (max-width: 1200px) {
	#hero .container {
		margin-left: 50px;
		margin-right: 50px;
	}
}

#hero h2 {
	color: #2f2f2f;
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 700;
}

#hero p {
	margin: 0 auto 30px auto;
	color: #555555;
}

#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
	opacity: 1;
	transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	left: 0;
	transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	background: none;
	font-size: 30px;
	line-height: 0;
	width: auto;
	height: auto;
	background: rgba(63, 187, 192, 0.8);
	border-radius: 50px;
	transition: 0.3s;
	color: rgba(255, 255, 255, 0.5);
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
	background: #3fbbc0;
	color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
	cursor: pointer;
	background: #fff;
	overflow: hidden;
	border: 0;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	opacity: .6;
	transition: 0.3s;
}

#hero .carousel-indicators li.active {
	opacity: 1;
	background: #3fbbc0;
}

#hero .btn-get-started {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 14px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	background: #3fbbc0;
}

#hero .btn-get-started:hover {
	background: #65c9cd;
}

@media (max-width: 992px) {
	#hero {
		/* height: 100vh; */
		margin-top: 12vh;
	}

	#hero .carousel-control-next-icon,
	#hero .carousel-control-prev-icon {
		width: 40px;
		height: 40px;
	}

	#hero .container {
		margin-top: 100px;
	}
}

@media (max-width: 768px) {
	#hero h2 {
		font-size: 28px;
	}
}

@media (max-width: 460px) {
	#hero {
		/* height: 100vh; */
		margin-top: 9.5vh;
	}

	#header .logo img {
		max-height: 40px;
	}
	
	.navbar-mobile{
		top: 9.5vh;
	}
}

@media (max-width: 375px) {
	#header {
		height: 10.5vh;
	}
	#hero {
		/* height: 100vh; */
		margin-top: 10.5vh;
	}
	.navbar-mobile{
		top: 10.5vh;
	}
}

@media (min-width: 1024px) {

	#hero .carousel-control-prev,
	#hero .carousel-control-next {
		width: 5%;
	}
}

@media (max-height: 500px) {
	#hero {
		height: 160vh;
	}
}

.part1-content {
	display: flex;
	flex-direction: column;
	background-color: #0A9C79;
	border-radius: 10px;
	box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.2);
	color: #ffffff;
	height: 100%;
	padding: 30px 30px 0 30px;
}

.part1-content .more {
	text-align: right;
	margin-bottom: 0;
}

.part1-content .more span {
	background-color: #28A889;
	padding: 0 20px 2px;
	border-radius: 20px;
}

.part1-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.2);
	padding: 40px 0;
	border-radius: 10px;
	height: 100%;
}

.part1-icon img {
	width: 72px;
	margin-bottom: 16px;
}

.part1-icon .title {
	font-size: 20px;
	color: #767676;
	text-align: center;
}

.swiper-containermode img {
	width: 100%;
}

.swiper-containermode .swiper-pagination {
    text-align: right;
    padding-right: 20px;
}

.swiper-containermode .swiper-pagination .swiper-pagination-bullet{
	width: 0.6rem;
	height: 0.6rem;
	background-color: #ffffff;
}

.swiper-containermode .swiper-pagination .swiper-pagination-bullet-active{
	background-color: #0A9C79;
}


.part2-content {
	height: 100%;
}

.part2-content>img {
	width: auto;
	height: 40px;
	margin-bottom: 20px;
	margin-right: 20px;
}
.hh1 a {
	text-decoration: none;

}
.text img {
	width: 80%!important;
	height: auto!important;
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
}
.sidebarbox{
	margin-bottom: 2rem;
}
.hh1{
	padding-top: 2rem;
	padding-bottom: 1rem;
}
.part2-content h4 a{
	color: #333333;
	font-size: 30px;
	margin-bottom: 50px;
	line-height: 50px;
	font-weight: bold;
	height: 100px;
}
.fixed-top{
	position: sticky!important;
}
.part2-content p a {
	font-size: 26px;
	color: #767676;
	line-height: 40px;
	margin-bottom: 50px;
	height: 120px;
}

.part2-content .more {
	font-weight: bold;
	font-size: 30px;
	color: #0A9C79;
	display: flex;
	align-items: center;
}

.part2-content .more img {
	width: 42px;
	height: auto;
	margin-right: 20px;
}

.part3 {
	background-color: #F2FBFF;
	padding: 3rem 0;
}

.part3 .col-4 {
	border-right: 1px solid #E5E5E5;
	padding: 0 20px 0 50px;
}

.part3 .col-4:last-child {
	border-right: 0;
}

.part3-content {
	display: block;
	height: 100%;
	border-right: 1px solid #E5E5E5;
}

.part3 .mainContent>div:last-child .part3-content{
	border-right: 0;
}

.part3-content h4 {
	font-size: 28px;
	color: #767676;
	margin-bottom: 15px;
	line-height: 50px;
	font-weight: bold;
}

.part3-content p {
	font-size: 22px;
	color: #767676;
	line-height: 40px;
	margin-bottom: 15px;
}

.part3-content .more {
	font-weight: bold;
	font-size: 22px;
	color: #0A9C79;
	display: flex;
	align-items: center;
}

.part3-content .more img {
	width: 63px;
	height: auto;
	margin-right: 6px;
}

.part4 .menuList {
	display: flex;
	justify-content: space-around;
	padding: 0 7rem;
}

.part4 .menuList .item {
	background-color: #F4FBFC;
	border-radius: 15px;
	width: 10rem;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.part4 .menuList .item img {
	width: 7rem;
}

.part4 .menuList .item:hover {
	background-color: #ffffff;
	box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.16);
}

.part4-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-right: 30px;
	box-shadow: -5px 2px 6px 1px rgba(0, 0, 0, 0.16);
	padding-left: 60px;
	padding-top: 50px;
	height: 100%;
}

.part4-content h4 {
	font-size: 30px;
	margin-bottom: 10px;
	display: inline-block;
	padding-bottom: 10px;
	position: relative;
	width: 400px;
	line-height: 50px;
	font-weight: 300;
}

.part4-content .bold::after {
	content: '';
	position: absolute;
	height: 4px;
	width: 37px;
	background-color: #009B63;
	right: 0;
	bottom: -4px;
}

.part4-content h4.bold {
	font-size: 30px;
	margin-bottom: 10px;
	font-weight: bold;
	border-bottom: 4px solid #E5E5E5;
	width: auto;
}

.part4-content p {
	font-size: 26px;
	color: #767676;
	line-height: 40px;
	margin-bottom: 50px;
}

.part4-content .more {
	font-weight: bold;
	font-size: 30px;
	color: #0A9C79;
	text-align: right;
	width: 100%;
	margin-bottom: 0;
}

.part4-content .more:hover a{
	color: #0A9C79;
}

.part4Thumb{
	width: 100%;
}


.part5 {
	background-color: #F2FBFF;
	padding: 3rem 0;
}

.part5-content {
	background: #FFFFFF;
	border-radius: 15px;
	padding: 30px 60px;
	margin-bottom: 22px;
}

.part5-content .tab {
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 36px;
	color: #0A9C79;
	justify-content: space-between;
	cursor: pointer;
}

.part5-content .tab.collapsed{
	color: #141414;
}

.part5-content .tab span {
	display: flex;
	align-items: center;
}

.part5-content .tab img {
	width: 50px;
	margin-right: 23px;
}

.part5-content .content {
	font-size: 26px;
	color: #767676;
	line-height: 40px;
}

.part6 {
	padding-top: 110px;
	padding-bottom: 100px;
}

.part6 .mainContent {
	margin: 0 auto;
}

.part6-content {
	box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.16);
	border-radius: 15px;
	overflow: hidden;
	padding: 0;
	/* margin: 0 1rem; */
}

.part6-content .title {
	padding-top: 16rem;
	background-size: 100%;
	background-repeat: no-repeat;
	text-align: right;
	margin-bottom: 2rem;
}

.part6 .mainContent>div:first-child .part6-content .title {
	background-image: url(../img/img_Locations1.png);
}

.part6 .mainContent>div:nth-child(2) .part6-content .title {
	background-image: url(../img/img_Locations2.png);
}

.part6 .mainContent>div:nth-child(3) .part6-content .title {
	background-image: url(../img/img_Locations3.png);
}

.part6-content .title span {
	position: relative;
	font-weight: bold;
	font-size: 24px;
	color: #767676;
	padding-right: 18px;
}

.part6-content .title span::after {
	content: '';
	position: absolute;
	height: 3px;
	width: 80px;
	background-color: #009B63;
	right: 18px;
	bottom: -7px;
}

.part6-content .content {
	padding: 0 3rem;
	padding-bottom: 1.5rem;
}

.part6-content .content .item {
	display: flex;
	align-items: center;
}

.part6-content .content .item img {
	width: 25px;
	margin-right: 1.5rem;
}

.part6-content .content .item p {
	flex: 1;
	font-size: 20px;
	color: #767676;
	line-height: 32px;
	border-bottom: 1px solid #E5E5E5;
	padding: 1rem 0;
	margin-bottom: 0;
}

.part7 {
  margin-top: 3rem;
	background-image: url(../img/img_footerbg.png);
	padding: 100px 0 57px;
}

.part7-content {
	max-width: 1332px;
	margin: 0 auto;
}

.part7 .top {
	display: flex;
	align-items: center;
	justify-content: center;
}

.part7 .top .qrcode {
	display: flex;
	align-items: center;
	margin-left: 10rem;
}

.part7 .top .qrcode .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #ffffff;
	margin: 0 2.5rem;
}

.part7 .bottom {
	margin-top: 6rem;
	font-size: 18px;
	color: #FFFFFF;
	border-top: 2px solid rgba(214, 215, 216, 0.5);
	text-align-last: justify;
	padding-top: 16px;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f7fcfc;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	/* text-transform: uppercase; */
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: #3fbbc0;
	bottom: 0;
	left: calc(50% - 25px);
}

.section-title p {
	margin-bottom: 0;
}


/* spacial */
.special-banner {
	position: relative;
	/* margin-top: 100px; */
	margin-top: 6.3rem;
}

.special-banner img {
	width: 100%;
}

.special-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	/* padding-bottom: 30px; */
}

.special-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.special-title h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: #3fbbc0;
	bottom: 0;
	left: calc(50% - 25px);
}

.special-title p {
	margin-bottom: 0;
}

.special-menu {
	border-bottom: 1px solid #F0F0F0;
	display: flex;
	height: 5rem;
	line-height: 5rem;
	justify-content: center;
}

.special-menu .item {
	font-size: 20px;
	color: #999999;
	margin: 0 5rem;
	cursor: pointer;
}

.special-menu .item.active {
	font-weight: bold;
	color: #00907F;
	position: relative;
}

.special-menu .item.active::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -6px;
	border: 2px solid #00907F;
	border-radius: 50%;
	width: 12px;
	height: 12px;
	background-color: #ffffff;
}

.special-page1 .mainContent {
	margin: 8rem auto;
}

.page1-service {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.2);
	padding: 3rem 2rem;
	border-radius: 10px;
	height: 100%;
}

.page1-service img {
	width: 72px;
	height: 120px;
	object-fit: contain;
	margin-bottom: 16px;
	/* padding-bottom: 3rem; */
	border-bottom: 3px solid #E5E5E5;
}

.page1-service .title {
	font-size: 24px;
	color: #767676;
	text-align: center;
}

.hours-content {
	display: flex;
	flex-direction: column;
	box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.2);
	padding: 1rem 2rem;
	border-radius: 10px;
	height: 100%;
	background-image: url(../img/icon_international_bg.png);
	background-repeat: no-repeat;
	background-position: 96% 82%;
	background-size: auto 75%;
}

.hours-content {
	height: 100%;
}

.hours-content h4 {
	font-size: 28px;
	color: #0A9C79;
	margin-bottom: 15px;
	font-weight: bold;
}

.hours-content p {
	font-size: 22px;
	color: #767676;
	line-height: 40px;
	margin-bottom: 15px;
	font-weight: bold;
}

.hours-content .more {
	font-size: 22px;
	color: #767676;
	font-weight: 300;
}

.fee-content {
	box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.2);
	padding: 2rem 10rem 4rem;
	border-radius: 10px;
}

.fee-text {
	font-size: 26px;
	color: #767676;
	line-height: 40px;
	display: flex;
	align-items: center;
}

.fee-text img {
	margin-right: 3rem;
}

.appointment-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-right: 3rem;
	padding-left: 20px;
	padding-top: 20px;
	height: 100%;
}

.appointment-content .info {
	font-weight: bold;
	font-size: 36px;
	color: #0A9C79;
	margin-bottom: 10px;
}

.appointment-content .info img {
	width: 47px;
	height: 47px;
	object-fit: contain;
	margin-right: 10px;
}

.appointment-content p {
	font-size: 26px;
	color: #767676;
	line-height: 40px;
	margin-bottom: 50px;
}

.appointment-content .more {
	font-weight: bold;
	font-size: 30px;
	color: #0A9C79;
	text-align: right;
	width: 100%;
	margin-bottom: 0;
}

.page2-part4 {
	background-color: #F6FCFF;
	padding: 7rem 0;
}

.info-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.2);
	padding: 3rem 4rem;
	border-radius: 10px;
	height: 100%;
	background-color: #ffffff;
	margin: 0 1rem;
}

.info-content .title {
	font-size: 24px;
	color: #767676;
	text-align: justify;
}

.page3-detail {
	max-width: 1346px;
	margin: 7rem auto;
	font-size: 26px;
	color: #767676;
	line-height: 40px;
	text-align: justify;
}

.page3-detail .imgBox {
	display: flex;
	justify-content: space-between;
	margin: 3rem 0;
}

.page3-detail .imgBox img {
	width: 49%;
}

@media screen and (max-width: 768px) {
	.part1 .mainContent {
		padding: 0;
	}

	.part1 .mainContent>div {
		margin-bottom: 1rem;
	}

	.part1 .mainContent>div:nth-child(2n) {
		/* padding-right: 0; */
	}

	.part1-content {
		padding: 0.8rem;
	}

	.part1-content h4 {
		font-size: 0.8rem;
	}

	.part1-content p {
		font-size: 0.8rem;
	}

	.part1-icon img {
		width: 3rem;
	}

	.part1-icon .title {
		font-size: 0.9rem;
	}

	.part2 .mainContent {
		padding: 0;
	}

	.part2 .mainContent>div:first-child {
		padding: 0;
	}

	.part2-content>img {
		margin-top: 1rem;
		height: 1.6rem;
		margin-bottom: 0.8rem;
	}

	.part2-content h4 {
		font-size: 1rem;
		line-height: 1.8;
		margin-bottom: 0.8rem;
		height: auto;
	}

	.part2-content p {
		font-size: 0.9rem;
		line-height: 1.8;
		margin-bottom: 0.8rem;
		height: auto;
	}

	.part2-content .more img {
		width: 2rem;
	}

	.part2-content .more {
		font-size: 1.1rem;
	}
	
	.part3{
		padding: 0.1rem 0;
	}
	
	.part3 .mainContent{
		padding: 0;
		margin: 1rem auto;
	}
	
	.part3 .mainContent>div{
		border-bottom: 1px solid #E5E5E5;
		padding: 1rem 2rem;
	}
	
	.part3 .mainContent>div:last-child{
		border-bottom: 0;
	}
	
	.part3-content{
		border-right: 0;
	}
	
	.part3-content h4 {
		font-size: 1rem;
		margin-bottom: 0.8rem;
		line-height: 1.5;
	}
	
	.part3-content p{
		font-size: 0.9rem;
		line-height: 1.5;
		margin-bottom: 0.8rem;
	}
	
	.part3-content .more{
		font-size: 0.9rem;
	}
	
	.part3-content .more img{
		width: 2.5rem;
	}
	
	.part4 .mainContent {
		padding: 0;
	}
	
	.part4 .mainContent>div{
		padding: 0;
	}
	
	.part4 .mainContent>div:last-child img{
		width: 100%;
		height: auto;
	}
	
	.part4-content{
		padding: 1rem;
	}
	
	.part4-content p{
		font-size: 1rem;
		line-height: 1.5;
		margin-bottom: 0.8rem;
	}
	
	.part4-content h4.bold{
		font-size: 1.3rem;
		padding-bottom: 0.2rem;
	}
	.part4-content h4{
		width: 100%;
		font-size: 1.3rem;
		padding-bottom: 0.2rem;
		line-height: 1.5;
	}
	
	
	.part4-content .more{
		font-size: 1rem;
		font-weight: normal;
	}
	
	.part4 .menuList{
		padding: 0;
	}
	
	.part4 .menuList .item{
		width: 3rem;
		height: 3rem;
	}
	
	.part4 .menuList .item img{
		width: 2rem;
	}
	
	.part5{
		padding: 1rem 0;
	}
	
	.part5 .mainContent {
		padding: 0 0.5rem;
	}
	
	.part5-content .tab{
		font-size: 1.2rem;
		margin: 0;
	}
	
	.part5-content .tab img{
		width: 2rem;
	}
	
	.part5-content .content{
		font-size: 1rem;
		line-height: 1.5;
		margin: 0.5rem 0;
	}
	
	.part5-content{
		padding: 1rem;
	}
	
	.part6{
		padding-top: 2rem;
		padding-bottom: 1rem;
	}
	
	.part6 .mainContent{
		padding: 0 0.4rem 2rem;
	}
	
	.part6-content{
		margin: 1rem 0;
	}
	
	.part6-content .title{
		padding-top: 11.5rem;
		margin-bottom: 1rem;
	}
	
	.part6-content .title span{
		font-size: 1rem;
	}
	
	.part6-content .content{
		padding: 0 2rem;
	}
	
	.part6-content .content .item img{
		width: 1rem;
		margin-right: 1rem;
	}
	
	.part6-content .content .item p{
		font-size: 1rem;
		line-height: 1.5;
		padding: 0.8rem 0;
	}

	.mainContent {
		margin: 2rem auto;
	}

	.page2-hours .mainContent {
		padding: 0;
		margin: 2rem auto 0;
	}

	.section-title {
		padding-bottom: 0;
	}

	.fee-content {
		padding: 1rem;
	}

	.fee-text {
		font-size: 0.9rem;
		line-height: 1.6;
	}

	.fee-text img {
		margin-right: 1rem;
		width: 2.4rem;
	}

	.page2-appointment .mainContent {
		padding: 0;
	}

	.page2-appointment .mainContent>div {
		padding: 0;
	}

	.page2-hours .mainContent>.row {
		margin: 0;
	}

	.page2-hours .mainContent>.row>div {
		margin-bottom: 1rem;
	}

	.hours-content h4 {
		font-size: 1rem;
		margin-bottom: 0;
	}

	.hours-content p {
		font-size: 0.9rem;
		margin-bottom: 0;
	}

	.hours-content .more {
		font-size: 0.9rem;
		margin-bottom: 0;
	}

	.page2-fee .mainContent {
		margin: 0 auto 1rem;
	}

	.appointment-content {
		padding: 0;
		width: 72%;
		margin: 2rem auto;
	}

	.appointment-content .info img {
		width: 2rem;
	}

	.appointment-content .info {
		font-size: 1.3rem;
	}

	.appointment-content p {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.page2-part4 {
		padding: 2rem 0;
	}

	.page2-part4 .mainContent {
		padding: 0;
	}

	.page2-part4 .mainContent>div {
		margin-bottom: 2rem;
	}

	.info-content {
		padding: 2rem;
	}

	.info-content .title {
		font-size: 1rem;
	}

	.section-title h2 {
		font-size: 1.5rem;
	}

	.special-banner {
		margin-top: 4.5rem;
		overflow: hidden;
	}

	.special-banner img {
		width: 250%;
		transform: translateX(-10%);
	}

	.special-title {
		width: 100%;
		padding-bottom: 0;
		top: 55%;
	}

	.special-title h2 {
		font-size: 1rem;
	}

	.special-page1 .mainContent {
		padding: 0;
		margin: 2rem 0;
	}

	.special-page1 .mainContent>div {
		margin-bottom: 1rem;
	}

	.page1-service {
		padding: 1rem;
	}

	.page1-service img {
		width: 3rem;
		height: 5rem;
	}

	.page1-service .title {
		font-size: 0.8rem;
	}

	.page3-detail {
		font-size: 1rem;
		padding: 0 1rem;
		text-align: left;
		margin: 2rem auto;
	}

	.page3-detail .imgBox {
		margin: 1rem auto 0;
		flex-direction: column;
	}

	.page3-detail .imgBox img {
		width: 100%;
		margin-bottom: 1rem;
	}

	.special-menu {
		height: 3rem;
		line-height: 3rem;
	}

	.special-menu .item {
		margin: 0 1rem;
		font-size: 0.8rem;
	}

	.special-menu .item.active::after {
		width: 8px;
		height: 8px;
	}

	.part7 {
		padding-top: 2rem;
	}


	.part7 .top {
		flex-direction: column;
	}

	.part7 .top>img {
		width: 60%;
		margin-bottom: 2rem;
	}

	.part7 .top .qrcode {
		margin-left: 0;
	}

	.part7 .top .qrcode .item {
		margin: 0 1rem;
	}

	.part7 .top .qrcode .item img {
		width: 4rem;
	}

	.part7 .bottom {
		width: 90%;
		margin: 1rem auto;
		font-size: 0.9rem;
		text-align: center;
		text-align-last: center
	}

	.part7 .bottom p {
		margin: 0;
		line-height: 1.6;
	}
}

@media screen and (max-width: 300px) {
    .part6-content .title {
        padding-top: 10rem;
    }
}

.mainContent .d-sm-none a:hover{
	color: #ffffff;
	transform: translateY(-10px);
	transition: all .1s linear;
}
.page {
	margin-top:3rem;
}

.col-6{
	margin: 5px 0px;
}