/*

Tooplate 2133 Moso Interior

https://www.tooplate.com/view/2133-moso-interior

*/
/*baidu aifanfan*/
@media (min-width:720px) {
	.embed-icon-default {
		width: 6rem !important;
	}
}

/*bootstrap custom*/
@media (min-width: 992px){
	.col-lg-1-5{flex: 0 0 auto;width:20%;}
}
@media (min-width: 1200px){
	.col-xl-1-5{flex: 0 0 auto;width:20%;}
}

/*gaoDeDitu*/
iframe#gaode{border:0;width:100%;min-height:28.5rem;}
@media (max-width:767px){
	iframe#gaode{border:0;width:100%;min-height:20rem;}
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/


:root {
	--white-color: #ffffff;
	--primary-color: #ffd74f;
	--secondary-color: #f65129;
	--section-bg-color: #f9f9f9;
	--site-footer-bg-color: #667;
	--custom-btn-bg-color: #ffd74f;
	/*#00a05d*/
	--dark-color: #000000;
	--p-color: #717275;
	--border-color: #e9eaeb;

	--twitter-color: #1da1f2;
	--facebook-color: #1877f2;
	--instagram-color: #c13584;
	--pinterest-color: #e60023;
	--whatsapp-color: #128c7e;

	--body-font-family: 'League Spartan', sans-serif;

	--h1-font-size: 2.5rem;
	--h2-font-size: 2rem;
	--h3-font-size: 1.75rem;
	--h4-font-size: 1.5rem;
	--h5-font-size: 1.25rem;
	--h6-font-size: 1rem;
	--p-font-size: 16px;
	--btn-font-size: 20px;
	--copyright-font-size: 14px;

	--border-radius-large: 100px;
	--border-radius-medium: 15px;
	--border-radius-small: 5px;

	--font-weight-thin: 100;
	--font-weight-light: 300;
	--font-weight-normal: 400;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
}

body {
	font-size: 16px;
	background-color: var(--white-color);
	font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
	color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: var(--font-weight-semibold);
}

h1 {
	font-size: var(--h1-font-size);
	font-weight: var(--font-weight-bold);
}

h2 {
	font-size: var(--h2-font-size);
}

h3 {
	font-size: var(--h3-font-size);
}

h4 {
	font-size: var(--h4-font-size);
}

h5 {
	font-size: var(--h5-font-size);
	line-height: normal;
}

h6 {
	font-size: var(--h6-font-size);
}

hr {
	margin: .75rem 0 !important;
}

p {
	color: var(--p-color);
	font-size: var(--p-font-size);
	font-weight: var(--font-weight-light);
}

.text-indent {
	text-indent: 2rem;
}

ul li {
	color: var(--p-color);
	font-size: var(--p-font-size);
	font-weight: var(--font-weight-normal);
}

a,
button {
	touch-action: manipulation;
	transition: all 0.3s;
}

a {
	color: var(--p-color);
	text-decoration: none;
}

a:hover {
	color: var(--secondary-color);
}

b,
strong {
	font-weight: var(--font-weight-bold);
}

:root {
	--bs-warning: var(--primary-color);
}

.bg-center {
	background-position: center;
}

.bg-cover {
	background-size: cover;
}

@media screen and (min-width:768px) {
	.border-md-end {
		border-right: 1px solid #ccc;
	}
}

.btn.btn-outline-secondary {
	box-sizing: border-box;
}

.btn.btn-outline-secondary.active,
.btn.btn-outline-secondary:hover {
	border-color: transparent;
	background: var(--bs-warning);
	color: var(--white-color);
}

@media screen and (min-width:1200px) {
	.fs-xl-4r {
		font-size: 4rem;
	}
}

.h-40 {
	height: 40% !important;
}

.mh-inherit {
	min-height: inherit;
}

.mw-inherit {
	min-width: inherit;
}

.mt-6 {
	margin-top: 5rem;
}

.tooplate-red {
	color: var(--secondary-color);
}

.tooplate-green {
	color: var(--custom-btn-bg-color);
}

.z-1 {
	z-index: 1;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/

.section-bg {
	background: var(--section-bg-color);
}

.section-small-title {
	color: var(--custom-btn-bg-color);
	font-size: var(--btn-font-size);
	font-weight: var(--font-weight-semibold);
	display: block;
	text-shadow: 1px 1px 2px BLACK;
}

.section-overlay {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	width: 100%;
	height: 100%;
}

.custom-block {
	background: var(--section-bg-color);
	border-radius: var(--border-radius-small);
	position: relative;
	overflow: hidden;
	min-height: 30rem;
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
	color: var(--p-color);
	position: relative;
	overflow: hidden;
	z-index: 1;
	display: inline-block;
	vertical-align: middle;
	transition: all .3s cubic-bezier(.645, .045, .355, 1);
	padding-bottom: 2px;
}

.custom-link::after {
	content: "";
	width: 0;
	height: 2px;
	bottom: 0;
	position: absolute;
	left: auto;
	right: 0;
	z-index: -1;
	transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
	background: currentColor;
}

.custom-link:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}

.custom-link:hover {
	color: var(--primary-color);
}

.custom-link:hover::after {
	background: var(--custom-btn-bg-color);
}


/*---------------------------------------
  CUSTOM BADGE               
-----------------------------------------*/
.custom-badge {
	background: var(--white-color);
	display: inline-block;
	vertical-align: top;
	position: relative;
	color: var(--secondary-color);
	font-size: var(--copyright-font-size);
	font-weight: var(--font-weight-semibold);
	padding: 10px 10px 6px 10px;
}

.custom-badge::before {
	content: "";
	display: block;
	margin: auto;
	width: 0;
	height: 0;
	border-bottom: 7px solid var(--white-color);
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	position: absolute;
	top: -7px;
	right: 0;
	left: 0;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
	background: var(--custom-btn-bg-color);
	border: 2px solid transparent;
	border-radius: var(--border-radius-large);
	color: var(--white-color);
	font-size: var(--btn-font-size);
	font-weight: var(--font-weight-semibold);
	line-height: normal;
	padding: 15px 20px;
}

.custom-btn:hover {
	background: transparent;
	border-color: var(--custom-btn-bg-color);
	color: var(--custom-btn-bg-color);
}

.custom-border-btn {
	background: transparent;
	border: 2px solid var(--border-color);
	color: var(--white-color);
}

.custom-border-btn:hover {
	background: var(--white-color);
	border-color: var(--white-color);
	color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
	padding-top: 0;
	padding-bottom: 0;
	transition: all 0.3s;
	background-color: #0003;
}

.navbar-brand:hover {
	background-color: var(--primary-color);
}

.navbar-brand>img {
	height: 3.2rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
	margin-right: 0;
	margin-left: 0;
	padding: 20px 35px;
}

.navbar-nav .nav-link {
	display: inline-block;
	color: var(--p-bg-color);
	font-size: var(--menu-font-size);
	font-weight: var(--font-weight-medium);
	position: relative;
	padding-top: 15px;
	padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.dropdown-menu {
	background-color:#0003;
	border-radius: 0;
	border: 0;
	padding: 0;
}

.dropdown-item {
	border-bottom: 1px solid var(--border-color);
	display: inline-block;
	color: var(--p-bg-color);
	font-size: var(--menu-font-size);
	font-weight: var(--font-weight-medium);
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
	border-bottom: 0;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
	background: var(--primary-color)!important;
	color: var(--white-color)!important;
}

.dropdown-toggle::after {
	content: "\f282";
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-size: var(--copyright-font-size);
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	left: 2px;
	border: 0;
}

@media screen and (min-width: 992px) {
	.dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
	}
}

.navbar-toggler {
	border: 0;
	padding: 0;
	cursor: pointer;
	margin: 0;
	width: 30px;
	height: 35px;
	outline: none;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
	transition: top 300ms 50ms ease, transform 300ms 350ms ease;
	transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
	top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
	background: var(--dark-color);
	transition: background 10ms 300ms ease;
	display: block;
	width: 30px;
	height: 2px;
	position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
	transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
	transition: top 300ms 350ms ease, transform 300ms 50ms ease;
	transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
	position: absolute;
	right: 0;
	left: 0;
	background: var(--dark-color);
	width: 30px;
	height: 2px;
	content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
	top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
	top: 8px;
}


.back-blur-2 {
	backdrop-filter: blur(4px);
}

video::-webkit-media-controls-play-button {
	position: fixed;
	top: 50%;
	left: 50%;
	translate: -25% -50%;
	background-color: #ffc107cc;
	border-radius: 20rem;
}

@media screen and (min-width:768px) {
	video::-webkit-media-controls-play-button {
		scale: 2;
	}
}

video {
	box-shadow: 0px 0px 0rem 0.35rem #ffffff57
}

section {
	position: relative;
}

section>div {
	margin: 1.5rem auto;
	padding: 2rem auto;
}

@media screen and (min-width:992px) {
	section {
		min-height: calc(100vh - 64px);

	}

	section>div {
		margin: 0 auto;
	}
}

/*
 * TOP Section
 */
#section_1_1 {
	background-image: linear-gradient(to right top, #283ee6, #2bd2a4);
	background-color: #283ee6;
}

.btn-top-play {
	font-size: 5rem;
}

.top-section-title {
	font-size: 3.5rem;
}

@media screen and (max-width:767px) {
	.top-section-content {
		max-height: 540px;
	}

	.btn-top-play {
		font-size: 3rem;
	}

	.top-section-title {
		font-size: 2rem;
	}
}

@media screen and (max-width:400px) {
	.top-section{
		margin-top:70px;
	}
	.top-section-title {
		font-size: 1.5rem;
		margin-top: 0;
	}
}

#section_1_1 a:hover {
	filter: drop-shadow(0 0 .7rem #fffe);
}

#section_1_1 h2 {
	text-shadow: -1px -1px 5px #000;
}

.carousel-item {
	background-size: 100% 100%;
}


/*---------------------------------------
  customs
-----------------------------------------*/
.venue-intel:hover {
	transform: scale(1.05);
	background: var(--bs-yellow) !important;
	box-shadow: 0 0 .3rem .3rem #0003;
	z-index: 1;
}

.venue-intel:hover h6 {
	color: #fff;
}


/*---------------------------------------
  customs
-----------------------------------------*/

.reviews-carousel .owl-nav {
	position: absolute;
	top: -100px;
	right: 0;
}

.owl-carousel.qualifications-carousel .owl-nav button.owl-prev {
	position: absolute;
	top: 50%;
	left: 0px;
}

.owl-carousel.qualifications-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	right: 0px;
}

.reviews-body {
	height: 35rem;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
	background: #fffa;
	border-radius: var(--border-radius-large);
	width: 60px;
	height: 60px;
	margin: 5px;
	transition: all 0.5s;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
	background: var(--primary-color);
}

.owl-carousel .owl-prev:hover span::before,
.owl-carousel .owl-next:hover span::before {
	color: var(--white-color);
}

.owl-carousel .owl-prev span,
.owl-carousel .owl-next span {
	display: block;
	color: transparent;
	width: 60px;
	height: 60px;
	line-height: 60px;
}

.owl-carousel .owl-prev span::before,
.owl-carousel .owl-next span::before {
	font-family: bootstrap-icons;
	display: block;
	font-size: var(--h4-font-size);
	color: var(--secondary-color);
}

.owl-carousel .owl-prev span::before {
	content: "\f12f";
}

.owl-carousel .owl-next span::before {
	content: "\f138";
}

.reviews-thumb {
	background: var(--white-color);
	border-radius: var(--border-radius-small);
	position: relative;
	overflow: hidden;
}


.reviews-bottom {
	background: var(--secondary-color);
	background: linear-gradient(180deg, var(--primary-color) 0%, var(--bs-yellow) 100%);
	position: relative;
	padding: 10px 36px;
}

.reviews-bottom-up::before {
	content: "";
	display: block;
	margin: auto;
	width: 0;
	height: 0;
	border-bottom: 22px solid var(--primary-color);
	border-left: 24px solid transparent;
	border-right: 24px solid transparent;
	position: absolute;
	top: -20px;
	left: 36px;
}


.reviews-section .custom-btn:hover {
	background: transparent;
	border-color: var(--facebook-color);
	color: var(--facebook-color);
}

.reviews-bottom small {
	font-size: var(--btn-font-size);
	font-weight: var(--font-weight-normal);
}

.customer {
	min-height: 12rem;
}

.customer>div {
	backdrop-filter: brightness(0.5);
}

.customer>div {
	text-shadow: 1px 1px 2px #000;
	word-break: keep-all;
}

.customer>div:hover {
	backdrop-filter: brightness(1);
}

.customer>div:hover>h6 {
	display: none;
}

/*---------------------------------------
  About
-----------------------------------------*/
@media screen and (min-width:992px) {
	.about-section {
		display: flex;
		align-items: center;
	}

	.about-section>svg:last-child {
		position: absolute;
		bottom: 0;
	}

	.about-section>svg:first-child {
		position: absolute;
		top: 0;
	}
}

.qualification-body {
	padding: 0 25px;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
	background: var(--site-footer-bg-color);
	padding-top: 0;
}

.site-footer h3 {
	line-height: normal;
}

.site-footer h3 .custom-link,
.site-footer h3 .custom-link:hover {
	color: var(--primary-color);
}

.copyright-text {
	color: var(--section-bg-color);
	font-size: var(--copyright-font-size);
	margin-top: 10px;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 36px;
	}

	h3 {
		font-size: 32px;
	}

	h4 {
		font-size: 28px;
	}

	h5 {
		font-size: 20px;
	}

	h6 {
		font-size: 16px;
	}

	.section-padding {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.page-link {
		font-size: 12px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		margin-right: 5px;
		margin-left: 5px;
	}

	.navbar {
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.navbar-expand-lg .navbar-nav .nav-link {
		text-align: center;
		padding: 15px 30px;
		min-width: 125px;
	}


	.custom-block {
		padding: 30px;
	}

	.reviews-thumb {
		margin-bottom: 24px;
	}

}

@media screen and (max-width: 580px) {
	.site-footer {
		text-align: center;
	}
}

@media screen and (max-width: 480px) {
	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}


	.page-link {
		width: 35px;
		height: 35px;
		line-height: 35px;
	}

	.copyright-text-wrap {
		justify-content: center;
	}
}