:root {
	--menu-color: #0F4137;
	--pink-color: #E699A0;
	--darkpink-color: #FF2E63;
	--green-color: #02B59F;
}

* {
	font-family: Arial;
	text-decoration: none;
}

html, body {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

#menu {
	width: 100%;
	height: 100px;
	background-color: var(--menu-color);
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	transition: all .1s linear;
}

#menuBox {
	margin: 0 20px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo {
	display: flex;
}

.lleft, .lright {
	display: flex;
	flex-direction: column;
}

.llt, .lrt {
	text-transform: uppercase;
	color: #FFF;
	font-size: 18px;
}
.lrt {color: var(--pink-color);}

.lleft {
	text-align: right;
	padding-right: 5px;
}

.llb, .lrb {
	text-transform: uppercase;
	color: #FFF;
	font-size: 14px;
}
.lrb {color: var(--green-color);}

#menuBtns {
	width: 0;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mItem {
	margin: 0 10px;
	padding: 4px;
	color: #FFF;
	text-transform: uppercase;
	font-size: 18px;
	border: 2px solid transparent;
	transition: all .2s ease;
	cursor: pointer;
}

.mItem:hover {
	color: var(--pink-color);
	border-bottom-color: var(--pink-color);
}

#menuLinks {
	display: flex;
	align-items: center;
	justify-content: center;
}

.phone {
	display: flex;
	align-items: center;
	justify-content: left;
	color: var(--green-color);
	font-size: 18px;
}

.phone svg {
	margin-right: 5px;
	width: 30px;
	height: 30px;
	fill: var(--green-color);
}

.phone:hover {
	text-decoration: underline;
}

.whatsapp {
	margin-left: 10px;
	padding: 10px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: transparent;
	transition: all .2s ease;
	cursor: pointer;
}

.whatsapp svg {
	fill: var(--pink-color);
	width: inherit;
	height: inherit;
	background-color: transparent;
}

.whatsapp:hover {
	background-color: var(--pink-color);
}

.whatsapp:hover svg {
	fill: #FFF;
}

#slider {
	margin-top: 70px;
	display: block;
	height: calc(100% - 70px);
	overflow: hidden;
	position: relative;
	transition: all .1s linear;
}

#sControl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.sItem {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: all .5s ease;
}

.sItem:first-child {
	display: block;
}

#sLeft, #sRight {
	margin: 20px;
	width: 50px;
	min-width: 50px;
	height: 50px;
	border: 4px solid #FFF;
	cursor: pointer;
	transition: all .2s ease;
}
#sLeft svg, #sRight svg {fill: #FFF;}
#sLeft:hover, #sRight:hover {background-color: #FFF;}
#sLeft:hover svg, #sRight:hover svg {fill: var(--pink-color);}

#sInfo {
	padding: 50px;
	user-select: none;
	background-color: rgba(255, 255, 255, .8);
	color: var(--menu-color);
	font-size: 38px;
	border-radius: 10px;
	text-align: center;
}

.contact {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px 0;
	box-sizing: border-box;
}

.cset, .cget {
	box-sizing: border-box;
	margin: 0 20px;
	padding: 10px 20px;
	font-size: 24px;
	width: 470px;
	text-align: center;
	color: #FFF;
	border-radius: 10px;
	background-color: var(--darkpink-color);
	cursor: pointer;
}
.cget {background-color: var(--menu-color);}

.sectionSel {
	padding: 50px 0;
	background-color: rgb(231, 245, 242);
}

.section {
	padding: 50px 0;
}

.caption {
	text-transform: uppercase;
	font-weight: bold;
	color: var(--menu-color);
	text-align: center;
	font-size: 54px;
}

.separator {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sepLine {
	width: 50px;
	height: 2px;
	background-color: var(--pink-color);
}

.sepIcon {
	margin: 0 10px;
	width: 30px;
	height: 30px;
	background-image: url(img/logo.png);
	background-size: 80% auto;
	background-position: center;
	background-repeat: no-repeat;
}

.content {
	padding: 20px;
	text-align: center;
	box-sizing: border-box;
}

.cItem {
	margin: 20px;
	width: 350px;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
}

.ciImg {
	width: 100%;
	height: 300px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	box-sizing: border-box;
}

.ciCapt {
	text-align: center;
	padding: 10px 0;
	font-weight: bold;
	font-size: 20px;
	color: #000;
	box-sizing: border-box;
}

.ciInfo {
	text-align: center;
	color: #555;
	font-size: 18px;
	text-align: justify;
	box-sizing: border-box;
}

#lmenuBtn {
	display: none;
	cursor: pointer;
}

#lmenuBtn svg {
	fill: var(--pink-color);
	transition: all .2s ease;
}

#lmenuBtn:hover svg {
	fill: #FFF;
}

.novis {
	display: none;
}

.l42 {font-size: 42px;}

.duo {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
}

.dul {
	padding: 50px 0;
	width: 0;
	align-self: stretch;
	flex-grow: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.dur {
	padding: 50px 0;
	width: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.durItem {
	max-width: 600px;
	margin: 20px 50px 0 50px;
	padding: 10px 0 10px 40px;
	font-size: 18px;
	color: #555;
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: 24px auto;
	background-image: url(img/ic_arrow.png);
}

.mCapt {
	padding: 20px;
	font-size: 24px;
}

.gr {
	color: #999;
}

.price {
	vertical-align: top;
	padding: 20px 20px 30px 20px;
	margin: 20px 10px;
	display: inline-block;
	width: 400px;
	position: relative;
	border: 1px solid var(--green-color);
	border-radius: 10px;
}

.pCapt {
	display: flex;
	align-items: center;
	font-size: 24px;
	color: var(--green-color);
	text-align: left;
}

.pCirc {
	margin: 0 10px;
	text-align: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
	line-height: 40px;
	color: #FFF;
	background-color: var(--green-color);
	border-radius: 50%
}

.pItem {
	margin: 20px 0 0 0;
	display: flex;
	/*align-items: center;*/
	font-size: 18px;
	font-size: 16px;
	text-align: left;
}

.pMinCirc {
	margin: 5px 15px;
	width: 10px;
	min-width: 10px;
	height: 10px;
	background-color: var(--green-color);
	border-radius: 50%;
}

.pWarn {
	margin: 0 10px;
	width: 20px;
	min-width: 20px;
	height: 20px;
	fill:  #A33;
}

.pCol {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.pItem svg {
	margin-right: 20px;
}

.pmc {
	color: #999;
	font-weight: bold;
}

.ppc {
	font-size: 24px;
	font-weight: bold;
}

.ppcm {
	font-size: 16px;
}

.psp {
	height: 50px;
}

.dText {
	padding: 20px;
	color: #555;
	font-size: 18px;
}

.selImg {
	margin: 10px;
	width: 100px;
	height: auto;
}

.dlMid {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.mForm {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	padding: 20px;
}

.mForm input,
.mForm textarea {
	max-width: 600px;
	margin-top: 20px;
	box-sizing: border-box;
	padding: 5px;
	height: 40px;
	width: 100%;
}

.mForm textarea {
	height: 200px;
	resize: none;
}

.lbl {
	margin-top: 20px;
	width: 100%;
	max-width: 600px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: start;
}

.lbl input {
	min-width: 20px;
	margin: 0 20px 0 0;
	width: 20px;
}

.mForm button {
	margin-top: 20px;
	width: 200px;
	height: 50px;
	border-radius: 10px;
	border: none;
	background-color: var(--pink-color);
	transition: all .2s ease;
	cursor: pointer;
	color: #FFF;
	font-size: 20px;
}

.mForm button:hover {
	background-color: var(--darkpink-color);
}

#rMenu {
	width: 80%;
	height: 100%;
	position: fixed;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	top: 0;
	right: -80%;
	/*right: 0;*/
	background-color: #FFF;
	border-left: 1px solid var(--menu-color);
	z-index: 100;
	/*display: none;*/
}

#rMenu .mItem {
	padding: 20px 0;
	font-size: 20px;
	color: var(--menu-color);
	display: flex;
	align-items: center;
	justify-content: start;
	border-bottom-color: #AAA;
}

#rMenu .mItem svg {
	padding-right: 20px;
	height: 30px;
	fill: var(--pink-color);
}

#rmBack {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .8);
	cursor: pointer;
	z-index: 99;
	display: none;
}

/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */

@media all and (max-width: 1000px) {

	.rech {
		order: -1;
	}

	#sInfo {
		padding: 10px;
	}

	.duo {
		flex-direction: column;
	}

	.dul {
		width: 100%;
		align-self: auto;
	}

	.dur {
		width: 100%;
		justify-content: center;
	}

	.durItem {
		max-width: none;
	}

	#menuBtns {
		display: none;
	}

	#menuBox {
		justify-content: space-between;
	}

	#menuBox .phone {
		display: none;
	}

	#lmenuBtn {
		display: block;
	}

	#menuLinks {
		order: -1;
	}

	#sInfo {
		font-size: 24px;
		transition: all .5s ease;
	}

	.whatsapp {
		padding: 0;
	}

	.contact {
		margin-left: 10%;
		margin-right: 10%;
		display: block;
	}

	.cset, .cget {
		width: 100%;
		margin: 10px 0;
	}

	.caption {
		font-size: 42px;
	}

}

@media all and (max-width: 600px) {

	.price {
		width: auto;
		box-sizing: border-box;
	}

	#sInfo {
		font-size: 18px;
	}

	.contact {
		margin-left: 20px;
		margin-right: 20px;
	}

	.caption {
		font-size: 32px;
	}

	.l42 {
		font-size: 26;
	}

}

@media all and (max-width: 500px) {

	.cItem {
		width: auto;
		box-sizing: border-box;
	}

}


@media all and (max-width: 430px) {

	.logo {
		zoom: .7;
	}

}