* {
	padding: 0;
	margin: 0;
	-webkit-background-origin: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*  Tags  */

html {
	font-size: 15px;
}

body {
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem; /*  15px  */
	font-weight: 400;
	color: #969FA8;
	overflow-x: hidden;
}


img {
	width: 100%;
	display: block;
}

a {
	display: inline-block;
	text-decoration: none;
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 1rem; /* 15px */
	line-height: 1.5em;
	letter-spacing: -.03em;
	cursor: pointer;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-ms-transition: all .4s linear;
	transition: all .4s linear;
}

h1 {
	font-size: 5.3rem; /* 80px */
	line-height: 1.06em;
	letter-spacing: 0;
	font-weight: 300;
	color: #fff;
}

h2 {
	font-size: 4.3rem; /* 65px */
	line-height: 1.07em;
	font-weight: 300;
	color: #404040;
}

h3 {
	font-size: 1.3rem; /* 20px */
	line-height: 1.3em;
	font-weight: 400;
	letter-spacing: -.03em;
	color: #404040;
}

h4 {
	font-size: 1.2rem; /* 18px */
	line-height: 1.333em;
	color: #404040;
	font-weight: 500;
}

/* Containers */

.container_fluid {
	width: 100%;
	margin: 0;
	padding: 0;
}

.container {
	width: 1590px;
	padding: 0 60px;
	margin: 0 auto;
}

.container_md {
	width: 1390px;
	padding: 0 60px;
	margin: 0 auto;
}

/*  Columns  */

.columns_wrap {
	margin-right: -30px;
}

.column {
	padding-right: 30px;
	padding-bottom: 30px;
}

.column_1-3 {
	width: 33.333333%;
}

.column_1-4 {
	width: 25%;
}

.column_1-8 {
	width: 12.5%;
}

/* Header */

.header-wrap {
	width: 100%;
	background: #3EC7C5 url(../images/header/bg-tooth.svg) 53% 25% no-repeat;
	-webkit-background-size: 607px;
	background-size: 607px;
	height: 100vh;
	min-height: 990px;
	position: relative;
}

.header_inner-wrap {
	overflow: hidden;
	width: 100vw;
}

.header_top {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding: 42px 59px;
	position: relative;
	width: 100%;
	max-width: 1590px;
	margin: 0 auto;
}

.logo_wrap {
	width: 13.3rem;
}

.nav ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	padding-top: .4rem;
}

.nav li {
	display: inline-block;
}

.nav_link {
	font-size: calc(1rem + 1px); /* 16px */
	line-height: 1em;
	color: #fff;
	font-weight: 500;
	margin-left: 3.8rem;
	padding-bottom: .5rem;
	position: relative;
}

.nav_link:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	background: white;
	width: 0;
	transition: width .1s linear;
}

.nav_link:hover:after {
	width: 100%;
}

.nav_btn {
	position: relative;
	padding: 1.1rem 2.3rem;
	font-weight: 500;
	font-size: 1rem;
	
	border-radius: 3rem;
	margin-left: 4.7rem;
}

.nav_btn.btn span {
	color: #404040;
	-webkit-transition: all linear 0.3s;
	-moz-transition: all linear 0.3s;
	-ms-transition: all linear 0.3s;
	transition: all linear 0.3s;
}

.nav_btn.btn:before {
	background: #fff;
}

.nav_btn.btn:after {
	background: #FF8A8B;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
}


/*  Nav toggle  */

.nav-toggle {
	display: none;
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 1000;
	width: 2.5rem;
	height: 2.5rem;
	padding: 1rem 0;
	font-size: 0;
	color: transparent;
	background: none;
	border: 0;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);

}

.nav-toggle:focus {
	outline: none;
}

.burger {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;

	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	z-index: 100;

	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.burger:before,
.burger:after {
	content: "";
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 0;
	z-index: 100;

	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.burger:before {
	top: -.87rem;
}

.burger:after {
	bottom: -.87rem;
}

.nav-toggle.active .burger {
	background: none;
}

.nav-toggle.active .burger:before {
	transform-origin: left top;
	transform: rotate(45deg);
}

.nav-toggle.active .burger:after {
	transform-origin: left bottom;
	transform: rotate(-45deg);
}

.header_content {
	text-align: center;
	margin-top: 4rem;
}

.mac {
	width: 82%;
	max-width: 1203px;
	margin: 0 auto;
	position: relative;
	margin-top: 6.2rem;
}

.circle {
	position: absolute;
	right: 4%;
}

.circle2 {
	width: 11.5%;
	top: -12.6%;
	right: 4%;
}

.circle1 {
	width: 17%;
	top: 1.8%;
	right: 4.3%;
}

.frame {
	position: absolute;
}

.frame1 {
	left: 0;
	bottom: 10.4%;
	width: 17.9%;
}

.frame2 {
	right: 0;
	bottom: -9.5%;
	width: 17.7%;
}

/* Home */

.home-wrap {
	padding: 17.5rem 0 7.9rem;
	text-align: center;
	overflow: hidden;
}

.home_inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	/*justify-content: center;*/
	padding-top: 4.6rem;
}

.home_item a {
	display: block;
	position: relative;
	
}

.home_item img {
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.09);
	-moz-box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.09);
	box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.09);
}

.home_item a:hover img {
	-webkit-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	transform: translateY(-8px);
}

/* Sections */

.sub {
	font-size: calc(1rem + 2px);
	font-weight: 500;
	padding-top: 1.4rem;
}

.section_row {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}

.white {
	color: #fff;
}

.section_text {
	padding: 2.9rem 0 3.5rem;
	letter-spacing: .01em;
	line-height: 1.6em;
	font-weight: 500;
}

.section_btn {
	padding: 1.6rem 4rem;
}

.section_btn:before {
	background: #FF8A8B;
}

.section_btn:after {
	background: #8654b1;
}

.btn {
	border-radius: 5rem;
	position: relative;
	overflow: hidden;
}

.btn span {
	position: relative;
	z-index: 100;
	color: #fff;
	-webkit-transition: width .3s linear;
	-moz-transition: width .3s linear;
	-ms-transition: width .3s linear;
	transition: width .3s linear;
}


.btn:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
}

.btn:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0%;
	z-index: 20;
	-webkit-transition: width .3s linear;
	-moz-transition: width .3s linear;
	-ms-transition: width .3s linear;
	transition: width .3s linear;
}

.btn:hover:after {
	width: 100%;
}


/* Booked */

.booked-wrap {
	padding: 9.1rem 0 6.8rem;
	background: #3EC7C5 url(../images/booked/bg1.jpg) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	overflow: hidden;
}

.booked_content {
	width: 41%;
	padding-bottom: .6rem;
}

.booked_img {
	width: 51.5%;

}
/* Selling */

.selling-wrap {
	padding: 8.3rem 0 8.1rem;
	background: #fff;
	overflow: hidden;
}

.selling_content {
	width: 41.5%;
	padding-bottom: .8rem;
	position: relative;
}

.woo_tooth {
	position: absolute;
	top: -17%;
	right: 0%;
	width: 269px;
	z-index: 0;
}

.selling_btn:after {
	background: #3ec7c5;
}

.selling_btn:hover span {
	color: #fff;
}

.selling_img {
	width: 52.5%;
	margin-left: -2.5rem;
}



/* Slider */

.slider-wrap {
	padding: 9.3rem 0 9.4rem;
	background: linear-gradient(to bottom, #f4f7f7 0%,#f4f7f7 50.2%,white 50.2%,white 100%);
	overflow: hidden;
}

.slider_text {
	text-align: center;
}

.swiper-container {
	padding-top: 4.7rem;
	padding-bottom: 8.05rem;
}

.swiper-slide a {
	display: block;
}

.swiper-slide img {
	-webkit-box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.09);
	-moz-box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.09);
	box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.09);
}

.swiper_button-wrap {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 auto;
	width: 82px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);

}

.swiper-button-next, .swiper-button-prev {
	position: static;
	display: inline-block;
	width: 40px;
	height: 40px;
	z-index: 10;
	cursor: pointer;
	background: none;
	border-radius: 50%;
	border: 2px solid #9ee3e2;
	outline: none;
	margin: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;

	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
	border-color: #ff8a8b;
}

.swiper-button-next:hover i:before, .swiper-button-prev:hover i:before {
	color: #ff8a8b;
}

.swiper-button-prev {
	left: 0;
	margin-right: 2px;
}

.swiper-button-next {
	right: 0;
}

.icon-left-open:before {
	content: '\e800'; 
	font-size: 13px;
	color: #9ee3e2;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}

.icon-right-open:before {
	content: '\e801'; 
	font-size: 13px;
	color: #9ee3e2;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}

/* Plugins */

.plugins-wrap {
	background: #fff;
	padding: 0 0 5rem;
	text-align: center;
	overflow: hidden;
}

.plugins_sub {
	padding: 1.5rem 500px 0;
	line-height: 1.6em;
}

.plugins_inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	-ms-align-items: flex-start;
	align-items: flex-start;
	padding-top: 4.2rem;
	margin: 0 -3.1rem;
}

.plugin_item {
	padding-right: 0;
	padding-bottom: 4.6rem;
	text-align: center;
}

.square-wrap {
	width: 6.6rem;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
}

.plugin_text {
	margin-top: 1.9rem;

}

/* Features */

.features-wrap {
	text-align: center;
	padding: 9.3rem 0 7.25rem;
	background: #F4F7F7;
	overflow: hidden;
}

.features_inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 3.5rem;
}

.features_item-wrap {
	position: relative;
	padding-top: 95.8%;
	width: 100%;
	background: #fff;
	-webkit-box-shadow: 0px 1px 62px 0px rgba(12,71,84,0.08);
	-moz-box-shadow: 0px 1px 62px 0px rgba(12,71,84,0.08);
	box-shadow: 0px 1px 62px 0px rgba(12,71,84,0.08);
	-webkit-transition: transform .3s linear;
	-moz-transition: transform .3s linear;
	-ms-transition: transform .3s linear;
	transition: transform .3s linear;
}

.features_item-wrap:hover {
	-webkit-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	transform: translateY(-8px);
}

.features_content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 4rem 2rem 0;
}

.features_img {
	width: 4.3rem;
	margin: 0 auto;
}

.features_caption {
	margin-top: 2.2rem;
}

.features_text {
	margin-top: 1.8rem;
	line-height: 1.6em;
	padding: 0 2rem;
	font-weight: 500;
}

/* Footer */

.footer-wrap {
	background: #707070 url(../images/footer/bg.jpg) center  no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 9.2rem 0 9.7rem;
	text-align: center;
	overflow: hidden;
}

.footer_inner {
	margin: 0 auto;
	width: 70%;
	max-width: 800px;
	padding: 0 15px;
}

.footer_btn {
	margin-top: 4rem;
	color: #fff;
	background:  #3EC7C5;
}

.footer_btn:hover span {
	color: #fff;
}

.footer_btn:before {
	display: none;
}

.footer_btn:after {
	background: #ff8a8b;
}

/* Top Button */

#topBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	font-size: 1.2rem;
	width: 3.5rem;
	height: 3.5rem;
	color: #fff;
	z-index: 100;
	border: none;
	border-radius: 50%;
	outline: none;
	cursor: pointer;
	display: none;
	transition: all .3s linear;
	z-index: 100;
	overflow: hidden;
}

#topBtn:before {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	bottom: 0;
	width: 200%;
	background: linear-gradient(to right, #f2797a 50%,#ff8a8b 50%);
	-webkit-transition: transform .3s linear;
	-moz-transition: transform .3s linear;
	-ms-transition: transform .3s linear;
	transition: transform .3s linear;
	z-index: -1;
}

#topBtn:hover:before {
	transform: translateX(50%);
}

#topBtn:hover {
	outline: none;
}

#loader {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 1000;
	transition: 0.3s ease opacity;
}
#loader:before,
#loader:after {
	content: '';
	width: 80px;
	height: 80px;
	border: 2px solid #FF8A8B;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	animation-name: loaderCircleAnim;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
#loader:after {
	animation-delay: 1s;
}
@keyframes loaderCircleAnim {
	0% {
		width: 0;
		height: 0;
		opacity: 0;
	}
	10% {
		width: 10px;
		height: 10px;
		opacity: 1;
	}
	80% {
		width: 60px;
		height: 60px;
		opacity: 0.1;
	}
	100% {
		width: 70px;
		height: 70px;
		opacity: 0;
	}
}