@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
.section-1 div h2, .section-2 article .section-2__title, .suscripcion h2, .preguntas div h2, .download h1 {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 3px 4px 2px rgba(0, 0, 0, 0.2); }

.plan-basic {
  background: linear-gradient(45deg, #275ae5, #1d12b3);
  padding: 50px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%; }

.plan-pro {
  background: linear-gradient(45deg, #e52d27, #b31217);
  padding: 50px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%; }

.plan-ultra {
  background: linear-gradient(45deg, #d527e5, #a50770);
  padding: 50px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "Roboto", sans-serif;
  background-color: #dfd9d9;
  font-family: "Roboto", sans-serif; }

/* HEADER */
/* Navbar */
nav div a img {
  height: auto;
  width: 50%; }

/* Navbar */
/* HEADER */
.section-1 .parallax-1 {
  background-image: url(../multimedia/img/index-background1.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 30rem;
  max-width: 100vw;
  position: relative;
  overflow: hidden; }
  .section-1 .parallax-1 .index-Texto-1 {
    position: absolute;
    text-align: center;
    top: 40%; }
    .section-1 .parallax-1 .index-Texto-1 .index-Title-1 {
      font-size: 3rem;
      text-shadow: 3px 4px 2px rgba(0, 0, 0, 0.44);
      color: white;
      font-weight: 900; }

.section-2 .parallax-2 {
  background-image: url(../multimedia/img/index-background1.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 30rem;
  max-width: 100vw;
  position: relative;
  overflow: hidden; }
  .section-2 .parallax-2 .index-Texto-2 {
    position: absolute;
    text-align: center;
    top: 40%; }
    .section-2 .parallax-2 .index-Texto-2 .index-Title-2 {
      font-size: 3rem;
      text-shadow: 3px 4px 2px rgba(0, 0, 0, 0.44);
      color: white;
      font-weight: 900; }

.section-1 div .animacion {
  overflow: hidden; }
  .section-1 div .animacion .animacion-background-1 {
    height: 160px;
    width: 100vw;
    margin-top: 10px;
    margin-bottom: 10px;
    background-image: url(../multimedia/img/animacion-background-1.png);
    animation: animarBackground-1 16s infinite; }
  .section-1 div .animacion .animacion-background-2 {
    height: 160px;
    width: 100vw;
    margin-bottom: 10px;
    background-image: url(../multimedia/img/animacion-background-2.png);
    animation: animarBackground-2 18s infinite; }
  .section-1 div .animacion .animacion-background-3 {
    height: 160px;
    width: 100vw;
    margin-bottom: 10px;
    background-image: url(../multimedia/img/animacion-background-3.png);
    animation: animarBackground-3 20s infinite; }

@keyframes animarBackground-1 {
  0% {
    background-position: 0px; }
  100% {
    background-position: -1860px; } }

@keyframes animarBackground-2 {
  0% {
    background-position: 0px; }
  100% {
    background-position: -1860px; } }

@keyframes animarBackground-3 {
  0% {
    background-position: 0px; }
  100% {
    background-position: -1860px; } }

.suscripcion {
  padding: 2px 0; }
  .suscripcion h2 {
    font-size: 2rem; }
  .suscripcion div div div .sus-table .price-table {
    text-align: center;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2), 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 20px; }
    .suscripcion div div div .sus-table .price-table .price-head h4 {
      text-transform: uppercase;
      margin: 0;
      padding: 0;
      color: #fff;
      font-weight: 700; }
    .suscripcion div div div .sus-table .price-table .price-head h2 {
      margin: 0;
      padding: 20px 0 0;
      font-size: 2rem;
      color: #fff; }
    .suscripcion div div div .sus-table .price-table .price-head .price-content {
      position: relative; }
    .suscripcion div div div .sus-table .price-table .price-head .price-button {
      padding: 0 0 30px; }
      .suscripcion div div div .sus-table .price-table .price-head .price-button a {
        padding: 10px 40px;
        background: linear-gradient(45deg, #e52d27, #b31217);
        color: #fff;
        border-radius: 25px;
        font-size: 18px;
        text-transform: uppercase;
        text-decoration: none; }
  .suscripcion div div div .sus-table:hover {
    transform: scale(1.03); }

.price-content ul {
  position: relative;
  margin: 0;
  padding: 20px 0; }
  .price-content ul li {
    list-style: none;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 0;
    color: #777;
    cursor: pointer;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    transition: .5s; }
  .price-content ul li:hover {
    border-left: 15px solid #9e02c5;
    border-right: 15px solid #9e02c5; }

.form-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 20px 100px; }
  .form-container .form-box {
    max-width: 850px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19); }
    .form-container .form-box .left {
      height: 100%;
      background: url(../multimedia/img/backgroundJuegosFlotando.jpg) no-repeat center;
      background-size: cover; }
    .form-container .form-box .right {
      padding: 25px 40px; }
      .form-container .form-box .right .right__title {
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 10px; }
      .form-container .form-box .right .right__title:after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        height: 4px;
        width: 50px;
        border-radius: 2px;
        background-color: #DB202C; }
      .form-container .form-box .right .right__form .field {
        width: 100%;
        padding: 0.5rem 1rem;
        outline: none;
        border: 2px solid rgba(0, 0, 0, 0);
        background-color: rgba(230, 230, 230, 0.6);
        font-size: 1.1rem;
        margin-bottom: 22px;
        transition: .3s; }
      .form-container .form-box .right .right__form .field:focus {
        background-color: #fff;
        border: 2px solid rgba(250, 30, 30, 0.47); }
      .form-container .form-box .right .right__form .field:hover {
        background-color: rgba(0, 0, 0, 0.1); }
      .form-container .form-box .right .right__form .area {
        min-height: 150px; }
      .form-container .form-box .right .right__form .form-btn {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
        background-color: #DB202C;
        cursor: pointer;
        outline: none;
        border: none;
        color: #fff;
        transition: .3s; }
      .form-container .form-box .right .right__form .form-btn:hover {
        background-color: #9c240e; }

.form-container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: url(../multimedia/img/backgroundJuegosFlotando.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
  filter: blur(5px); }

@media (max-width: 768px) {
  .form-container{
    padding-left: 0;
    padding-right: 0;
  }
  .form-container .form-box {
    grid-template-columns: 1fr; }
    .form-container .form-box .left {
      height: 200px; } }

.footer-section {
  background: #151414;
  position: relative; }
  .footer-section div .footer-content div div .footer-widget .footer-logo {
    margin-bottom: 30px; }
    .footer-section div .footer-content div div .footer-widget .footer-logo a img {
      max-width: 200px; }
  .footer-section div .footer-content div div .footer-widget .footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px; }
  .footer-section div .footer-content div div .footer-widget .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px; }
  .footer-section div .footer-content div div .footer-widget .footer-social-icon a {
    color: #fff;
    font-size: 10px;
    margin-right: 15px; }
  .footer-section div .footer-content div div .footer-widget .footer-social-icon .iconify {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%; }
  .footer-section div .footer-content div div .footer-widget .footer-social-icon .facebook-bg {
    background: #3B5998; }
  .footer-section div .footer-content div div .footer-widget .footer-social-icon .twitter-bg {
    background: #55ACEE; }
  .footer-section div .footer-content div div .footer-widget .footer-social-icon .instagram-bg {
    background: #e7a10a; }
  .footer-section div .footer-content div div .footer-widget .footer-social-icon .google-bg {
    background: #DD4B39; }
  .footer-section div .footer-content div div div .footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative; }

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #DB202C; }

.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px; }

.footer-widget ul li a:hover {
  color: #DB202C; }

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize; }

.subscribe-form {
  position: relative;
  overflow: hidden; }

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff; }

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #DB202C;
  padding: 13px 20px;
  border: 1px solid #DB202C;
  top: 0; }

.subscribe-form button .iconify {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg); }

.copyright-area {
  background: #202020;
  padding: 25px 0; }

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787; }

.copyright-text p a {
  color: #DB202C; }

.btn {
  background: #171c20;
  border: 1px solid #f02a089c;
  color: whitesmoke;
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
  border-radius: 30px;
  padding: 7px 40px;
  display: inline-block;
  margin-top: 20px; }

.btn:hover {
  background: #f31404;
  border: 1px solid #f02a089c;
  color: whitesmoke; }

.price-button {
  padding: 0 0 30px; }
  .price-button a {
    padding: 10px 40px;
    background: linear-gradient(45deg, #e52d27, #b31217);
    color: #fff;
    border-radius: 25px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none; }

/* INDEX - SECTION */
.section-1 div {
  padding-top: 5px;
  padding-bottom: 5px; }
  .section-1 div h2 {
    text-align: center;
    padding-top: 3px;
    padding-bottom: 3px; }
  .section-1 div p {
    text-align: center;
    font-size: 1.3rem; }

.section-2 article .section-2__description {
  font-size: 20px; }

.section-2 div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-end; }
  .section-2 div div {
    display: flex;
    flex-direction: column;
    align-items: center; }
    .section-2 div div .section-2__icon {
      font-size: 70px; }
    .section-2 div div .section-2__name {
      font-size: 30px; }

.section-2__disp:hover {
  color: #DB202C;
  transform: scale(1.03); }

/* PAGE - JUEGOS */
/* section - catalogo */
.colorBasic {
  background-color: #1a45cf;
  color: white; }

.colorPro {
  background-color: #c92121;
  color: white; }

.colorUltra {
  background-color: #b41fa0;
  color: white; }

.download {
  background-color: #FFFFFF; }

@media (max-width: 768px) {
  .download {
    display: flex;
    flex-direction: column; }
    .download .download__android {
      margin: 10px; }
    .download .download__all {
      margin: 10px; } }

@media (max-width: 576px) {
  .download {
    display: flex;
    flex-direction: column; }
    .download .download__android {
      margin: 10px; }
    .download .download__all {
      margin: 10px; } }
