* {
    margin: 0;
    padding: 1px 1px 1px 1px;
    box-sizing: border-box;
}
a:hover{
    color: white;
}
.container {
    position: relative;
    top: 100px;
  }
  
  .container > div {
    width: 100%;
    height: 100%;
    margin: 10px;
    padding: 20px;
    text-align:justify;
    align-items: center;
    line-height: 75px;
    font-size: 30px;
  }
    .banner {
        display: flex;
        position: inherit;
        width: 100%;
        /* height: 200px; */
        align-items: center;
    }
    .banner h3 {
        align-items: center;
        justify-content: center;
    }
    .banner > h2 , h3{
        
        position: relative;
        color: white; 
        border: 1px white;
        font-weight: 900; 
        font-size: 100px;
        /* word-break:break-all;
    margin: 0 0 1em 1em; */
        
    }
    .banner >  p {
        position: relative;
        color: white; 
        border: 1px white;
        font-weight: 900; 
        font-size: 15px;
        line-height: normal;
        /* word-break:break-all;
    margin: 0 0 1em 1em; */
        
    }
    h2 > span{
        position: relative;
        color: white; 
        border: 1px white;
        font-weight: 900; 
        font-size: 100px;
        color:#1ea539;
    }
    h3 > span{
        position: relative;
        color: white; 
        border: 1px white;
        font-weight: 900; 
        font-size: 80px;
        color:#1ea539;

    }
    h4 > span{
      position: relative;
      color: white; 
      border: 1px white;
      font-weight: 900; 
      font-size: 80px;
      color:#1ea539;
    }
    
    .banner > h3 {
        font-size: 80px;
    }
    

.btns {
	box-shadow: 0px 10px 14px -7px #276873;
	background-color:#1ea539;
	border-radius:8px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:20px;
	font-weight:bold;
	padding:13px 32px;
	text-decoration:none;
	text-shadow:0px 1px 0px #3d768a;
}
.btns:hover {
	background-color:#8a8a8a;
}
.btns:active {
	position:relative;
	top:1px;
}

/****   Start etiquetas   ****/

h4{
    color: #ffffff;
    font-weight: 600; 
    font-size: 49px;
    position: relative;
}
h4::after{
    content: "";
    display: inline-block;
    background: #1EA538;
    width:  100%;
    margin-top: 3px;
    height: 3px;
    clip-path: var(--clippy);
    transition: clip-path .3s;
    bottom: 0;
    left: 0;
    position: absolute;

}
.row .col-lg-12 h4 {
  color: #ffffff;
    font-weight: 900;
    font-size: 49px;
    position: relative;
    display: inline-block; 
    margin-bottom: 0;
  }
.row .col-lg-12 h4::after {
  content: "";
  display: block; 
  background: #1EA538;
  height: 3px;
  width: auto; 
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: clip-path .3s;
  clip-path: var(--clippy);
}

.text-end h4 {
    text-align: end;
}

.text-start h4 {
    text-align: start;
}

.align-self-end h4::after {
    left: 0;
    right: auto;
}

.align-self-start h4::after {
    left: auto;
    right: 0;
}

/****   End etiquetas   ****/


/****   Start contact form   ****/


/****   End contact form   ****/



/** Start Cards  **/
.contenedor{
    width: 100%;
    display: flex;
    /* flex-direction: row; */
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    
}


/** End Cards  **/


.l-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    width: 100%;
    padding: 30px;
  }
  @media screen and (max-width: 760px) {
    .l-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .lg-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    width: 100%;
    padding: 30px;
  }
  @media screen and (max-width: 760px) {
    .lg-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .b-game-card {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 150%;
    perspective: 1000px;
    margin-bottom: -286px;

  }
  .b-game-card__cover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    overflow: hidden;
    
    background-size: cover;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    transform-origin: top center;
    will-change: transform;
    transform: skewX(0.001deg);
    transition: transform 0.35s ease-in-out;
  }
  .b-game-card__cover::after {
    display: block;
    content: "";
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    transform: translateY(-20%);
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.18, 0.9, 0.58, 1);
  }
  .b-game-card:hover .b-game-card__cover {
    transform: scale(1.1);
  }
  .b-game-card:hover .b-game-card__cover::after {
    transform: translateY(0%);
  }
  .b-game-card::before {
    display: block;
    content: "";
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 12px 12px rgba(0, 0, 0, 0.4);
    will-change: opacity;
    transform-origin: top center;
    transform: skewX(0.001deg);
    transition: transform 0.35s ease-in-out, opacity 10.5s ease-in-out;
  }
  .b-game-card:hover::before {
    opacity: 0.6;
    transform: scale(1.1);
  }
  
  .image-zoom-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-zoom-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    text-align: center;
}

#zoomed-image {
    max-width: 1000%;
    max-height: 1000%;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  color: #FFF;
  border: 2px solid rgb(30, 165, 56);
  border-radius: 500px;
  display: inline-block;
  font-size: 20px;
  font-family:Arial;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #1EA538;
  -webkit-transition: ease-out 1.0s;
  -moz-transition: ease-out 1.0s;
  transition: ease-out 1.0s;
  }
  .slide_left:hover {
    box-shadow: inset 0 0 0 56px #1EA538;
  }
  #outer {
    width: 150px;
    height: auto;
    margin: auto  auto;
    text-align: center;
  }

.b-game-card__cover.zoomed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 20px; 
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.7);
}

.b-game-card__cover.zoomed img {
  max-width: 100%;
  max-height: 100%;
}

.zoom-effect {
  transition: transform 0.3s ease-in-out;
}

.zoom-effect:hover {
  transform: scale(1.1);
}

  
  @media (max-width: 700px) {
    .banner h2{
        font-size: 3rem !important;
    }
    h3 > span{
        font-size: 3rem !important;
    }
    h3{
        font-size: 2.5rem !important;
    }
     h3{
        font-size: 25px !important;
    }
    p{
        font-size: 10px !important;
    }
        .b-game-card {

        margin-bottom: -119px;
    }

  }