@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;
}

body {
  background-color: var(--color-esqueleto-transparent);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

/***** BOTON DE REGRESO *****/
.btc__politicas {
  color: var(--blue-light);
  background-color: var(--blue-dark);
  padding: 10px;
  font-family: var(--title);
  border-radius: 20px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 40px;
  transition: 0.3s;
}

.btc__politicas:hover {
  color: var(--blue-medium);
  background: var(--blue-light);
}

/******* *NAVIGATION* *******/
.menu {
  background: var(--blue-dark);
  height: 70px;
  width: 90%;
  font-family: var(--title);
  position: fixed;
  margin-left: 60px;
  border-radius: 10px;
  border: 2px solid var(--blue-light);
  top: 20px;
  z-index: 999;
}

.menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}

.menu__links {
  display: flex;
  height: 100%;
  margin-right: 10px;
  transition: transform 0.5s;
}

.menu__item {
  list-style: none;
  height: 100%;
  position: relative;

  --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
  --transform: rotate(-90deg);
}

.menu__item:hover {
  --clip: polygon(0 0, 100% 0, 100% 0, 100% 0% 100%);
  --transform: rotate(0);
}

.menu__link {
  color: var(--blue-light);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: 0.4s;
}

.menu__link:hover {
  background-color: var(--blue-light);
  color: var(--blue-medium);
}

.logo {
  width: 70px;
  margin: 5px 0 0 10px;
}

.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(--blue-medium);
}

.menu__img {
  display: block;
  width: 35px;
}

/* *******CONTENT******* */
.politica {
  max-width: 120rem;
}

.container__politica {
  width: 90%;
  padding-top: 180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.title__politica {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-family: var(--title);
  color: var(--blue-light);
}

.paragraph__politica {
  font-family: var(--paragraph);
  font-size: 1rem;
  color: var(--grayBlacks);
}

.paragraph__politica span {
  color: var(--blue-light);
  font-weight: 800;
}

/***** 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;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background-color: rgba(63, 60, 60, 0.158);
  border-left: 1px solid rgba(255, 255, 255, 0.664);
  border: 2px solid var(--blue-dark);
  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-medium);
  font-size: 1.3em;
  font-weight: 400;
  font-family: var(--title);
  margin-top: 20px;
  margin-bottom: 10px;
}

.partFooter .blue:hover {
  color: var(--blue-medium);
}

.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-transparent);
}

.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);
  }
}

#select {
  color: var(--blue-transparent);
}

.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 var(--blue-dark);
}

.footer--copyright {
  height: 30px;

  & p {
    margin-top: 15px;
    color: var(--blue-dark);
  }
}

/**** RESPONSIVE ****/
@media screen and (width: 800px) {
  /******* *NAVIGATION* *******/
  .menu {
    height: 70px;
    width: 90%;
    margin-left: 20px;
  }

  .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-image: linear-gradient(#ffffffa4, #ffffffa2);
    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;
  }

  /******* *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 (width: 600px) {
  /******* *NAVIGATION* *******/
  .menu {
    height: 70px;
    width: 90%;
    margin-left: 30px;
  }

  .logo {
    margin-left: 20px;
  }

  .menu__hamburguer {
    display: flex;
    background-color: var(--blue-light);
    border-radius: 10px;
    margin-right: 20px;
  }

  .menu__links {
    position: fixed;
    max-width: 400px;
    width: 100%;
    top: 80px;
    bottom: 0;
    right: -50px;
    background-image: linear-gradient(#ffffffa4, #ffffffa2);
    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;
  }

  /**** CONTENT *****/
  .title__politica {
    margin-top: 40px;
  }

  /***** BOTON DE REGRESO *****/
  .btc__politicas {
    color: var(--blue-light);
    background-color: var(--blue-dark);
    padding: 10px;
    font-family: var(--title);
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 40px 0px 20px 20px;
    transition: 0.3s;
  }

  /******* *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 (width: 384px) {
  /***** BOTON DE REGRESO *****/
  .btc__politicas {
    color: var(--blue-light);
    background-color: var(--blue-dark);
    padding: 10px;
    font-family: var(--title);
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 40px 0px 20px 20px;
    transition: 0.3s;
  }

  /******* *NAVIGATION* *******/
  .menu {
    height: 60px;
    width: 85%;
    top: 20px;
    margin-left: 30px;
  }

  .logo {
    margin-left: 10px;
    width: 60px;
  }

  .menu__hamburguer {
    display: flex;
    background-color: var(--blue-light);
    border-radius: 10px;
    margin-right: 10px;

    height: 90%;
    width: 50px;
    padding: 0 10px;
  }

  .menu__links {
    position: fixed;
    max-width: 400px;
    width: 100%;
    top: 80px;
    bottom: 0;
    right: -50px;
    background-image: linear-gradient(#ffffffa4, #ffffffa2);
    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;
  }

  /**** CONTENT *****/
  .title__politica {
    margin-top: 40px;
    font-size: 1.8rem;
  }

  .paragraph__politica {
    margin-top: -20px;
    font-size: .9rem;
  }

  /******* *FOOTER* *******/
  .footer__container {
    flex-direction: column;
  }

  .partFooter {
    width: 300px;
    justify-content: center;
  }

  .partFooter h4 {
    font-size: 1.3;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .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 (width: 400px) {
  /***** BOTON DE REGRESO *****/
  .btc__politicas {
    color: var(--blue-light);
    background-color: var(--blue-dark);
    padding: 10px;
    font-family: var(--title);
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 40px 0px 20px 20px;
    transition: 0.3s;
  }

  /******* *NAVIGATION* *******/
  .menu {
    height: 60px;
    top: 20px;
    margin-left: 25px;
  }

  .logo {
    margin-left: 20px;
    width: 60px;
  }

  .menu__hamburguer {
    display: flex;
    background-color: var(--blue-light);
    border-radius: 10px;
    margin-right: 20px;
  }

  .menu__links {
    position: fixed;
    max-width: 400px;
    width: 100%;
    top: 80px;
    bottom: 0;
    right: -50px;
    background-image: linear-gradient(#ffffffa4, #ffffffa2);
    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;
  }

  /**** CONTENT *****/
  .title__politica {
    margin-top: 40px;
    font-size: 1.8rem;
  }

  .paragraph__politica {
    margin-top: -20px;
    font-size: .9rem;
  }

  /******* *FOOTER* *******/
  .footer__container {
    flex-direction: column;
  }

  .partFooter {
    width: 300px;
    justify-content: center;
  }

  .partFooter h4 {
    font-size: 1.3;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .partFooter a {
    font-size: 0.9em;
    margin-left: 20px;
  }

  .social__media {
    margin-left: 10px;
  }

  .social__media a img {
    width: 50px;
    margin: 10px;
  }
}

