/* 
 * COLORES:
 * -------
 * Verde logo: #005820;
 * Amarillo logo: #FDCD00;
 * Negro navegación: #313131;
 * Gris fondo cuerpo: #FBFBFB;
 * Verde claro basado en logo: #F6FFF9;
 * Verde oscuro basado en logo: #013715;
 * Rojo warnings/errores: #CB4335;
 */

 /* Google fonts */
@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');

body{
	font-family: 'Rubik', sans-serif;
	font-size: 17px;
	overflow-x: hidden;
	padding-right: 0px !important;
	background-color: #FBFBFB; 
}

textarea{
	font-family: 'Rubik', sans-serif;
}

a:hover{
	text-decoration: none;
}

button{
	border: none;
}

a,button{
	cursor: pointer;
}

h2{
	font-size: 2.4rem;
}

h3{
	font-size: 1.8rem;
}

p{
	line-height: 1.7;
	margin-bottom: 35px;
}

p:last-child{
	margin-bottom: 0;
}

.subrayado{
	text-decoration: underline;
}

.subrayado-verde{
	text-decoration: underline;
	text-decoration-color: #005820;
}

p::selection,
a::selection,
i::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
li::selection,
br::selection,
img::selection,
label::selection,
input::selection,
legend::selection,
textarea::selection,
figcaption::selection{
	background-color: #005820;
	color: white;
}

/*************
 * CABECERAS *
 *************/

.page-header{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100px;
}

.text-green{
	color: #005820;
}

/*********************
 * BARRAS NAVEGACIÓN *
 *********************/

#logotipo{
	width: 200px;
	height: 72px;
} 

.barra-contacto{
	background-color: #005820; 
	height: 30px;
}

.barra-contacto .header-top-right{
	text-align:right;
}

.barra-contacto .header-top-right a{
	color: #FDCD00;
	font-weight: 400;
	margin-left: 4px;
	font-size: 1em
}

.barra-contacto .header-top-right .vertical-hr:after{
    content: "|";
    margin-left: 12px;
}

.nav-section {
	position: absolute;
	top: 30px;
	left: 0;
	width: 100%;
	border-top: 1px solid #005820; 
	border-bottom: 1px solid #005820; 
	background-color: #F6FFF9;
	z-index: 3000;
}

.nav-section.sticky{
	position: fixed;
	top: 0;
	border-top: none;
}

.navbar-expand-lg .navbar-nav .nav-link{
	padding: 37px 20px; 
}

.navbar-light .navbar-nav .nav-link{
	color: #313131;
}

.navbar-light .navbar-toggler{
	background-color: white;
}

.navbar{
	padding-top: 0px; 
	padding-bottom: 0px; 
}

.navbar-brand{
	width: 40px;
}

.navbar-nav li:hover .dropdown-menu{
    display: block;
} 

.dropdown-item:hover{
	background-color: #005820;
	color: #FDCD00;
	transition: background 1s ease;
	-webkit-transition: background 1s ease;
	-moz-transition: background 1s ease;
	-o-transition: background 1s ease;
	transition: background 1s ease;
}

#mainNav .nav-link.current:hover,
#mainNav .nav-link:hover {
	color: #FDCD00;
	background: #005820; 
	transition: background 1s ease;
	-webkit-transition: background 1s ease;
	-moz-transition: background 1s ease;
	-o-transition: background 1s ease;
	transition: background 1s ease;
}

#mainNav .nav-link.current:focus,
#mainNav .nav-link:focus {
	color: #FDCD00 !important;
}

/****************
 * BARRA SCROLL *
 ****************/
 
/* Estilo de barra para Chrome, Safari y Opera */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #F6FFF9;
	border-radius: .25rem;	
}
 
::-webkit-scrollbar-thumb {
	background: #005820; 
	border-radius: .25rem;
}

::-webkit-scrollbar-thumb:hover {
	background: #FDCD00; 
}

::-webkit-scrollbar-button{
	background: no-repeat #F6FFF9;
	background-position: center;
	border-radius: .25rem;
}

::-webkit-scrollbar-button:vertical:decrement{
    background-image: url(../img/scrollbar/arrow_up.png);
}

::-webkit-scrollbar-button:vertical:decrement:hover{
    background-image: url(../img/scrollbar/arrow_up_hover.png);
}

::-webkit-scrollbar-button:vertical:increment{
    background-image: url(../img/scrollbar/arrow_down.png);
}

::-webkit-scrollbar-button:vertical:increment:hover{
    background-image: url(../img/scrollbar/arrow_down_hover.png);
}

/***********
 * BOTONES *
 ***********/
 
.primary-btn{
	background: #005921; 
	line-height: 42px;
	padding-left: 30px;
	padding-right: 30px;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	cursor: pointer;
}

#form-contacto .primary-btn{
	margin-top: 25px;
	background-color: #005921; 
	border: 1px solid transparent;
	text-transform: capitalize;
}

#form-contacto .primary-btn:hover{
	background-color: transparent;
	color: #005921; 
	border-color: #005921; 
}

#form-voluntariado .primary-btn:hover{
	background-color: transparent;
	color: #005820; 
	border-color: #005820;
}

#form-donaciones .primary-btn:hover{
	background-color: transparent;
	color: #005820;
	border-color: #005820;
}

.card .primary-btn{
	border: 1px solid transparent;
}

.card .primary-btn:hover{
	background-color: transparent;
	color: #005921;
	border-color: #005921; 	
}

.btn-modal{
	background: #005921; 
	border: 1px solid transparent;
	color: #fff;
	padding-left: 15px;
	padding-right: 15px;
}

.btn-modal:hover{
	background-color: transparent;
	color: #005921;
	border-color: #005921;
}

.btn:active{
	outline: none !important;
	box-shadow: 0 0 5px rgba(0, 88, 32, 1) !important; 
} 

/****************
 * ENLACES EXT. *
 ****************/

.link-email{
	color: #313131;
}

.link-email:hover{
	color: #005820;
}

/**********
 * LISTAS *
 **********/
.ordened-list-p > li{
	margin: 15px;
}

/********************
 * SECCIONES BANNER *
 ********************/

.banner-ini-section{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	overflow: hidden;  
	height: 1000px;
	background-image: url("../img/fondos/LCG.png");
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: cover; 
}

.banner-container{
	position: relative;
	z-index: 1000;
	color: white;
	text-align: center;
	max-width: 520px;
}

.banner-title{
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 25px;
	color: rgba(255,255,255,0.50);
}

.banner-subtitle{
	font-size: 1.5rem;
	font-weight: 350;
	max-width: 500px;
	color: rgba(255,255,255,0.50);
}

.banner-colabora-section{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	position: relative;
	overflow: hidden;  
	height: 500px;
	background-image: url("../img/fondos/colabora_banner.jpg");
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: cover; 
	margin-top: 100px;
}

.banner-colabora-title{
	position: relative;
	top: 300px;
	right: 4px;
	font-size: 3rem;
	font-weight: 650;
	color: white;
}

.banner-plan-section{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	position: relative;
	overflow: hidden;  
	height: 520px;
	background-image: url("../img/fondos/work-time-min.jpg");
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: cover; 
	margin-top: 100px;
}

.banner-plan-title{
	position: relative;
	top: 300px;
	font-size: 3rem;
	font-weight: 650;
	color: #F6FFF9;
}

#banner-ini-text{
	padding-bottom: 40%;
}

/****************************
 * SEC. DESCRIPCIÓN GENERAL *
 ****************************/

#desc-ini-container{
	margin-top: 50px;
	margin-bottom: 40px;
}

.desc-header, .contact-header{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #005820;  
	margin-bottom: 55px;
}

.desc-row{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.desc-block{
	max-width: 550px;
	margin-bottom: 40px;
	padding-right: 30px;
}

.desc-h-font, 
.contact-h-font{
	font-size: 1.8rem;
}

.desc-icon, 
.contact-icon{
	margin-right: 26px;
}

.desc-icon-l{
	margin-right: 20px;
}

/***************
 * FORMULARIOS *
 ***************/

.form-control{
	border-radius: 4px;
	padding: 14px;
	height: auto;
	color: #313131 !important;
	border: 1px solid #005820 !important;
	background-color: #F6FFF9 !important;
}
 
.contact-container{
	margin-top: 15px;
	padding-top: 15px;
	padding-bottom: 60px;
}

.contact-header{
	margin-bottom: 40px;
	color: #005820;
}

.contact-block{
	padding-top: 68px;
}

.contact-data-container{
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 60px;	
}

.contact-form-container{
	padding-left: 40px;
	padding-right: 40px;
	text-align: left;
}

.contact-terms{
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 15px;
	padding-right: 15px;
}

.contact-row{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.form-container{
	padding-top: 280px;
	padding-bottom: 60px;
}

#fondo-pag-form-voluntariado{
	background-image: url("../img/fondos/tree-green-field-capa-min.png");  
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: cover;
}

#fondo-pag-form-donaciones{
	background-image: url("../img/fondos/barley-field-min.png"); 
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: cover;
}

/* Firefox, Chrome, Opera */ 
input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder{ 
	color: #CCD8CF;
}

/* Microsoft Edge */ 
input[type="text"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
textarea::-ms-input-placeholder{ 
    color: #CCD8CF; 
}  

/* Internet Explorer 10-11 */
:-ms-input-placeholder{  
    color: #CCD8CF; 
}

.form-control{
	height: 54px;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}

.form-control:focus{
	border-color: #005820 !important;
	box-shadow: 0 0 5px rgba(0, 88, 32, 1) !important;
	-webkit-box-shadow: 0 0 5px rgba(0, 88, 32, 1) !important;
}

.form-control::-webkit-input-placeholder {color: #CCD8CF;}  /* WebKit, Blink, Edge */
.form-control:-moz-placeholder {color: #CCD8CF;}  /* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder {color: #CCD8CF;}  /* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder {color: #CCD8CF;}  /* Internet Explorer 10-11 */
.form-control::-ms-input-placeholder {color: #CCD8CF;}  /* Microsoft Edge */

/* Color de autocompletado en campos de formulario */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.form-control:disabled, 
.form-control[readonly]{
	background-color: #FCFDFC !important;
}

/**************
 * SELECTORES *
 **************/
 
select:focus > option:checked { 
    background: #005820 !important;
	color: #FDCD00 !important;
}

/* Bootstrap select */
.bs-select{
	width: 100%;
	background: transparent;
	padding: 13px;
}

.bs-select:focus{
	box-shadow: 0 0 5px rgba(0, 88, 32, 1) !important;
	-webkit-box-shadow: 0 0 5px rgba(0, 88, 32, 1) !important;
}

.dropdown-item.active{
	background-color: #F6FFF9 !important; 
	color: #495057 !important;
}

/********************
 * RADIO + CHECKBOX *
 ********************/
 
fieldset{
	margin-top: 18px !important;	
}

/* Estado por defecto */
.custom-radio .custom-control-label::before,
.custom-checkbox .custom-control-label::before{
    background-color: #F6FFF9;
	border: 1px solid #005820;
}

/* Estado macado */
.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-radio .custom-control-input:checked~.custom-control-label::after{
    background-color: #005820;  
	border-radius: 50px;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    background-color: #005820;  
	border-radius: 2px;
}

/* Estado activo (mientras se presiona el ratón) */
.custom-radio .custom-control-input:active ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:active ~ .custom-control-label::before{
    color: #F6FFF9;
}
    
/* La sombra (cuando el elemento está en el foco) */
.custom-radio .custom-control-input:focus ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before{
    box-shadow: 0 0 0 1px #F6FFF9, 0 0 0 0.1rem rgba(246, 255, 249, 0.4); 
}

/******************
 * COLUMNAS/FILAS *
 ******************/

.col-p-img{
	margin-bottom: 35px;
}

.col-pat-img{
	padding: 1.5rem; 
}

.col-footer-link{
	padding: 50px 50px 0px 50px;
}

.row-copyright{
	width: 100vw;
}

/****************************
 * MISIÓN, VISIÓN Y VALORES *
 ****************************/
 
.mvv-container{
	padding-top: 15px;
	padding-bottom: 15px;
}

.mvv-block{
	background-color: #F6FFF9;
	border: 1px solid #005820; 
	padding: 40px 30px;
	margin: 50px 33px 50px 33px;
}

.mvv-block-text{
	padding-left: 20px;
    padding-right: 20px;
    padding-top: 26px;
}

.mvv-block-text h3{
	margin-bottom: 20px;
}

.mvv-block-text p{
	color: #313131;	
}

.mvv-img{
	border: 1px solid #005820;
}

.mvv-p{
	line-height: 1.4;
	font-size: 16px;
}

/**************************
 * PARALLAX + ANIMACIONES *
 **************************/
 
.parallax-ini{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 210px;
	background-image: url(../img/fondos/otoño-min.png);  
	margin-top: 10px;
	margin-bottom: 10px;
}

.parallax-header{
	background: rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 100%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-title,
.banner-subtitle{
	animation-delay: 250ms;
}

.block-sostenibilidad{
	animation-delay: 200ms;
}

.block-formacion{
	animation-delay: 400ms;
}

/*****************
 * PIE DE PÁGINA *
 *****************/
 
.footer-container{
	background-color: #005820;
	margin-bottom: 0;
	height: 286px;
	width: 100%;
}

.footer-link{
	color: #F6FFF9;
}

.footer-link:hover{
	color: #FDCD00;
}

.scroll{
	background: rgba(222, 226, 230, 0.39);
	padding: 18px 20px 10px;
	text-align: center;
	margin: 0 30px 0 auto;
	cursor: pointer;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	width: 65px;
	height: 60px;
	border-radius: 4px;
}

.scroll:hover{
	background: rgba(253, 205, 0, 0.8); 
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
}

.scroll:hover .fa{
	padding-top: -10px;
}

.scroll .fa {
	font-size: 30px;
	margin-top: -5px;
	margin-left: 1px;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
}

.footer-divider{
	height: 1px;
	margin-left: 6vh;
	margin-right: 6vh;
	margin-top: 0 !important;
}

/*********
 * CARDS *
 *********/

.card{
	background-color: #F6FFF9;
	border: 1px solid rgba(0, 88, 32, 0.8) !important;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}

.card-img-top{
	width: 100%;
}

.card:hover{
	transform: scale(1.05);
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-body:not(.card-plan){
	padding: 1.50rem !important;
}

.card-plan{
	padding: 2rem !important;
}

.card-text{
	margin-bottom: 30px !important;
}

/********************
 * VENTANAS MODALES *
 ********************/

.modal-content{
	border: 0;
}
 
.modal-header{
	background-color: #005820;
	color: white;
	border-top-left-radius: .3rem !important;
    border-top-right-radius: .3rem !important;
}

.modal-body{
	margin: 1rem !important;
	height: 204px;
}

.modal-footer{
	background-color: #F6FFF9;
	border-bottom-left-radius: .3rem;
    border-bottom-right-radius: .3rem;
}

.modalMsg{
	background-color: rgba(0, 88, 32, 0.2) !important; 
}

/* Correcciones de padding al abrirse la ventana modal */

body.modal-open{
	overflow: auto;
}
body.modal{
	padding-right: 0px !important;
}
body .navbar{
	padding-right: 50px !important; 
}
body .navbar-toggler{
	margin-right: 0px !important;
}

.modalMsg{
	padding-right: 0px !important;
}

/************
 * IMÁGENES *
 ************/

figure {
  max-width: 100%;
} 

figcaption{
	font-style: italic;
	font-size: 0.9em;
}
 
.logo-nav{
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

/* Efecto fotografía en imágenes de patronato */
#boxshadow{
	width: 220px;
	height: 210px;
	position: relative;
	-moz-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
	padding: 10px;
	background: white;
	text-align: center;
	margin: 0 auto;
}

#boxshadow img{
	/* hacer que la imagen se ajuste a la caja */
	width: 100%;
	border: 1px solid #005820; 
	border-style: inset;
}

#boxshadow::after{
	content: '';
	position: absolute;
	z-index: -1; /* ocultar sombra tras la imagen */
	-webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
	box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);        
	width: 70%; 
	left: 15%; /* la mitad del 30% restante */
	height: 100px;
	bottom: 0;
}

.fig-historia img{
	border: 1px solid #005820;
}

.fondo-logo{
	background-image: url("../img/logos/capa-logo-stf.png");
	background-position: 8% 100%;	
	background-repeat: no-repeat; 
	background-size: 526px 495px;
}

/*************
 * PATRONATO *
 *************/

#container-fotos-patronato{
	width: 86%;
}

/****************
 * CONTENEDORES *
 ****************/

.container-top{
	padding-top: 150px;
	padding-bottom: 60px;
}

.container-logo{
	background-color: white;
	border-bottom: 1px solid #005820;
}

/*****************
 * MEDIA QUERIES *
 *****************/

@media (max-width: 1560px) and (min-width: 992px){
	.nav-section{
		top: 140px;
	}
	.page-header{
		height: 110px;
	}
	.navbar-brand img{
		height: 79px;
		width: 72px;
		display: none;
	}
}

@media (min-width: 992px){
	.navbar-expand-lg .navbar-collapse{
		padding-left: 20px;  
	}
}

@media (min-width: 768px) and (max-width: 991px){
	.contact-icon{
		font-size: 3em;
	}
}

@media (max-width: 991px){
	body .navbar{
		padding-right: 15px !important; 
	}
	.navbar-toggler {
		margin-left: auto;
		margin-right: 0;
	}
	.navbar {
		text-align: center;
		padding: 1px 0;
		margin-right: 0;
		margin-left: auto;
	}
	.navbar-light .navbar-toggler {
		border-radius: 0;
	}
	.navbar-expand-lg .navbar-nav .nav-link {
		padding: 10px 15px;
	}
	#mainNav{
		padding-top: 5px;
		padding-bottom: 20px;
	}
	.scroll {
		margin: 20px auto 0;
	}
	.desc-row{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.desc-block{
		max-width: 850px;
	}
	.container-logo{
		display: none;
	}
	.form-container{
		padding-top: 180px;
	}
	.mvv-block{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.mvv-block-text{
		padding-top: 0px;
	}
	.desc-block{
		padding-left: 20px !important;
	}
	.banner-colabora-section{
		margin-top: 101px;
	}
	#container-colabora{
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

@media (max-width: 540px){
	.mvv-block{
		flex-direction: column;
	}
	.mvv-block-text{
		margin-top: 20px;
	}
}

@media (max-width: 440px){
	#desc-ini-container{
		padding-top: 60px;
		padding-bottom: 0px;
	}
}

@media (min-width: 1561px){
	.container-logo{
		display: none;
	}
}

@media (min-width: 992px) and (max-width: 1400px){
	.form-container{
		max-width: 700px !important;
		padding-top: 170px;
	}
}

@media (min-width: 1401px){
	.container.form-container{
		padding-top: 180px;
		max-width: 1140px;
	}
}

@media (max-width: 491px){
	.modal-body{
		height: 244px;
	}
}

@media (max-width: 1400px){
	.banner-colabora-section,
	.banner-plan-section{
		margin-top: 100px;
	}
}

@media (max-width: 767px){
	.footer-container{
		height: auto;
		text-align: center;
	}
	.contact-block{
		margin-bottom: 40px;
	}
	.contact-data-container{
		padding-bottom: 20px;
	}
	.row-copyright p{
		padding-bottom: 20px;
	}
	.scroll{
		margin-bottom: 30px;
	}
	.cards-colabora .card{
		margin-right: 10px !important;
		margin-left: 10px !important;
		margin-bottom: 30px !important;
	}
}

@media (max-width:1400px){
	.container-top{
		padding-top: 150px; 
	}
}

@media (max-width:991px){
	.container-top{
		padding-top: 140px;
	}
	.fig-historia img{
		width: 280px;
		height: 190px;
	}
	.col-footer-link {
		padding: 40px 0px 0px 40px;
	}
}

@media (max-width:767px){
	.fig-historia{
		padding-top: 50px;
		padding-left: 0px;
		margin: 0 auto;
		display: table;
		margin-right: auto;
		margin-left: auto;
	}
	.fig-historia img{
		width: 400px;
		height: 260px;
	}
	.col-footer-link{
		padding: 50px 50px 0px 50px;
	}
	.container-top{
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

@media (max-width: 991px){
	#container-plan,
	#desc-ini-container{
		padding-left: 40px !important;
		padding-right: 40px !important;
	}
}

@media (max-width:1199px){
	#container-fotos-patronato{
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
	}
}

@media (min-width: 768px){
	.container-top h2, .container-top p{
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (min-width: 992px) and (max-width: 1160px){
	.banner-colabora-section,
	.banner-plan-section{
		margin-top: 94px;
	}
}

@media (min-width: 992px) and (max-width: 1199px){
	.mvv-img{
		width: 140px;
		height: 140px;
	}
	.mvv-block-text{
		padding-left: 10px;
		padding-right: 10px;
	}
	.footer-container{
		height: 250px;
	}
	.fig-historia img{
		width: 300px;
		height: 200px;
	}
	.navbar{
		height: 93px;
	}
}

@media (max-width: 1199px){
	.desc-block{
		padding-right: 20px;
	}
}

@media (max-width: 486px){
	#h2-mvv{
		padding: 40px;
	}
}

@media (max-width: 441px){
	.fig-historia img{
		width: 320px;
		height: 200px;
	}
}

@media (min-width: 541px) and (max-width: 991px){
	.parallax-ini{
		background-image: url(../img/fondos/otoño_tblt-min.png);  
	}
}

@media (max-width: 374px){
	.navbar-brand img{
		content:url("../img/logos/logotipo-fondo-v-movs.png");
	}
	.container-top{
		padding-top: 110px;
	}
	.col-pat-img{
		padding-left: 0px;
		padding-right: 0px;
	}
}

@media (min-width: 768px) and (max-width:991px){
	.footer-container{
		height: 250px;
	}
	.img-patronato{
		width: 160px;
		height: 150px;
	}
	#boxshadow {
		width: 180px;
		height: 170px;
	}
	.col-pat-img{
		padding-bottom: 48px;
		padding-left: 10px !important;
		padding-right: 10px !important;
		padding-top: 0px !important;
	}
	.card-text{
		padding: 0px !important;
	}
}

@media (min-width: 768px) and (max-width: 1199px){
	h2{
		font-size: 1.5rem; /*24px;*/
	}
	.contact-h-font,
	.card-title{
		font-size: 1.375rem; /*22px;*/
	}
	p,
	label,
	figcaption,
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	.mvv-p, 
	.nav-link, 
	.dropdown-item, 
	.link-email,
	.ordened-list-p,
	.col-footer-link ul{
		font-size: 0.875rem; /*14px;*/ 
	}
	textarea{
		font-size: 0.8125rem !important;  /*13px*/
	}
	.col-footer-link h5 {
		font-size: 1rem; /*16px;*/
	}
}

@media (min-width: 1390px){
	.footer-container{
		height: 260px;
	}
}

@media (max-width: 767px){
	.card{
		margin-bottom: 30px;
	}
}

@media (max-width: 575px){
	#card-plan,
	#card-estatutos{
		margin-right: 16px;
		margin-left: 16px;
	}
}

@media (min-width: 768px) and (max-width: 1199px){
	.primary-btn{
		font-size: 0.875rem !important; /*14px;*/ 
	}
}

@media (max-width: 475px){
	.barra-contacto{
		font-size: small; 
	}
}

@media (max-width: 354px){
	.barra-contacto{
		font-size: x-small;
	}
}

@media (max-width: 374px){
	#logotipo {
		width: auto;
		height: auto;
	}
	.banner-plan-section,
	.banner-colabora-section{
		margin-top: 75px;
	}
	.form-container{
		padding-top: 130px;
	}
}

@media (max-width: 660px){
	.row-copyright p{
		padding-left: 6vh;
		padding-right: 6vh;
	}
}

@media (min-width: 320px) and (max-width: 390px){
	.primary-btn{
		padding-left: 16px !important;
		padding-right: 16px !important;
		font-size: 1rem;
	}
}

@media (max-width: 320px){
	h2{
		font-size: 1.5rem; /*24px;*/
	}
	.contact-h-font,
	.card-title{
		font-size: 1.375rem; /*22px;*/
	}
	p,
	label,
	figcaption,
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	.mvv-p, 
	.nav-link, 
	.dropdown-item, 
	.link-email,
	.ordened-list-p,
	.col-footer-link ul{
		font-size: 0.875rem; /*14px;*/ 
	}
	textarea,
	.primary-btn{
		font-size: 0.8125rem !important;  /*13px*/
	}
	.col-footer-link h5 {
		font-size: 1rem; /*16px;*/
	}
	.banner-colabora-title{
		font-size: 2rem; /*32px;*/
	}
	.primary-btn{
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.desc-header i{
		font-size: 2.5rem;
	}
	.desc-header h3{
		font-size: 1.5rem;
	}
}

@media (min-width:992px) and (max-width: 1047px){
	.nav-link{
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}