@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&display=swap");
.row-contact-site {
  position: relative;
  width: 100%;
  height: 600px;
  animation: colores 10s infinite ease-in-out;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-contact-site {
    height: auto;
  }
}
.row-contact-site .row-form {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 40px;
}
.row-contact-site .row-form .col-form {
  position: relative;
  width: 90%;
  max-width: 1200px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
}
.whatsapp {
  position:fixed;
  width:60px;
  height:60px;
  bottom:20px;
  right:75px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}

.whatsapp-icon {
  margin-top:13px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-contact-site .row-form .col-form {
    width: 82%;
  }
}
.row-contact-site .row-form .col-form h3 {
  position: relative;
  width: 90%;
  height: auto;
  text-align: center;
  color: white;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.row-footerContact {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.row-footerContact .btn-back {
  position: absolute;
  width: auto;
  height: 32px;
  left: 0;
  top: 0px;
  padding: 0;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  color: #4b5165;
  background-color: white;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
  border-radius: 16px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.row-footerContact .btn-send {
  position: relative;
  width: auto;
  height: 36px;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5165;
  background-color: white;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
  border-radius: 16px;
  transition: 0.3s;
  cursor: pointer;
  outline: none;
  border: 0;
}
.row-footerContact .btn-send:hover {
  color: pink;
}

@keyframes hue-rotation {
  0% {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    -o-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
  100% {
    -webkit-filter: hue-rotate(360deg);
    -moz-filter: hue-rotate(360deg);
    -ms-filter: hue-rotate(360deg);
    -o-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}
#contact-form {
  position: relative;
  width: 100%;
  height: auto;
}

input[type=text],
input[type=email],
textarea {
  border: none;
  outline: 0;
  padding: 9px;
  margin: 0;
  font-size: 0.9em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=text]:hover,
input[type=email]:hover,
textarea:hover {
  background: #F7FAF8;
}

input.error,
textarea.error {
  background: #FFEDED;
}

input.error:hover,
textarea.error:hover {
  background: #FFD9D9;
}

.error::-webkit-input-placeholder {
  color: #D12828;
}

.error:-moz-placeholder {
  color: #D12828;
}

.error::-moz-placeholder {
  color: #D12828;
}

.error:-ms-input-placeholder {
  color: #D12828;
}

input[type=submit] {
  background: #55C958;
  border: none;
  color: white;
  font-size: 0.95em;
  padding: 0.5em 2em;
  /*border-radius*/
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  /*transition*/
  -webkit-transition: background 0.9s;
  -moz-transition: background 0.9s;
  -o-transition: background 0.9s;
  transition: background 0.9s;
}

input[type=submit]:hover {
  background: #57AD59;
}

.group::after {
  content: " ";
  display: table;
  clear: both;
}

div.error {
  background: #FF4545;
  color: white;
  padding: 0.4em 1em;
  position: absolute;
  left: 2.5em;
  top: 100%;
  margin-top: 3px;
  z-index: 2000;
  /*border-radius*/
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

div.error::before {
  content: " ";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 5px 8px 5px;
  border-color: transparent transparent #FF4545 transparent;
  position: absolute;
  bottom: 100%;
  left: 1;
}

.row-group-form {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-group-form {
    flex-direction: column;
  }
}
.row-group-form .col-f {
  position: relative;
  width: 32%;
  height: auto;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-group-form .col-f {
    width: 100%;
    margin-top: 20px;
  }
}
.row-group-form .col-f label {
  position: relative;
  width: 100%;
  height: auto;
}
.row-group-form .col-f input {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 14px;
}
.row-group-form .col-full {
  position: relative;
  width: 100%;
  height: auto;
}
.row-group-form .col-full textarea {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 140px;
  resize: none;
}

.btn-sende {
  position: fixed;
  z-index: 4;
  left: 20px;
  bottom: -50px;
  margin: 0;
  float: none;
}

@keyframes colores {
  0% {
    background-color: #242345;
  }
  20% {
    background-color: #5982eb;
  }
  40% {
    background-color: #efac5b;
  }
  60% {
    background-color: #fb4a50;
  }
  80% {
    background-color: #fb4a50;
  }
  100% {
    background-color: #242345;
  }
}
.row-interactive {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 0px;
  padding-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-interactive {
    overflow: hidden;
  }
}
.row-interactive .col-interactive {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 500px;
}

.buttons-interactive {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.buttons-interactive .item-t {
  position: absolute;
  width: 220px;
  height: 220px;
  cursor: pointer;
  transition: all 0.4s ease-out;
}
@media (min-width: 0px) and (max-width: 680px) {
  .buttons-interactive .item-t {
    width: 200px;
    height: 200px;
  }
}
.buttons-interactive .i1 {
  left: 50%;
  margin-left: -230px;
  top: 0px;
  background-color: #fb4a50;
  border-radius: 50%;
}
@media (min-width: 0px) and (max-width: 680px) {
  .buttons-interactive .i1 {
    margin-left: -225px;
  }
}
.buttons-interactive .i2 {
  top: 0;
  left: 50%;
  margin-left: 20px;
  background-color: #f27979;
  border-radius: 100px 0px 100px 0px;
}
.buttons-interactive .i3 {
  top: 250px;
  left: 50%;
  margin-left: -230px;
  background-color: #242345;
}
@media (min-width: 0px) and (max-width: 680px) {
  .buttons-interactive .i3 {
    margin-left: -225px;
  }
}
.buttons-interactive .i4 {
  top: 250px;
  left: 50%;
  margin-left: 20px;
  background-color: #5982eb;
  border-radius: 0px 100px 100px 100px;
}

.bi-open .i1 {
  top: 91% !important;
  bottom: 15px;
  left: 50%;
  margin-left: -24px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: rotate(135deg);
}
.bi-open .i2 {
  top: 91% !important;
  bottom: 15px;
  left: 50%;
  margin-left: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: rotate(135deg);
}
.bi-open .i3 {
  top: 91% !important;
  bottom: 15px;
  left: 50%;
  margin-left: 40px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: rotate(135deg);
}
.bi-open .i4 {
  top: 91% !important;
  bottom: 15px;
  left: 50%;
  margin-left: 70px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: rotate(135deg);
}

.btn-back-interactive {
  position: absolute;
  left: 50%;
  margin-left: -125px;
  bottom: 20px;
  background-color: white;
  border-radius: 16px;
  padding: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: auto;
  height: auto;
  cursor: pointer;
  display: none;
  z-index: 2;
  color: #5982eb;
  font-size: 13px;
  border: 2px solid #5982eb;
}

.img-bi1 {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  margin-left: -25px;
  top: 16%;
}

.titleI {
  position: absolute;
  width: 90%;
  height: auto;
  top: 41%;
  left: 5%;
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.ver-mas {
  position: absolute;
  width: 80px;
  height: 24px;
  bottom: 19%;
  left: 50%;
  margin-left: -40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid white;
  color: white;
  font-size: 12px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .ver-mas {
    width: 76px;
    height: 22px;
    bottom: 8%;
  }
}
.ver-mas .icon-v {
  position: relative;
  width: 14px;
  height: 14px;
  background-image: url("/todo/assets/img/viewmore.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 5px;
}

.item-btn-mini {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
  cursor: pointer;
}

.bi-open .item-t .item-btn-mini {
  display: flex;
}

.container-interactive {
  position: relative;
  width: 440px;
  height: 440px;
  margin: 0 auto;
  z-index: 1;
}

.bi-active {
  filter: opacity(25%);
}

.content-i1 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  background-color: #fb4a50;
}

.c-all {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.content-i2 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  background-color: #f27979;
}

.content-i3 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #242345;
  display: none;
}

.content-i4 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #5982eb;
  display: none;
}

.c-cont h4 {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #5583EE;
  margin: 0 auto;
  margin-top: 25px;
  color: white;
}
.c-cont .row-c-text {
  position: relative;
  width: 90%;
  height: auto;
  margin: 0 auto;
  margin-top: 10px;
}
.c-cont .row-c-text p {
  color: white;
}
.c-cont .row-c-text ol {
  position: relative;
  width: 90%;
  height: auto;
  padding-left: 10%;
}
.c-cont .row-c-text ol li {
  color: white;
  margin-top: 6px;
}

.showFlex {
  display: flex;
}

.hideFlex {
  display: none;
}

.z-index-2 {
  z-index: 2;
}

.row-map {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.row-map .col-map {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  justify-content: center;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-map .col-map {
    height: 600px;
    overflow: hidden;
  }
}
.row-map .col-map .map-image {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 600px;
  background-color: #242345;
  z-index: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-map .col-map .map-image {
    width: 98%;
    overflow: visible;
  }
}

.btnS {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #f27979;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  background-image: url("/todo/assets/img/add_icon.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.btnS:hover {
  background-color: #f27979;
}

.blob {
  border-radius: 50%;
  transform: scale(1);
  background-color: #fb4a50;
  box-shadow: 0 0 0 0 #ff793f;
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
  }
}
.btn-map1 {
  width: 30px;
  height: 30px;
  top: 30%;
  left: 30%;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 680px) {
  .btn-map1 {
    top: 15%;
  }
}

.btn-map2 {
  width: 30px;
  height: 30px;
  top: 65%;
  left: 30%;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 680px) {
  .btn-map2 {
    top: 35%;
  }
}

.btn-map3 {
  width: 30px;
  height: 30px;
  top: 25%;
  right: 35%;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 680px) {
  .btn-map3 {
    top: 10%;
  }
}

.map-0 {
  position: relative;
  width: 70%;
  height: auto;
  transition: 0.4s;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 680px) {
  .map-0 {
    width: 420px;
    height: 298px;
  }
}

.map-1 {
  position: absolute;
  width: 70%;
  height: auto;
  transition: transform 0.4s;
  z-index: 2;
  left: 50%;
  margin-left: -35%;
  display: none;
}
@media (min-width: 0px) and (max-width: 680px) {
  .map-1 {
    width: 420px;
    height: 298px;
    margin-left: -210px;
  }
}

.map-2 {
  position: absolute;
  width: 70%;
  height: auto;
  left: 50%;
  margin-left: -35%;
  top: 0;
  display: none;
  transition: transform 0.5s;
  z-index: 2;
}
@media (min-width: 0px) and (max-width: 680px) {
  .map-2 {
    width: 420px;
    height: 298px;
    margin-left: -210px;
  }
}

.map-3 {
  position: absolute;
  width: 70%;
  height: auto;
  left: 50%;
  margin-left: -35%;
  top: 0;
  display: none;
  transition: transform 0.5s;
  z-index: 2;
}
@media (min-width: 0px) and (max-width: 680px) {
  .map-3 {
    width: 420px;
    height: 298px;
    margin-left: -210px;
  }
}

.map-1-1 {
  position: absolute;
  width: 70%;
  height: auto;
  left: 50%;
  margin-left: -35%;
  top: 0;
  display: none;
  transition: transform 0.5s;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .map-1-1 {
    width: 420px;
    height: 298px;
    margin-left: -210px;
  }
}

.map-1-2 {
  position: absolute;
  width: 70%;
  height: auto;
  left: 50%;
  margin-left: -35%;
  top: 0;
  display: none;
  transition: transform 0.5s;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .map-1-2 {
    width: 420px;
    height: 298px;
    margin-left: -210px;
  }
}

.map-1-3 {
  position: absolute;
  width: 70%;
  height: auto;
  left: 50%;
  margin-left: -35%;
  top: 0;
  display: none;
  transition: transform 0.5s;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .map-1-3 {
    width: 420px;
    height: 298px;
    margin-left: -210px;
  }
}

.buttons-map1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .buttons-map1 {
    height: 300px;
  }
}

.btn-map1-1 {
  top: 24%;
  left: 27%;
}

.btn-map1-2 {
  top: 24%;
  right: 31%;
}

.btn-map1-3 {
  top: 53%;
  left: 42%;
}

.buttons-map1-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .buttons-map1-1 {
    height: 300px;
  }
}

.btn-map1-1-1 {
  top: 26%;
  left: 38%;
}

.btn-map1-1-2 {
  top: 56%;
  left: 30%;
}

.btn-map1-1-3 {
  top: 56%;
  left: 45%;
}

.btn-map1-1-4 {
  top: 26%;
  left: 50%;
}

.btn-map1-1-5 {
  top: 56%;
  left: 60%;
}

.btn-map1-1-6 {
  top: 19%;
  left: 61%;
}

.buttons-map1-2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .buttons-map1-2 {
    height: 300px;
  }
}

.btn-map1-2-1 {
  top: 55%;
  left: 32%;
}

.btn-map1-2-2 {
  top: 33%;
  left: 25%;
}

.btn-map1-2-3 {
  top: 17%;
  left: 25%;
}

.btn-map1-2-4 {
  top: 26%;
  left: 39%;
}

.btn-map1-2-5 {
  top: 22%;
  left: 61%;
}

.btn-map1-2-6 {
  top: 45%;
  left: 58%;
}

.btn-map1-2-7 {
  top: 81%;
  left: 66%;
}

.btn-map1-2-8 {
  top: 78%;
  left: 50%;
}

.buttons-map1-3 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .buttons-map1-3 {
    height: 300px;
  }
}

.btn-map1-3-1 {
  top: 31%;
  left: 78%;
}

.btn-map1-3-2 {
  top: 50%;
  left: 78%;
}

.btn-map1-3-3 {
  top: 70%;
  left: 65%;
}

.btn-map1-3-4 {
  top: 67%;
  left: 41%;
}

.buttons-map2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .buttons-map2 {
    height: 300px;
  }
}

.btn-map2-1 {
  top: 52%;
  left: 25%;
}

.btn-map2-2 {
  top: 34%;
  left: 39%;
}

.btn-map2-3 {
  top: 20%;
  right: 38%;
}

.btn-map2-4 {
  top: 20%;
  right: 30%;
}

.btn-map2-5 {
  top: 50%;
  right: 30%;
}

.buttons-map3 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .buttons-map3 {
    height: 300px;
  }
}

.btn-map3-1 {
  top: 46%;
  left: 28%;
}

.btn-map3-2 {
  top: 32%;
  left: 38%;
}

.message-m {
  position: absolute;
  background-color: white;
  border-radius: 12px;
  z-index: 4;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
}
@media (min-width: 0px) and (max-width: 680px) {
  .message-m {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.message-m .mTitle {
  position: relative;
  width: 90%;
  height: auto;
  text-align: center;
  font-size: 17px;
  color: #5982eb;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .message-m .mTitle {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.message-m p {
  position: relative;
  width: 90%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  font-size: 13px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .message-m p {
    font-size: 12px;
  }
}

.instruction {
  position: relative;
  width: 82%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 15px;
  padding-bottom: 6px;
  border-radius: 8px;
  border: 1px solid #242345;
  cursor: default;
}
@media (min-width: 0px) and (max-width: 680px) {
  .instruction {
    width: 90%;
    margin-top: 10px;
  }
}
.instruction p {
  display: inline-block;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
}
.instruction p .icon-text {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 3px;
}

.mm0 {
  width: 200px;
  height: auto;
  top: 4%;
  left: 2%;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mm0 {
    top: 280px;
    width: 180px;
  }
}

.mm1 {
  width: 200px;
  height: auto;
  top: 4%;
  left: 2%;
  display: none;
  padding-bottom: 10px;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
}
@media (min-width: 0px) and (max-width: 680px) {
  .mm1 {
    top: 280px;
    width: 180px;
  }
}

.mm2 {
  width: 200px;
  height: auto;
  top: 4%;
  left: 2%;
  display: none;
  padding-bottom: 10px;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
}
@media (min-width: 0px) and (max-width: 680px) {
  .mm2 {
    top: 280px;
    width: 180px;
  }
}

.mm3 {
  width: 200px;
  height: auto;
  top: 4%;
  left: 2%;
  display: none;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
}
@media (min-width: 0px) and (max-width: 680px) {
  .mm3 {
    top: 280px;
    width: 180px;
  }
}

.mm1-1 {
  width: 200px;
  height: auto;
  top: 4%;
  left: 2%;
  display: none;
  padding-bottom: 10px;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
}
@media (min-width: 0px) and (max-width: 680px) {
  .mm1-1 {
    top: 280px;
    width: 180px;
  }
}

.mm1-2 {
  width: 200px;
  height: auto;
  top: 4%;
  left: 2%;
  display: none;
  padding-bottom: 10px;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
}
@media (min-width: 0px) and (max-width: 680px) {
  .mm1-2 {
    top: 280px;
    width: 180px;
  }
}

.mm1-3 {
  width: 200px;
  height: auto;
  top: 4%;
  left: 2%;
  display: none;
  padding-bottom: 10px;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
}
@media (min-width: 0px) and (max-width: 680px) {
  .mm1-3 {
    top: 280px;
    width: 180px;
  }
}

.btn-backMap {
  position: relative;
  width: 140px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: white;
  background-color: #5982eb;
  border-radius: 16px;
  margin: 0 auto;
  margin-top: 10px;
  transition: 0.4s;
  cursor: pointer;
}
.btn-backMap:hover {
  background-color: #1086e4;
}
@media (min-width: 0px) and (max-width: 680px) {
  .btn-backMap {
    width: 120px;
    height: 30px;
    font-size: 12px;
    margin-top: 5px;
  }
}

.message-mi {
  position: absolute;
  background-color: rgba(36, 35, 69, 0.9);
  border-radius: 12px;
  z-index: 4;
}
.message-mi .mTitle {
  position: relative;
  width: 90%;
  height: auto;
  text-align: center;
  font-size: 16px;
  color: white;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
.message-mi p {
  position: relative;
  width: 90%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
  color: white;
}
@media (min-width: 0px) and (max-width: 680px) {
  .message-mi p {
    width: 94%;
  }
}
.message-mi ol {
  position: relative;
  width: 90%;
  height: auto;
  margin-left: 30px;
}
.message-mi ol li {
  position: relative;
  width: 80%;
  height: auto;
  font-size: 12px;
  color: white;
}

.mmi2-1 {
  width: 200px;
  height: auto;
  top: 22%;
  left: 35%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi2-1 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi2-2 {
  width: 200px;
  height: auto;
  top: 13%;
  left: 38%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi2-2 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi2-3 {
  width: 200px;
  height: auto;
  top: 18%;
  left: 40%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi2-3 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi2-4 {
  width: 200px;
  height: auto;
  top: 13%;
  right: 11%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi2-4 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi2-5 {
  width: 200px;
  height: auto;
  top: 62%;
  right: 22%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi2-5 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi3-1 {
  width: 200px;
  height: auto;
  top: 41%;
  left: 31%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi3-1 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi3-2 {
  width: 200px;
  height: auto;
  top: 30%;
  left: 42%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi3-2 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-1-1 {
  width: 200px;
  height: auto;
  top: 33%;
  left: 31%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-1-1 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-1-2 {
  width: 200px;
  height: auto;
  top: 62%;
  left: 23%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-1-2 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-1-3 {
  width: 200px;
  height: auto;
  top: 45%;
  left: 48%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-1-3 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-1-4 {
  width: 200px;
  height: auto;
  top: 33%;
  left: 31%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-1-4 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-1-5 {
  width: 200px;
  height: auto;
  top: 32%;
  left: 63%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-1-5 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-1-6 {
  width: 200px;
  height: auto;
  top: 18%;
  left: 64%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-1-6 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-2-1 {
  width: 200px;
  height: auto;
  top: 54%;
  left: 36%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-2-1 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-2-2 {
  width: 200px;
  height: auto;
  top: 39%;
  left: 20%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-2-2 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-2-3 {
  width: 200px;
  height: auto;
  top: 9%;
  left: 28%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-2-3 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-2-4 {
  width: 200px;
  height: auto;
  top: 16%;
  left: 42%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-2-4 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-2-5 {
  width: 200px;
  height: auto;
  top: 15%;
  left: 64%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-2-5 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-2-6 {
  width: 200px;
  height: auto;
  top: 38%;
  left: 61%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-2-6 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-2-7 {
  width: 200px;
  height: auto;
  top: 44%;
  left: 69%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-2-7 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-2-8 {
  width: 200px;
  height: auto;
  top: 59%;
  left: 53%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-2-8 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-3-1 {
  width: 200px;
  height: auto;
  top: 11%;
  left: 60%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-3-1 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-3-2 {
  width: 200px;
  height: auto;
  top: 28%;
  left: 60%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-3-2 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-3-3 {
  width: 200px;
  height: auto;
  top: 48%;
  left: 58%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-3-3 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.mmi1-3-4 {
  width: 200px;
  height: auto;
  top: 42%;
  left: 34%;
  display: none;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mmi1-3-4 {
    top: 280px;
    width: 270px;
    left: 200px;
  }
}

.b-open {
  transform: rotate(45deg);
}

.map-action {
  transform: scale(3) translate(200px, 0px);
  opacity: 0;
}

.map-open {
  transform: scale(1);
  opacity: 1;
}

.hide-lg {
  display: none;
}
@media (min-width: 0px) and (max-width: 680px) {
  .hide-lg {
    display: flex;
  }
}

@media (min-width: 0px) and (max-width: 680px) {
  .hide-s {
    display: none;
  }
}

/*Import font*/
@font-face {
  font-family: "Open Sans", sans-serif;
  src: url("/todo/assets/fonts/Open_Sans/OpenSans-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Open Sans", sans-serif;
  src: url("/todo/assets/fonts/Open_Sans/OpenSans-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Open Sans", sans-serif;
  src: url("/todo/assets/fonts/Open_Sans/OpenSans-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans", sans-serif;
  src: url("/todo/assets/fonts/Open_Sans/OpenSans-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Open Sans", sans-serif;
  src: url("/todo/assets/fonts/Open_Sans/OpenSans-Bold.ttf");
  font-weight: 700;
}
/* Import Font Icons */
@font-face {
  font-family: "fontello";
  src: url("/todo/assets/fonts/Icons/fontello.eot?55274503");
  src: url("/todo/assets/fonts/Icons/fontello.eot?55274503#iefix") format("embedded-opentype"), url("/todo/assets/fonts/Icons/fontello.woff?55274503") format("woff"), url("/todo/assets/fonts/Icons/fontello.ttf?55274503") format("truetype"), url("/todo/assets/fonts/Icons/fontello.svg?55274503#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* General */
html {
  font-size: 62.5%;
  line-height: normal;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  background-color: white;
}

.body-overflow {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

/* Font styles */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  color: #283d8e;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  font-style: normal;
  color: #283d8e;
  text-align: center;
}

h3 {
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  color: #283d8e;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  color: #283d8e;
}

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

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

p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-size: 1em;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  color: #4b5165;
  font-style: normal;
}

strong {
  font-weight: 700;
}

.p-dark {
  color: #e3e8ea;
}

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

/* Navbar */
.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: white;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
  transition: 0.5s;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .row-navbar {
  position: relative;
  width: 92%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 0px) and (max-width: 680px) {
  .navbar .row-navbar {
    justify-content: center;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .navbar .row-navbar {
    justify-content: center;
  }
}
.navbar .row-navbar .menu-items {
  position: relative;
  width: auto;
  min-width: 100px;
  height: auto;
  min-height: 20px;
  display: flex;
  flex: row;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 680px) {
  .navbar .row-navbar .menu-items {
    display: none;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .navbar .row-navbar .menu-items {
    display: none;
  }
}
.navbar .row-navbar .menu-items a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 10px;
  transition: 0.3s;
  color: #5982eb;
}
.navbar .row-navbar .menu-items a:hover {
  color: #202d71;
}
.navbar .row-navbar .menu-items a:nth-last-child(1) {
  margin-right: 0;
}
.navbar .row-navbar .menu-items .a-active {
  color: lightslategrey !important;
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}

.btn-navbar {
  background-color: white;
  border: 2px solid #5982eb;
  padding: 12px;
  padding-top: 6px;
  padding-bottom: 6px;
  color: #5982eb;
  border-radius: 20px;
  margin-right: 0;
}
.btn-navbar:hover {
  border: 2px solid dodgerblue;
  color: dodgerblue;
}

.navScroll {
  height: 60px;
}

#triggerNav {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 400px;
  z-index: 3;
}

.logo-navbar {
  position: relative;
  width: 80px;
  height: 45px;
  background-image: url("/todo/assets/img/logo_navbar.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
  line-height: 0;
  text-align: none;
}

#bubbles {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}
#bubbles:hover > .st0 {
  animation-play-state: paused;
}
#bubbles:hover > .st1 {
  animation-play-state: paused;
}
#bubbles:hover > .st2 {
  animation-play-state: paused;
}
#bubbles:hover > .st3 {
  animation-play-state: paused;
}

.st0 {
  fill: #F9AF42;
  animation: scaleB 4s infinite ease-in-out;
  animation-play-state: running;
}

.st1 {
  fill: #8EC043;
  animation: scaleB 4s infinite ease-in-out;
  animation-delay: 0.5s;
  animation-play-state: running;
}

.st2 {
  fill: #E61B29;
  animation: scaleB 4s infinite ease-in-out;
  animation-delay: 1s;
  animation-play-state: running;
}

.st3 {
  fill: #135991;
  animation: scaleB 4s infinite ease-in-out;
  animation-delay: 2s;
  animation-play-state: running;
}

@keyframes yellowB {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes greenB {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scaleB {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}
.header-oneTime {
  position: fixed;
  transform: translateY(-500px);
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: #5982eb;
  z-index: 5;
  justify-content: center;
}
.header-oneTime .row-hot {
  position: relative;
  width: 96%;
  max-width: 1260px;
  height: 400px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-oneTime h2 {
  position: relative;
  width: 100%;
  height: 60px;
  color: white;
  font-size: 60px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
}
@media (min-width: 0px) and (max-width: 680px) {
  .header-oneTime h2 {
    font-size: 40px;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .header-oneTime h2 {
    font-size: 50px;
  }
}

.logo-todo-hot {
  position: relative;
  width: 120px;
  height: 155px;
  background-image: url("/todo/assets/img/todo_header.png");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.typed-cursor {
  display: none;
}

.showHeader {
  display: flex;
  animation-name: down;
  animation-duration: 0.7s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes down {
  0% {
    transform: translateY(-500px);
  }
  100% {
    transform: translateY(0px);
  }
}
.hideHeader {
  animation-name: up;
  animation-duration: 0.7s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes up {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-500px);
  }
}
.noScroll {
  overflow-y: hidden;
}

.row-spaceOneTime {
  position: relative;
  width: 100%;
  height: 150px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-spaceOneTime {
    height: 60px;
  }
}

.hideRow {
  animation-name: hiderow;
  animation-duration: 0.7s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes hiderow {
  0% {
    height: 150px;
  }
  100% {
    height: 100px;
  }
}
.bg-header {
  position: absolute;
  width: 100%;
  height: 600px;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #41D8DD 0%, #5583EE 100%);
  z-index: 0;
}
.bg-header .svg-curve {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -2px;
  left: 0;
  z-index: 1;
}
.bg-header .svg-curve2 {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -2px;
  left: 0;
  z-index: 1;
  opacity: 0.2;
}
.bg-header .svg-blob1 {
  position: absolute;
  width: 90%;
  height: auto;
  left: 0;
  top: 60px;
  opacity: 0.1;
  z-index: 0;
}

.row-header-img {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 100px;
}
.row-header-img img {
  position: relative;
  width: 80%;
  max-width: 320px;
  height: auto;
  z-index: 2;
}

.area-animated {
  position: absolute;
  top: 0;
  width: 100%;
  height: 600px;
  z-index: 0;
}
.area-animated .circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(60, 70, 100, 0.1);
  animation: animate 25s linear infinite;
  bottom: -150px;
  border-radius: 50%;
  border-radius: 16px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}
.row {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}
.row .header-text {
  position: relative;
  width: 98%;
  max-width: 800px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row .header-text {
    width: 88%;
  }
}
.row .header-text h3 {
  font-size: 3.8rem;
  text-align: center;
}
.row .header-text h4 {
  color: #566369;
  text-align: center;
  display: flex;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row .header-text h4 {
    font-size: 19px;
  }
}
.row .header-text a {
  position: relative;
  width: auto;
  height: auto;
  margin-top: 10px;
}
.row .header-text .show-sm {
  display: none;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row .header-text .show-sm {
    display: flex;
  }
}
@media (min-width: 0px) and (max-width: 680px) {
  .row .header-text .show-l {
    display: none;
  }
}
.row .header {
  position: relative;
  width: 92%;
  max-width: 1300px;
  height: auto;
  min-height: 800px;
  z-index: 1;
  background-image: url("/todo/assets/img/a2.png");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row .header {
    min-height: 360px;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .row .header {
    min-height: 500px;
  }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .row .header {
    min-height: 600px;
  }
}
.row .container {
  position: relative;
  width: 92%;
  max-width: 1500px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}
.row .container .col-image-divider {
  position: relative;
  width: 48%;
  height: auto;
}
.row .container .col-image-divider:nth-child(2) img {
  background: linear-gradient(to right, #41D8DD 0%, #5583EE 100%);
}
.row .container .col-image-divider img {
  position: relative;
  width: 100%;
  height: auto;
  background-color: white;
  border-radius: 4px;
  background: linear-gradient(to right, #00564f 0%, #034641 100%);
}

.header-home {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #242345;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  margin-top: 80px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .header-home {
    height: 350px;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .header-home {
    height: 500px;
  }
}
.header-home .col-hh-1 {
  position: relative;
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (min-width: 0px) and (max-width: 680px) {
  .header-home .col-hh-1 {
    width: calc(100% - 164px);
    background-color: #242345;
  }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .header-home .col-hh-1 {
    align-items: flex-start;
  }
}
.header-home .col-hh-1 h2 {
  position: relative;
  width: 84%;
  height: auto;
  color: white;
  font-weight: 500;
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
  font-size: 52px;
  z-index: 3;
}
@media (min-width: 0px) and (max-width: 680px) {
  .header-home .col-hh-1 h2 {
    position: absolute;
    font-size: 34px;
    left: 10%;
    top: 33%;
    margin-top: 30px;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .header-home .col-hh-1 h2 {
    font-size: 45px;
    margin-top: 50px;
  }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .header-home .col-hh-1 h2 {
    margin-left: 10%;
  }
}
.header-home .col-hh-1 h4 {
  position: relative;
  width: 84%;
  height: auto;
  margin-top: 30px;
  color: white;
}
@media (min-width: 0px) and (max-width: 680px) {
  .header-home .col-hh-1 h4 {
    display: none;
  }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .header-home .col-hh-1 h4 {
    margin-left: 10%;
  }
}
.header-home .col-hh-2 {
  position: relative;
  width: 395px;
  height: 100%;
  background-color: #8dc9e9;
  background: white;
}
@media (min-width: 0px) and (max-width: 680px) {
  .header-home .col-hh-2 {
    width: 285px;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .header-home .col-hh-2 {
    width: 328px;
  }
}
.header-home .col-hh-2 .bg-home {
  position: absolute;
  width: 490px;
  height: 600px;
  right: 0;
  top: 0;
  background-image: url("/todo/assets/img/bg_home3.png");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (min-width: 0px) and (max-width: 680px) {
  .header-home .col-hh-2 .bg-home {
    width: 285px;
    height: 350px;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .header-home .col-hh-2 .bg-home {
    width: 408px;
    height: 500px;
  }
}

.graphic1 {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 4%;
  bottom: 45%;
  background-image: url("/todo/assets/img/g1.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (min-width: 0px) and (max-width: 680px) {
  .graphic1 {
    width: 30px;
    height: 30px;
    left: 5%;
    bottom: 62%;
  }
}

.graphic2 {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 12%;
  top: 33%;
  background-image: url("/todo/assets/img/g2.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 680px) {
  .graphic2 {
    width: 30px;
    height: 30px;
    left: 70%;
    top: 66%;
  }
}

.row-title {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 60px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* Block text image */
.block-text-image {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row-block-text-image {
  position: relative;
  width: 94%;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-block-text-image {
    width: 90%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}

.block-ti-image {
  position: relative;
  width: 60%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 680px) {
  .block-ti-image {
    width: 100%;
  }
}
.block-ti-image img {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 6px;
}
.block-ti-image video {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.block-ti-text {
  position: relative;
  width: 40%;
  height: auto;
}
@media (min-width: 0px) and (max-width: 680px) {
  .block-ti-text {
    width: 100%;
    margin-top: 20px;
  }
}
.block-ti-text p {
  font-size: 18px;
  padding-right: 40px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .block-ti-text p {
    padding-right: 0;
  }
}

.row-slider-image {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  z-index: 1;
  padding-top: 0px;
  padding-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-slider-image {
    padding-bottom: 0px;
  }
}

.text-container {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: left;
  overflow: hidden;
  z-index: 2;
}

.text-overflow {
  width: 1000vw;
  height: 100%;
  font-size: 0px;
  color: #2b55d8;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.text-slider {
  display: inline-block;
  height: 300px;
  line-height: 1em;
  animation: marquee 18s linear infinite running;
  transform: translate(0%);
  padding: 0;
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18rem;
  color: white;
  font-weight: 600;
  display: inline-block;
}
@media (min-width: 0px) and (max-width: 680px) {
  .text-slider {
    height: 70px;
    font-size: 9rem;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.scroll-fade-in-up:nth-child(3n+2) {
  transition-delay: 0.1s;
}

.scroll-fade-in-up:nth-child(3n) {
  transition-delay: 0.2s;
}

.scroll-fade-in-up.visible {
  opacity: 1;
  transform: none;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.row-projectsOn {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #161616;
  margin-top: 80px;
  z-index: 1;
}

.header-2 {
  position: relative;
  width: 92%;
  max-width: 1500px;
  height: auto;
  min-height: 800px;
  background-color: white;
  z-index: 1;
  background-image: url("/todo/assets/img/a2.jpg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.text-oColor {
  color: #121212;
}

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

.element-project {
  position: relative;
  width: 31%;
  height: auto;
  min-height: 400px;
  background-color: white;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.element-project .ep-image {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.element-project .ep-image img {
  position: relative;
  width: 100%;
  height: auto;
}
.element-project .ep-text {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.element-project .ep-text h4 {
  font-size: 1.4rem;
  line-height: 1.25em;
  text-transform: uppercase;
  margin-top: 3rem;
  text-align: center;
  color: #121212;
}
.element-project .ep-text p {
  font-size: 2.1rem;
  line-height: 1.25em;
  text-align: center;
  color: #121212;
}

.mask-colors {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  transition: 0.5s;
  z-index: 0;
}

.row-colors {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100vh;
  bottom: 0;
  left: 0;
  animation: colores 10s infinite ease-in-out;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
.row-colors h2 {
  position: relative;
  width: auto;
  height: auto;
  font-size: 70px;
  color: white;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes hue-rotation {
  0% {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    -o-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }
  100% {
    -webkit-filter: hue-rotate(360deg);
    -moz-filter: hue-rotate(360deg);
    -ms-filter: hue-rotate(360deg);
    -o-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}
.mask-scroll {
  height: 100vh;
}

.show-row-colors {
  display: flex;
}

.bg-white {
  background-color: white;
}

.z-2 {
  z-index: 2;
}

.row-text-cotact {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

#content {
  height: 2000px;
}

.row-plus {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 60px;
}
.row-plus .col-plus {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: flex;
  flex-direction: column;
}
.row-plus .col-plus .row-cards {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.project-item {
  position: relative;
  width: 220px;
  height: 250px;
  line-height: 0;
  cursor: pointer;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #242345;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
}
@media (min-width: 0px) and (max-width: 680px) {
  .project-item {
    width: 200px;
    height: 270px;
    margin-top: 40px;
    cursor: default;
    pointer-events: none;
    margin-left: 12px;
    margin-right: 12px;
    background-size: 110%;
  }
}
@media (min-width: 680px) and (max-width: 780px) {
  .project-item:nth-child(3) {
    margin-top: 40px;
  }
}
.project-item:nth-child(4) {
  margin-top: 40px;
}
.project-item:nth-child(5) {
  margin-top: 40px;
}
.project-item:nth-child(6) {
  margin-top: 40px;
}
.project-item .project-item-content-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .project-item .project-item-content-1 {
    position: relative;
    height: auto;
  }
}
.project-item .project-item-content-1 .img-plus {
  position: relative;
  width: 90px;
  height: 90px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (min-width: 0px) and (max-width: 680px) {
  .project-item .project-item-content-1 .img-plus {
    width: 60px;
    height: 60px;
  }
}
.project-item .project-item-content-1 .title {
  position: relative;
  width: 90%;
  height: auto;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: white;
  font-weight: 500;
  margin-top: 20px;
  font-family: "Josefin Sans", sans-serif;
}
@media (min-width: 0px) and (max-width: 680px) {
  .project-item .project-item-content-1 .title {
    margin-top: 8px;
  }
}
.project-item .project-item-content-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 35, 69, 0.8);
  opacity: 0;
  z-index: 2;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .project-item .project-item-content-2 {
    position: relative;
    height: auto;
    opacity: 1;
    width: 92%;
    background-color: transparent;
  }
}
.project-item .project-item-content-2 h4 {
  position: relative;
  width: 90%;
  height: auto;
  color: white;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 10px;
  font-family: "Josefin Sans", sans-serif;
}
@media (min-width: 0px) and (max-width: 680px) {
  .project-item .project-item-content-2 h4 {
    display: none;
  }
}
.project-item .project-item-content-2 .p-text {
  position: relative;
  width: 90%;
  color: white;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 680px) {
  .project-item .project-item-content-2 .p-text {
    font-size: 12px;
    line-height: 17px;
    margin-top: 10px;
  }
}
.project-item:hover > .project-item-content-2 {
  opacity: 1;
}
.project-item:hover > .project-item-content-1 {
  opacity: 0;
}

.img-plus-1 {
  background-image: url("/todo/assets/img/b1.svg");
}

.img-plus-2 {
  background-image: url("/todo/assets/img/b2.svg");
}

.img-plus-3 {
  background-image: url("/todo/assets/img/b3.svg");
}

.img-plus-4 {
  background-image: url("/todo/assets/img/b4.svg");
}

.img-plus-5 {
  background-image: url("/todo/assets/img/b5.svg");
}

.img-plus-6 {
  background-image: url("/todo/assets/img/b6.svg");
}

.pi-bg-1 {
  background-image: url("/todo/assets/img/p1.png");
}
@media (min-width: 0px) and (max-width: 680px) {
  .pi-bg-1 {
    background-image: url("/todo/assets/img/p1s.png");
  }
}

.pi-bg-2 {
  background-image: url("/todo/assets/img/p4.png");
}

.pi-bg-3 {
  background-image: url("/todo/assets/img/p6.png");
}

.pi-bg-4 {
  background-image: url("/todo/assets/img/t1.png");
}

.pi-bg-5 {
  background-image: url("/todo/assets/img/p2.png");
}

.pi-bg-6 {
  background-image: url("/todo/assets/img/p3.png");
}

.row-godemo {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  min-height: 300px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-godemo .form-7 {
    display: none;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .row-godemo .form-7 {
    display: none;
  }
}
.row-godemo .col-godemo {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: 1px solid silver;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-godemo .col-godemo {
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0;
  }
}
.row-godemo .col-godemo img {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-godemo .col-godemo img {
    width: 80%;
    margin-top: 20px;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .row-godemo .col-godemo img {
    width: 80%;
    max-width: 500px;
  }
}
.row-godemo .col-godemo .text-demo {
  position: absolute;
  width: 400px;
  height: 200px;
  left: 8%;
  top: 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-godemo .col-godemo .text-demo {
    position: relative;
    width: 80%;
    height: auto;
    left: 0%;
    top: 0%;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .row-godemo .col-godemo .text-demo {
    width: 300px;
    left: 2%;
  }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .row-godemo .col-godemo .text-demo {
    width: 300px;
    left: 2%;
  }
}
.row-godemo .col-godemo .text-demo h2 {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 32px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-godemo .col-godemo .text-demo h2 {
    font-size: 26px;
  }
}

.btn-go {
  position: relative;
  width: 140px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  background-color: #5982eb;
  border-radius: 20px;
  transition: 0.4s;
  margin-top: 30px;
}
.btn-go:hover {
  background-color: #03a9f4;
}
@media (min-width: 0px) and (max-width: 680px) {
  .btn-go {
    margin-top: 18px;
  }
}

section.RowscrollMagic {
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  overflow: hidden;
}

#trigger1 {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
}

#trigger2 {
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0%;
}

.plane {
  position: absolute;
  top: 200px;
  left: 40%;
  width: 280px;
  height: auto;
  z-index: 2;
  transition: 1.2s;
}

.movePlane {
  transform: translate(140%, -60%);
}

/* Transition page */
.inner-gradient {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #444d69;
  animation: loading 0.7s ease-in-out forwards;
}

@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.loadingDiv {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(66, 77, 105, 0.2);
  z-index: 8;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diamond {
  width: 200px;
  height: 200px;
  background: white;
  position: absolute;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: diamond 1.2s;
  animation: diamond 1.2s;
  -webkit-transform: scale(0) rotate(45deg);
  transform: scale(0);
  transform: scale(0) rotate(45deg);
}

@keyframes diamond {
  0% {
    -webkit-transform: rotate(45deg) scale(0);
    transform: rotate(45deg) scale(0);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(10);
    transform: rotate(45deg) scale(10);
  }
  100% {
    -webkit-transform: rotate(45deg) scale(0);
    transform: rotate(45deg) scale(0);
  }
}
.row-page {
  position: relative;
  width: 100%;
  height: auto;
}
.row-page .col-page {
  position: relative;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.row-page .col-text {
  display: flex;
  justify-content: center;
}
.row-page .col-text p {
  position: relative;
  width: 80%;
  height: auto;
  font-size: 22px;
  line-height: 36px;
  color: #545465;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-page .col-text p {
    font-size: 18px;
    line-height: 28px;
  }
}

.mt-start {
  margin-top: 80px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .mt-start {
    margin-top: 60px;
  }
}

.space-end {
  position: relative;
  width: 100%;
  height: 100px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .space-end {
    height: 80px;
  }
}

.row-grid-image {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.row-grid-image .col-grid-image {
  position: relative;
  width: 92%;
  max-width: 1100px;
  height: auto;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-grid-image .col-grid-image {
    flex-direction: column;
  }
}
.row-grid-image .col-grid-image .col-gi1 {
  position: relative;
  width: 66%;
  height: auto;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-grid-image .col-grid-image .col-gi1 {
    width: 100%;
  }
}
.row-grid-image .col-grid-image .col-gi1 img {
  position: relative;
  width: 100%;
  height: auto;
}
.row-grid-image .col-grid-image .col-gi2 {
  position: relative;
  width: 32%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-grid-image .col-grid-image .col-gi2 {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
  }
}
.row-grid-image .col-grid-image .col-gi2 img {
  position: relative;
  width: 100%;
  height: auto;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-grid-image .col-grid-image .col-gi2 img {
    width: 48%;
  }
}
.row-grid-image .col-grid-image .col-gi2 img:nth-child(2) {
  margin-top: 20px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-grid-image .col-grid-image .col-gi2 img:nth-child(2) {
    margin-top: 0;
  }
}
.row-grid-image .col-grid-image .col-gi3 {
  position: relative;
  width: 49%;
  height: auto;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-grid-image .col-grid-image .col-gi3 {
    width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-grid-image .col-grid-image .col-gi3:nth-child(2) {
    margin-top: 20px;
  }
}
.row-grid-image .col-grid-image .col-gi3 img {
  position: relative;
  width: 100%;
  height: auto;
}

.row-footer {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 50px;
  background-color: white;
  z-index: 2;
}
.row-footer .col-footer {
  position: relative;
  width: 92%;
  max-width: 1300px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 140px;
  box-shadow: 6px 30px 30px rgba(23, 43, 77, 0.1);
  background-color: white;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 20px;
  }
}
.footer .support {
  position: relative;
  width: 30%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 0px) and (max-width: 680px) {
  .footer .support {
    width: 92%;
  }
}
.footer .support h4 {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  color: #242345;
  margin-bottom: 6px;
}
.footer .support .row-link {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.footer .support .row-link span {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: gainsboro;
  border-radius: 50%;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer .support .row-link .i-support {
  background-image: url("/todo/assets/img/support.svg");
}
.footer .support .row-link .i-whatsapp {
  background-image: url("/todo/assets/img/whatsapp.svg");
}
.footer .support .row-link a {
  text-decoration: none;
  color: grey;
  font-size: 14px;
}
.footer .support .row-link .no-link {
  pointer-events: none !important;
}
.footer .support .row-link:nth-child(4) a {
  color: #5982eb;
  font-weight: 600;
}
.footer .support .s-text {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 13px;
  color: lightslategrey;
  display: flex;
  align-items: center;
}
.footer .support .s-text .s-text-icon {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: gainsboro;
  border-radius: 50%;
  margin-right: 10px;
  background-image: url("/todo/assets/img/clock.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer .support .s-text p {
  position: relative;
  width: auto;
  height: auto;
  width: calc(100% - 30px);
}
.footer .f-links {
  position: relative;
  width: 30%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 0px) and (max-width: 680px) {
  .footer .f-links {
    width: 92%;
  }
}
.footer .f-links h4 {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  color: #242345;
  margin-bottom: 6px;
}
.footer .f-links .row-link {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.footer .f-links .row-link span {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: gainsboro;
  border-radius: 50%;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer .f-links .row-link .i-about {
  background-image: url("/todo/assets/img/about.svg");
}
.footer .f-links .row-link .i-educare {
  background-image: url("/todo/assets/img/educare.svg");
  background-color: #0088c4;
}
.footer .f-links .row-link .i-portal {
  background-image: url("/todo/assets/img/logo_portal.png");
  background-color: #333333;
  background-size: 15px;
}
.footer .f-links .row-link .i-ecommerce {
  background-image: url("/todo/assets/img/cart.svg");
}
.footer .f-links .row-link a {
  text-decoration: none;
  color: grey;
  font-size: 14px;
}
.footer .social {
  position: relative;
  width: 25%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 0px) and (max-width: 680px) {
  .footer .social {
    width: 92%;
    margin-top: 35px;
  }
}
.footer .social h4 {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  color: #242345;
}
.footer .social .social-logos {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer .social .social-logos .s-logo {
  position: relative;
  width: 25px;
  height: 25px;
  margin-left: 2px;
  margin-right: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer .social .social-logos .i-facebook {
  background-image: url("/todo/assets/img/facebook.svg");
}
.footer .social .social-logos .i-linkedin {
  background-image: url("/todo/assets/img/linkedin.svg");
}
.footer .social .social-logos .i-youtube {
  background-image: url("/todo/assets/img/youtube.svg");
}

#textFooter {
  font-size: 40px;
  font-family: "Josefin Sans", sans-serif;
}

#back-to-top {
  position: absolute;
  width: auto;
  height: auto;
  top: -52px;
  right: 12px;
  padding: 4px;
  padding-right: 12px;
  padding-left: 12px;
  border-radius: 4px;
  transition: 0.3s ease-out;
  opacity: 0;
  z-index: 3;
  color: white;
  background-color: #5982eb;
  box-shadow: 1px 7px 18px rgba(23, 43, 77, 0.3);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}
#back-to-top:hover {
  background-color: #242345;
}

#back-to-top.show {
  opacity: 1;
}

.graphic_footer {
  position: absolute;
  width: 140px;
  height: 70px;
  bottom: 0;
  right: 0px;
  z-index: 1;
  background-image: url("/todo/assets/img/footer_graphic.png");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (min-width: 0px) and (max-width: 680px) {
  .graphic_footer {
    width: 120px;
    height: 60px;
  }
}

.rights {
  position: absolute;
  width: 100%;
  height: 16px;
  font-size: 12px;
  bottom: 17px;
  text-align: center;
  color: lightslategrey;
  cursor: default;
}
.rights a {
  text-decoration: none;
  color: #242345;
  transition: 0.2s;
}
.rights a:hover {
  color: #5982eb;
}

.header-about {
  padding-bottom: 20px;
}

.row-video {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 0px;
  padding-bottom: 40px;
}
.row-video .video {
  width: 80%;
  max-width: 880px;
  height: 500px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-video .video {
    height: 360px;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .row-video .video {
    height: 420px;
  }
}
.row-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.row-text {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.row-text .col-text {
  position: relative;
  width: 96%;
  max-width: 800px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-text .col-text {
    width: 86%;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .row-text .col-text {
    width: 82%;
  }
}
.row-text .col-text .h4-about {
  text-align: center;
  font-size: 22px;
}

.row-t {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.row-t .color {
  position: relative;
  width: 100px;
  height: 100px;
  animation: colores 10s infinite ease-in-out;
}

@keyframes colores {
  0% {
    background-color: #242345;
  }
  20% {
    background-color: #5982eb;
  }
  40% {
    background-color: #efac5b;
  }
  60% {
    background-color: #fb4a50;
  }
  80% {
    background-color: #fb4a50;
  }
  100% {
    background-color: #242345;
  }
}
.burguer-navbar {
  position: absolute;
  left: 0;
  top: 5px;
  width: 36px;
  height: 36px;
  display: none;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width: 0px) and (max-width: 680px) {
  .burguer-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .burguer-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
  }
}
.burguer-navbar .icon-burguer {
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background-image: url("/todo/assets/img/menu.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.background-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(36, 35, 69, 0.7);
  z-index: 5;
  display: none;
}

.background-menu-show {
  display: flex;
}

@media (min-width: 0px) and (max-width: 680px) {
  .small-menu {
    position: fixed;
    width: 70%;
    height: 100vh;
    top: 0;
    left: -70%;
    z-index: 6;
    background-color: white;
    box-shadow: 0 20px 30px rgba(16, 18, 51, 0.08), 0 6px 18px rgba(16, 18, 51, 0.1);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    background-image: url("/todo/assets/img/bg_menu.png");
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .small-menu {
    position: fixed;
    width: 60%;
    height: 100vh;
    top: 0;
    left: -60%;
    z-index: 6;
    background-color: white;
    box-shadow: 0 20px 30px rgba(16, 18, 51, 0.08), 0 6px 18px rgba(16, 18, 51, 0.1);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    background-image: url("/todo/assets/img/bg_menu.png");
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

.small-menu-show {
  animation: menuin 0.2s 1 ease-in;
  animation-fill-mode: forwards;
}

@keyframes menuin {
  0% {
    left: -70%;
  }
  100% {
    left: 0%;
  }
}
.small-menu-hide {
  animation: menuout 0.2s 1 ease-in;
  animation-fill-mode: forwards;
}

@keyframes menuout {
  0% {
    left: 0%;
  }
  100% {
    left: -70%;
  }
}
@media (min-width: 0px) and (max-width: 680px) {
  .small-menu-header {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #f2f1f7;
    border-bottom: 1px solid #e7e8ed;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
  }
  .small-menu-header .smh-logo {
    position: relative;
    width: 50px;
    height: 65px;
    background-image: url("/todo/assets/img/imagotipo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .small-menu-header {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #f2f1f7;
    border-bottom: 1px solid #e7e8ed;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
  }
  .small-menu-header .smh-logo {
    position: relative;
    width: 50px;
    height: 65px;
    background-image: url("/todo/assets/img/imagotipo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
}

@media (min-width: 0px) and (max-width: 680px) {
  .small-menu-content {
    position: relative;
    width: 100%;
    height: calc(100% - 100px);
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .small-menu-content {
    position: relative;
    width: 100%;
    height: calc(100% - 100px);
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}

ul.small-menu-ul {
  display: none;
}
@media (min-width: 0px) and (max-width: 680px) {
  ul.small-menu-ul {
    position: relative;
    width: 76%;
    height: auto;
    min-height: 100px;
    list-style: none;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    padding-top: 20px;
  }
  ul.small-menu-ul li {
    position: relative;
    width: 100%;
    height: 40px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  ul.small-menu-ul li a {
    position: relative;
    width: 100%;
    height: 40px;
    text-decoration: none;
    color: #5982eb;
  }
  ul.small-menu-ul li .btn-navbar-s {
    background-color: white;
    border: 2px solid #5982eb;
    position: relative;
    width: 180px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5982eb;
    border-radius: 20px;
  }
  ul.small-menu-ul li .btn-navbar-s:hover {
    border: 2px solid dodgerblue;
    color: dodgerblue;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  ul.small-menu-ul {
    position: relative;
    width: 76%;
    height: auto;
    min-height: 100px;
    list-style: none;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    padding-top: 20px;
  }
  ul.small-menu-ul li {
    position: relative;
    width: 100%;
    height: 40px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  ul.small-menu-ul li a {
    position: relative;
    width: 100%;
    height: 40px;
    text-decoration: none;
    color: #5982eb;
  }
  ul.small-menu-ul li .btn-navbar-s {
    background-color: white;
    border: 2px solid #5982eb;
    position: relative;
    width: 180px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5982eb;
    border-radius: 20px;
  }
  ul.small-menu-ul li .btn-navbar-s:hover {
    border: 2px solid dodgerblue;
    color: dodgerblue;
  }
}

.header-about {
  position: relative;
  width: 100%;
  height: auto;
}

.graphich1 {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 4%;
  bottom: 29%;
  background-image: url("/todo/assets/img/g1.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (min-width: 0px) and (max-width: 680px) {
  .graphich1 {
    width: 30px;
    height: 30px;
    left: -1%;
    bottom: 62%;
  }
}

.graphich2 {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 6%;
  top: 33%;
  background-image: url("/todo/assets/img/g2.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 680px) {
  .graphich2 {
    width: 30px;
    height: 30px;
    left: 70%;
    top: 66%;
  }
}

.form-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 0%;
  background-image: url("/todo/assets/img/form1.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.3;
}

.form-5 {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 0%;
  margin-top: 56px;
  background-image: url("/todo/assets/img/form4.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.5;
}

.form-6 {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 0%;
  margin-top: 56px;
  background-image: url("/todo/assets/img/form1.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.5;
}

.form-7 {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 0%;
  background-image: url("/todo/assets/img/form1.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.3;
  margin-top: 230px;
}

.form-header {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 60px;
  right: 0%;
  background-image: url("/todo/assets/img/form3.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.6;
}

.row-text-img {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-text-img {
    padding-top: 0px;
  }
}
.row-text-img .col-text-img {
  position: relative;
  width: 96%;
  max-width: 760px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-text-img .col-text-img {
    flex-direction: column;
  }
}
@media (min-width: 680px) and (max-width: 900px) {
  .row-text-img .col-text-img {
    width: 90%;
  }
}
.row-text-img .col-text-img .r-text {
  position: relative;
  width: calc( 100% - 400px);
  height: auto;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-text-img .col-text-img .r-text {
    width: 90%;
    margin-top: 20px;
  }
}
.row-text-img .col-text-img .r-text .h4-about {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 22px;
}
.row-text-img .col-text-img .r-text h5 {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 17px;
  margin-top: 8px;
  color: lightslategrey;
}
.row-text-img .col-text-img img {
  position: relative;
  width: 360px;
  height: 353px;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-text-img .col-text-img img {
    width: 320px;
    height: 314px;
  }
}

.text-blue {
  color: #283d8e !important;
}

.pic1 {
  border-radius: 60px 0px 0px 0px;
}

.pic2 {
  background-color: #242345;
  border-radius: 0px 0px 0px 0px;
  background-color: #5982eb;
  border-radius: 60px 0px 60px 0px;
}

.row-img {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
}
.row-img .vegas-img {
  position: relative;
  width: 500px;
  height: auto;
}
@media (min-width: 0px) and (max-width: 680px) {
  .row-img .vegas-img {
    width: 400px;
  }
}

/*# sourceMappingURL=style.css.map */
