/*----------- Desarrollo Grupo Makm 2022 / Fabián Cordero -----------*/
body, html {
	background-color: #fff;
	color: var(--text);
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 300;
	margin:0px;
	padding:0px;
}
body, html {
	overflow-x: hidden;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, img { display:block }
table { border:none; border-collapse:collapse }
a {
	color: var(--text);
	cursor:pointer;
	text-decoration:none;
	outline:none;
}
p, form, input, ul, ol, h1, h2, h3, h4, h5, h6, figure, hr, span, img, blockquote, fieldset {
	margin:0px;
	padding:0px;
}
ul li { list-style-type:none; list-style-position:outside }
ol li { list-style-position: inside }
img { border:0px }
input, textarea, select, button {
	border-radius:0px;
	border:none;
	color: var(--text);
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 300;
	resize:none;
	outline: none;
}
::selection {
	background-color: #262626;
	color: #fff;
}
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	position: relative;
}
:root {
	--text: #262626;
	--main: #006cb5;
	--secondary: #00a997;
	--third: #00a9c2;
	--mainWidth: 1300px;
	--plyr-color-main: #006cb5;
}

strong { font-weight: 500 }


/*----------- header -----------*/
header {
	height:85px;
	left: 0;
	position: fixed;
	top: 0;
	transition:all 0.3s ease;
	width: 100%;
	z-index: 1000;
}
header.inside {
	background-color: #e8f6ff !important;
	box-shadow: none !important;
	position: relative;
}
header .content {
	margin: auto;
	max-width: var(--mainWidth);
}
header.change {
	background-color: rgba(255,255,255,.95);
	box-shadow: 0 0 30px rgba(30,30,30,.1);
}
header #logo {
	left: 0;
	position: absolute;
	top: 19px;
	z-index: 10;
}
header #logo svg {
	width: 140px;
}
header #navButton {
	background-color: var(--third);
	border-radius: 10px;
	box-shadow: 0 0 0 2px rgba(255,255,255,.9);
	color: #fff;
	cursor: pointer;
	display: none;
	font-size: 1.4em;
	height: 43px;
	left: 12px;
	line-height: 43px;
	position: fixed;
	text-align: center;
	top: 12px;
	width: 43px;
	z-index: 2000;
}
header #closeMenu {
	background-color: #e8f6ff;
	border-radius: 10px;
	color: var(--main);
	cursor: pointer;
	display: none;
	font-size: 1.4em;
	height: 43px;
	left: 12px;
	line-height: 43px;
	position: absolute;
	text-align: center;
	top: 12px;
	width: 43px;
	z-index: 999999;
}
header .back {
	font-size: 1.1em;
	font-weight: 500;
	position: absolute;
	right: 0;
	top: 28px;
	transition:all 0.3s ease;
}
header .back:hover {
	color: var(--third);
}
header .back i {
	color: var(--third);
	margin-right: 10px;
}
@media only screen and (max-width:1368px) {
	header .back { right: 30px }
}
@media only screen and (max-width:1344px) {
	header #logo { left: 22px }
}
@media only screen and (max-width:980px) {
	header {
		height: 80px;
		position: relative;
	}
	header #logo {
		left: 50%;
		top: 9px;
		transform: translateX(-50%);
	}
	header #logo svg { width: 120px }
	header #navButton,
	header #closeMenu { display: block }
	header .back { font-size: 1em; top: 20px }
}
@media only screen and (max-width:580px) {
	header {
		height: 77px;
		padding: 12px 0;
	}
	header #logo img {
		width: 86px;
	}
	header #navButton,
	header #closeMenu { top: 15px }
	header .back { font-size: 1.1em }
	header .back span { display: none }
}


/*----------- nav -----------*/
nav ul {
	display: grid;
	grid-template-columns: repeat(7,auto);
	justify-content: end;
}
nav ul a {
	color: #3c3c3c;
	display: block;
	font-size: 1.05em;
	font-weight: 500;
	height: 85px;
	line-height: 85px;
	padding: 0 4px;
	text-align: center;
}
nav ul a:hover { color: var(--main) }
nav ul a span {
	border-radius: 20px;
	padding: 7px 22px;
	transition:all 0.3s ease;
}
nav ul .active a span {
	background-color: var(--main);
	color: #fff;
}
nav ul .social {
	padding: 0 8px;
	top: 2px;
}
nav ul li:nth-child(6) a {
	margin-left: 14px;
}
nav ul li:nth-child(7) a {
	margin-right: 86px;
}
nav ul .social i {
	color: var(--main);
	font-size: 1.4em;
	transition:all 0.3s ease;
}
nav ul .social:hover i {
	color: var(--secondary);
}
@media only screen and (max-width:1344px) {
	nav ul li:nth-child(7) a { margin-right: 22px }
}
@media only screen and (max-width:980px) {
	nav ul {
		background-color: rgba(255,255,255,.96);
		box-shadow: 0 0 30px rgba(50,50,50,.2);
		display: block;
		height: 100vh;
		left:-230px;
		overflow-y: auto;
		padding: 90px 22px 44px 22px;
		position:fixed;
		top: 0;
		transform: initial;
		transition: initial;
		width: 197px;
		z-index:20000;
	}
	nav ul a {
		display: block;
		font-size: 1.1em;
		height: initial;
		line-height: initial;
		padding: 10px 0 !important;
		text-align: left;
	}
	nav ul a:hover { color: var(--fourth) }
	nav ul li:nth-child(7) a { margin-left: 14px }
}


/*----------- mainSlider -----------*/
#mainSlider {
	background-color: #e8f6ff;
	overflow: hidden;
	padding: 120px 0 0 0;
}
#mainSlider .item {
	align-items: center;
	display: grid;
	grid-template-columns: 46% auto;
	margin: auto;
	max-width: var(--mainWidth);
	z-index: 20;
}
#mainSlider .textBox {
	z-index: 100;
}
#mainSlider .textBox h1 {
	font-size: 3.1em;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 14px;
}
#mainSlider .textBox p {
	font-size: 1.3em;
	font-weight: 400;
	line-height: 1.45em;
}
#mainSlider .textBox a {
	background-color: var(--third);
	border-radius: 30px;
	color: #fff;
	display: table;
	font-size: 1.1em;
	font-weight: 400;
	margin-top: 24px;
	padding: 10px 36px;
	transition:all 0.3s ease;
}
#mainSlider .textBox a:hover {
	background-color: var(--main);
}
#mainSlider .photo img {
	display: table;
	margin-left: auto;
	max-width: 490px;
}
#mainSlider .circle1 {
	background: linear-gradient(218deg, rgba(189,234,254,1) 0%, rgba(232,246,255,1) 85%);
	border-radius: 50%;
	bottom: -146px;
	height: 510px;
	right: 12%;
	position: absolute;
	width: 510px;
}
#mainSlider .circle1::before {
	background-color: #e8f6ff;
	border-radius: 50%;
	content: "";
	height: 74%;
	left: 13%;
	position: absolute;
	top: 13%;
	width: 74%;
}
#mainSlider .circle2 {
	background: linear-gradient(166deg, rgba(101,195,209,1) 20%, rgba(232,246,255,1) 95%);
	border-radius: 50%;
	height: 510px;
	right: -8%;
	position: absolute;
	top: -180px;
	width: 510px;
}
#mainSlider .circle2::before {
	background-color: #e8f6ff;
	border-radius: 50%;
	content: "";
	height: 74%;
	left: 13%;
	position: absolute;
	top: 13%;
	width: 74%;
}
@media only screen and (max-width:1344px) {
	#mainSlider .item { padding: 0 30px }
}
@media only screen and (max-width:1140px) {
	#mainSlider .textBox h1 { font-size: 2.5em }
}
@media only screen and (max-width:980px) {
	#mainSlider { margin-top: -80px }
	#mainSlider .circle1 { height: 400px; width: 400px }
	#mainSlider .circle2 { height: 400px; width: 400px }
	#mainSlider .photo img { max-width: 390px }
}
@media only screen and (max-width:680px) {
	#mainSlider .item { gap: 20px; grid-template-columns: auto }
	#mainSlider .textBox { grid-row: 2; padding-bottom: 30px }
	#mainSlider .textBox h1 { font-size: 2.1em }
	#mainSlider .circle1 { bottom: -54px; height: 200px; right: 50%; width: 200px }
	#mainSlider .circle2 { height: 200px; top: -90px; width: 200px }
	#mainSlider .photo { border-bottom: 2px solid var(--third) }
}
@media only screen and (max-width:480px) {
	#mainSlider .textBox h1 { font-size: 1.9em }
	#mainSlider .photo img { max-width: 100% }
	#mainSlider .circle2 { right: -26% }
}


/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.internalBanner .slick-list {  /* fcc */
	border-radius: 40px 40px 0 0 !important;
}
.slick-list:focus { outline: none }
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}
.slick-track:after { clear: both }
.slick-loading .slick-track { visibility: hidden }
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
	position: relative;
}
[dir='rtl'] .slick-slide { float: right }
.slick-slide img { display: block !important }
.slick-slide.slick-loading img { display: none }
.slick-slide.dragging img { pointer-events: none }
.slick-initialized .slick-slide { display: block }
.slick-loading .slick-slide { visibility: hidden }
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden { display: none }

/* fcc */
#mainSlider .slick-dots {
	bottom: 20px !important;
	left: 50%;
	max-width: 1200px;
	text-align: left;
	transform: translateX(-50%);
	z-index: 200;
}
.slick-dots li {
	margin: 0 3px !important;
}
.slick-dots li button:before {
	color: #fff !important;
	font-size: 15px !important;
	opacity: 1 !important;
}
.slick-dots li.slick-active button:before { color: var(--secondary) !important }
.slick-dotted.slick-slider { margin-bottom: 0 !important }

.slick-next,
.slick-prev {
	bottom: 30px !important;
	height: 64px !important;
	transition:all 0.3s ease !important;
	width: 64px !important;
	z-index: 10;
}
.slick-prev { left: 12px !important }
.slick-next { right: 12px !important }
.slick-next.slick-disabled,
.slick-prev.slick-disabled {
	cursor: default;
}

.slick-next:before,
.slick-prev:before {
	color: var(--secondary) !important;
	font: var(--fa-font-solid) !important;
	font-size: 56px !important;
	opacity: 1 !important;
	transition:all 0.3s ease;
}
.slick-prev:before { content: "\f060" !important }
.slick-next:before { content: "\f061" !important }

.slick-next:hover:before,
.slick-prev:hover:before {
	color: #fff !important;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
	color: #dbdbdb !important;
}
@media only screen and (max-width:1270px) {
	#mainSlider .slick-dots { left: 38px !important; transform: initial !important }
}
@media only screen and (max-width:900px) {
	#mainSlider .slick-dots { left: 18px !important }
}
@media only screen and (max-width:660px) {
	.slick-next, .slick-prev { display: none !important }
}



/*----------- footer -----------*/
footer {
	background-color: var(--third);
	color: var(--text);
	padding: 80px 0;
}
footer h2 {
	color: #fff;
	font-size: 2.3em;
	font-weight: 600;
	margin: 0 auto 30px auto;
	max-width: var(--mainWidth);
}
footer .content {
	align-items: start;
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(2,1fr);
	margin: auto;
	max-width: var(--mainWidth);
}
footer .info {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2,1fr);
}
footer .info .item {
	background-color: #fff;
	border-radius: 12px;
	padding: 20px 26px;
}
footer .info .item i {
	color: var(--main);
	font-size: 3.1em;
	margin-bottom: 14px;
}
footer .info .item h4 {
	font-size: 1.25em;
	font-weight: 600;
	margin-bottom: 12px;
}
footer .info .item p {
	font-size: 1.12em;
}
footer .info .item p a {
	transition:all 0.3s ease;
}
footer .info .item p a:hover {
	color: var(--main);
}
footer .wrapMap {
	background-color: var(--third);
}
footer .wrapMap iframe {
	mix-blend-mode: luminosity;
}
footer .info .btn {
	background-color: var(--main);
	border-radius: 30px;
	box-shadow: 0 0 0 2px var(--main),
				0 0 2px var(--main),
				0 0 2px var(--main),
				0 0 2px var(--main),
				0 0 2px var(--main),
				0 0 2px var(--main),
				0 0 2px var(--main),
				0 0 2px var(--main),
				0 0 2px var(--main);
	color: #fff;
	display: table;
	font-size: 1.1em;
	font-weight: 500;
	margin-top: 14px;
	padding: 5px 26px 6px 26px;
	transition: all 0.3s ease;
}
footer .info .btn:hover {
	background-color: #fff;
	box-shadow: 0 0 0 2px var(--main);
	color: var(--main);
}
#policy {
	background-color: var(--third);
	border-top: 1px solid #00c7e4;
	color: #fff;
	font-size: 1.05em;
	font-weight: 400;
	padding: 24px 28px;
}
#policy > div {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	margin: auto;
	max-width: var(--mainWidth);
}
#policy div > a {
	color: #fff;
	text-align: right;
}
#policy div > a:hover {
	text-decoration: underline;
}
#policy .recruitment {
	color: #fff;
	font-weight: 500;
	margin-right: 12px;
	text-decoration: underline;
	transition:all 0.3s ease;
}
#policy .recruitment:hover {
	color: #b3f5ff;
}
@media only screen and (max-width:1600px) {
	#policy { padding: 24px 28px 86px 28px }
}
@media only screen and (max-width:1360px) {
	footer { padding: 80px 22px }
}
@media only screen and (max-width:1180px) {
	footer { padding: 40px 22px }
	footer .content { grid-template-columns: repeat(1,1fr) }
	footer .info { grid-template-columns: repeat(4,1fr) }
}
@media only screen and (max-width:1100px) {
	footer .info { grid-template-columns: repeat(2,1fr) }
}
@media only screen and (max-width:680px) {
	footer h2 { font-size: 1.9em; margin: 0 auto 15px auto }
	footer .info { grid-template-columns: repeat(1,1fr) }
}
@media only screen and (max-width:560px) {
	#policy > div { gap: 4px; grid-template-columns: repeat(1,1fr); text-align: center }
	#policy a { text-align: center }
	#policy div > a { text-align: center }
}


/*----------- misc -----------*/
.normalText h2 {
	font-size: 2.5em;
	font-weight: 600;
	line-height: 1.25em;
	margin: -10px 0 8px 0;
}
.normalText h3 {
	font-size: 2em;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 14px;
	margin-top: 30px;
}
.normalText h4 {
	font-size: 1.3em;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 6px;
}
.normalText h4 i {
	color: var(--third);
	margin-right: 11px;
}
.normalText p {
	font-size: 1.2em;
	line-height: 1.5em;
	margin-bottom: 24px;
}
.normalText p:last-of-type {
	margin-bottom: 0;
}
.normalText p a {
	color: #3a3d4f;
	font-weight: 600;
	text-decoration: underline;
}
.col50 {
	display: grid;
	grid-gap: 16px;
	grid-template-columns: repeat(2,1fr);
}
.span2 {
	grid-column: span 2;
}

.msjError,
.msjSuccess {
	display: none;
	border-radius: 10px;
	font-size: 1.05em;
	font-weight: 500;
	line-height: 1.3em;
	padding: 12px 14px;
	text-align: center;
}
.msjError i,
.msjSuccess i { margin-right: 12px }
.msjError {
	border: 2px solid #FF4100;
	color: #FF4100;
}
.msjSuccess {
	border: 2px solid #00C164;
	color: #00C164;
}
.embedContainer {
	border-radius: 12px;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.embedContainer.map {
	padding-bottom: 64%;
}
.embedContainer iframe,
.embedContainer object,
.embedContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.generalBtn {
	background-color: var(--secondary);
	border-radius: 6px;
	color: #282828;
	display: table;
	font-size: 1.1em;
	font-weight: 600;
	margin-top: 14px;
	padding: 10px 19px;
	transition:all 0.3s ease;
}
.generalBtn i { margin-right: 11px }
.generalBtn:hover {
	background-color: var(--third);
	color: #fff;
}
#waBtn {
	background: rgb(77, 194, 71) none repeat scroll 0% 0% !important;
	box-shadow: 0 0 0 3px rgba(255,255,255,.9);
	border-radius: 50%;
	bottom: 16px;
	height: 50px;
	overflow: hidden;
	position: fixed;
	padding: 5px;
	right: 16px;
	transition: all 0.5s ease 0s;
	width: 50px;
	z-index: 200;
}
.captcha {
	background-position: right top;
	background-repeat: no-repeat;
	background-size: contain;
}
@media only screen and (max-width:960px) {
	.embedContainer { padding-bottom: 36% }
}
@media only screen and (max-width:720px) {
	.embedContainer { padding-bottom: 52% }
}
@media only screen and (max-width:620px) {
	.col50 { grid-template-columns: repeat(1,1fr) }
	.span2 { grid-column: span 1 }
}
@media only screen and (max-width:500px) {
	.embedContainer { padding-bottom: 76% }
	.normalText h2 { font-size: 2em; line-height: 1.3em }
	.normalText h3 { font-size: 1.8em; line-height: 1.3em }
	.normalText p { font-size: 1.15em }
}


/*------------- sideBullets --------------*/
#sideBullets {
	display: none;
}


/*----------- Magnific -----------*/
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200000;
	overflow: hidden;
	position: fixed;
	background-color: #28313e;
	opacity: 0.6;
	filter: alpha(opacity=6);
}
.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200002;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
}
.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.mfp-align-top .mfp-container:before { display: none; }
.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}
.mfp-ajax-cur { cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}
.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content { cursor: auto; }
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.mfp-loading.mfp-figure { display: none; }
.mfp-hide { display: none !important; }
.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}
.mfp-preloader a { color: #CCC; }
.mfp-preloader a:hover { color: #FFF; }
.mfp-s-ready .mfp-preloader { display: none; }
.mfp-s-error .mfp-content { display: none; }
button.mfp-close, button.mfp-arrow {
	background-color: transparent;
	overflow: visible;
	cursor: pointer;
	border: 0;
	appearance: none;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	box-shadow: none;
}
button::-moz-focus-inner { padding: 0; border: 0 }
.mfp-close {
	cursor: pointer;
	font-size: 13px;
	height: 34px;
	line-height: 33px !important;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	width: 34px;
}
.mfp-close:hover, .mfp-close:focus { opacity: 1; filter: alpha(opacity=100); }
.mfp-close-btn-in .mfp-close { color: #a8b1b6 }
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	color: #fff;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	text-shadow: 0 0 10px rgba(0,0,0,0.9);
	width: 100%;
}
.mfp-counter {
	color: #fff;
	font-size: 12px;
	position: absolute;
	top: 7px;
	right: 10px;
	line-height: 18px;
	white-space: nowrap;
}
.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	filter: alpha(opacity=65);
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active { margin-top: -54px; }
.mfp-arrow:hover, .mfp-arrow:focus { opacity: 1; filter: alpha(opacity=100); }
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}
.mfp-arrow:after, .mfp-arrow .mfp-a {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}
.mfp-arrow:before, .mfp-arrow .mfp-b {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}
.mfp-arrow-left { left: 0; }
.mfp-arrow-left:after, .mfp-arrow-left .mfp-a { border-right: 17px solid #FFF; margin-left: 31px; }
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b { margin-left: 25px; border-right: 27px solid #3F3F3F; }
.mfp-arrow-right { right: 0; }
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a { border-left: 17px solid #FFF; margin-left: 39px; }
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b { border-left: 27px solid #3F3F3F; }
.mfp-iframe-holder { padding-top: 40px; padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content { line-height: 0; width: 100%; max-width: 900px; }
.mfp-iframe-holder .mfp-close { top: -40px; }
.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}
/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	padding: 40px 0 40px;
	margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure { line-height: 0; }
.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 14px rgba(41, 41, 41, 0.4);
	background: #444;
}
.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px;
}
.mfp-figure figure { margin: 0; }
.mfp-bottom-bar {
	margin-top: -40px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}
.mfp-title {
	color: #fff;
	font-size: 1em;
	font-weight: 400;
	min-height: 34px;
	text-align: left;
	line-height: 18px;
	word-wrap: break-word;
	padding: 8px 0 10px 0;
}
.mfp-image-holder .mfp-content { max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure { cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	.mfp-img-mobile .mfp-image-holder { padding-left: 0; padding-right: 0; }
	.mfp-img-mobile img.mfp-img { padding: 0; }
	.mfp-img-mobile .mfp-figure:after { top: 0; bottom: 0; }
	.mfp-img-mobile .mfp-figure small { display: inline; margin-left: 5px; }
	.mfp-img-mobile .mfp-bottom-bar { background: rgba(0, 0, 0, 0.6); bottom: 0; margin: 0; top: auto; padding: 3px 5px; position: fixed; }
	.mfp-img-mobile .mfp-bottom-bar:empty { padding: 0; }
	.mfp-img-mobile .mfp-counter { right: 5px; top: 3px; }
	.mfp-img-mobile .mfp-close { top: 0; right: 0; width: 35px; height: 35px; line-height: 35px; background: rgba(0, 0, 0, 0.6); position: fixed; text-align: center; padding: 0; }
}
@media all and (max-width: 900px) {
	.mfp-arrow { -webkit-transform: scale(0.75); transform: scale(0.75); }
	.mfp-arrow-left { -webkit-transform-origin: 0; transform-origin: 0; }
	.mfp-arrow-right { -webkit-transform-origin: 100%; transform-origin: 100%; }
	.mfp-container { padding-left: 14px; padding-right: 14px; }
}


/*----------- cdtop -----------*/
.cdTop {
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(40,40,40,.15);
	bottom: 21px;
	color: var(--main);
	font-size: 1.3em;
	height: 40px;
	line-height: 40px;
	opacity: 0;
	position: fixed;
	right: 90px;
	text-align: center;
	transition:all 0.3s ease;
	visibility: hidden;
	width: 41px;
	z-index: 9988;
}
.cdTop:hover {
	background-color: var(--main);
	box-shadow: 0 0 10px rgba(40,40,40,0);
	color: #fff;
}
.cdTop.cd-is-visible,
.cdTop.cd-fade-out,
.no-touch .cdTop:hover {
	transition:all 0.3s ease;
}
.cdTop.cd-is-visible {
	visibility: visible;
	opacity: 1;
}
.no-touch .cdTop:hover {
	background-color: #eb5041;
	opacity: 1;
}
.cdTop.cd-is-visible:focus {
	background-color: #006db6;
	color: #fff;
}
@media only screen and (max-width:480px) {
	.cdTop { right: 80px }
}


/*----------- about -----------*/
#about {
	padding: 120px 0;
}
#about .content {
	align-items: start;
	display: grid;
	gap: 46px;
	grid-template-columns: 40% auto;
	margin: auto;
	max-width: var(--mainWidth);
}
#about h2 {
	color: var(--third);
}
#about .content .list {
	display: grid;
	gap: 36px;
	grid-template-columns: repeat(2,1fr);
}
#about .content .list .full {
	grid-column: span 2;
}
#about .photo::before {
	background-color: var(--third);
	border-radius: 0 0 0 16px;
	bottom: -9px;
	content: "";
	height: 180px;
	left: -9px;
	position: absolute;
	width: 180px;
}
#about .photo img {
	border-radius: 10px;
	box-shadow: 0 0 0 5px #fff;
	width: 100%;
}
#team {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: auto 350px;
	margin: 90px auto 0 auto;
	max-width: 960px;
}
#team .photo2 figure::before {
	background-color: var(--third);
	border-radius: 0 0 350px 0;
	bottom: -9px;
	content: "";
	height: 180px;
	right: -9px;
	position: absolute;
	width: 180px;
}
#team .photo2 img {
	border-radius: 50%;
	box-shadow: 0 0 0 5px #fff;
	height: 350px;
	width: 350px;
}
#team a {
	background-color: #fff;
	border: 2px solid var(--third);
	border-radius: 30px;
	color: var(--third);
	display: table;
	font-size: 1.1em;
	font-weight: 500;
	margin-top: 14px;
	padding: 8px 26px;
	transition: all 0.3s ease;
}
#team a:hover {
	border: 2px solid var(--main);
	color: var(--main);
}
@media only screen and (max-width:1360px) {
	#about { padding: 40px 28px }
}
@media only screen and (max-width:1150px) {
	#about .content { grid-template-columns: 1fr }
	#about .photo { margin: auto; max-width: 520px }
}
@media only screen and (max-width:800px) {
	#team { grid-template-columns: 1fr }
	#team .photo2 { grid-row: 1 }
	#team .photo2 figure { margin: auto; width: 350px }
}
@media only screen and (max-width:560px) {
	#about .content .list { grid-template-columns: repeat(1,1fr) }
	#about .content .list .full { grid-column: span 1 }
	#team .photo2 img {
		height: 270px;
		width: 270px;
	}
	#team .photo2 figure { width: 270px }
	#team .photo2 figure::before {
		display: none;
	}
}


/*----------- bedrooms -----------*/
#bedrooms {
	background-color: #e8f6ff;
	overflow: hidden;
	padding: 120px 0;
}
#bedrooms h2 {
	color: var(--main);
}
#bedrooms .content {
	margin: auto;
	max-width: var(--mainWidth);
	z-index: 10;
}
#bedrooms .bedBox {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3,1fr);
	margin-top: 30px;
}
#bedrooms .bedBox h3 {
	font-size: 1.8em;
	font-weight: 600;
	margin: 12px 0 8px 0;
}
#bedrooms .bedBox img {
	border-radius: 10px;
	width: 100%;
}
#bedrooms .bedBox figure ul {
	background: linear-gradient(0deg, rgba(32,32,32,.7) 0%, rgba(32,32,32,0) 100%);
	border-radius: 0 0 10px 10px;
	bottom: 0;
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3,auto);
	justify-content: start;
	left: 0;
	padding: 50px 20px 12px 20px;
	position: absolute;
	width: 100%;
}
#bedrooms .bedBox figure ul li {
	color: #fff;
	font-weight: 500;
}
#bedrooms .bedBox figure ul li i {
	margin-right: 8px;
}
#bedrooms .detail,
#bedrooms .book {
	background-color: #e8f6ff;
	border: 2px solid var(--main);
    border-radius: 30px;
    color: var(--main);
    display: inline-block;
    font-size: 1.1em;
    font-weight: 500;
	margin-right: 4px;
    padding: 8px 26px;
    transition: all 0.3s ease;
}
#bedrooms .detail:hover {
	border-color: var(--third);
	color: var(--third);
}
#bedrooms .book {
	background-color: var(--main);
	color: #fff;
	font-weight: 400;
}
#bedrooms .book:hover {
	background-color: var(--third);
	border-color: var(--third);
}
#bedrooms .linealBg {
	bottom: -36%;
	left: 50px;
	position: absolute;
	width: 40%;
}
#bedrooms .linealBg svg {
	fill: #d2e7f5;
	width: 100%;
}
.lawDetail {
	border: 2px solid #c0ddef;
	border-radius: 8px;
	font-size: 1.05em;
	font-weight: 400;
	margin: 46px auto 0 auto;
	padding: 12px 16px;
}
.lawDetail span {
	color: var(--main);
}
@media only screen and (max-width:1360px) {
	#bedrooms { padding: 40px 22px }
}
@media only screen and (max-width:1080px) {
	#bedrooms .bedBox { grid-template-columns: repeat(2,1fr) }
	#bedrooms .linealBg { bottom: -26%; width: 60% }
}
@media only screen and (max-width:740px) {
	#bedrooms .bedBox { grid-template-columns: repeat(1,1fr) }
	#bedrooms .bedBox > div { margin: auto; max-width: 420px }
	#bedrooms .bedBox figure ul { gap: 18px; padding: 50px 18px 12px 18px }
	#bedrooms .bedBox figure ul li { font-size: .98em }
	#bedrooms .linealBg { bottom: -16%; width: 80% }
	.lawDetail { font-size: 1em }
}


/*----------- amenities -----------*/
#amenities {
	padding: 80px 0;
}
#amenities .content {
	margin: auto;
	max-width: var(--mainWidth);
}
#amenities .content .list {
	margin-top: 10px;
}
#amenities .content .list a {
	display: block;
}
#amenities .content .list img {
	border-radius: 10px;
	transition:all 0.3s ease;
	width: 100%;
}
#amenities .content .list a:hover img {
	opacity: .94;
}
#amenities .content .list p {
	font-size: 1.35em;
	font-weight: 600;
	line-height: 1.25em;
	margin-top: 12px;
	transition:all 0.3s ease;
}
#amenities .content .list a:hover p {
	color: var(--main);
}

.splide {
	z-index: 20px;
}
.splide__track--draggable {
	border-radius: 10px;
}
.splide__arrows {
	position: initial;
}
.splide__slide {
	opacity: 1;
	transition:all 0.3s ease;
}
.splide__arrow {
	background-color: var(--main);
	box-shadow: 0 0 0 2px #fff;
	opacity: 1;
}
.splide__arrow svg {
	fill: #fff;
}
.splide__arrow--prev {
	left: -15px;
	margin-top: -26px;
}
.splide__arrow--next {
	margin-top: -26px;
	right: -15px;
}
.splide__pagination__page {
	background-color: #fff;
	height: 12px;
	width: 12px;
}
.splide__pagination__page.is-active {
	background: var(--third);
	transform: scale(1.1);
}
@media only screen and (max-width:1368px) {
	#amenities { padding: 40px 30px }
}
@media only screen and (max-width:580px) {
	.splide__arrow--prev,
	.splide__arrow--next {
		margin-top: -29px;
	}
}


/*----------- safety -----------*/
.safety {
	box-shadow: 0 0 80px rgba(30,30,30,.1);
	border-radius: 12px;
	display: grid;
	gap: 50px;
	grid-template-columns: 32% auto;
	margin-top: 50px;
	padding: 30px 40px;
}
.safety > div > h3 {
	color: var(--main);
	font-size: 2.1em;
	font-weight: 600;
	line-height: 1.25em;
	margin-bottom: 8px;
}
.safety > div > p {
	font-size: 1.25em;
	font-weight: 400;
}
.safety .boxes {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(2,1fr);
}
.safety .boxes h4 {
	align-items: center;
	display: grid;
	grid-template-columns: 50px auto;
	font-size: 1.3em;
	font-weight: 600;
	margin-bottom: 8px;
}
.safety .boxes i {
	color: var(--main);
	font-size: 1.6em;
}
@media only screen and (max-width:1020px) {
	.safety { grid-template-columns: 1fr }
	.safety > div > h3 { margin-top: 0 }
}
@media only screen and (max-width:730px) {
	.safety { gap: 30px; margin-top: 20px; padding: 24px 30px }
	.safety > div > h3 { font-size: 1.9em }
	.safety .boxes { grid-template-columns: repeat(1,1fr) }
}


/*----------- modal -----------*/
.blocker {
	background-color: rgba(38,46,59,.5) !important;
	z-index: 1000 !important;
}
.modal {
	border-radius: 10px !important;
	box-shadow: 0 0 10px rgba(38,46,59,.3) !important;
	padding: 32px 36px !important;
	max-width: 800px !important;
}
.modal.v2 {
	max-width: 1000px !important;
}
.modal a.close-modal {
	background-color: var(--secondary);
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjcxMEM4MDkyQzBEMTExRUNBREFFOURGMjA2RkFEMEFBIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjcxMEM4MDkzQzBEMTExRUNBREFFOURGMjA2RkFEMEFBIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NzEwQzgwOTBDMEQxMTFFQ0FEQUU5REYyMDZGQUQwQUEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NzEwQzgwOTFDMEQxMTFFQ0FEQUU5REYyMDZGQUQwQUEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4Edij5AAAA/ElEQVR42uza3QqDMAyGYZWBDG84Fzu8CmEbDLsIPRhM/E2DkDfwHTbkAdG2WKeUqkjVVMEKMGDAgAEDBgwYMGDAgAEDBgz4cM9O057o0eYezdXBU7+HZtC8NHKgh+S1Q+5lO+N0iWeYLv2X7FgvM+s7yxmtwW2aLzmITbnnZcFLg4vxmsuA9wLcsCXBWyGu2NLgNZA71gO8hHbHeoG3osVjFi/wGlq85gi3l+aR5qXFZ4mNR/itZajDQ7jjYbgLgEbTn3wkf9F97mk2Y13gP61p93bXfDTvE5d4N81TM1oOVwLMvTRgwIABAwYMGDBgwIABAwYMGLBrfQUYADVda9Y17ozyAAAAAElFTkSuQmCC) !important;
	border-radius: 50%;
}
.modal h2 {
	background-color: #e8f6ff;
	border-radius: 10px 10px 0 0;
	color: var(--main);
	font-size: 1.8em;
	font-weight: 600;
	left: -30px;
	margin: -26px 0 24px 0;
	padding: 15px;
	text-align: center;
	width: calc(100% + 60px);
}
.modal h3 {
	color: var(--main);
	font-size: 1.7em;
	font-weight: 600;
	margin: -6px 0 4px 0;
}
.modal p {
	font-size: 1.12em;
	margin-bottom: 18px;
}
.modal p:last-of-type {
	margin-bottom: 0;
}
.modal p.center {
	text-align: center;
}
@media only screen and (max-width:600px) {
	.modal { padding: 18px 22px !important; width: 99% !important }
	.modal h2 { font-size: 1.6em; left: -22px; margin: -18px 0 20px 0; width: calc(100% + 44px) }
	.modal h3 { font-size: 1.5em }
	.modal p { font-size: 1.05em }
}


/*----------- amenityDetail -----------*/
.amenityDetail {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(2,1fr);
}
.amenityDetail .photo img {
	border-radius: 10px;
	width: 100%;
}
@media only screen and (max-width:860px) {
	.amenityDetail { grid-template-columns: repeat(1,1fr) }
}


/*----------- roomDetail -----------*/
#roomDetail {
	background-color: #e8f6ff;
	overflow: hidden;
	padding: 60px 30px 80px 30px;
}
#roomDetail .content {
	align-items: start;
	background: linear-gradient(90deg, rgba(255,255,255,.9) 30%, rgba(255,255,255,.5) 100%);
	border-radius: 10px;
	display: grid;
	gap: 0 40px;
	grid-template-columns: 38% auto;
	margin: auto;
	max-width: var(--mainWidth);
	padding: 36px;
	z-index: 10;
}
#roomDetail .content img {
	width: 100%;
}
#roomDetail .icons {
	margin-top: 22px;
}
#roomDetail .icons i {
	color: var(--third);
	font-size: 1.5em;
	margin-right: 10px;
}
#roomDetail .content .text {
	padding: 0 160px 0 0;
}
#roomDetail .content .text h1 {
	color: var(--third);
	font-size: 2.4em;
	font-weight: 600;
	margin: -11px 0 2px 0;
}
#roomDetail .content .text p {
	font-size: 1.2em;
	line-height: 1.5em;
	margin-bottom: 20px;
}
#roomDetail .content .text ul {
	columns: 2;
	column-gap: 30px;
}
#roomDetail .content .text ul li {
	font-size: 1.15em;
	line-height: 1.5em;
	padding: 5px 0 5px 28px;
}
#roomDetail .content .text ul li i {
	color: var(--third);
	left: 0;
	position: absolute;
	top: 9px;
}
#roomDetail .book {
	background-color: var(--third);
	border-radius: 30px;
	color: #fff;
	display: table;
	font-size: 1.1em;
	font-weight: 400;
	margin-top: 20px;
	padding: 10px 36px;
	transition: all 0.3s ease;
}
#roomDetail .book:hover {
	background-color: var(--main);
}

#roomDetail .linealBg {
	top: 0;
	left: 50px;
	position: absolute;
	width: 40%;
}
#roomDetail .linealBg svg {
	fill: #d2e7f5;
	width: 100%;
}
#roomDetail .content .elder {
	bottom: 20px;
	position: absolute;
	right: -20px;
	width: 200px;
}
@media only screen and (max-width:1200px) {
	#roomDetail { padding: 20px 30px 80px 30px }
	#roomDetail .content .text ul { columns: 1 }
}
@media only screen and (max-width:980px) {
	#roomDetail { padding: 0 30px 40px 30px }
	#roomDetail .content { grid-template-columns: 1fr }
	#roomDetail .icons { margin-bottom: 16px }
	#roomDetail .icons i { color: #c1c6c7 }
}
@media only screen and (max-width:780px) {
	#roomDetail .content .text { padding: 0 110px 0 0 }
	#roomDetail .content .elder { width: 140px }
}
@media only screen and (max-width:580px) {
	#roomDetail { padding: 10px 16px 24px 16px }
	#roomDetail .content { background: none; background-color: #fff; padding: 22px }
	#roomDetail .content .text { padding: 0 }
	#roomDetail .content .elder { display: none }
	#roomDetail .content .text h1 { font-size: 2.1em }
	#roomDetail .content .text p { font-size: 1.15em }
	#roomDetail .content .text ul li { font-size: 1.1em }
	#roomDetail .content .text ul li i { top: 9px }
}


/*----------- faq -----------*/
#faq {
	margin: 50px auto 0 auto;
	max-width: 1130px;
}
#faq h2 {
	color: var(--main);
	font-size: 2.1em;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 16px;
}
#faq h3 {
	font-size: 1.4em;
	font-weight: 500;
	line-height: 1.4em;
	margin-bottom: 4px;
}
#faq p {
	font-size: 1.2em;
	line-height: 1.45em;
	margin-bottom: 22px;
}
#faq .columns {
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(2,1fr);
}
@media only screen and (max-width:840px) {
	#faq .columns { gap: 0; grid-template-columns: repeat(1,1fr) }
}
@media only screen and (max-width:580px) {
	#faq { margin: 30px auto 0 auto; padding: 0 20px; }
	#faq h2 { font-size: 1.8em }
	#faq h3 { font-size: 1.3em }
	#faq p { font-size: 1.1em }
}


/*----------- form -----------*/
#form {
	display: grid;
	grid-template-columns: auto 45%;
	margin: 40px auto 0 auto;
	max-width: var(--mainWidth);
}
#form .photo {
	background-size: cover;
	background-position: center;
	border-radius: 10px 0 0 10px;
}
#form .wrapForm {
	background-color: #fff;
	border-radius: 0 10px 10px 0;
	padding: 46px 50px;
}
#form h2 {
	color: var(--secondary);
	font-size: 2.3em;
	font-weight: 600;
	margin: -10px 0 2px 0;
	line-height: 1.3em;
}
#form h2 span {
	font-weight: 500;
}
#form p {
	font-size: 1.2em;
	line-height: 1.5em;
	margin-bottom: 18px;
}

#form2 form,
#form form {
	display: grid;
	gap: 16px 24px;
}
#form label,
#form2 label {
	display: block;
	font-size: 1.05em;
	font-weight: 500;
	margin-bottom: 3px;
}
#form label span,
#form2 label span {
	color: var(--secondary);
	padding-left: 5px;
}
#form input,
#form2 input,
#form2 select {
	background-color: #fff;
	border: 1px solid #bac4ca;
	border-radius: 10px;
	font-size: 1.1em;
	padding: 10px 14px;
	width: 100%;
}
#form input:focus,
#form2 input:focus {
	border-color: var(--secondary);
}
#form input.error,
#form2 input.error {
	border-color: #FF4100;
	box-shadow: 0 0 0 3px #ffe4e2;
}
#form button,
#form2 button {
	background-color: var(--secondary);
	border-radius: 30px;
	color: #fff;
	cursor: pointer;
	display: table;
	font-size: 1.1em;
	font-weight: 400;
	justify-self: start;
	margin-top: 6px;
	padding: 10px 36px;
	transition: all 0.3s ease;
}
#form button i,
#form2 button i {
	margin-left: 8px;
}
#form button:hover,
#form2 button:hover {
	background-color: var(--main);
}
@media only screen and (max-width:1140px) {
	#form { grid-template-columns: auto 52% }
}
@media only screen and (max-width:930px) {
	#form { grid-template-columns: 1fr }
	#form .photo { border-radius: 10px 10px 0 0; padding-bottom: 65% }
	#form .wrapForm { border-radius: 0 0 10px 10px }
}
@media only screen and (max-width:580px) {
	#form { margin: 14px auto 0 auto }
	#form .wrapForm { padding: 22px }
	#form h2 { font-size: 2em }
	#form p { font-size: 1.15em }
	#form label { font-size: 1em }
}


/*----------- recruitment -----------*/
.rHead {
	padding: 20px 24px;
}
.rHead svg {
	display: table;
	margin: auto;
	width: 140px;
}

.rBanner {
	background-color: #e8f6ff;
	padding: 80px 24px;
}
.rBanner .content {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(2,1fr);
	margin: auto;
	max-width: 1000px;
}
.rBanner .content h1 {
	font-size: 2.7em;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 14px;
}
.rBanner .content p {
	font-size: 1.15em;
	font-weight: 400;
	line-height: 1.5em;
}
.rBanner .content a {
	background-color: var(--third);
	border-radius: 30px;
	color: #fff;
	display: table;
	font-size: 1.1em;
	font-weight: 400;
	margin-top: 24px;
	padding: 10px 36px;
	transition:all 0.3s ease;
}
.rBanner .content a:hover {
	background-color: var(--main);
}
.rBanner .content .photo img {
	width: 100%;
}

.rForm {
	box-shadow: 0 0 16px rgba(30,30,30,.1);
	border-radius: 12px;
	margin: 60px auto;
	max-width: 840px;
	padding: 30px 40px;
}
.rForm h2 {
	font-size: 2em;
	font-weight: 600;
	margin: -6px 0 20px 0;
	line-height: 1.3em;
	text-align: center;
}
.rForm .options {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2,1fr);
	margin-bottom: 30px;
}
.rForm .options a {
	border: 1px solid var(--secondary);
	border-radius: 10px;
	color: var(--secondary);
	font-size: 1.3em;
	font-weight: 500;
	padding: 12px 14px;
	text-align: center;
}
.rForm .options a.current {
	background-color: var(--secondary);
	color: #fff;
}
.rForm .options a i {
	margin-right: 12px;
}

.rForm .legend {
	color: #575757;
	margin-top: 20px;
	padding: 0 0 0 26px;
}
.rForm .legend i {
	color: var(--main);
	left: 0;
	position: absolute;
	top: 5px;
}
@media only screen and (max-width:1090px) {
	.rBanner { padding: 40px 24px }
	.rBanner .content h1 { font-size: 2.3em }
	.rBanner .content p { font-size: 1.1em }
}
@media only screen and (max-width:880px) {
	.rForm { margin: 30px 20px }
}
@media only screen and (max-width:800px) {
	.rBanner .content { grid-template-columns: repeat(1,1fr); text-align: center }
	.rBanner .photo { grid-row: 1 }
	.rBanner .content .photo img { margin: auto; max-width: 400px }
	.rBanner .content a { margin:  24px auto 0 auto }
}
@media only screen and (max-width:630px) {
	.rForm { padding: 20px 24px }
	.rForm h2 { font-size: 1.7em; margin: -4px 0 20px 0 }
}
@media only screen and (max-width:580px) {
	.rForm .options { gap: 14px }
	.rForm .options a { font-size: 1.2em }
}
@media only screen and (max-width:480px) {
	.rHead { padding: 14px 24px }
	.rBanner .content { gap: 20px }
	.rBanner .content h1 { font-size: 1.9em }
	.rBanner .content .photo img { margin: auto; max-width: 240px }
}
@media only screen and (max-width:420px) {
	.rForm .options a { font-size: 1.1em }
}


/*----------- vidTabs -----------*/
.videoWrap {
	box-shadow: 0 0 0 6px #fff,
				0 0 0 8px #cce7f9;
}
.vidTabs {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2,auto);
	justify-content: start;
	margin-top: 24px;
}
.vidTabs a {
	background-color: #fff;
	border: 2px solid var(--third);
	border-radius: 30px;
	color: var(--third);
	display: table;
	font-size: 1.1em;
	font-weight: 500;
	padding: 7px 26px;
	transition: all 0.3s ease;
}
.vidTabs a:hover {
	border-color: var(--main);
	color: var(--main);
}
.vidTabs a.current {
	background-color: var(--third);
	border: 2px solid var(--third);
	color: #fff;
}
@media only screen and (max-width:580px) {
	.vidTabs { justify-content: center }
	.vidTabs a { font-size: 1em; padding: 6px 22px }
}