/* FONTS */

@font-face
{
    font-family: "Raleway";
    src: url("../fonts/Raleway-Regular.eot");
    src: url("../fonts/Raleway-Regular.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Raleway-Regular.woff2") format("woff2"),
        url("../fonts/Raleway-Regular.woff") format("woff"),
        url("../fonts/Raleway-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face
{
    font-family: "Raleway";
    src: url("../fonts/Raleway-Bold.eot");
    src: url("../fonts/Raleway-Bold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Raleway-Bold.woff2") format("woff2"),
        url("../fonts/Raleway-Bold.woff") format("woff"),
        url("../fonts/Raleway-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* GENERAL */

*
{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html
{
	height: 100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html.smoothScroll
{
	scroll-behavior: smooth;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) /* IE */
{
	html
	{
		overflow-x: hidden;
	}
}

body
{
	height: 100%;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4em;
	font-family: "Raleway", Helvetica, Arial, sans-serif;
	color: #444;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, table
{
    margin: 0 0 24px 0;
    padding: 0;
	font-weight: 400;
}

h1, h2
{
	font-size: 60px;
    line-height: 64px;
}

h3
{
    font-size: 25px;
    line-height: 30px;
	margin-bottom: 15px;
}

@media screen and (max-width: 580px)
{
	h1, h2
	{
		font-size: 32px;
		line-height: 40px;
	}
	
	h3
	{
		font-size: 18px;
		line-height: 26px;
	}
	
	p
	{
		font-size: 14px;
	}
}

strong
{
	font-weight: bold;
}

.fa
{
	font-size: 64px;
	margin-bottom: 16px;
}

.container
{
    margin: 0 auto;
	padding: 96px 15px;
	overflow: hidden;
	-ms-scroll-limit: 0 0 0 0;
}

@media (min-width: 768px)
{
	.container
	{
		width: 750px;
	}
}

@media (min-width: 992px)
{
	.container
	{
		width: 970px;
	}
}

@media (min-width: 1200px)
{
	.container
	{
		width: 1170px;
	}
}

.parallax
{
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media only screen and (max-device-width: 1366px)
{
	.parallax
	{
		background-attachment: scroll;
	}
}

.fullscreen
{
	min-height: 100%;
}

.align-center
{
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.text-center
{
	text-align: center;
}

.row:after
{
	content: "";
	display: table;
	clear: both;
}

div[class*="column"]
{
	float: left;
	padding: 0 15px;
}

@media screen and (max-width: 600px)
{
	div[class*="column"]
	{
		width: 100%;
	}
}

.column-1
{
	width: 100%;
}

.column-2
{
	width: 50%;
}

.column-3
{
	width: 33.33%;
}

.column-4
{
	width: 25%;
}

div[id*="section"]
{
	position: relative;
}

a, a:visited, a:active, a:hover
{
    text-decoration: none;
}

.btn, input[type="submit"]
{
	border: 2px solid #00296f;
	background-color: #00296f;
	color: #fff;
	line-height: 24px;
	min-width: 200px;
	padding: 13px 26px;
	font-size: 12px;
    font-weight: bold;
	font-family: "Raleway", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	display: inline-block;
	-ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;	
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="submit"]
{
	margin-top: 24px;
}

.btn:hover
{
	background: none;
	border: 2px solid #fff;
}

input[type="submit"]:hover
{
	background: none;
	color: #00296f;
}

/* FORM */

form
{
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

label
{
	display: block;
	max-width: 100%;
	text-align: left;
	margin: 1rem 0 0.5rem 0;
}

form .row:first-child label
{
	margin-top: 0;
}

.warningMsg
{
	background-image: url("../img/warning.png");
	display: none;
	margin: 0;
    padding: 4px 8px 0 28px;
    background-position-x: 6px;
    background-position-y: center;
    background-repeat: no-repeat;
    color: #AF0404;
    text-align: left;
}

#warningCaptcha
{
	width: 100%;
    float: left;
}

.response
{
	margin-top: 1rem;
}

@media screen and (max-width: 580px)
{
	form
	{
		padding: 0;
	}
	
	label, .response, .warningMsg
	{
		font-size: 14px;
	}
}

@media (min-width: 992px)
{
	form
	{
		width: 66.66666667%;
	}
}

input[type="text"], input[type="email"], input[type="tel"], textarea
{
	display: block;
	margin: 0;
	width: 100%;
	height: 2.4375rem;
    padding: 5px 10px;
	border: 1px solid #00296f;
    background-color: #fff;
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: #444;
	outline: none;
	-webkit-transition: border-color 0.25s ease-in-out;
    -moz-transition: border-color 0.25s ease-in-out;
	-o-transition:border-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	font-size: 14px;
    line-height: 1.15;
}

input[type="text"]:hover, input[type="email"]:hover, input[type="tel"]:hover, textarea:hover, input[type="checkbox"]:hover,
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, input[type="checkbox"]:focus
{
	border-color: #5c9ab5 !important;
}

textarea
{
	height: auto;
}

form a
{
	color: #00296f;
	font-weight: bold;
	text-decoration: none;
}

form a:hover
{
	color: #a4bcc6;
}

.captcha-base
{
	display: inline-block;
	border: 1px solid rgb(0, 41, 111);
    width: 127px;
    height: 39px;
    float: left;
    margin-right: 8px;
}

.captcha-base canvas
{
	width: 125px;
    height: 37px;
}

.captcha-base__reset
{
	display: inline-block;
	float: left;
    width: 39px;
	height: 39px;
	margin-right: 8px;
	padding: 0;
	border: 2px solid #00296f;
	background-color: #00296f;
	color: #fff;
	font-size: 30px;
    font-weight: bold;
	font-family: "Raleway", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	-ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;	
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.captcha-base__reset:hover
{
	background: none;
	color: #00296f;
}

input.captcha-base__input
{
	display: inline-block;
	float: left;
	width: calc(100% - 182px);
	margin: 0;
}

@media screen and (max-width: 380px)
{
	input.captcha-base__input
	{
		margin-top: 8px;
		width: 100%;
	}
}

/* HEADER AND NAVBAR */

#header
{
	overflow: hidden;
	-ms-scroll-limit: 0 0 0 0;
	background-color: #00296f;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
	-webkit-box-shadow: 0 1px 3px 1px rgb(0 0 0 / 20%);
    box-shadow: 0 1px 3px 1px rgb(0 0 0 / 20%);
}

#header #logo
{
	margin: 0 15px;
	display: block;
    float: left;
}

#header #logo img
{
	display: block;
	vertical-align: middle;
	width: 100%;
}

#menu-button
{
	color: #fff;
	-ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	margin: 0;
	padding: 12px;
    line-height: 25px;
    font-size: 13px;
	float: right;
	display: none;
}

nav[class^="navbar"] a
{
	float: left;
	color: #fff;
	text-align: center;
	padding: 12px 15px;
	text-decoration: none;
	line-height: 25px;
	font-size: 13px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

nav[class^="navbar"] a:hover
{
	color: #a4bcc6;
}

.navbar-right
{
	float: right;
}

@media screen and (max-width: 580px)
{  
	#header a 
	{
		float: none;
		display: block;
		text-align: left;
	}
	
	#menu-button
	{
		display: block;
	}
  
	.navbar-right
	{
		float: left;
		clear: both;
		margin-top: 15px;
		display: none;
	}
}

#header .container
{
	padding: 15px;
}

#menu.show
{
	display: block;
}

/* FOOTER */

#footer
{
	width: 100%;
	background-color: #00296f;
	color: #fff;
	/*height: 80px;*/
	position: relative;
}

#footer .container
{
	padding: 32px 15px;
	text-align: center;
}

.club-asesor
{
	display: block;
	float: right;
	margin: 0 15px;
}

.club-asesor img
{
	display: block;
	width: 100%;
}

.clearfix
{
	clear: both;
}

.copyright
{
	margin: 10px 15px 0 15px;
	color: #fff;
	line-height: 25px;
	font-size: 18px;
	float: left;
	display: block;
}

@media screen and (max-width: 580px)
{
	.club-asesor
	{
		display: inline-block;
		float: none;
	}
	
	.copyright
	{
		float: none;
		font-size: 14px;
	}
}

a#go-top
{
	position: absolute;
    right: 22px;
    bottom: 22px;
    height: 36px;
    width: 36px;
    padding: 3px 11px;
	border: 2px solid #fff;
	-ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

a#go-top:hover
{
	background-color: #fff;
}

a#go-top .fa
{
    font-size: 18px;
	font-weight: bold;
    color: #fff;
	margin: 0;
}

a#go-top:hover .fa
{
	color: #00296f;
}

/* SECTIONS */

#header-section
{
	background-image: url("../img/02.png");
	color: #fff;
}

#header-section .container
{
	width: 100%;
}

#header-section h2 + p
{
	margin-bottom: 30px;
}

#header-section a + p
{
	font-size: .8em;
    margin: 8px 0 0 0;
}

#about-section
{
	background-color: #fff;
}

#about-section h2
{
	color: #00296f;
	margin-bottom: 64px;
}

#services-section
{
	background-image: url("../img/04.png");
	color: #fff;
}

#services-section p
{
	margin: 0;
}
 
#services-section h2 + p
{
	margin-bottom: 64px;
}
 
#services-section div[class*="column"]
{
	margin-bottom: 64px;
}
 
#services-section > .container
{
	padding-bottom: 32px;
}

#services-section #services-row
{
	padding: 32px 15px;
	background: #00296f;
	background: rgba(0, 41, 111, 0.7);
	display: flex;
    flex-wrap: wrap;
}

#services-section #services-row > div
{
	margin: 15px 0;
}

@media screen and (max-width: 1200px)
{
	#services-section #services-row > div
	{
		width: 50%;		
	}
}

@media screen and (max-width: 800px)
{	
	#services-section #services-row > div
	{
		width: 100%;
	}
}

#contact-section
{
	background-color: #fff;
}

#contact-section h2
{
	color: #00296f;
}

/* FLIPPING CARDS */

.flip-card
{
	background-color: transparent;
	perspective: 1000px;
	opacity: 0;
	-webkit-transition: opacity 0.8s;
    -moz-transition: opacity 0.8s;
	-o-transition: opacity 0.8s;
	transition: opacity 0.8s;
}

.flip-card.flipped
{
	opacity: 1;
}

.flip-card-inner
{
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;	
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;	
	border: 2px solid #fff;
	padding: 15px;	
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-ms-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	transform-style: preserve-3d;
	outline: 1px solid transparent;
	-webkit-transition: transform 0.8s;
    -moz-transition: transform 0.8s;
	-o-transition: transform 0.8s;
	transition: transform 0.8s;
}

.flip-card.flipped .flip-card-inner
{
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
}
