
/* ===================== PANTALLA DE CARGA =============================== */
#WindowLoad {
    position:fixed;
    top:0px;
    left:0px;
    z-index:3200;
    filter:alpha(opacity=65);
    -moz-opacity:65;
    opacity:0.65;
    background:#999;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.LoadingScreen{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.LoadingScreen .ring{
    position: relative;
    width: 150px;
    height: 150px;
    margin: -30px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #24ecff;
    animation: animate 4s linear infinite;
}

@keyframes animate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.LoadingScreen .ring::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: #24ecff;
    box-shadow: 0 0 0 5px #24ecff33,
    0 0 0 10px #24ecff22,
    0 0 0 20px #24ecff11,
    0 0 20px #24ecff,
    0 0 50px #24ecff;
}

.LoadingScreen .ring:nth-child(2) {
    animation: animate2 4s linear infinite;
    animation-delay: -1s;
    border-top: 4px solid transparent;
    border-left: 4px solid #2dffa7;
}

.LoadingScreen .ring:nth-child(2)::before {
    content: '';
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: #2dffa7;
    box-shadow: 0 0 0 5px #2dffa733,
    0 0 0 10px #2dff7a22,
    0 0 0 20px #2dff7a11,
    0 0 20px #2dffa7,
    0 0 50px #2dffa7;
}

@keyframes animate2 {
    0%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }
}

.LoadingScreen .ring:nth-child(3) {
    animation: animate2 4s linear infinite;
    animation-delay: -3s;
    position: absolute;
    top: -66.66px;
    border-top: 4px solid transparent;
    border-left: 4px solid #e41cf8;
}

.LoadingScreen .ring:nth-child(3)::before {
    content: '';
    position: absolute;
    top: initial;
    bottom: 12px;
    left: 12px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: #e41cf8;
    box-shadow: 0 0 0 5px #e41cf833,
    0 0 0 10px #e41cf822,
    0 0 0 20px #e41cf811,
    0 0 20px #e41cf8,
    0 0 50px #e41cf8;
}

.LoadingScreen p {
    position: absolute;
    font-size: 1.5em;
    font-family: Impact, fantasy;
    bottom: -80px;
    letter-spacing: 0.20em;
}

/* ===================== FIN DE PANTALLA DE CARGA =============================== */


#sec {
  text-align: center;
  word-wrap: break-word;
}

.subir{
    position: relative;
    translate: -50px;
}

.ag-header-cell-label {
    justify-content: center;
  }

#sec h2 {
  font-weight: 200;
  font-size: 30px;
  color: #ffffff;
}
#sec ul {
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  list-style: none;
}
#sec ul li {
  padding: 25px;
  width: 230px;
  transition: box-shadow 0.3s;
}
#sec ul li:hover {
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
#sec ul li:hover span {
  color: #43c4ff;
}
#sec ul li:hover p {
  color: #555;
}
#sec ul li:hover h3 {
  color: #000000;
  font-weight: 300;
  font-size: 18px;
}
#sec ul li:hover h3:after {
  width: 20px;
}
#sec ul li span {
  font-size: 5.6em;
  display: block;
  transition: color 0.3s;
  color: #15aabf;
}
#sec ul li span:before, #sec ul li span:after {
  position: static;
}
#sec ul li h3 {
  margin-top: 10px;
  color: #6f6f6f;
  display: inline-block;
  font-size: 20px;
  font-weight: 150;
  transition: color 0.3s;
}
#sec ul li h3:after {
  content: "";
  position: relative;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 2px;
  background: #6f6f6f;
  transition: width 0.3s;
}

#menu{
    font-size: 5vw;
}

.linea{
    content: "";
    position: relative;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    display: block;
    width: 60px;
    height: 2px;
    background: #6f6f6f;
    transition: width 0.3s;
}

.linea:hover{
    width: 40px;
}

.icono{
    color: #15aabf;
}

.icono:hover{
    color: #43c4ff;
}


#sec ul li p {
  color: #ffffff;
  text-align: left;
  text-indent: 1em;
  font-size: 16px;
  line-height: 26px;
  transition: color 0.3s;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */

  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;

  /*
    Let the content set the size of the tooltips
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

/* UNRELATED to tooltips */
.cartel:hover{
  -moz-animation: 1s cartel 1;
  -moz-transform-origin: top center;
  -o-animation: 1s cartel 1;
  -o-transform-origin: top center;
  -webkit-animation: 1s cartel 1;
  animation: 1s cartel 1;
}

@-moz-keyframes cartel{
  20%{
      -moz-transform: rotate(15deg);
  }40%{
      -moz-transform: rotate(-10deg);
  }60%{
      -moz-transform: rotate(5deg);
  }80%{
      -moz-transform: rotate(-3deg);
  }
}

.chicle:hover{
-moz-animation: 1s chicle 1;
-moz-transform-origin: top center;
-o-animation: 1s chicle 1;
-o-transform-origin: top center;
-webkit-animation: 1s chicle 1;
animation: 1s chicle 1;
}

@-moz-keyframes chicle{
30%{
    -moz-transform: scaleX(1.25);
    -moz-transform: scaleY(0.75);
}40%{
    -moz-transform: scaleX(0.65);
    -moz-transform: scaleY(1.25);
}60%{
    -moz-transform: scaleX(1.15);
    -moz-transform: scaleY(0.85);
}
}

/* TOGGLE (TIPO SWICH) */
.switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 30px;
  }

  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 6px;
    bottom: 6px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: #3482c2;
  }

  input:focus + .slider {
    box-shadow: 0 0 1px #3482c2;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(36px);
    -ms-transform: translateX(36px);
    transform: translateX(36px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }

/* Slider */

.slide {
    box-shadow: 0 6px 15px -3px rgb(0 0 0/0.3);
    padding: 25px;
    border-radius: 5px;
  }

/* Dropdown */
/* The container <div> - needed to position the dropdown content */
.dropdown {
  background-color: #f3f4f6;
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  /* position: absolute; */
  background-color: #f3f4f6;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  text-transform: uppercase;
}

/* Links inside the dropdown */
.dropdown-content a {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #A1A1AA;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  font-weight: 900;
  background-color: #f1f1f1;
  color: #0891B2;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
