/*
*************************************************************
** Sección modificada: Se agrega regla universal
** para box-sizing y deshabilitar selección de texto
*************************************************************
*/
* {
	box-sizing: border-box;
    -webkit-touch-callout: none; /* iOS Safari: deshabilita el menú contextual */
    -webkit-user-select: none;   /* Chrome/Safari/Opera: deshabilita selección */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Para navegadores modernos */
}

/**************************/
/*  Reglas para Sticky Footer  */
/**************************/
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Esta regla hace que el footer se empuje al final */
body > .copyright {
    margin-top: auto;
}


/**************************/
/*     General Styles     */
/**************************/
body, p {
	color: #515867; 
	font-family: 'Roboto';
    font-size: 1rem; 
}

#CybotCookiebotDialog div {
	font-family: 'Roboto' !important; 
    line-height: 1.131;
}

#CybotCookiebotDialogDetailFooter {
    display: none;
}

#CybotCookiebotDialogBodyButtons a, #CybotCookiebotDialogBodyButtons a:hover {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

/**************************/
/*        Tipografía      */
/**************************/
@font-face {
    font-family: custom;
    src: url(../webfonts/Documan-Regular.otf);
}

body, p {
	color: #515867; 
	font-family: 'Roboto';
    font-size: 1rem; 
}

h1 {
	color: #003c6e;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 3.125rem;
	letter-spacing: -0.5px;
}

h2 {
	font: 400 1rem/1.625rem "custom";
	color: #003c6e;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.625rem;
	letter-spacing: -0.4px;
}

h3 {
	color: #003c6e;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.375rem;
	letter-spacing: -0.4px;
	text-align: center;
	/*padding-top: 3rem;*/
}

h4 {
	color: #003c6e;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2.125rem;
	letter-spacing: -0.4px;
}

h5 {
	color: #003c6e;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.75rem;
}

h6 {
	color: #003c6e;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5rem;
}

.h1-large {
	font-size: 2.75rem;
	line-height: 3.5rem;
	letter-spacing: -0.7px;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #515867;
	text-decoration: underline;
}

a:hover {
	color: #515867;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.read-more {
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.read-more .fas {
	margin-left: 0.625rem;
	font-size: 1rem;
	vertical-align: -8%;
}

.blue {
	color: #1d79fb;
}

.bg-gray {
	background-color: #f9f9f9;
}

.section-divider {
	display: inline-block;
	width: 100%;
	height: 1px;
	border: none;
	background-color: #d0dae2;
}

.section-title {
	display: inline-block;
	margin-bottom: 0.75rem;
	padding: 0.375rem 1.25rem;
	border-radius: 20px;
	background-color: #fff0e2;
	color: black;
	font-weight: 600;
	font-size: 0.75rem;
	line-height: 1.125rem;
}

/**************************/
/*   Botones y Links      */
/**************************/
.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid black;
	border-radius: 32px;
	background-color: black;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	border: 1px solid black;
	background-color: transparent;
	color: black;
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #50d2d2;
	border-radius: 32px;
	background-color: #50d2d2;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	border: 1px solid #50d2d2;
	background-color: transparent;
	color: #50d2d2;
	text-decoration: none;
}

.btn-solid-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #50d2d2;
	border-radius: 32px;
	background-color: #50d2d2;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-sm:hover {
	border: 1px solid #50d2d2;
	background-color: transparent;
	color: #50d2d2;
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #50d2d2;
	border-radius: 32px;
	background-color: transparent;
	color: #50d2d2;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #50d2d2;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #50d2d2;
	border-radius: 32px;
	background-color: transparent;
	color: #50d2d2;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: black;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #50d2d2;
	border-radius: 32px;
	background-color: transparent;
	color: #50d2d2;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #50d2d2;
	color: #ffffff;
	text-decoration: none;
}

/**************************/
/*     Formularios        */
/**************************/
.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.label-control {
	position: absolute;
	top: 0.875rem;
	left: 1.625rem;
	color: #7d838a;
	opacity: 1;
	font-size: 0.875rem;
	line-height: 1.375rem;
	cursor: text;
	transition: all 0.2s ease;
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
	top: 0.125rem;
	color: #515867;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block;
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.625rem;
	border: 1px solid #cbcbd1;
	border-radius: 32px;
	background-color: #ffffff;
	color: #515867;
	font-size: 0.875rem;
	line-height: 1.875rem;
	transition: all 0.2s;
	-webkit-appearance: none;
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3.25rem;
	color: #7d838a;
}

select {
    -webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../img/down-arrow.png');
    background-position: 96% 50%;
    background-repeat: no-repeat;
    outline: none;
}

.form-control-textarea {
	display: block;
	width: 100%;
	height: 14rem;
	padding-top: 1.5rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	border-radius: 2px;
	background-color: #ffffff;
	color: #515867;
	font-size: 0.875rem;
	line-height: 1.5rem;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none;
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.checkbox {
	font-size: 0.75rem;
	line-height: 1.25rem;
}

input[type='checkbox'] {
	vertical-align: -10%;
	margin-right: 0.5rem;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #50d2d2;
	border-radius: 32px;
	background-color: #50d2d2;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #50d2d2;
	background-color: transparent;
	color: #50d2d2;
}

/**************************/
/*  Fade-move Animation   */
/*  For Details Lightbox  */
/**************************/
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	-moz-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	-o-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
	-ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
	transform: translateY(0) perspective(37.5rem) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}

/**************************/
/*      Navegación        */
/**************************/
.navbar {
	border-bottom: 1px solid #e3e8ec;
	background-color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 129px;
	height: 32px;
}

.navbar .logo-text {
	color: #003c6e;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem;
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #ffffff;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #003c6e;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: black;
}

.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s;
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border: none;
	background-color: #ffffff;
}

.navbar .dropdown-item {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: #003c6e;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #ffffff;
	color: #50d2d2;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #e7e7e7;
}

.navbar .nav-item .btn-solid-sm {
	margin-top: 0.125rem;
	border: 1px solid #003c6e;
	background-color: #003c6e;
}

.navbar .nav-item .btn-solid-sm:hover {
	background-color: transparent;
	color: #003c6e;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}

/**************************/
/*        Header          */
/**************************/
.header {
	padding-top: 1rem;
	background-color: white;
	background-size: cover;
}

.header .text-container {
	margin-bottom: 4rem;
}

.header .h1-large {
	margin-bottom: 1.5rem;
}

.header .p-large {
	margin-bottom: 2rem;
}

.header .btn-solid-lg {
	margin-right: 0.5rem;
	margin-bottom: 0.75rem;
}

header .video-container .iframe-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0px 30px 13px -30px rgba(0,0,0,.2);
	background-color: transparent;
}

header .video-container .iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* Idiomas en el header */
header .video-container .idi {
	position: relative;
	margin: 20px 10px;
	display: inline-block;
	white-space: nowrap;
	background-color: transparent;
	overflow: hidden;
	border: solid 2px rgb(200,200,200);
	cursor: pointer;
	height: 40px;
	width: auto;
	transition: all ease-in-out .2s;
}

header .video-container .idi.active {
	height: 150px;               /* 150 px sigue bastando para 4 líneas */
}

header .video-container .idi::before {
	content: "";
	position: absolute;
	right: 10px;
	top: calc(50% - 2px);
	width: 0;
	height: 0;
	border-left: 10px solid rgb(200,200,200);
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	transform: rotate(90deg) translateX(-50%);
	transition: all ease-in-out .2s;
}

header .video-container .idi.active::before {
	right: -20px;
}

header .video-container .idi::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

header .video-container .idi.active::after {
	display: none;
}

header .video-container .idi p {
	position: relative;
	font-size: 1.2em;
	padding: 10px 50px 6px 20px;
	transition: all ease-in-out .2s;
	color: black;
	-webkit-transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-ms-transition: all ease-in-out .2s;
	-o-transition: all ease-in-out .2s;
}

/* ——— Ajustes de desplazamiento según idioma seleccionado ——— */
header .video-container .idi.es p:first-child      { margin-top:   0px;  }
header .video-container .idi.es.active p           { margin-top:   0px;  }

header .video-container .idi.en p:first-child      { margin-top: -36px;  }
header .video-container .idi.en.active p           { margin-top:   0px;  }

header .video-container .idi.es-cc p:first-child   { margin-top: -72px;  }
header .video-container .idi.es-cc.active p        { margin-top:   0px;  }

/* >>> NUEVO: Español Audio Narración <<< */
header .video-container .idi.es-an p:first-child   { margin-top: -108px; }
header .video-container .idi.es-an.active p        { margin-top:   0px;  }

/* Hover sobre los items cuando el menú está desplegado */
header .video-container .idi.active p:hover {
	background-color: #50d2d2;
}

/* Loader */
.loader-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #272938;
    z-index: 7;
    display: none;
}

.loader {
    position: absolute;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}

.lds-spinner {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
}

.lds-spinner div {
    transform-origin: 20px 20px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 20px;
    width: 2px;
    height: 10px;
    border-radius: 20%;
    background: #fff;
}

.lds-spinner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
}

@keyframes lds-spinner {
	0% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	}
}

/**************************/
/*       Descargas        */
/**************************/
.cards-1 {
	padding-top: 3.8rem;
	padding-bottom: 3.8rem;
	background-color: #003c6e;
}

.h2-heading {
	margin-bottom: 1rem;
	color: #ffffff;
	text-align: center;
}

.download-heading {
	margin-bottom: 1rem;
	text-align: center;
}

.cards-1 .p-heading {
	margin-bottom: 4rem;
	color: #ffffff;
	opacity: 0.8;
	text-align: center;
}

.cards-1 .card {
	margin-bottom: 3rem;
	background-color: transparent;
}

.cards-1 .card-icon-wrapper {
	padding-left: 2rem;
	border-left: 1px solid #50d2d2;
}

.cards-1 .card-icon {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background-color: #3232a0;
	text-align: center;
}

.cards-1 .card-icon .fas,
.cards-1 .card-icon .far {
	color: #50d2d2;
	font-size: 2rem;
	line-height: 4.625rem;
}

.cards-1 .card-body {
	padding: 0 0 0 2rem;
}

.cards-1 .card-title {
	margin-top: 1.75rem;
	color: #ffffff;
	font-weight: 600;
}

.cards-1 .card-body p {
	margin-bottom: 1.25rem;
	color: #ffffff;
	opacity: 0.8;
}

.cards-1 .read-more {
	color: #ffffff;
}

.cards-1 .read-more .fas {
	color: #ffffff;
}

/**************************/
/*       Copyright        */
/**************************/
.copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: #eeeeee;
	text-align: center;
}

.copyright p,
.copyright a {
	text-decoration: none;
}

/******************************/
/*    Back To Top Button      */
/******************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 12px;
	bottom: 12px;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 30px;
	background: #515867 url("../img/up-arrow.png") no-repeat center 47%;
	background-size: 18px 18px;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #003c6e;
}

/**************************/
/*         Formularios    */
/**************************/
div.pass {
	width: 500px;
	max-width: 90%;
	margin: 8% auto;
	border-radius: 10px;
}
label {
	display: none;
}
fieldset {
	text-align: left;
}

button#enviar {
	font-size: 1em;
}
div.pass {
	border: 1px solid #666;
	padding: 1em;
	background: #ECECEC;
	color: #666;
}
.page.rounded .pass,
.page.rounded form,
.page.rounded #access {
	border-radius: 5px;	
}
#login,
.login {
	display: block;
	margin: 1em auto;
	text-align: center;
}
.form-info {
	background: #f1f1f1; 
	padding: 10px;
}
fieldset {
	padding: 0.5em;
}
label {
	display: block;
	text-align: left;
}
input[type=checkbox] + label {
	display: inline;
}
label:after + input:required {
	content: "*";
	color: #c66;
}
input[type=text],
input[type=password],
input[type=number],
input[type=tel],
input[type=email],
input[type=date],
textarea {
	display: block;
	padding: 0.5em;
	border: 1px solid #ccc;
	box-sizing: border-box;
	width: 100%;
}

fieldset.short input {
    width: 31%;
    display: inline-block;
    margin-right: 2%;
}

fieldset.short input:last-child {
    width: 31%;
    display: inline-block;
    margin-right: 0;
}

input.invalid {
	border: 1px solid #c66;
	box-shadow: 0 3px 3px #c66;
	border-radius: 2px;
}
select {
	display: block;
	padding: 0.5em;
	border: 1px solid #ccc;
	box-sizing: border-box;
	width: 100%;
}
button#enviar,
button#cancel, .btn {
	background: #086699;
	color: #fff;
	text-align: center;
	border: none;
	padding: 0.75em 2em;
	box-sizing: border-box;
	width: 100%;
	font-size: 1.2em;
}
button#enviar:hover, .btn:hover {
	background: #7BACD3;
}
button#cancel {
    background: #c22;
}
button#cancel:hover {
    background: #FF3E30;
}
fieldset.btn {
	text-align: center;
}
#error, #rerror {
	background: #edd;
	color: #c66;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px dotted #c66;
	border-radius: 2px;
	font-size: 0.9em;
	display: none;
}

#error #send_mail {
    margin-top: 8px;
}

#error a {
    color: #c66;
    font-weight: bold;
    text-decoration: none;
}

#error a:hover {
    color: #c22;
    font-weight: bolder;
    text-decoration: none;
}

#msg {
    background: rgb(203, 252, 181);
    color: rgb(13, 100, 17);
    padding: 10px;
    border: 1px dotted rgb(64, 129, 51);
    border-radius: 2px;
    font-size: 0.9em;
    display: none;
}

#access {
	text-align: center;
	border: 1px solid #ddd;
	padding: 22% 1em;
	background: #fff;
	background: rgba(255,255,255,0.8);
}

.choose {
	text-align: right;
	padding: 0.5em;
}
.choose a {
	font-size: 0.85em;
	color: #666;
	text-decoration: none;
}
.choose a:hover,
.choose a.active {
	color: #000;
}
.choose a.active {
	font-weight: bold;
}

/**************************/
/*        Modal           */
/**************************/
.modal-title {
    font-weight: bold;
    font-size: 1.3em;
}

.modal-fullscreen .modal-dialog {
    max-width: 100%;
    margin: 3%;
    margin-top: 3%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    display: flex;
    position: fixed;
    z-index: 100000;
}

#languages {
    padding: 20px;
}

.modal-fullscreen .modal-body {
    overflow-y: hidden !important;
}

/**************************/
/*  Opciones de Select    */
/**************************/
.ms-dd-option-content {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/**************************/
/*      Wrap Descargas    */
/**************************/
.wrap {
	position: relative;
	width: 70%;
	margin-left: 50%;
	transform: translateX(-50%);
	padding-bottom: 40px;
	height: auto;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
}

.wrap .file {
	min-width: 300px;
	position: relative;
	flex: 1;
	margin: 20px;
	background-color: #003c6e;
	border-radius: 20px;
	cursor: pointer;
	transition: all cubic-bezier(0, 0, 0.2, 0.99) .2s;
	box-shadow: 0px 20px 20px -20px rgba(0,0,0,.07);
}

.wrap .file:hover {
	background-color: #003c6e;
	transform: scale(1.05);
}

.wrap .file a {
	text-decoration: none;
	position: relative;
	width: 100%;
	height: 100%;
}

.wrap .file a .container {
	padding: 40px 20px;
}

.wrap .file img {
	position: relative;
	margin-left: 50%;
	transform: translateX(-50%);
	margin-bottom: 20px;
	width: 90%;
	max-width: 50px;
	height: auto;
}

.wrap .file p {
	text-align: center;
	font-size: 1.2em;
	color: white;
	transition: all cubic-bezier(0, 0, 0.2, 0.99) .2s;
}

/**************************/
/*        Media Queries   */
/**************************/
/* max-width 768px */
@media (max-width: 768px) {
	.wrap {
		width: 100%;
	}
}

/* min-width 768px */
@media (min-width: 768px) {
	.header {
	}
	.header .btn-solid-lg {
		margin-bottom: 0;
	}
}

/* min-width 992px */
@media (min-width: 992px) {
	.h2-heading, .download-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 34rem;
		margin-right: auto;
		margin-left: auto;
	}

	.navbar {
		padding-top: 1.75rem;
		background-color: white;
		border-bottom: none;
		transition: all 0.2s;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		border-bottom: 1px solid #e3e8ec;
		background-color: #ffffff;
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		margin-top: 0.25rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.05);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .nav-item .btn-solid-sm {
		margin-top: 0;
		margin-left: 1rem;
	}
	
	.header {
		padding-top: 1rem;
		text-align: left;
	}

	.header .text-container {
		margin-top: 3.5rem;
	}
	
	.cards-1 .card {
		display: inline-block;
		width: 290px;
		vertical-align: top;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1.5rem;
		margin-left: 1.5rem;
	}
}

/* min-width 1200px */
@media (min-width: 1200px) {
	.h1-large {
		font-size: 3.25rem;
		line-height: 4rem;
	}



	.header .text-container {
		margin-top: 6.5rem;
	}

	.header img {
		position: absolute;
	}

	.cards-1 .card {
		width: 320px;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 4.375rem;
		margin-left: 4.375rem;
	}

	.video-container {
		max-width: 1080px;
	}
}

#header-brand {
	margin-top: 4rem;
}

#header-brand .logo-image {
	--width-img: 180px;
	width: 100%;
	max-width: var(--width-img);
	min-height: 100px;
}

#header-brand .logo-image-2col {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

#header-brand .logo-image-2col > * {
	flex: 1;
}

#header-brand .logo-image-2col #logohead1 {
	left: 0;
}

#header-brand .logo-image-2col #logohead2 {
	max-width: 140px;
}

#header-brand .logo-image-2col #logohead3 {
	max-width: 60px;
}

@media (min-width: 800px) {
	#header-brand .logo-image-2col #logohead2 {
		max-width: 210px;
	}
	#header-brand .logo-image-2col #logohead3 {
		max-width: 80px;
	}
}
@media (min-width: 1200px) {
	#header-brand .logo-image {
		--width-img: 200px;
	}
	#header-brand .logo-image-2col #logohead2 {
		max-width: 300px;
	}
	#header-brand .logo-image-2col #logohead3 {
		max-width: 80px;
	}
}
