/*===================================================================================*/
/*  RESET                                                                            */
/*===================================================================================*/

* {
    outline: 0;
	border-image: 0;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

input[type=submit] {
    -webkit-appearance: none;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}
/*===================================================================================*/
/*  BASIC                                                                            */
/*===================================================================================*/

body {
    color: #333;
    font-size: 13px;
	line-height: 23px;
    font-family: 'Open Sans', sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-rendering: optimizelegibility;
}

#main
{
	overflow-x: hidden;
	height:auto;
}


::selection {
    color: #ffffff;
    background-color: #0b2473;
}
::-moz-selection
{ 
	color: #ffffff; 
	background-color: #0b2473; 
}

::-webkit-input-placeholder {
    font-size: 14px;
    color: #002747;
}

::-moz-placeholder {
   font-size: 14px;
    color: #002747;
}

:-ms-input-placeholder {
  font-size: 14px;
    color: #002747;
}
/*===================================================================================*/
/*  TYPOGRAPHY                                                                       */
/*===================================================================================*/


h1 {
	font-size: 40px;
	line-height: 40px;
	text-transform: uppercase;
	font-family: 'Boogaloo', cursive;
	font-weight: 400;
}

h2 {
	font-size: 35px;
	line-height: 35px;
	text-transform: uppercase;
	font-family: 'Boogaloo', cursive;
	font-weight: 400;
}

h3 {
	font-size: 30px;
	line-height:30px;
	text-transform: uppercase;
	font-family: 'Boogaloo', cursive;
	font-weight: 400;
}
h4 {
   font-size:20px;
   line-height: 20px;
	text-transform: uppercase;
	font-family: 'Boogaloo', cursive;
	font-weight: 400;
}
h5 {
   font-size:18px;
   line-height: 18px;
	text-transform: uppercase;
	font-family: 'Boogaloo', cursive;
	font-weight: 400;
}
h6 {
   font-size:15px;
   line-height: 15px;
	text-transform: uppercase;
	font-family: 'Boogaloo', cursive;
	font-weight: 400;
}


p {
    font-size:13px;
	line-height: 23px;
}



p:empty {
    display: none;
}

/*
b,
strong {
    font-weight: 600;
}

small {
    font-size: 80%;
}

cite {
    font-style: normal;
}

em {
    font-style: italic;
}*/

/*------------------------------------------
        links       
    ------------------------------------------*/

a {
    /*color: #ffc600; */
    color: inherit;
    text-decoration: none;
	
    webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a:hover {
    color: #444;
	text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
}

p a,
p a:visited {
    line-height: inherit;
}

a img {
    border: none;
    vertical-align: middle;
}


/*------------------------------------------
        list
    ------------------------------------------*/

ul,
ol,
dl {
    list-style-position: outside;
}

ul,
li
{
	list-style: none;
}


/*===================================================================================*/
/*  FORM                                                                             */
/*===================================================================================*/

input[type="text"]{

}
textarea {
    color: #888;
    padding: 12px;
    border: none;
    font-size: 13px;
    font-family: inherit;
    font-weight: 400;
    height: 50px;
    vertical-align: middle;
    margin-bottom: 20px;
    border: 1px solid #002747;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
	line-height: normal;
}

textarea {
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
}

label,
select,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
}
/*===================================================================================*/
/*  OTHER STYLE                                                                      */
/*===================================================================================*/

.hide {
    display: none !important;
}


/*------------------------------------------
        clearfix        
    ------------------------------------------*/

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

/*------------------------------------------ 
        images
    ------------------------------------------*/

img {
    vertical-align: middle;
    image-rendering: optimizeQuality;
    -ms-interpolation-mode: bicubic;
}


/*===================================================================================*/
/*  SECTION                                                                          */
/*===================================================================================*/

section ,
.section
{
    position: relative;
}

.container
{
    position: relative;
	width: 1100px;
	margin: 0 auto;
}


.mfp-close
{
	position: absolute;
    right: 5px!important;
    display: inline-block!important;
    width: auto!important;
    padding: 0 10px!important;
	opacity: 1;
	cursor: pointer!important;
}

select{
    -webkit-appearance: none;
}

@font-face{
    font-family: "Grace";
    src: url('../fonts/Grace.otf');
}

#header{
    padding: 15px;
    background-color: #a0a0a0;
}

.title{
    display: block;
    text-align: center;
}


.title img{
    width: 80%;
    margin: 0 auto;
}

.title h1{
    font-family: 'Grace';
    padding: 15px;
    text-transform: none;
    text-align: center;
    display: block;
    width:100%;
    margin-top: 30px;
    line-height: 1.5;
    color: #000;
}

.idiomas{
    position: absolute;
    right: 15px;
    top: 15px;
}

/*
.idiomas,
.idiomas li{
    display: inline-block;
    padding-top: 10px;
}

.idiomas li {
    margin: 0 5px;
}

.idiomas li img{
    width: 30px;
    border-radius: 5px;
    cursor: pointer;
}
*/

.lugaresHomeTitulo{
    background-color: #0b2473;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 18px;
}

.mt-20{
    margin-top: 20px;
}

.textoHome{
    padding: 30px;
}

.textoHome:first-of-type{
    font-size: 17px;
    /*font-style: italic;*/
    padding-top: 25px!important;
}

.carouselHome img {
    width:100%;
}

.carouselHomeBottom img {
    width:80%;
    margin: 0 auto;
}

.actuaciones{
    padding: 20px;
}

.actuaciones li{
    margin-top: 10px;
}

.formhome{
    padding:15px;
}

.formhome input,
.formhome textarea{
    width: 100%;
    border: 1px solid rgb(169,169,169);
    border-radius: 5px;
    padding: 7px 12px 7px 12px;
    background-color: transparent;
}

.formhome textarea{
    height: 150px;
}

.formGroup {
    margin: 10px 0px;
}

.formSend{
    text-align: center;
}

.btn{
    display: inline-block;
    position: relative;
    padding: 10px 30px;
    color: #fff;
    text-align: center;
    background-color: #0b2473;
    border: 1px solid rgb(169,169,169);
    border-radius:5px;
    cursor:pointer;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255,255,255,0.4);
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    border-radius:5px;
}

.btn:hover{
	color:#fff;
}

.btn:hover:after { 
  color:inherit;
  width: 120%;
  border-radius:5px;
  background-color: rgba(255,255,255,0);
  
	-webkit-transition: all 0.4s ease-in-out;
	   -moz-transition: all 0.4s ease-in-out;
	        transition: all 0.4s ease-in-out;
}


#main{
    background-image: url(../images/bg.png);
}


.menu{
    z-index: 10000;
}

.menu img{
    width: 20px;
    height: 20px;
}

.menuOpen{
    content: url(../images/menuopenmobile.png);
}

.menuClose{
    content: url(../images/menuclosemobile.png);
}

.menuOpened{
    display: none;
    position: absolute;
    top:0;
    right: 0;
    left: 0;
    bottom: 0;
    background-size: contain;
    background-image: url(../images/bgfull.jpg);
    z-index: 9999;
}

.menuOpened ul{
    
}
.menuOpened ul li{
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.lng{
    display: inline-block;
}

.menuOpened ul li:last-of-type{
    text-align: center;
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: space-around;
}

.textcenter{
    text-align: center;
}

.btop{
    border-top: 1px solid #333;
}

.pt-10{
    padding-top: 10px;
}

.pb-10{
    padding-bottom: 10px;
}

.fotoAngeles{
    text-align: center;
    margin-top: 20px;
}

.fotoAngeles img {
    width: 50%;
    margin: 0 auto;
}

#visualization{
    margin-top: 20px;
}

.vis-foreground .itemLT.ar{
    background-image: url(../images/ar.png);
    width: 30px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.vis-foreground .itemLT.co{
    background-image: url(../images/co.png);
    width: 30px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.vis-foreground .itemLT.me{
    background-image: url(../images/mx.png);
    width: 30px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.vis-foreground .itemLT.uy{
    background-image: url(../images/uy.png);
    width: 30px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.tooltipMobile{
    left: 5px!important;
    right: 5px!important;
    height: auto!important;
    width: calc(100% - 10px)!important;
    white-space: normal!important;
    padding: 5px!important;
    text-align: center!important;
}

#slides {
    position: relative;
    /*height: 300px;*/
    padding: 0px;
    margin: 0 auto;
    list-style-type: none;
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "it1 it2 it3 it4";
    grid-column-gap: 15px;
    align-items: center;
}

.slide {
    width: 100%;
    height: auto;
    z-index: 1;
    margin: 0 auto;
    cursor: pointer;
    opacity: 0.8;
}

.arrow-left{
    position: absolute;
    left: 0.5%;
    font-size: 60px;
    top:20px;
    opacity: 0.5;
    cursor: pointer;
}

.arrow-right{
    position: absolute;
    right: 0.5%;
    display: inline-block;
    font-size: 60px;
    top:20px;
    opacity: 0.5;
    cursor: pointer;
}

.arrow-left:hover,
.arrow-right:hover
{
    opacity: 1;
}

.slide img{
    width: 100%;
}

.bi1 {
    grid-template-columns: 1fr 1fr 1fr 1fr!important;
    grid-template-areas: "it1 it1 it3 it4"!important;
}

.bi2 {
    grid-template-columns: 1fr 1fr 1fr 1fr!important;
    grid-template-areas: "it1 it2 it2 it4"!important;
}

.bi3 {
    grid-template-columns: 1fr 1fr 1fr 1fr!important;
    grid-template-areas: "it1 it2 it3 it3"!important;
}

.bi4 {
    grid-template-columns: 1fr 1fr 1fr 1fr!important;
    grid-template-areas: "it1 it2 it4 it4"!important;
}

.slider{
    position: relative;
}

.expansorParent {
    margin: 10px 0px;
    padding: 15px;
}

.expansorHeader{
    width: 100%;
    font-size: 17px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.excel{
    border:1px solid #75aadb;
}
.exazu{
    border:1px solid #0038a8;
}
.exama{
    border:1px solid #fcd116;
}
.exver{
    border:1px solid #006847;
}

.ar{
    background:url(../images/arbn.png);
    background-size: contain;
}

.co{
    background:url(../images/cobn.png);
    background-size: contain;
}

.me{
    background:url(../images/mxbn.png);
    background-size: contain;
}

.ur{
    background:url(../images/urbn.png);
    background-size: contain;
}

.expansorBody{
    padding: 15px;
    display: none;
}

.expansorHeader img {
    width: 100px;
    vertical-align: middle;
    border-top-left-radius: 4px;
}

.expansorHeader div{
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 105px);
    text-align: center;
    font-weight: bold;
}

.expansorHeader.excel div{
    color:#75aadb;
}
.expansorHeader.exazu div{
    color:#0038a8;
}
.expansorHeader.exama div{
    color:#fcd116;
}
.expansorHeader.exver div{
    color:#006847;
}

.expansorBody.exama,
.expansorBody.exver,
.expansorBody.excel,
.expansorBody.exazu{
    border-top: 0;
}

.conFondoCel{
    background-color: #75aadb;
}
.conFondoAzu{
    background-color: #0038a8;
}
.conFondoAma{
    background-color: #fcd116;
}
.conFondoVer{
    background-color: #006847;
}

.conFondoAma div,
.conFondoVer div,
.conFondoAzu div,
.conFondoCel div{
    color:#fff!important;
}

.expansorFecha{
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.vermas{
    display:none;
}

.verMenosTxt,
.verMasTxt,
.verMasPrimeroTxt span,
.verMenosPrimeroTxt span{
    font-weight: bold;
    cursor: pointer;
    font-style: italic;
    display: inline-block;
    opacity: 0.8;
}

.verMenosTxt:hover,
.verMasTxt:hover,
.verMasPrimeroTxt span:hover,
.verMenosPrimeroTxt span:hover{
    opacity: 1;
    text-decoration: underline;
}

.formaciontitulo{
    font-weight:bold;
    font-size: 15px;
}


.timeline {
    white-space: nowrap;
    overflow-x: hidden;
  }
  
  .timeline ol {
    font-size: 0;
    width: 100vw;
    padding: 250px 0;
    transition: all 1s;
  }
  
  .timeline ol li {
    position: relative;
    display: inline-block;
    list-style-type: none;
    width: 160px;
    height: 3px;
    background: #fff;
  }
  
  .timeline ol li:last-child {
    width: 280px;
  }
  
  .timeline ol li:not(:first-child) {
    margin-left: 14px;
  }
  
  .timeline ol li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 1px);
    bottom: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #0b2473;
  }
  
  .timeline ol li div {
    position: absolute;
    left: calc(100% + 7px);
    width: 170px;
    padding: 15px;
    font-size: 1rem;
    white-space: normal;
    color: black;
    background: white;
    animation: all 1s ease-in-out;
  }
  
  .timeline ol li div::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
  }
  
  .timeline ol li:nth-child(odd) div {
    top: -16px;
    transform: translateY(-100%);
  }
  
  .timeline ol li:nth-child(odd) div::before {
    top: 100%;
    border-width: 8px 8px 0 0;
    border-color: white transparent transparent transparent;
  }
  
  .timeline ol li:nth-child(even) div {
    top: calc(100% + 16px);
  }
  
  .timeline ol li:nth-child(even) div::before {
    top: -8px;
    border-width: 8px 0 0 8px;
    border-color: transparent transparent transparent white;
  }
  
  .timeline time {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  
  /* TIMELINE ARROWS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  
  .timeline .arrows {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .timeline .arrows .arrow__prev {
    margin-right: 20px;
  }
  
  .timeline .disabled {
    opacity: .5;
  }
  
  .timeline .arrows img {
    width: 45px;
    height: 45px;
  }
  
  


  /**/
  
  
.timeline button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
  }
  /**/

.timeline ol li div img {
    width: 40px;
    vertical-align: sub;
    float: right;
}

.verMasPrimeroTxt,
.verMenosPrimeroTxt{
    text-align: center; 
    display: block;
    margin-top:20px;
    font-size: 15px;
}

.fullGallery{
    display: none;
}

.grid{
    padding: 20px;
    text-align: center;
    margin: 0 auto;
}

.grid:after {
    content: '';
    display: block;
    clear: both;
  }

.grid img{
    width:100%;
    opacity: 0.8;
    cursor: pointer;
}

.grid img:hover{
    opacity: 1;
}

.element-item {
    position: relative;
    padding: 10px;
    width: 20%;
}
  
.element-item > * {
    margin: 0;
    padding: 0;
}

.gridParent{
    width: 80%;
    margin: 0 auto;
}

.textTL{
    display: none;
}
.RFinal{
    display: inline-block;
    margin-left: -17px;
}

.menuLang{
    display: none;
}
#gracias{
    display: none;
    font-size: 20px;
    padding: 20px;
}

#main{
    padding-bottom: 50px;
}