html, body {
    font-family: 'Roboto Condensed', sans-serif;
    scroll-behavior: smooth;
}
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Sección general de Tags */
h1 {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
}
h2 {
    margin: 0;
}
h3 {
    margin: 0;
}
h4 {
    margin: 0;
}
h5 {
    margin: 0;
}
h6 {
    margin: 0;
}

p {
    margin: 0;
}
@media (max-width: 768px) {
    h1 {  }
}

.content {
    width: 1000px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .content {
        width: 100%;
        padding: 0 20px;
    }
}


/* Menú principal superior */
#navbarHead {
    width: 100%;
    color: #fff;
    backdrop-filter:  saturate(180%) blur(10px);
    background-color: rgba(0,0,0,0.6);
    padding: 10px 20px;
    display: block;
    position: absolute;
    text-align: right;
    top: 0px;
    z-index: 100;
}
.navbarHead {
    display: inline-block;
    min-width: 300px;
    vertical-align: top;
}
.menuLogo {
    /* width: 30%; */
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
}
.menuLogo img {
    height: 45px;
    position: absolute;
    left: 20px;
}
.menuLogo2 {
    margin-left: 200px;
    padding-left: 20px;
    border-left: 1px solid #ddd;
    height: 44px !important;
    padding-top: 0;
}
.menuLogo3 {
    margin-left: 333px;
    height: 42px !important;
    padding-left: 20px;
    padding-top: 0;
    border-left: 1px solid #ddd;
}
@media (max-width: 768px) {
    #navbarHead {
        height: 80px;
    }
    .menuLogo img {
        height: 40px;
        margin-top: 10px;
    }
    .menuLogo2 {
        display: none;
    }
    .menuLogo3 {
        display: none;
    }
}
#menu {
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
    text-align: right;
    font-size: 22px;
    font-weight: 100;
}
#menu span {
    font-size: 12px;
    font-weight: 700;
}
#menu li {
    list-style-type: none;
    display: inline;
}
#menu a {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding-left: 10px;
}
#menu a:hover {
    color: #ffc100;
    text-decoration: none;
    /*border-bottom: 1px solid #ffc100;*/
}

#menuAlt {
    display: none;
}
@media only screen and (max-width: 768px) {
    #menuAlt {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        text-align: left;
        color: #00C9FF;
        font-weight: 300;
        padding-top: 70px;
        margin-bottom: 0;
    }
    #menuAlt h2 {
        font-size: 40px;
        font-weight: 700;
        margin: 0;
    }
    #menuAlt h3 {
        font-size: 20px;
        font-weight: 500;
        margin: 0;
    }
    #menuAlt p {
        font-size: 18px;
        font-weight: 300;
        margin: 0;
    }
    #menuAlt span {
        font-size: 14px;
        font-weight: 700;
    }
    #menuAlt a {
        color: #00C9FF;
        text-decoration: none;
    }
    #menuAlt a:hover {
        color: #ffc100;
        text-decoration: none;
    }
}

.headmail {
    font-size: 14px !important;
    text-decoration: none !important;
    color: #fff;
    font-weight: 300;
    margin: 0;
}
.menu_botTel {
    border: 1px solid #003B7F;
    background: transparent;
    padding: 2px;
    border-radius: 3px;
}
.menu_botTel:hover {
    background-color: rgba(254,207,10,1);
}
.menuHeadBottom {
    width: 100%;
    height: 100px;
    background-size: 100%;
}
@media only screen and (max-width: 768px) {
    .menuHeadBottom {
        height: 60px;
    }
}

/* Iniciá menú móvil */
#toggle {
  position: absolute;
  right: 20px;
  top: 14px;
  z-index: 999;
  width: 40px;
  height: 40px;
  cursor: pointer;
  float: right;
  transition: all 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}

#toggle .span {
  height: 7px;
  background: #fff;
  margin: 5px auto;
  backface-visibility: hidden;
}

#toggle.on #one {
  transform: rotate(45deg) translateX(6px) translateY(6px);
}

#toggle.on #two {
  opacity: 0;
}

#toggle.on #three {
  transform: rotate(-45deg) translateX(10px) translateY(-12px);
}

#resize {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.9);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  display: table;
  font-size: 14px;
  font-weight: 500;
}

#resize #menu {
  display: table-cell;
  vertical-align: middle;
  background-color: rgba(0,0,0,.3);
}

#resize ul {
    padding: 30% 30px 30px 50px;
}
#resize li {
    list-style: none;
    color: #fff;
    padding-bottom: 10px;
}
#resize a {
    font-size: 22px;
    font-weight: 100;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
}
#resize span {
    padding-right: 10px;
}

#resize #menu li {
  display: block;
  text-align: center;
  background-color: rgba(0,0,0,.1);
  border-bottom: 1px solid #202020;
  text-align: center;
  font-size: 16px;
  min-height: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease-out;
  text-transform: uppercase;
}

#resize #menu li:hover {
  background: #fff;
}

#resize #menu li:hover a {
  color: #fff;
  transition: all 0.3s ease-out;
}

#resize #menu li a {
    color: #fff;
    position: relative;
    top: 10px;
}

#resize.active {
  visibility: visible;
  opacity: 0.99;
}

@media (max-width: 768px) {
  #toggle {
    visibility: visible;
    opacity: 1;
  }
  #menu {
    display: none;
  }
}

@media (min-width: 768px) {
  #resize {
    visibility: hidden !important;
  }
}
/* Termina menú móvil */

#menuP {
    position: absolute;
}
.menuP {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background-color: rgba(0,56,116,.1);
    padding: 10px 20px;
}
.menuP img {
    height: 50px;
}
.menuP_ a {
    font-size: 12px;
    font-weight: 500;
    color: #C7E8FB;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
}
.menuP_ a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}


.bg01 {
    background: #000 url('../images/apsismdm_bg_01.jpg') no-repeat center center fixed;
    background-size: cover;
}
@media (width <= 1024px) {
    .bg01 {
        background: #000 url('../images/apsismdm_bg_01.jpg') no-repeat center center;
        background-size: 650%;
    }
}


/* Sección Head */
#headTit {
    background: transparent;
    margin-bottom: 15%;
}
.headTit_bg_alt {
    background: transparent url('../images/apsismdm_bg_serv00a.png') no-repeat top right;
}
.headTit {
    padding-top: 15%;
    letter-spacing: -.03em;
}
.headTit h1 {
    font-size: 45px;
    font-weight: 100;
    color: #FFAD14;
    line-height: 1em;
    margin-bottom: 50px;
}
.headTit h2 {
    font-size: 22px;
    font-weight: 700;
    color: #FFAD14;
    line-height: 1.2em;
    margin: 0;
}
.headTit h3 {
    font-size: 30px;
    font-weight: 100;
    color: #FFAD14;
    line-height: 1em;
    margin: 0;
}
.headTit p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}
.headTit ul {
    padding-left: 18px;
}
.headTit li {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.1em;
    margin: 0;
}
.headTit a {
    color: #FFAD14;
    text-decoration: none;
}
.headTit a:hover {
    color: #ff9900;
}
.headTit button {
    border: 1px solid #00C9FF;
    border-radius: 20px;
    background: rgba(0,0,0, .2);
    padding: 10px 50px;
    margin-top: 40px;
    width: auto;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    color: #00C9FF;
    cursor: pointer;
}
.headTit button:hover {
    background-color: #00C9FF;
    color: #000;
    box-shadow: 0 0 8px 4px #000;
    transition: 300ms;
}
.headTit_blk {
    width: 100%;
    min-height: 430px;
    border-radius: 5px;
    backdrop-filter:  saturate(180%) blur(10px);
    background-color: rgba(0,0,0,.5);
}
.headTit_blk_style1 {
    padding: 40px 50px;
}
.headTit_blk_style2 {
    padding: 40px 20px;
}
.headTit_blk_in {
    width: 49%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.headTit_blk1 {
    width: 69%;
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
    padding-right: 10px;
    margin: 0;
}
.headTit_blk2 {
    width: 29%;
    display: inline-block;
    vertical-align: top;
    padding-left: 10px;
    margin: 0;
}
@media only screen and (max-width: 768px) {
    .headTit {
        padding-top: 30%;
    }
    .headTit_blk_style1 {
        padding: 20px;
    }
    ..headTit_blk_style2 {
        padding: 20px;
    }
    .headTit h1 {
        font-size: 46px;
        margin-bottom: 20px;
    }
    .headTit_blk {
        width: 100%;
    }
    .headTit_blk1 {
        width: 100%;
        padding-right: 0;
        margin-bottom: 50px;
    }
    .headTit_blk2 {
        width: 100%;
        padding-left: 0;
    }
    .headTit_blk_in {
        width: 100%;
    }
}


/* Secc. Form */
.formLP {
    background: transparent;
}
form {
    padding-top: 20px;
}
.formLP input, textarea {
    border: 1px solid #666;
    border-radius: 3px;
    padding: 10px 20px;
    background: transparent;
    margin: 2px 0;
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}
input::placeholder { color: #999; opacity: .8; }
textarea::placeholder { color: #fff; opacity: .8; }
.formLP_req_ {
    border-left: 3px solid #ffc100 !important;
}
input:focus { border: 1px solid #ffc100; }
input[type=submit] {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #d9d9d9;
    /*background: rgba(255,255,255, .2);*/
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-align: center;
    margin-top: 2px;
    cursor:pointer;
}
input[type=submit]:hover {
    border: 1px solid #ff9900;
    background-color: #ff9900;
    color: #fff;
    transition: 300ms;
}
.formLP button {
    border: 1px solid #fff;
    background: rgba(255,255,255, .2);
    padding: 10px 20px;
    margin: 2px 0;
    width: 100%;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}
.formLP button:hover {
    border: 1px solid #ffc100;
    background-color: #ffc100;
    color: #000;
    box-shadow: 0 0 8px 4px #fff;
}
.formLP_req {
    border-left: 3px solid #ffc100;
    padding-left: 5px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    margin: 0;
}
.formLP_legal1 a {
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    margin: 0;
}
.formLP_legal1 a:hover {
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
}
@media only screen and (max-width: 768px) {}



/* Tabla general */
.Table {
  display: table;
  width: 100%;
}
.Title {
  display: table-caption;
  font-size: 14px;
  font-weight: 700;
  color: #2BB673;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.Heading {
  display: table-row;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  background-color: #f4f4f4;
}
.Row {
  display: table-row;
  padding: 6px 0;
}
.Row_1 {
  background-color: #f8f9fa;
}
.Row:hover {
  background-color: #f4f4f4;
}
.Cell {
  display: table-cell;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  padding: 6px 10px;
  border-bottom: 1px solid #fff;
}
.cellW60 {
    min-width: 60px;
}
.cellW50 {
    min-width: 50px;
}
.cellW80 {
    min-width: 80px;
}
.cellW100 {
    min-width: 100px;
}
.Cell a {
  color: #666;
  text-decoration: none;
}
.cell_link {
  text-decoration: none !important;
}
.cell_link:hover {
  color: #ff9900 !important;
}
.cell_data {
  color: #000;
}


/* Secc. Footer 1 */
#footer1 {
    background: rgba(0,0,0, .6);
    background-size: 100%;
    margin: 0;
}
.footer1 {
    padding: 30px 0;
    color: #999;
}
.footer1 h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    color: #F29719;
    letter-spacing: -.01em;
    margin: 0;
}
.footer1 h3 {
    font-size: 16px;
    font-weight: 100;
    letter-spacing: -.01em;
    margin: 0;
}
.footer1 p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: -.01em;
    margin: 0;
}
.footer1 a {
    color: #fff;
    text-decoration: none;
}
.footer1 a:hover {
    color: #ff9900;
}
.footer1 ul {
    margin-left: 18px;
}
.footer1 li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -.01em;
    margin: 0;
}
.footer1 span {
    font-weight: 700;
}
.sedes {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: -.01em;
    margin: 0;
}
.footer1 hr {
    border: none;
    border: 1px solid #01BBFD;
    margin: 20px 0;
}
.footer1_blk {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.footer_alt {
    text-align: right !important;
}
.footer_alt img {
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 30px 30px;
}
.footer_blk1_a {
    width: 140px;
    display: inline-block;
    vertical-align: top;
    padding-right: 20px;
    margin: 0;
}
.footer_blk1_b {
    width: 50%;
    display: inline-block;
    vertical-align: bottom;
    margin: 0;
}
@media only screen and (max-width: 768px) {
    .footer1_blk {
        width: 100%;
        margin-bottom: 40px;
    }
    .footer_alt img {
        margin-bottom: 30px;
    }
    .footer_alt {
        text-align: left !important;
    }
    .footer_alt img {
        text-align: left !important;
        margin: 0 30px 30px 0;
    }
}


/* Secc. footer2 */
#footer2 {
    background: linear-gradient(90deg, #fff, #fafafa, #fff);
    height: 40px;
}
.footer2 {
    vertical-align: middle;
    padding-top: 12px;
}
.footer2 p {
    font-size: 12px;
    font-weight: 300;
    color: #666;
    margin: 0;
}


/* Footer */
footer {
    background-color: #fff;
    padding: 20px 0;
}
.footer_blk1 {
    width: 69.5%;
    display: inline-block;
    vertical-align: middle;
    min-width: 300px;
    margin: 0;
}
.footer_blk1 h2 {
    font-size: 12px;
    font-weight: 300;
    color: #999;
}
.footer_blk2 {
    width: 29.5%;
    display: inline-block;
    vertical-align: middle;
    min-width: 300px;
    text-align: right;
    margin: 0;
}
.footer_blk2 img {
    height: 35px;
}
@media (max-width: 768px) {
    .footer_blk2 {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
}
@media only screen and (max-width: 768px) {
    .footer_blk2 img {
        margin-top: 10px;
    }
}


/* Elementos del Mapa */
#bloque-maplocation {
    width:100%;
    height: 300px;
    margin-top: 0px;
    margin-bottom: 10px;
}
#maplocation {
    max-width: 100%;
    margin: 0 auto;
    color:#444;
}
#maplocation .col1 h2 {
    font-weight: 100;
    color:#fff;
}
#mapa .capa-anti-eventos {
    width: 100%;
    height: 300px;
    position: absolute;
    cursor: pointer;
}


/* Facebook */
.fb_img {
    width: 50px !important;
    height: 50px !important;
    float: right;
}
.fb_float {
    display: scroll;
    position: fixed;
    bottom: 265px;
    right: 20px;
}


/* Instagram */
.insta_img {
    width: 50px !important;
    height: 50px !important;
    float: right;
}
.insta_float {
    display: scroll;
    position: fixed;
    bottom: 200px;
    right: 20px;
}


/* Whatsapp */
.whatssapp_img {
    width: 50px !important;
    height: 50px !important;
    float: right;
}
.whatss_float {
    display: scroll;
    position: fixed;
    bottom: 140px;
    right: 20px;
}



/* Temporizador */
#countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  color: #666;
}
.time-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.time {
  font-size: 2.6em;
  font-weight: 100;
}
.label {
  font-size: 0.5em;
  text-transform: uppercase;
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
    .time {
      font-size: 2.2em;
    }
}



.spaceH300 {
    height: 300px;
}
.spaceH100 {
    height: 100px;
}
.spaceH80 {
    height: 80px;
}
.spaceH60 {
    height: 60px;
}
.spaceH50 {
    height: 50px;
}
.spaceH40 {
    height: 40px;
}
.spaceH30 {
    height: 30px;
}
.spaceH20 {
    height: 20px;
}
