@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --color-esqueleto-transparent: rgba(239, 243, 245, 0.5);
  --blue-light: #0b92a7;
  --blue-medium: #0b3f8b;
  --blue-transparent: #082864ce;
  --blue-light-transparent: #0b92a794;
  --blue-dark: #020d22fa;
  --blue-dark-transparent: #020d22c7;
  --gray-medium: #373737;
  --gray-dark: #242424;
  --gray-transpárent: #20202049;
  --title: "Kanit", sans-serif;
  --sub-title: "Poppins", sans-serif;
  --paragraph: "Nunito", sans-serif;
  --size-title: 3rem;
  --pinkV: #ab06f8;
}

body {
  background-image: linear-gradient(rgba(8, 40, 100, 0.979), rgba(8, 40, 100, 0.986)), url("../images/branding.webp");
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

/******* *NAVIGATION* *******/
.menu {
  background-color: var(--color-esqueleto-transparent);
  height: 70px;
  width: 90%;
  font-family: var(--title);
  position: fixed;
  margin-left: 60px;
  border-radius: 10px;
  border: 2px solid #fff;
  top: 20px;
  z-index: 999;
}

.menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1200px;
}

.menu__links {
  display: flex;
  height: 100%;
  margin-right: 10px;
  transition: transform 0.5s;
}

.menu__item {
  list-style: none;
  height: 100%;
  position: relative;
}

.menu__link {
  color: var(--blue-medium);
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: 0.4s;
}

.menu__link:hover {
  background-color: var(--blue-dark);
  color: var(--blue-light);
}

.logo {
  width: 70px;
  margin-left: 30px;
}

.logo img {
  width: 100%;
}

.menu__hamburguer {
  height: 95%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin-right: 100px;
  cursor: pointer;
  transition: 0.4s;
  display: none;
}

.menu__hamburguer:hover {
  background-color: var(--color-esqueleto-transparent);
}

.menu__img {
  display: block;
  width: 35px;
}

#select {
  background-color: var(--blue-dark);
  color: var(--blue-light);
}

/***** *VIDEO WEB* *****/
#background__video {
  min-height: 100vh;
  position: relative;
  z-index: -1;
}

.video {
  padding: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  z-index: 2;
}

.title__video {
  font-family: var(--title);
  font-size: 4rem;
  text-align: center;
  color: var(--blue-dark);
  text-shadow: 4px 4px 4px var(--blue-light);
  width: 900px;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}

.capa {
  position: absolute;
  background-color: var(--blue-dark);
  top: 0;
  left: 0;
  width: 100%;
  height: 98%;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.title__second {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
  margin-bottom: 40px;
  font-family: var(--title);
  font-size: 2.5rem;
  color: var(--blue-dark);
  text-shadow: 4px 4px 4px var(--blue-light);
  display: none;
}

/***** *TARJETA EXPANSIVE* ******/
.container__card__expan {
  display: flex;
  width: 100%;
  max-width: 90%;
  margin: 30px auto 40px;
}

.panel {
  background-size: cover;
  background-position: center;
  background-position: no-repeat;
  height: 80vh;
  border-radius: 10px;
  cursor: pointer;
  flex: 0.5;
  margin: 8px;
  position: relative;
  transition: flex 0.7s ease-in;
  -webkit-transition: all 700ms ease-in;
}

.panel img {
  width: 60px;
  position: absolute;
  bottom: 20px;
  left: 15px;
  margin: 0;
  opacity: 1;
  z-index: 2;
}

.panel.active {
  flex: 5;
}

.panel.active img {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.text-expan {
  position: absolute;
  background-color: var(--blue-transparent);
  border: 3px solid #fff;
  border-radius: 10px;
  margin-left: 30px;
  margin-top: 30%;
  width: 60%;
  opacity: 0;
}

.title {
  color: #fff;
  font-family: var(--title);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 10px;
}

.paragraph {
  color: #fff;
  font-size: 1rem;
  font-family: var(--paragraph);
  margin: 10px;
}

.panel.active .text-expan {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.background {
  position: absolute;
  background-image: linear-gradient(rgb(40, 158, 212), rgb(0, 26, 255));
  border: 2px solid #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 1;
  z-index: 1;
}

.panel.active .background {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

/****** *SERVICES* *******/
.container1 {
  background: rgba(255, 255, 255, 0.185);
  box-shadow: 1px 1px 10px 0 rgba(4, 212, 219, 0.623);
  border: 2px solid #fff;
  border-radius: 30px;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  padding: 40px 0;
  margin-bottom: 40px;
}

.container1 h1 {
  font-size: var(--size-title);
  color: var(--blue-dark);
  font-family: var(--title);
  text-shadow: 4px 4px 4px var(--blue-light);
  text-align: center;
}

.container__article {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  justify-content: space-around;
}

.article {
  width: 40%;
  background: rgba(255, 255, 255, 0.185);
  box-shadow: 1px 1px 10px 0 rgba(2, 13, 34, 0.98);
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 45px 30px 60px 30px;
}

.article i {
  font-size: 2rem;
  color: var(--blue-medium);
  background: var(--blue-light-transparent);
  display: inline-block;
  width: 50px;
  height: 50px;
  padding-top: 20px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(2, 13, 34, 0.98);
}

.article h3 {
  font-size: 1.4rem;
  font-family: var(--title);
  font-weight: 400;
  margin: 15px 0;
  color: var(--blue-medium);
}

.article p {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  font-family: var(--paragraph);
  margin-bottom: 10px;
}

.list {
  margin-bottom: 20px;
}

.list li {
  font-size: 1.5rem;
  font-family: var(--paragraph);
  margin: 10px 20px 0px 20px;
  color: var(--blue-medium);
}

.article:hover {
  box-shadow: 0 4px 10px rgba(4, 194, 219, 0.678);
}

.article a {
  color: #ffffff;
  font-family: var(--paragraph);
  background-color: var(--blue-transparent);
  padding: 5px 30px;
  border-radius: 10px;
}

.article a:hover {
  box-shadow: 0 4px 10px rgba(4, 212, 219, 0.623);
}

/******* *SLIDER* *******/
.container__slider {
  background: rgba(255, 255, 255, 0.185);
  box-shadow: 1px 1px 10px 0 rgba(4, 212, 219, 0.623);
  border: 2px solid #fff;
  border-radius: 30px;
  width: 90%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.title__slide {
  text-align: center;
  font-family: var(--title);
  text-shadow: 4px 4px 4px var(--blue-light);
  font-size: var(--size-title);
}

.slider {
  display: flex;
  width: 300%;
  height: 460px;
  margin-top: 0px;
  margin-left: -100%;
}

.slider__section {
  width: 100%;
}

.slider__images {
  display: block;
  width: 90%;
  height: 90%;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  width: 50px;
  height: 50px;
  color: var(--blue-medium);
  font-size: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: monospace;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider__btn:hover {
  color: var(--blue-light);
  background: rgba(255, 255, 255, 0.185);
  border: 1px solid #fff;
}

.slider__btn--left {
  line-height: 1.6;
  left: 10px;
}

.slider__btn--right {
  line-height: 1.6;
  right: 10px;
}

.paragraph2 {
  width: 90%;
  font-size: 1.1rem;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-weight: 400;
  font-family: var(--paragraph);
  margin-top: -50px;
  margin-bottom: 20px;
}

/***** WEBS CARD *****/
.container2 {
  background: rgba(255, 255, 255, 0.185);
  box-shadow: 1px 1px 10px 0 rgba(4, 212, 219, 0.623);
  border: 2px solid #fff;
  border-radius: 30px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 10px 0;
  margin-bottom: 40px;
}

.container2 h1 {
  font-size: var(--size-title);
  color: var(--blue-dark);
  font-family: var(--title);
  text-shadow: 4px 4px 4px var(--blue-light);
  text-align: center;
}

.container2 .container__article {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: space-around;
}

.container2 .article {
  width: 30%;
  box-shadow: 1px 1px 10px 0 rgba(2, 13, 34, 0.98);
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 45px 30px 60px 30px;
}

.container2 .article:hover {
  box-shadow: 0 4px 10px rgba(4, 194, 219, 0.678);
}

.article i {
  font-size: 2rem;
  color: var(--blue-medium);
  background: var(--blue-light-transparent);
  display: inline-block;
  width: 70px;
  height: 70px;
  padding-top: 20px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(2, 13, 34, 0.98);
}

 /***** BANNER COOKIES *****/
 .banner__cookies {
  display: none;
  background: var(--blue-dark);
  padding: 20px;
  width: 100%;
  line-height: 150%;
  border: 1px solid #fff;
  position: fixed;
  bottom: 0px;
  z-index: 1000;
  padding-top: 40px;
  box-shadow: 0px 2px 20px 10px var(--blue-medium);
  text-align: center;
}

.banner__cookies.activo {
  display: block;
}

.title__cookies {
  color: #fff;
  font-family: var(--title);
  font-weight: 400;
  font-size: 1.8rem;
}

.paragraph__cookies {
  color: #fff;
  font-family: var(--paragraph);
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 300;
}

.boton {
  font-family: var(--sub-title);
  margin-right: 20px;
  padding: 5px 20px;
  color: var(--blue-medium);
  background-color: #757070;
  border-radius: 4px;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}

.boton:hover {
  background-color: #fff;
  color: var(--blue-light);
}

.enlace {
  font-family: var(--sub-title);
  color: #fff;
  font-weight: 200;
  font-size: 0.9rem;
  transition: 0.3s;
}

.enlace:hover {
  color: var(--blue-light);
  text-decoration: underline;
  letter-spacing: 0.5px;
}

.background-cookies {
  display: none;
  background: var(--blue-dark-transparent);
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.background-cookies.activo {
  display: block;
}


/******* *FOOTER* *******/
footer {
  position: relative;
  background: rgba(255, 255, 255, 0.185);
  box-shadow: 0 4px 10px rgba(4, 194, 219, 0.678);
  border-left: 1px solid rgba(255, 255, 255, 0.664);
  border: 2px solid #fff;
  width: 100%;
  height: 100%;
}

.footer__container {
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.partFooter {
  width: 20%;
  text-align: center;
}

.partFooter img {
  width: 50%;
  margin-top: 10px;
}

.partFooter h4 {
  color: var(--blue-dark);
  font-size: 1.3em;
  font-weight: 400;
  font-family: var(--title);
  margin-top: 20px;
  margin-bottom: 10px;
}

.partFooter .blue:hover {
  color: var(--blue-light);
}

.partFooter a {
  display: block;
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 500;
  transform: color 0.3s ease-in-out;
  margin-bottom: 10px;
  font-family: var(--paragraph);
}

.partFooter a:hover {
  color: var(--blue-light);
}

.social__media {
  display: flex;
  justify-content: space-around;
  width: 250px;
}
.social__media a {
  display: inline-block;
  margin: 0px;
  width: 190px;
  transition: 1s;
  cursor: pointer;
  animation: move 6s ease-in-out infinite;
}

.social__media a img {
  width: 50px;
}

.social__media a:hover {
  box-shadow: 0 0 5px rgba(253, 251, 253, 0.726);
}

@keyframes move {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.footer__copy {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 1em;
  font-family: var(--title);
  font-weight: 300;
  color: rgb(253, 253, 253);
  border-top: 2px solid #fff;
}

.footer--copyright {
  height: 30px;

  & p {
    margin-top: 15px;
  }
}

/******* *MEDIA QUIERIES* *******/
@media screen and (max-width: 992px) {
  /******* *NAVIGATON* *******/
  .menu {
    height: 70px;
    width: 90%;
    margin-left: 50px;
  }

  .menu__links {
    margin-right: 30px;
  }

  .menu__item {
    font-size: 15px;
  }

  /******* *FOOTER* *******/
  .footer__container {
    width: 100%;
  }

  .partFooter {
    margin-right: 30px;
  }

  .partFooter h4 {
    font-size: 1.2rem;
    margin-right: 20px;
  }

  .partFooter a {
    font-size: 0.9rem;
  }

  .social__media a img {
    width: 45px;
  }

  .social__media {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  /******* *NAVIGATON* *******/
  .menu {
    height: 70px;
    width: 90%;
    margin-left: 40px;
  }

  .logo {
    margin-left: 20px;
  }

  .menu__hamburguer {
    display: flex;
    background-color: var(--blue-light);
    border-radius: 10px;
    margin-right: 20px;
  }

  .menu__item {
    --clip: 0;
    overflow: hidden;
  }

  .menu__item--active {
    --transform: rotate(0);
    --background: var(--blue-medium);
  }

  .menu__item--show {
    background-color: var(--background);
  }

  .menu__links {
    position: fixed;
    max-width: 400px;
    width: 100%;
    top: 90px;
    bottom: 0;
    right: -50px;
    background-color: var(--color-esqueleto-transparent);
    overflow-y: auto;
    display: grid;
    grid-auto-rows: max-content;
    transform: translateX(100%);
  }

  .menu__links--show {
    transform: unset;
    width: 100%;
  }

  .menu__link {
    padding: 25px 0;
    padding-left: 30px;
    height: auto;
  }

  /******* *VIDEO BANNER* *******/
  #background__video {
    min-height: 100vh;
    height: 400px;
    position: relative;
  }

  .video {
    padding: 350px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    z-index: 2;
  }

  .title__video {
    font-size: 2.5rem;
    width: 700px;
    margin-top: -300px;
    margin-left: 80%;
  }

  .capa {
    width: 100%;
    height: 83%;
  }

  .title__second {
    display: flex;
    margin-left: 90px;
  }

  /***** *TARJETA EXPANSIVE* ******/
  .container__card__expan {
    display: block;
    width: 90%;
    max-width: 80%;
    margin: 0px auto 40px;
  }

  .container2 .article {
    width: 45%;
    box-shadow: 1px 1px 10px 0 rgba(2, 13, 34, 0.98);
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 45px 30px 60px 30px;
  }

  /****** *SERVICES* *******/
  .container1 {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .container1 h1 {
    font-size: 2.8rem;
  }

  .container__article {
    margin-top: 50px;
  }

  .article i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    padding-top: 13px;
  }

  .article h3 {
    font-size: 1.3rem;
  }

  .article p {
    font-size: 1rem;
  }

  .list {
    margin-bottom: 20px;
  }


  /******* *FOOTER* *******/
  .footer__container {
    width: 95%;
  }

  .partFooter img {
    width: 100px;
  }

  .partFooter h4 {
    font-size: 1.1em;
  }

  .partFooter a {
    font-size: 0.8em;
  }

  .social__media a img {
    width: 40px;
  }

  .social__media {
    margin-left: 0px;
  }
}

@media screen and (max-width: 600px) {
  /******* *NAVIGATON* *******/
  .menu {
    height: 60px;
    width: 90%;
    top: 20px;
    margin-left: 40px;
  }

  .menu__links {
    top: 80px;
  }

  .logo {
    margin-left: 20px;
    width: 60px;
  }

  .menu__hamburguer {
    height: 100%;
    padding: 0 10px;
  }

  /******* *VIDEO BANNER* *******/
  #background__video {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .video {
    padding: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    z-index: 2;
  }

  .title__video {
    font-size: 2.5rem;
    width: 700px;
    margin-top: -300px;
    margin-right: 85px;
  }

  video {
    width: 100%;
    height: 380px;
  }

  .capa {
    width: 100%;
    height: 380px;
  }

  .title__second {
    width: 90%;
    margin-left: 50px;
    margin-top: -130px;
    margin-bottom: 90px;
    font-size: 2.3rem;
  }

  /***** *TARJETA EXPANSIVE* ******/
  .container__card__expan {
    display: block;
    width: 90%;
    max-width: 80%;
    margin: -40px auto 40px;
  }

  .container2 .article {
    width: 90%;
  }

  /****** *SERVICES* *******/
  .container1 {
    width: 90%;
    margin: auto;
    overflow: hidden;
  }

  .container1 h1 {
    font-size: 2.5rem;
  }

  .container__article {
    margin-top: 50px;
  }

  .article {
    width: 80%;
  }

  .article i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    padding-top: 13px;
  }

  .article h3 {
    font-size: 1.3rem;
  }

  .article p {
    font-size: 0.9rem;
  }

  .list {
    margin-bottom: 20px;
  }

  .container2 h1 {
    font-size: 1.5rem;
  }

  /****** WEBS *****/
  .container2 h1 {
    font-size: 2.5rem;
  }

  .title__slide {
    font-size: 2.5rem;
  }

  /******* *FOOTER* *******/
  .footer__container {
    flex-direction: column;
  }

  .partFooter {
    width: 300px;
    justify-content: center;
  }

  .partFooter h4 {
    font-size: 1.3;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .partFooter a {
    font-size: 0.9em;
    margin-left: 20px;
  }

  .social__media {
    margin-left: 10px;
  }

  .social__media a img {
    width: 50px;
    margin: 10px;
  }
}

@media screen and (max-width: 400px) {
  /******* *NAVIGATON* *******/
  .menu {
    height: 60px;
    top: 20px;
    margin-left: 20px;
  }

  .logo {
    .logo {
      margin-left: 20px;
      width: 60px;
    }
  }

  .menu__hamburguer {
    height: 90%;
    width: 50px;
    padding: 0 10px;
    margin-right: 20px;
  }

  /******* *VIDEO BANNER* *******/
  #background__video {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .video {
    padding: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    z-index: 2;
  }

  .title__video {
    font-size: 2.5rem;
    width: 700px;
    margin-top: -300px;
    margin-right: 300px;
  }

  video {
    width: 100%;
    height: 380px;
  }

  .capa {
    width: 100%;
    height: 380px;
  }

  .title__second {
    width: 90%;
    margin-left: 20px;
    margin-bottom: 120px;
    font-size: 1.5rem;
  }

  /***** *TARJETA EXPANSIVE* ******/
  .container__card__expan {
    display: block;
    width: 90%;
    max-width: 80%;
    margin: -90px auto 40px;
  }

  .container2 .article {
    width: 90%;
  }

  .paragraph {
    font-size: .9rem;
  }

  /****** *SERVICES* *******/
  .container1 {
    width: 90%;
    margin: auto;
    overflow: hidden;
  }

  .container1 h1 {
    font-size: 2rem;
  }

  .container__article {
    margin-top: 50px;
  }

  .article {
    width: 80%;
  }

  .article i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    padding-top: 13px;
  }

  .article h3 {
    font-size: 1.3rem;
  }

  .article p {
    font-size: 0.9rem;
  }

  .list {
    margin-bottom: 20px;
  }

  .container2 h1 {
    font-size: 1.5rem;
  }

  .container__slider {
    margin-top: 30px;
  }

  .container__slider {
    width: 90%;
  }

  .slider__images {
    width: 100%;
  }

  .paragraph2 {
    font-size: 1rem;
  }

  /****** WEBS *****/
  .container2 h1 {
    font-size: 2.5rem;
  }

  .title__slide {
    font-size: 2.5rem;
  }

  /******* *FOOTER* *******/
  .footer__container {
    flex-direction: column;
  }

  .partFooter {
    width: 300px;
    justify-content: center;
  }

  .partFooter h4 {
    font-size: 1.3;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .partFooter a {
    font-size: 0.9em;
    margin-left: 20px;
  }

  .social__media {
    margin-left: 10px;
  }

  .social__media a img {
    width: 50px;
    margin: 10px;
  }
}

@media screen and (max-width: 320px) {
  /******* *NAVIGATON* *******/
  .menu {
    height: 60px;
    top: 20px;
    right: 20px;
  }

  .logo {
    .logo {
      margin-left: 20px;
      width: 60px;
    }
  }

  .menu__hamburguer {
    height: 90%;
    width: 50px;
    padding: 0 10px;
    margin-right: 20px;
  }

  /******* *VIDEO BANNER* *******/
  #background__video {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .video {
    padding: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    z-index: 2;
  }

  .title__video {
    font-size: 2rem;
    width: 700px;
    margin-top: -300px;
    margin-right: 380px;
  }

  video {
    width: 100%;
    height: 380px;
  }

  .capa {
    width: 100%;
    height: 380px;
  }

  /***** *TARJETA EXPANSIVE* ******/
  .container__card__expan {
    display: block;
    width: 90%;
    max-width: 80%;
    margin: -90px auto 40px;
  }

  .container2 .article {
    width: 90%;
  }

  .text-expan {
    width: 80%;
  }

  .paragraph {
    font-size: .9rem;
  }

  /****** *SERVICES* *******/
  .container1 {
    width: 95%;
    margin: auto;
    overflow: hidden;
  }

  .container1 h1 {
    font-size: 2rem;
  }

  .container__article {
    margin-top: 50px;
  }

  .article {
    width: 80%;
  }

  .article i {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    padding-top: 13px;
  }

  .article h3 {
    font-size: 1.3rem;
  }

  .article p {
    font-size: 0.9rem;
  }

  .list {
    margin-bottom: 20px;
  }

  .container2 h1 {
    font-size: 1.5rem;
  }

  .container__slider {
    margin-top: 30px;
  }

  .container__slider {
    width: 90%;
  }

  .slider__images {
    width: 100%;
  }

  .paragraph2 {
    font-size: 1rem;
  }

  /****** WEBS *****/
  .container2 h1 {
    font-size: 2.5rem;
  }

  .title__slide {
    font-size: 2.5rem;
  }

  /******* *FOOTER* *******/
  .footer__container {
    flex-direction: column;
  }

  .partFooter {
    width: 300px;
    justify-content: center;
  }

  .partFooter h4 {
    font-size: 1.3;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .partFooter a {
    font-size: 0.9em;
    margin-left: 20px;
  }

  .social__media {
    margin-left: 10px;
  }

  .social__media a img {
    width: 50px;
    margin: 10px;
  }
}