* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

/* SCROLLING SUAVE */
html {
  scroll-behavior: smooth;
}

/*SCROOLL PERSONALIZADO */
body {
  scroll-behavior: unset;
  background: rgb(27, 27, 27);
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: rgb(165, 165, 165);
  border-radius: 20px;
  height: 80px;
}

body::-webkit-scrollbar-thumb:hover {
  background: rgb(50, 50, 50);
  height: 150px;
}

.container__main {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  background: rgb(197, 197, 197);
}
.container__main .grid__container {
  width: 100%;
  padding: 0px 0px;
  background: rgb(55, 0, 0);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "grid__header__superior   grid__header__superior    grid__header__superior" "grid__header__menu       grid__header__menu        grid__header__menu" "grid__banner             grid__banner              grid__banner" "grid__seccion__uno       grid__seccion__uno        grid__seccion__uno" "grid__seccion__dos       grid__seccion__dos        grid__seccion__dos" "grid__footer             grid__footer              grid__footer";
}
.container__main .grid__container .grid__header__superior {
  background: brown;
  grid-area: grid__header__superior;
  display: block;
}
.container__main .grid__container .grid__header__menu {
  background: brown;
  height: 85px;
  grid-area: grid__header__menu;
}
.container__main .grid__container .grid__banner {
  background: brown;
  grid-area: grid__banner;
}
.container__main .grid__container .grid__seccion__uno {
  background: brown;
  grid-area: grid__seccion__uno;
}
.container__main .grid__container .grid__seccion__dos {
  background: brown;
  grid-area: grid__seccion__dos;
}
.container__main .grid__container .grid__footer {
  background: brown;
  grid-area: grid__footer;
}

/****************************************
******************************
*******************************************/
@media (min-width: 320px) and (max-width: 769px) {
  .container__main {
    width: 100%;
    max-width: initial;
    margin: initial;
  }
  .container__main .grid__container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "grid__header__menu       grid__header__menu        grid__header__menu" "grid__banner             grid__banner              grid__banner" "grid__seccion__uno       grid__seccion__uno        grid__seccion__uno" "grid__seccion__dos       grid__seccion__dos        grid__seccion__dos" "grid__footer             grid__footer              grid__footer" "grid__header__superior   grid__header__superior    grid__header__superior";
  }
  .container__main .grid__container .grid__header__menu {
    height: initial;
    height: 58px;
    padding: 5px 0px;
    grid-area: grid__header__menu;
  }
  .container__main .grid__container .grid__banner {
    grid-area: grid__banner;
  }
  .container__main .grid__container .grid__seccion__uno {
    grid-area: grid__seccion__uno;
  }
  .container__main .grid__container .grid__seccion__dos {
    grid-area: grid__seccion__dos;
  }
  .container__main .grid__container .grid__footer {
    grid-area: grid__footer;
  }
  .container__main .grid__container .grid__header__superior {
    grid-area: grid__header__superior;
  }
}
.contHeaderSuperior {
  width: 100%;
  padding: 5px 0px;
  background: #081f31;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.contHeaderSuperior .contHeaderSuperior__blocks {
  width: 50%;
  padding: 5px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contHeaderSuperior .contHeaderSuperior__blocks .blocks__box {
  width: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .icon__box {
  padding: 5px 8px;
  color: white;
}
.contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .date__box {
  font-weight: 300;
  color: white;
  font-size: 14px;
}
.contHeaderSuperior .contHeaderSuperior__networks {
  width: 160px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contHeaderSuperior .contHeaderSuperior__networks .icon__networks {
  padding: 8px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: white;
  transition: 0.2s all;
}
.contHeaderSuperior .contHeaderSuperior__networks .icon__networks:hover {
  background: #ffffff;
  color: #081f31;
  cursor: pointer;
  transform: translateY(2px);
}

/**********************************
****************************
********************************/
@media (min-width: 770px) and (max-width: 899px) {
  .contHeaderSuperior {
    width: 100%;
    padding: 5px 0px;
    background: #081f31;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks {
    width: 70%;
    padding: 5px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box {
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .icon__box {
    padding: 5px 8px;
    color: white;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .date__box {
    font-weight: 300;
    color: white;
    font-size: 14px;
  }
  .contHeaderSuperior .contHeaderSuperior__networks {
    width: 160px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__networks .icon__networks {
    padding: 8px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    transition: 0.2s all;
  }
  .contHeaderSuperior .contHeaderSuperior__networks .icon__networks:hover {
    background: #ffffff;
    color: #081f31;
    cursor: pointer;
    transform: translateY(2px);
  }
}
/**********************************
****************************
********************************/
@media (min-width: 641px) and (max-width: 769px) {
  .contHeaderSuperior {
    width: 100%;
    padding: 5px 0px;
    background: rgb(27, 27, 27);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: initial;
    top: initial;
    left: initial;
    z-index: initial;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks {
    width: 70%;
    padding: 5px 0px;
    background: rgb(27, 27, 27);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box {
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .icon__box {
    padding: 5px 8px;
    color: #ffffff;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .date__box {
    font-weight: 300;
    color: white;
    font-size: 13px;
  }
  .contHeaderSuperior .contHeaderSuperior__networks {
    width: 160px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__networks .icon__networks {
    padding: 8px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    transition: 0.2s all;
  }
  .contHeaderSuperior .contHeaderSuperior__networks .icon__networks:hover {
    background: #ffffff;
    color: #081f31;
    cursor: pointer;
    transform: translateY(2px);
  }
}
/**********************************
****************************
********************************/
@media (min-width: 481px) and (max-width: 640px) {
  .contHeaderSuperior {
    width: 100%;
    padding: 5px 0px;
    background: #081f31;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    position: initial;
    top: initial;
    left: initial;
    z-index: initial;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks {
    width: 95%;
    padding: 5px 0px;
    background: #081f31;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box {
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .icon__box {
    padding: 5px 8px;
    color: #ffffff;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .date__box {
    font-weight: 300;
    color: white;
    font-size: 13px;
  }
  .contHeaderSuperior .contHeaderSuperior__networks {
    margin-top: 5px;
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__networks .icon__networks {
    padding: 8px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    transition: 0.2s all;
  }
  .contHeaderSuperior .contHeaderSuperior__networks .icon__networks:hover {
    background: #ffffff;
    color: #081f31;
    cursor: pointer;
    transform: translateY(2px);
  }
}
/**********************************
****************************
********************************/
@media (min-width: 320px) and (max-width: 480px) {
  .contHeaderSuperior {
    width: 100%;
    padding: 5px 0px;
    background: #081f31;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    position: initial;
    top: initial;
    left: initial;
    z-index: initial;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks {
    width: 95%;
    padding: 5px 0px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box {
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .icon__box {
    padding: 5px 8px;
    color: #ffffff;
  }
  .contHeaderSuperior .contHeaderSuperior__blocks .blocks__box .date__box {
    font-weight: 300;
    color: white;
    font-size: 11px;
  }
  .contHeaderSuperior .contHeaderSuperior__networks {
    margin-top: 5px;
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contHeaderSuperior .contHeaderSuperior__networks .icon__networks {
    padding: 8px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    transition: 0.2s all;
  }
  .contHeaderSuperior .contHeaderSuperior__networks .icon__networks:hover {
    background: #ffffff;
    color: #081f31;
    cursor: pointer;
    transform: translateY(2px);
  }
}
.contHeaderMenu {
  width: 100%;
  padding: 5px 0px;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 45px;
  left: 0;
  z-index: 100;
  box-shadow: 10px 0px 5px rgb(24, 24, 24);
}
.contHeaderMenu .contHeaderMenu__logo {
  width: 240px;
  height: 70px;
  margin-left: 10px;
}
.contHeaderMenu .contHeaderMenu__menu {
  width: 490px;
  padding: 5px 0px;
  margin-right: 10px;
}
.contHeaderMenu .contHeaderMenu__menu .menu__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item {
  width: 140px;
  padding: 8px 0px;
  position: relative;
  text-align: center;
}
.contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .menu__link {
  text-decoration: none;
  color: rgb(27, 27, 27);
}
.contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .menu__link:hover {
  color: grey;
}
.contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .iconArrow {
  margin-left: 5px;
  color: rgb(27, 27, 27);
  font-size: 15px;
}
.contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .submenuList {
  width: 100%;
  list-style: none;
  position: absolute;
  top: 40px;
  margin-left: 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s all;
  background: #ffffff;
}
.contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .submenuList .submenu__item {
  width: 100%;
  padding: 8px 0px;
  background: #081f31;
  margin: 1px 0px;
  display: flex;
  justify-content: flex-start;
}
.contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .submenuList .submenu__item .submenu__link {
  text-decoration: none;
  color: rgb(243, 243, 243);
  margin-left: 10px;
}
.contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .submenuList .submenu__item:hover {
  background: rgba(9, 9, 9, 0.841);
}
.contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item:hover .submenuList {
  opacity: 1;
  visibility: visible;
  transform: translateX(30px);
  cursor: pointer;
}
.contHeaderMenu .contHeaderMenu__icons {
  display: none;
}

/**********************************
****************************
********************************/
@media (min-width: 320px) and (max-width: 769px) {
  .contHeaderMenu {
    width: 100%;
    padding: 5px 0px;
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 10px 0px 5px rgb(24, 24, 24);
  }
  .contHeaderMenu .contHeaderMenu__logo {
    width: 180px;
    height: 50px;
    margin-left: 10px;
  }
  .contHeaderMenu .contHeaderMenu__menu {
    width: 200px;
    padding: 5px 0px;
    margin-left: 0;
    position: absolute;
    background: #081f31;
    top: 69px;
    left: -100%;
    transition: 0.5s ease;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list {
    width: 100%;
    height: 100vh;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    list-style: none;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item {
    width: 100%;
    padding: 10px 0px;
    position: relative;
    text-align: start;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .menu__link {
    text-decoration: none;
    color: #ffffff;
    margin-left: 20px;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .menu__link:hover {
    color: grey;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .iconArrow {
    margin-left: 5px;
    color: #ffffff;
    font-size: 15px;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .submenuList {
    width: 150px;
    list-style: none;
    position: absolute;
    top: 40px;
    margin-left: 100px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s all;
    background: #081f31;
    z-index: 100;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .submenuList .submenu__item {
    width: 100%;
    padding: 8px 0px;
    background: rgba(8, 31, 49, 0.7803921569);
    background: #ffffff;
    margin: 1px 0px;
    display: flex;
    justify-content: flex-start;
    background: #ffffff;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .submenuList .submenu__item .submenu__link {
    text-decoration: none;
    color: rgb(27, 27, 27);
    margin-left: 10px;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .submenuList .submenu__item:hover {
    background: rgba(8, 31, 49, 0.7254901961);
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item .submenuList .submenu__item:hover .submenu__link {
    color: #ffffff;
  }
  .contHeaderMenu .contHeaderMenu__menu .menu__list .menu__item:hover .submenuList {
    opacity: 1;
    visibility: visible;
    transform: translateX(30px);
    cursor: pointer;
  }
  .contHeaderMenu .contHeaderMenu__menu__JS {
    left: 0;
  }
  .contHeaderMenu .contHeaderMenu__icons {
    padding: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 10px;
  }
  .contHeaderMenu .contHeaderMenu__icons .iconMenu {
    cursor: pointer;
    font-size: 25px;
    margin-right: 10px;
  }
  .contHeaderMenu .contHeaderMenu__icons .iconHamburguer {
    background: transparent;
  }
}
.contBanner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.contBanner .contBanner__blocks {
  width: 300%;
  display: flex;
  flex-direction: row;
}
.contBanner .contBanner__blocks .contBanner__boxs {
  width: 100%;
  height: 500px;
  color: white;
  position: relative;
}
.contBanner .contBanner__blocks .contBanner__boxs .boxs__image {
  width: 100%;
  height: 100%;
}
.contBanner .contBanner__blocks .contBanner__boxs .boxs__article {
  width: 100%;
  height: 100%;
  padding-top: 80px;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.586);
  text-align: center;
}
.contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__title {
  color: white;
  font-size: 70px;
  font-weight: 700;
}
.contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__description {
  width: 80%;
  margin: 30px auto;
  color: rgb(191, 191, 191);
  font-weight: 300;
}
.contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button {
  margin: 60px auto;
  width: 40%;
  padding: 10px 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__learn {
  width: 220px;
  padding: 10px 0px;
  border: 1.5px solid white;
  background: transparent;
  color: white;
  transition: 0.5s all;
}
.contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__learn:hover {
  background: rgb(27, 27, 27);
  cursor: pointer;
}
.contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__contact {
  width: 220px;
  padding: 10px 0px;
  border: 1.5px solid rgb(27, 27, 27);
  background: rgb(27, 27, 27);
  color: white;
  transition: 0.5s all;
}
.contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__contact:hover {
  border: 1.5px solid white;
  cursor: pointer;
}
.contBanner .arrowLeft {
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc(50% - 25px);
  left: 20px;
}
.contBanner .arrowLeft .iconArrows {
  color: #ffffff;
  font-size: 45px;
  cursor: pointer;
  animation-name: arrowNext;
  animation-duration: 0.8s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes arrowNext {
  from {
    transform: translateX(5px);
    opacity: 0;
  }
  to {
    transform: translateX(-5px);
    opacity: 1;
  }
}
.contBanner .arrowRight {
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc(50% - 25px);
  right: 20px;
}
.contBanner .arrowRight .iconArrows {
  color: #ffffff;
  font-size: 45px;
  cursor: pointer;
  animation-name: arrowPrev;
  animation-duration: 0.8s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes arrowPrev {
  from {
    transform: translateX(-5px);
    opacity: 0;
  }
  to {
    transform: translateX(5px);
    opacity: 1;
  }
}

/*

  RESPONSIVE DESING OFICIAL NUEVO
@media (min-width:1025px) and (max-width:1200px){}     175px
@media (min-width:900px)  and (max-width:1024px){}     124px
@media (min-width:770px)  and (max-width:899px){}      129px
@media (min-width:641px)  and (max-width:769px){}      128px
@media (min-width:481px)  and (max-width:640px){}      159px
@media (min-width:320px)  and (max-width:480px){}      160px

**/
@media (min-width: 770px) and (max-width: 1200px) {
  .contBanner {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .contBanner .contBanner__blocks {
    width: 300%;
    display: flex;
    flex-direction: row;
  }
  .contBanner .contBanner__blocks .contBanner__boxs {
    width: 100%;
    height: 500px;
    position: relative;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__image {
    width: 100%;
    height: 100%;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article {
    width: 100%;
    height: 100%;
    padding-top: 80px;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.586);
    text-align: center;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__title {
    font-size: 60px;
    font-weight: 700;
    width: 60%;
    margin: auto;
    line-height: 60px;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__description {
    width: 80%;
    margin: 30px auto;
    color: rgb(191, 191, 191);
    font-weight: 300;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button {
    margin: 60px auto;
    width: 70%;
    padding: 10px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__learn {
    width: calc(50% - 50px);
    padding: 10px 0px;
    border: 1.5px solid white;
    background: transparent;
    color: white;
    transition: 0.5s all;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__contact {
    width: calc(50% - 50px);
    padding: 10px 0px;
    border: 1.5px solid rgb(27, 27, 27);
    background: rgb(27, 27, 27);
    color: white;
    transition: 0.5s all;
  }
  .contBanner .arrowLeft {
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: 20px;
  }
  .contBanner .arrowLeft .iconArrows {
    color: #ffffff;
    font-size: 45px;
    cursor: pointer;
    animation-name: arrowNext;
    animation-duration: 0.8s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  @keyframes arrowNext {
    from {
      transform: translateX(5px);
      opacity: 0;
    }
    to {
      transform: translateX(-5px);
      opacity: 1;
    }
  }
  .contBanner .arrowRight {
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    right: 20px;
  }
  .contBanner .arrowRight .iconArrows {
    color: #ffffff;
    font-size: 45px;
    cursor: pointer;
    animation-name: arrowPrev;
    animation-duration: 0.8s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  @keyframes arrowPrev {
    from {
      transform: translateX(-5px);
      opacity: 0;
    }
    to {
      transform: translateX(5px);
      opacity: 1;
    }
  }
}
@media (min-width: 481px) and (max-width: 769px) {
  .contBanner {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .contBanner .contBanner__blocks {
    width: 300%;
    display: flex;
    flex-direction: row;
  }
  .contBanner .contBanner__blocks .contBanner__boxs {
    width: 100%;
    height: 500px;
    position: relative;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__image {
    width: 100%;
    height: 100%;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article {
    width: 100%;
    height: 100%;
    padding-top: 80px;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.586);
    text-align: center;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__title {
    font-size: 50px;
    font-weight: 700;
    width: 80%;
    margin: auto;
    line-height: 48px;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__description {
    width: 80%;
    margin: 30px auto;
    color: rgb(191, 191, 191);
    font-weight: 300;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button {
    margin: 60px auto;
    width: 70%;
    padding: 10px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__learn {
    width: calc(50% - 20px);
    padding: 8px 0px;
    border: 1.5px solid white;
    background: transparent;
    color: white;
    transition: 0.5s all;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__contact {
    width: calc(50% - 20px);
    padding: 8px 0px;
    border: 1.5px solid rgb(27, 27, 27);
    background: rgb(27, 27, 27);
    color: white;
    transition: 0.5s all;
  }
  .contBanner .arrowLeft {
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: 20px;
  }
  .contBanner .arrowLeft .iconArrows {
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    animation-name: arrowNext;
    animation-duration: 0.8s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  @keyframes arrowNext {
    from {
      transform: translateX(5px);
      opacity: 0;
    }
    to {
      transform: translateX(-5px);
      opacity: 1;
    }
  }
  .contBanner .arrowRight {
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    right: 20px;
  }
  .contBanner .arrowRight .iconArrows {
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    animation-name: arrowPrev;
    animation-duration: 0.8s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  @keyframes arrowPrev {
    from {
      transform: translateX(-5px);
      opacity: 0;
    }
    to {
      transform: translateX(5px);
      opacity: 1;
    }
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .contBanner {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .contBanner .contBanner__blocks {
    width: 300%;
    display: flex;
    flex-direction: row;
  }
  .contBanner .contBanner__blocks .contBanner__boxs {
    width: 100%;
    height: 500px;
    position: relative;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__image {
    width: 100%;
    height: 100%;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article {
    width: 100%;
    height: 100%;
    padding-top: 50px;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.586);
    text-align: center;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__title {
    width: 90%;
    margin: auto;
    font-size: 50px;
    font-weight: 700;
    line-height: 45px;
    width: 80%;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__description {
    width: 80%;
    margin: 30px auto;
    color: rgb(234, 234, 234);
    font-weight: 300;
    font-size: 16px;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button {
    margin: 40px auto;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__learn {
    width: calc(50% - 20px);
    padding: 8px 0px;
    border: 1.5px solid white;
    background: transparent;
    color: white;
    transition: 0.5s all;
  }
  .contBanner .contBanner__blocks .contBanner__boxs .boxs__article .article__button .button__contact {
    width: calc(50% - 20px);
    padding: 8px 0px;
    border: 1.5px solid rgb(27, 27, 27);
    background: rgb(27, 27, 27);
    color: white;
    transition: 0.5s all;
  }
  .contBanner .arrowLeft {
    width: 30px;
    height: 30px;
    position: absolute;
    top: calc(50% - 25px);
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contBanner .arrowLeft .iconArrows {
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    animation-name: arrowNext;
    animation-duration: 0.8s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  @keyframes arrowNext {
    from {
      transform: translateX(5px);
      opacity: 0;
    }
    to {
      transform: translateX(-5px);
      opacity: 1;
    }
  }
  .contBanner .arrowRight {
    width: 30px;
    height: 30px;
    position: absolute;
    top: calc(50% - 25px);
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contBanner .arrowRight .iconArrows {
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    animation-name: arrowPrev;
    animation-duration: 0.8s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  @keyframes arrowPrev {
    from {
      transform: translateX(-5px);
      opacity: 0;
    }
    to {
      transform: translateX(5px);
      opacity: 1;
    }
  }
}
.contSecctionUno {
  width: 100%;
  padding: 80px 0px;
  background: #ffffff;
  text-align: center;
}
.contSecctionUno .contSecctionUno__title {
  font-size: 40px;
  color: rgb(27, 27, 27);
}
.contSecctionUno .contSecctionUno__description {
  width: 60%;
  padding: 5px 0px;
  margin: 10px auto;
  color: rgb(27, 27, 27);
}
.contSecctionUno .contSecctionUno__blocks {
  width: 80%;
  margin: 50px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.contSecctionUno .contSecctionUno__blocks .blocks__boxs {
  width: 300px;
  height: 320px;
  position: relative;
  color: white;
  overflow: hidden;
  box-shadow: 0px 5px 5px rgb(85, 85, 85);
}
.contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__image {
  width: 100%;
  height: 100%;
}
.contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription {
  width: 100%;
  height: 100%;
  background: rgba(8, 31, 49, 0.7254901961);
  position: absolute;
  top: 240px;
  padding: 20px;
  transition: 0.5s all;
}
.contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__title {
  font-size: 25px;
  height: 38px;
  line-height: 23px;
}
.contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__text {
  margin-top: 20px;
  color: rgba(196, 223, 244, 0.9019607843);
}
.contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button {
  margin-top: 30px;
  padding: 8px 40px;
  border: 1px solid rgba(196, 223, 244, 0.9019607843);
  background: transparent;
  color: #ffffff;
  transition: 0.5s all;
}
.contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button:hover {
  background: rgb(27, 27, 27);
  cursor: pointer;
}
.contSecctionUno .contSecctionUno__blocks .blocks__boxs:hover .blocks__box__contDescription {
  top: 0;
  cursor: pointer;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .contSecctionUno {
    width: 100%;
    padding: 80px 0px;
    background: #ffffff;
    text-align: center;
  }
  .contSecctionUno .contSecctionUno__title {
    font-size: 40px;
    color: rgb(27, 27, 27);
  }
  .contSecctionUno .contSecctionUno__description {
    width: 50%;
    padding: 5px 0px;
    margin: 10px auto;
    color: rgb(27, 27, 27);
  }
  .contSecctionUno .contSecctionUno__blocks {
    width: 80%;
    margin: 50px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs {
    width: 250px;
    height: 270px;
    position: relative;
    color: white;
    overflow: hidden;
    box-shadow: 0px 5px 5px rgb(85, 85, 85);
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__image {
    width: 100%;
    height: 100%;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription {
    width: 100%;
    height: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    position: absolute;
    top: 200px;
    padding: 20px;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__title {
    font-size: 20px;
    height: 38px;
    line-height: 20px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__text {
    margin-top: 20px;
    color: rgba(196, 223, 244, 0.9019607843);
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button {
    margin-top: 10px;
    padding: 8px 40px;
    border: 1px solid rgba(196, 223, 244, 0.9019607843);
    background: transparent;
    color: #ffffff;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button:hover {
    background: rgb(27, 27, 27);
    cursor: pointer;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs:hover .blocks__box__contDescription {
    top: 0;
    cursor: pointer;
  }
}
@media (min-width: 900px) and (max-width: 1024px) {
  .contSecctionUno {
    width: 100%;
    padding: 80px 0px;
    background: #ffffff;
    text-align: center;
  }
  .contSecctionUno .contSecctionUno__title {
    font-size: 40px;
    color: rgb(27, 27, 27);
  }
  .contSecctionUno .contSecctionUno__description {
    width: 60%;
    padding: 5px 0px;
    margin: 10px auto;
    color: rgb(27, 27, 27);
  }
  .contSecctionUno .contSecctionUno__blocks {
    width: 90%;
    margin: 40px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs {
    width: 250px;
    height: 270px;
    position: relative;
    color: white;
    overflow: hidden;
    box-shadow: 0px 5px 5px rgb(85, 85, 85);
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__image {
    width: 100%;
    height: 100%;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription {
    width: 100%;
    height: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    position: absolute;
    top: 200px;
    padding: 20px;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__title {
    font-size: 20px;
    height: 38px;
    line-height: 20px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__text {
    margin-top: 20px;
    color: rgba(196, 223, 244, 0.9019607843);
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button {
    margin-top: 10px;
    padding: 8px 40px;
    border: 1px solid rgba(196, 223, 244, 0.9019607843);
    background: transparent;
    color: #ffffff;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button:hover {
    background: rgb(27, 27, 27);
    cursor: pointer;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs:hover .blocks__box__contDescription {
    top: 0;
    cursor: pointer;
  }
}
@media (min-width: 770px) and (max-width: 899px) {
  .contSecctionUno {
    width: 100%;
    padding: 80px 0px;
    background: #ffffff;
    text-align: center;
  }
  .contSecctionUno .contSecctionUno__title {
    font-size: 38px;
    color: rgb(27, 27, 27);
  }
  .contSecctionUno .contSecctionUno__description {
    width: 65%;
    padding: 5px 0px;
    margin: 10px auto;
    color: rgb(27, 27, 27);
  }
  .contSecctionUno .contSecctionUno__blocks {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs {
    width: 235px;
    height: 290px;
    position: relative;
    color: white;
    overflow: hidden;
    box-shadow: 0px 5px 5px rgb(85, 85, 85);
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__image {
    width: 100%;
    height: 100%;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription {
    width: 100%;
    height: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    position: absolute;
    top: 220px;
    padding: 20px;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__title {
    font-size: 20px;
    height: 38px;
    line-height: 20px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__text {
    margin-top: 20px;
    color: rgba(196, 223, 244, 0.9019607843);
    font-size: 14px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button {
    margin-top: 10px;
    padding: 8px 40px;
    font-size: 14px;
    border: 1px solid rgba(196, 223, 244, 0.9019607843);
    background: transparent;
    color: #ffffff;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button:hover {
    background: rgb(27, 27, 27);
    cursor: pointer;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs:hover .blocks__box__contDescription {
    top: 0;
    cursor: pointer;
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .contSecctionUno {
    width: 100%;
    padding: 80px 0px;
    background: #ffffff;
    text-align: center;
  }
  .contSecctionUno .contSecctionUno__title {
    width: 70%;
    margin: auto;
    font-size: 38px;
    color: rgb(27, 27, 27);
    line-height: 40px;
  }
  .contSecctionUno .contSecctionUno__description {
    width: 65%;
    padding: 5px 0px;
    margin: 10px auto;
    color: rgb(27, 27, 27);
  }
  .contSecctionUno .contSecctionUno__blocks {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs {
    width: 280px;
    height: 290px;
    position: relative;
    color: white;
    overflow: hidden;
    box-shadow: 0px 5px 5px rgb(85, 85, 85);
    margin-bottom: 10px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__image {
    width: 100%;
    height: 100%;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription {
    width: 100%;
    height: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    position: absolute;
    top: 210px;
    padding: 20px;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__title {
    font-size: 25px;
    height: 38px;
    line-height: 23px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__text {
    margin-top: 20px;
    color: rgba(196, 223, 244, 0.9019607843);
    font-size: 14px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button {
    margin-top: 20px;
    padding: 8px 40px;
    font-size: 14px;
    border: 1px solid rgba(196, 223, 244, 0.9019607843);
    background: transparent;
    color: #ffffff;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button:hover {
    background: rgb(27, 27, 27);
    cursor: pointer;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs:hover .blocks__box__contDescription {
    top: 0;
    cursor: pointer;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .contSecctionUno {
    width: 100%;
    padding: 80px 0px;
    background: #ffffff;
    text-align: center;
  }
  .contSecctionUno .contSecctionUno__title {
    width: 90%;
    margin: auto;
    font-size: 36px;
    color: rgb(27, 27, 27);
    line-height: 40px;
  }
  .contSecctionUno .contSecctionUno__description {
    width: 90%;
    padding: 5px 0px;
    margin: 10px auto;
    color: rgb(27, 27, 27);
  }
  .contSecctionUno .contSecctionUno__blocks {
    width: 320px;
    margin: 30px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs {
    width: 100%;
    height: 290px;
    position: relative;
    color: white;
    overflow: hidden;
    box-shadow: 0px 5px 5px rgb(85, 85, 85);
    margin-bottom: 10px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__image {
    width: 100%;
    height: 100%;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription {
    width: 100%;
    height: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    position: absolute;
    top: 200px;
    padding: 30px;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__title {
    font-size: 25px;
    height: 40px;
    line-height: 23px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__text {
    margin-top: 20px;
    color: rgba(196, 223, 244, 0.9019607843);
    font-size: 14px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button {
    margin-top: 20px;
    padding: 8px 40px;
    font-size: 14px;
    border: 1px solid rgba(196, 223, 244, 0.9019607843);
    background: transparent;
    color: #ffffff;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button:hover {
    background: rgb(27, 27, 27);
    cursor: pointer;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs:hover .blocks__box__contDescription {
    top: 0;
    cursor: pointer;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .contSecctionUno {
    width: 100%;
    padding: 60px 0px;
    background: #ffffff;
    text-align: center;
  }
  .contSecctionUno .contSecctionUno__title {
    width: 90%;
    margin: auto;
    font-size: 30px;
    color: rgb(27, 27, 27);
    line-height: 32px;
  }
  .contSecctionUno .contSecctionUno__description {
    width: 90%;
    padding: 5px 0px;
    margin: 10px auto;
    color: rgb(27, 27, 27);
  }
  .contSecctionUno .contSecctionUno__blocks {
    width: 90%;
    margin: 30px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs {
    width: 100%;
    height: 290px;
    position: relative;
    color: white;
    overflow: hidden;
    box-shadow: 0px 5px 5px rgb(85, 85, 85);
    margin-bottom: 20px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__image {
    width: 100%;
    height: 100%;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription {
    width: 100%;
    height: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    position: absolute;
    top: 200px;
    padding: 30px;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__title {
    font-size: 25px;
    height: 40px;
    line-height: 23px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__text {
    margin-top: 20px;
    color: rgba(196, 223, 244, 0.9019607843);
    font-size: 14px;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button {
    margin-top: 20px;
    padding: 8px 40px;
    font-size: 14px;
    border: 1px solid rgba(196, 223, 244, 0.9019607843);
    background: transparent;
    color: #ffffff;
    transition: 0.5s all;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs .blocks__box__contDescription .contDescription__button:hover {
    background: rgb(27, 27, 27);
    cursor: pointer;
  }
  .contSecctionUno .contSecctionUno__blocks .blocks__boxs:hover .blocks__box__contDescription {
    top: 0;
    cursor: pointer;
  }
}
.contSectionImg {
  background-image: url(../source/FONDO2.jpg);
  background-size: 100% 100%;
  background-attachment: fixed;
}
.contSectionImg .contSecctionDos {
  width: 100%;
  background: rgba(8, 31, 49, 0.7254901961);
  padding: 100px 0px;
}
.contSectionImg .contSecctionDos .contSecctionDos__title {
  color: #ffffff;
  text-align: center;
  font-size: 40px;
}
.contSectionImg .contSecctionDos .contSecctionDos__description {
  margin: 20px auto;
  width: 60%;
  text-align: center;
  color: #ffffff;
}
.contSectionImg .contSecctionDos .contSecctionDos__blocks {
  width: 75%;
  height: 400px;
  padding: 5px;
  margin: auto;
}
.contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper {
  width: 100%;
  height: 100%;
}
.contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide {
  background: #ffffff;
  text-align: center;
  font-size: 16px;
  padding: 0px 20px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slide__img .icon__slade {
  font-size: 50px;
  color: #081f31;
}
.contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_title {
  margin: 20px;
  font-size: 22px;
  color: rgb(27, 27, 27);
}
.contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_text {
  color: rgb(27, 27, 27);
  font-size: 16px;
}
.contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-pagination .swiper-pagination-bullet {
  background: rgba(8, 31, 49, 0.7254901961);
}

@media (min-width: 770px) and (max-width: 899px) {
  .contSectionImg {
    background-image: url(../source/FONDO2.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
  }
  .contSectionImg .contSecctionDos {
    width: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    padding: 100px 0px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__title {
    color: #ffffff;
    text-align: center;
    font-size: 40px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__description {
    margin: 20px auto;
    width: 80%;
    text-align: center;
    color: #ffffff;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks {
    width: 95%;
    height: 400px;
    padding: 5px;
    margin: auto;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper {
    width: 100%;
    height: 100%;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide {
    background: #ffffff;
    text-align: center;
    font-size: 16px;
    padding: 0px 20px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slide__img .icon__slade {
    font-size: 50px;
    color: #081f31;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_title {
    margin: 20px;
    font-size: 22px;
    color: rgb(27, 27, 27);
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_text {
    color: rgb(27, 27, 27);
    font-size: 16px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-pagination .swiper-pagination-bullet {
    background: rgba(8, 31, 49, 0.7254901961);
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .contSectionImg {
    background-image: url(../source/FONDO2.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
  }
  .contSectionImg .contSecctionDos {
    width: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    padding: 100px 0px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__title {
    color: #ffffff;
    text-align: center;
    font-size: 40px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__description {
    margin: 20px auto;
    width: 80%;
    text-align: center;
    color: #ffffff;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks {
    width: 95%;
    height: 400px;
    padding: 5px;
    margin: auto;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper {
    width: 100%;
    height: 100%;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide {
    background: #ffffff;
    text-align: center;
    font-size: 16px;
    padding: 0px 20px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slide__img .icon__slade {
    font-size: 50px;
    color: #081f31;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_title {
    margin: 20px;
    font-size: 22px;
    color: rgb(27, 27, 27);
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_text {
    color: rgb(27, 27, 27);
    font-size: 16px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-pagination .swiper-pagination-bullet {
    background: rgba(8, 31, 49, 0.7254901961);
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .contSectionImg {
    background-image: url(../source/FONDO2.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
  }
  .contSectionImg .contSecctionDos {
    width: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    padding: 100px 0px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__title {
    color: #ffffff;
    text-align: center;
    font-size: 36px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__description {
    margin: 20px auto;
    width: 80%;
    text-align: center;
    color: #ffffff;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks {
    width: 95%;
    height: 400px;
    padding: 5px;
    margin: auto;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper {
    width: 100%;
    height: 100%;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide {
    background: #ffffff;
    text-align: center;
    font-size: 16px;
    padding: 0px 20px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slide__img .icon__slade {
    font-size: 45px;
    color: #081f31;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_title {
    margin: 20px;
    font-size: 22px;
    color: rgb(27, 27, 27);
    line-height: 22px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_text {
    color: rgb(27, 27, 27);
    font-size: 16px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-pagination .swiper-pagination-bullet {
    background: rgba(8, 31, 49, 0.7254901961);
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .contSectionImg {
    background-image: url(../source/FONDO2.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
  }
  .contSectionImg .contSecctionDos {
    width: 100%;
    background: rgba(8, 31, 49, 0.7254901961);
    padding: 100px 0px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__title {
    color: #ffffff;
    text-align: center;
    font-size: 36px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__description {
    margin: 20px auto;
    width: 80%;
    text-align: center;
    color: #ffffff;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks {
    width: 95%;
    height: 400px;
    padding: 5px;
    margin: auto;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper {
    width: 100%;
    height: 100%;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide {
    background: #ffffff;
    text-align: center;
    font-size: 16px;
    padding: 0px 20px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slide__img .icon__slade {
    font-size: 55px;
    color: #081f31;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_title {
    margin: 20px;
    font-size: 22px;
    color: rgb(27, 27, 27);
    line-height: 22px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-wrapper .swiper-slide .slade_text {
    color: rgb(27, 27, 27);
    font-size: 16px;
  }
  .contSectionImg .contSecctionDos .contSecctionDos__blocks .swiper .swiper-pagination .swiper-pagination-bullet {
    background: rgba(8, 31, 49, 0.7254901961);
  }
}
.contFooter {
  width: 100%;
  padding: 10px 0px;
  background: rgb(27, 27, 27);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.contFooter .contFooter__QR {
  width: 200px;
  height: 200px;
  margin-left: 100px;
}
.contFooter .contFooter__contact {
  width: 250px;
  padding: 10px;
  margin-right: 100px;
}
.contFooter .contFooter__contact .contact__title {
  color: #ffffff;
  font-size: 22px;
}
.contFooter .contFooter__contact .contact__block {
  margin-top: 10px;
  width: 100%;
  padding: 5px 0px;
}
.contFooter .contFooter__contact .contact__block .contact__block__box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
}
.contFooter .contFooter__contact .contact__block .contact__block__box .footer__icon {
  width: 25px;
  color: #ffffff;
}
.contFooter .contFooter__contact .contact__block .contact__block__box .footer__text {
  color: #ffffff;
}

.contFooter__copiright {
  text-align: center;
  color: #ffffff;
  padding: 20px 0px;
  background: #081f31;
  font-size: 12px;
}
.contFooter__copiright .c_copi {
  color: rgba(196, 223, 244, 0.9019607843);
  font-weight: 300;
  font-size: 12px;
}

@media (min-width: 770px) and (max-width: 990px) {
  .contFooter {
    width: 100%;
    padding: 10px 0px;
    background: rgb(27, 27, 27);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .contFooter .contFooter__QR {
    width: 100px;
    height: 100px;
    margin-left: 20px;
  }
  .contFooter .contFooter__contact {
    width: 250px;
    padding: 10px;
    margin-right: 50px;
  }
  .contFooter .contFooter__contact .contact__title {
    color: #ffffff;
    font-size: 20px;
  }
  .contFooter .contFooter__contact .contact__block {
    margin-top: 10px;
    width: 100%;
    padding: 5px 0px;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box .footer__icon {
    width: 25px;
    color: #ffffff;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box .footer__text {
    color: #ffffff;
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .contFooter {
    width: 100%;
    padding: 10px 0px;
    background: rgb(27, 27, 27);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .contFooter .contFooter__QR {
    width: 100px;
    height: 100px;
    margin-left: 20px;
  }
  .contFooter .contFooter__contact {
    width: 230px;
    padding: 5px;
    margin-right: 10px;
  }
  .contFooter .contFooter__contact .contact__title {
    color: #ffffff;
    font-size: 18px;
  }
  .contFooter .contFooter__contact .contact__block {
    margin-top: 5px;
    width: 100%;
    padding: 5px 0px;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box .footer__icon {
    width: 25px;
    color: #ffffff;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box .footer__text {
    color: #ffffff;
    font-size: 14px;
  }

  .contFooter__copiright {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .contFooter {
    width: 100%;
    padding: 10px 20px;
    background: rgb(27, 27, 27);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .contFooter .contFooter__QR {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    display: none;
  }
  .contFooter .contFooter__contact {
    width: 50%;
    padding: 5px;
    margin: 10px;
  }
  .contFooter .contFooter__contact .contact__title {
    color: #ffffff;
    font-size: 18px;
  }
  .contFooter .contFooter__contact .contact__block {
    margin-top: 5px;
    width: 100%;
    padding: 5px 0px;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box .footer__icon {
    width: 25px;
    color: #ffffff;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box .footer__text {
    color: #ffffff;
    font-size: 14px;
  }

  .contFooter__copiright {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .contFooter {
    width: 100%;
    padding: 10px 5px;
    background: rgb(27, 27, 27);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .contFooter .contFooter__QR {
    width: 100px;
    height: 100px;
    margin-left: 20px;
    display: block;
  }
  .contFooter .contFooter__contact {
    width: 90%;
    padding: 5px;
    margin: 2px;
  }
  .contFooter .contFooter__contact .contact__title {
    color: #ffffff;
    font-size: 16px;
  }
  .contFooter .contFooter__contact .contact__block {
    margin-top: 5px;
    width: 100%;
    padding: 5px 0px;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box .footer__icon {
    width: 25px;
    color: #ffffff;
  }
  .contFooter .contFooter__contact .contact__block .contact__block__box .footer__text {
    color: #ffffff;
    font-size: 14px;
  }

  .contFooter__copiright {
    display: none;
  }
}
.boton_top {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  transition: 0.8s all;
  background: rgba(8, 31, 49, 0.7254901961);
  padding: 5px;
  z-index: 100;
  transform: translateX(100px);
}
.boton_top .boton__subir {
  font-size: 28px;
  color: #ffffff;
  animation-name: moverTop;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes moverTop {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(5px);
  }
}

.boton_top_JS {
  transform: translateX(0px);
}

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