@charset "UTF-8";
/* CSS Document */

@import url("reset.css");

/* Fonts */

@font-face {
  font-family: 'Avenir Book';
    src: url('../fonts/Avenir-BookOblique.woff2') format('woff2'),
        url('../fonts/Avenir-BookOblique.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Book';
    src: url('../fonts/Avenir-Book.woff2') format('woff2'),
        url('../fonts/Avenir-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir';
    src: url('../Avenir-Heavy.eot');
    src: url('../Avenir-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../Avenir-Heavy.woff2') format('woff2'),
        url('../Avenir-Heavy.woff') format('woff'),
        url('../Avenir-Heavy.ttf') format('truetype'),
        url('../Avenir-Heavy.svg#Avenir-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir';
    src: url('../Avenir-Medium.eot');
    src: url('../Avenir-Medium.eot?#iefix') format('embedded-opentype'),
        url('../Avenir-Medium.woff2') format('woff2'),
        url('../Avenir-Medium.woff') format('woff'),
        url('../Avenir-Medium.ttf') format('truetype'),
        url('../Avenir-Medium.svg#Avenir-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

*:focus {outline:none !important}

html, body {
  font-size: 62.5%;  
  overflow-x: hidden;
  width: 100vw;
  font-family: 'Avenir Book', Helvetica, sans-derif;
  font-weight: normal; 
  font-style: normal;
  background-color: #fff;
}
strong {
  text-decoration: underline;
}
/*Menu starts*/
#menuArea
{
  z-index:10000;
  position: fixed;
  right: 2vh;
}
.menuInput {
  display: none;
}

.open {
  background-color: #fff;
  width: 40px;
  height: 1px;
  display: block;
  cursor: pointer;
  position: relative;
  top: 8px;
}

.open:before {
  content: "";
  background-color: #fff;
  width: 40px;
  height: 1px;
  display: block;
  border-radius: 2px;
  position: relative;
  top: -23px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.open:after {
  content: "";
  background-color: #fff;
  width: 40px;
  height: 1px;
  display: block;
  border-radius: 2px;
  position: relative;
  top: 23px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
.open2 {
  background-color: red !important;
}
.open2:before {
  background-color: red !important
}

.open2:after {
  background-color: red !important
}
.menuOpen {
  width: auto;
  height: 47px;
  display: block;
  padding: 15px;
  cursor: pointer;
  float: right;
  margin-top: 3vh;
}

.menuOpen:hover .open:before {
  top: -11px;
}

.menuOpen:hover .open:after {
  top: 10px;
}

.menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background:#fff;
}

.menu label {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-size: 100%;
  cursor: pointer;
}

.menu .menuContent {
  position: relative;
  top: 0;
}
.menuEffects {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.menuEffects ul {
  transform: translateY(0%);
  transition: all 0.5s;
}

#menuToggle:checked ~ .menuEffects {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

#menuToggle:checked ~ .menuEffects ul {
  opacity: 1;
}

#menuToggle:checked ~ .menuOpen .open {
  background-color: transparent;
}

#menuToggle:checked ~ .menuOpen .open:before {
  content: "";
  background-color: transparent;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:checked ~ .menuOpen .open:after {
  content: "";
  background-color: transparent;
  transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:not(:checked) ~ .menuEffects ul {
  transform: translateY(-30%);
}
/*Menu ends*/
/*Home*/
.mainContainer {
    width: 100vw;
    height: 100vh;
}
.homeBK {
    background-image: url("../images/homeBK.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.mainContainer .logo{
    width: 51vh;
    float: left;
    position: absolute;
    bottom:3.5vh;
    left:5vh;
}
.mainContainer .left{
    width: calc(100vw - 100vh);
    height: 100vh;
    float: left;
}
.mainContainer .right{
    width: 100vh;
    height: 100vh;
    float: right;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.mainContainer .third{
    width: calc(100vw / 3);
    height: 100vh;
    float: left;
}
.mainContainer .thirdFlex{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-content: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.mainContainer .third .logo1{
    width: 6vw;
    float: left;
    position: absolute;
    top:3.7vw;
    left:3vw;
    display: none;
}
.mainContainer .third .logo2{
    width: 30vw;
    float: left;
    position: absolute;
    top:49.3vh;
}
.mainContainer .third .buttons{
    width: 9.6vw;
    float: left;
    margin-left:4.1vw;
    -webkit-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    align-self: auto;
}
.mainContainer .third .buttonA{
   cursor: pointer;
    width: 100%;
    margin-bottom: 3vh;
    top:4.6vh;
    text-align: center;
    line-height: 0;
    float: left;
}
.mainContainer .third .buttonA:hover{
    opacity: 0.7;
}
.mainContainer .third .buttonA a{
    text-decoration: none;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.mainContainer .third .buttonA .balloon{
    width: 2.7vw;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    float: left;
}
.mainContainer .third .buttonA .pencil{
    width: 1.15vw;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    float: left;
}
.mainContainer .third .buttonA .heart{
    width: 2.7vw;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    float: left;
}
.mainContainer .third .buttonA .games{
    width: 2.7vw;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    float: left;
}
.mainContainer .third .buttonA .lips{
    width: 3.6vw;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    float: left;
}
.mainContainer .third .buttonA .rocket{
    width: 2.4vw;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    float: left;
}
.mainContainer .third .buttonA .text{
    width: 100%;
    margin-top: 0.8vh;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: italic;
    font-size: 2.2rem;
    line-height: 1.34em;
    color: #80cbde;
    float: left;
}
.mainContainer .twothirds  {
    width: calc(100vw * 0.66);
    height: 100vh;
    padding: 0 5vw;
    float: left;
}
.mainContainer .twothirds .clients {
    width: 100%;
    height: 100vh;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.mainContainer .twothirds .clients .item {
  -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 25%;
    -ms-flex: 0  25%;
    flex: 0 25%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    text-align: center;
    padding: 5vh 0;  
}
.mainContainer .square {
    width: 19.25vh;
    height: 19.25vh;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    float:left;
}
.mainContainer .squareH{
  cursor: pointer;
}
.mainContainer .squareH:hover{
    opacity: 0.7;
}
.mainContainer .red1{
    background-color: #e94f50;
}
.mainContainer .red2{
    background-color: #e11824;
}
.mainContainer .blue{
    background-color: #80cbde;
}
.mainContainer .yellow{
    background-color: #f4be00;
}
.mainContainer .squareInside{
    width: 19.25vh;
    height: 19.25vh;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
.mainContainer .squareElement{
    width: 85%;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: italic;
    font-size: 2.6rem;
    line-height: 1.34em;
    text-align: center;
    color:#fff;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .mainContainer .squareElement a, .mainContainer .squareElement a:link, .mainContainer .squareElement a:hover{
    color:#fff;
    text-decoration: none;
  }
  .mainContainer .squareElement2{
    width: 85%;
    text-align: center;
    line-height: 0;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .mainContainer .squareElement2 .ballon{
    height: 12vh;
  }
  .mainContainer .squareElement2 .heart{
    height: 10vh;
  }
  .mainContainer .squareElement2 .ball{
    height: 9vh;
  }
  .mainContainer .squareElement2 .lips{
    height: 6vh;
  }
  .content {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  .content .left{
    width: 50vw;
    height: 100vh;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    float: left;
  }
  .content .left .heading{
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: italic;
    font-size: 5rem;
    line-height: 1.08em;
    text-align: center;
    color:#fff;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .content .left .heading a, .content .left .heading a:link,  .content .left .heading a:hover,  .content .left .heading a:focus{
    display: block;
    border: 0;
    outline: none;
  }
  .content .right{
    width: 50vw;
    height: 100vh;
    float: right;
  }
  .content .next{
    position: absolute;
    top:4vh;
    left: 51vw;
    font-family: 'Avenir Book';
    font-weight: normal;
	font-style: italic;
    font-size: 2.5rem;
    z-index: 1000;
  }
  .content .next a, .content .next a:link{
    color:#fff;
    text-decoration: underline;
  }
  .content .next a:hover{
    text-decoration: underline;
    opacity: 70%;
  }
  .content .back{
    position: absolute;
    top:4vh;
    right: 51vw;
    font-family: 'Avenir Book';
    font-weight: normal;
	font-style: italic;
    font-size: 2.5rem;
    z-index: 1000;
  }
  .content .back a, .content .back a:link{
    color:#fff;
    text-decoration: underline;
  }
  .content .back a:hover{
    text-decoration: underline;
    opacity: 70%;
  }
  .content .logo{
    width: 47vh;
    float: left;
    position: absolute;
    bottom:3vh;
    left:5vh;
  }
  .content .city{
    font-style: italic;
    color:#e11824;
  }
  .rotate {
    display: none;
  }
  .slideClients {
    bottom:3vh !important;
  }
  .slideClients li {
    list-style-type: none !important; 
    padding: 0 !important; 
    margin: 0 0 0.7vh !important;
  }
  .slideClients a,  .slideClients a:link {
    font-style: italic;
    color:#fff !important;
  }
 .slideClients a:hover {
    opacity: 0.7 !important; 
  }
  .designLeft {
    background-color:#80cbde !important;
  }
  .designRight {
    background-color:#f4be00 !important;
  }
  .teamLeft {
    background-color:#e11824 !important;
  }
  .teamRight {
    background-color:#80cbde !important;
  }
  .constLeft {
    background-color:#f4be00 !important;
  }
  .constRight {
    background-color:#df1f27 !important;
  }
  .moonLeft {
    background-color:#f4be00 !important;
  }
  .moonRight {
    background-color:#df1f27 !important;
  }
  .pagiGames{
    opacity: 100% !important;
  }
  .pagiGames li, .pagiGames li:before {
    border: 2px solid #f4be00 !important;
    background-color: #f4be00 !important;
    opacity: 100%;
  }
  .pagiCore{
    opacity: 100% !important;
  }
  .pagiCore li, .pagiCore li:before {
    border: 2px solid #e11824 !important;
    background-color: #e11824 !important;
    opacity: 100%;
  }
  .pagiDesign{
    opacity: 100% !important;
  }
  .pagiDesign li, .pagiDesign li:before {
    border: 2px solid #80cbde !important;
    background-color: #80cbde !important;
    opacity: 100%;
  }
  .pagiProject{
    opacity: 100% !important;
  }
  .pagiProject li, .pagiProject li:before {
    border: 2px solid #e94f50 !important;
    background-color: #e94f50 !important;
    opacity: 100%;
  }
  .btnLB {
    width: 100%;
    height: 9vh;
    background-image: url("../images/view.svg");;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-top: 4vh;
  }
  .btnLB:hover {
    opacity: 70%;
  }

/*Games*/  
.gamesMainContainer {
    width: 100vw;
    height: 100vh;
    background-color: #e1f1f7;
}
.gamesMainContainer .col50{
    width: 50%;
    height: 100vh;
    float: left;
}
.gamesMainContainer .col80{
    width: 88vw;
    height: 60vh;
    margin: 0 6vw;
    padding-right: 1vw;
    top: 15vh;
    overflow: auto;
    position: relative;
}
.gamesMainContainer .logo{
width: 47vh;
float: left;
position: absolute;
bottom: 7vh;
left: 9vh;
}
.gamesMainContainer .text50{
  width: 80vh;
  float: left;
  position: absolute;
  bottom: 9vh;
  left: 49vw;
}

.gamesMainContainer p{
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: normal;
  font-size: 2.7rem;
  line-height: 1.5em;
  color:#80cbde;
}
.gamesMainContainer span{
  color:#e11824;
}
.gamesMainContainer p a, .gamesMainContainer p a:link{
  text-decoration: none;
  color:#80cbde;
}
.gamesMainContainer p a:hover{
  text-decoration: underline;
}
.gamesMainContainer .navBottom{
  width: 100vw;
  height: 12vh;
  position: fixed;
  bottom: 0;
  background-color: #FFF;

}
.gamesMainContainer .navBottom .btnBack{
  width: 9vw;
  position: absolute;
  bottom: 3.7vh;
  left:4vw;
}
.gamesMainContainer .navBottom .btnBack:hover{
  left:3.5vw;
}
.gamesMainContainer .navBottom .btnNext{
  width: 9vw;
  position: absolute;
  bottom: 3.7vh;
  right:4vw;
}
.gamesMainContainer .navBottom .btnNext:hover, .gamesMainContainer .navBottom .btnBack:hover{
  right:3.5vw;
}
.gamesMainContainer textarea {
    padding: 5px;
    margin-bottom: 10px;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 2.2rem;
    line-height: 1.25em;
    color: #000;
 }
 .gamesMainContainer button {
    background-color: #e11824;
    padding: 5px 10px;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1.25em;
    color: #fff;
    border: none;
    cursor: pointer;
    clear: both;
}
.gamesMainContainer #successMessage {
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 2.2rem;
    line-height: 1.25em;
    color: #e11824;
}
/*  animation: animation 0.3s 1 linear;*/
}
@keyframes animation {
  50% {
  opacity: 0.3;
  }
  100% {
  opacity: 1;
  }
}
.gamesMainContainer .col80 p{
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: normal;
  font-size: 2.2rem;
  line-height: 1.25em;
  color:#4d3a9b;
}
.gamesMainContainer .col80 span{
  color:#f4be00;
  font-style: italic;
}
.gamesMainContainer .col80 h3{
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: italic;
  font-size: 2.7rem;
  line-height: 1.2em;
  color:#e11824;
  text-transform: uppercase;
}
.gamesMainContainer .col80 h4{
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: italic;
  font-size: 2.2rem;
  line-height: 0.2em;
  color:#e11824;
}
.gamesMainContainer .col80 h5{
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.3em;
  color:#e11824;
}
.gamesMainContainer .col80 .linkfeelings{
  text-decoration: underline;
  text-transform: uppercase;
}
.gamesMainContainer .col80 .symbols{
  width:100%;
  margin-top:40px;
}
.gamesMainContainer .col80 .symbols img{
  width:30px;
  height:30px;
}
.gamesMainContainer .col80 .symbols2{
  width:100%;
  margin-top:40px;
  float: left;
}
.gamesMainContainer .col80 .symbols2 img{
    display: block;
  width:30px;
  height:30px;
  margin-right: 5px;
  float: left;
}
.gamesMainContainer .col80 .symbols3{
  width:100%;
  margin:10px 0 10px 0;
}
.gamesMainContainer .col80 .symbols3 img{
  height:60px;
}
.gamesMainContainer .col80 .symbols2 span{
    display: block;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 2.2rem;
    line-height: 1.25em;
    color: #4d3a9b;
  padding-top: 3px;
  float: left;
}
.gamesMainContainer .col80 .symbols2 a, .gamesMainContainer .col80 .symbols2 a:link
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 2.2rem;
    line-height: 1.25em;
    color: #4d3a9b;
    cursor: pointer;
    float: left;
}
.gamesMainContainer .col80 .symbols2 a:hover{
    text-decoration: underline;
}
.gamesMainContainer .col80 .symbols2  img:hover{
    opacity: 0.6;
    cursor: pointer;
}
.gamesMainContainer .col80 .col100{
  width:100%;
  display: flex;
}
.gamesMainContainer .col80 .cols20{
  width:20%;
  margin-bottom:20px; 
  float:left;
}
.gamesMainContainer .col80 .cols20 label{
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.25em;
  color: #4d3a9b;
}
.gamesMainContainer .plist{
  font-size: 2.7rem !important;
  line-height: 1.5em !important;
  color:#80cbde !important;
}
.gamesMainContainer .plist span{
  color:#e11824 !important;
}
.gamesMainContainer .plist a, .gamesMainContainer .plist a:link{
  text-decoration: none;
  color:#80cbde;
}
.gamesMainContainer .plist a:hover{
  text-decoration: underline;
}
.loginRight .cont{
    position: absolute;
    bottom: 60vh;
    left: 55vw;
}
.loginRight .cont h3{
    margin-bottom: 15px;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: italic;
    font-size: 2.7rem;
    line-height: 1.2em;
    color: #e11824;
}
.loginRight .cont label{
    display: block;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 2.2rem;
    line-height: 1.25em;
    color: #80cbde;
}
.loginRight .cont input{
    display: block;
    height: 25px;
    margin-bottom: 15px;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 1.8rem;
    color: #a6a6a6;
    border: none;
    padding: 0 5px;
}
.loginRight .cont button{
    background-color:#e11824 ;
    padding: 5px 10px;;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1.25em;
    color: #fff;
    border: none;
    cursor: pointer;
}
.userTop{
    position: absolute;
    top: 2vh;
    left: 2vw;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 2.2rem;
    color: #e11824;
}
.userTopRight{
    position: absolute;
    top: 2vh;
    right: 9vw;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 2.2rem;
    color: #e11824;
}
.userTopRight span {
    font-size:4rem;
    text-decoration: none !important;
}   
.userTop a, .userTopRight a{
    color: #e11824;
    cursor: pointer;
    text-decoration: underline;
}
.lang{
    position: absolute;
    top: 2vh;
    left: 2vw;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 2.2rem;
    color: #FFF;
}
.lang a, .lang a:link{
    color: #FFF;
    text-decoration: none;
}
.lang a:hover, .lang .active{
    color: #FFF;
    text-decoration: underline !important;
}
.gamesSelection  {
    width: 70vh;
    float: left;
    position: absolute;
    bottom: 3vh;
    left: 57vw;
    font-family: 'Avenir Book';
    font-weight: normal;
    font-style: normal;
    font-size: 2.7rem;
    line-height: 1.5em;
}
.gamesSelection h2 {
    text-transform: uppercase;
    color: #e11824;
}
.gamesSelection ul {
    margin-top: 10px;
    color: #80cbde;
}
.gamesSelection ul a, .gamesSelection ul a:link{
    color: #80cbde;
    text-decoration: none;
}
.gamesSelection ul a:hover{
    text-decoration: underline;
}

#records {
    width: 60%;
    padding:40px;
}
#records img{
    display: block;
    width:300px;
    margin: 20px 0 50px;
}
#records b{
    color:#e11824;
}
#records p{
    font-size: 1.4rem;
    line-height: 1em;
    margin-bottom: 5px;;
}
#records h2{
    font-size: 2rem;
    line-height: 1em;
    margin:20px 0 5px;
}
#records a, #records a:link{
    display: block;
    width: 100%;
    font-size: 1.6rem;
    line-height: 1em;
    margin-bottom: 5px;
    text-decoration: none;
    color:#e11824;
}
#records a:hover{
    font-size: 1.6rem;
    line-height: 1em;
    margin-bottom: 5px;
    text-decoration: underline;
    color:#e11824;
}
#records ol {
    margin-left:35px;
    list-style: decimal;
    font-size: 1.6rem;
    line-height: 1em;
    color: #e11824;
}
@media print {
    #records {
        width: 70%;
    }
    #records a, #records a:link, #records a:hover{
        display: none;
    }
    .lang{
        display: none;
    }
}
#dic {
    margin:40px;
}
#dic .letra{
    width: 100%;
}
#dic .letraIns{
    width: 100%;
    margin-bottom: 25px;
    color:#f4be00;
    font-family: 'Avenir';
    font-weight: 900;
    font-size: 2.7rem;
    text-transform: uppercase;
    text-decoration: underline; 
}
#dic .palabra{
    width: 100%;
    color:#f4be00;
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: uppercase; 
    margin-bottom: 5px;
}
#dic .clase{
    width: 100%;
    font-family: 'Avenir';
    color:#4d3a9b;
    font-size: 2.2rem;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 5px;
}
#dic .clase span{
    color:#f4be00;
}
#dic .definicion{
    width: 100%;
    color:#4d3a9b;
    font-size: 2.2rem;
    margin-bottom: 25px;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  /** {
    scrollbar-width: auto;
    scrollbar-color: #c12029 #f5be01;
  }*/

  /* Chrome, Edge, and Safari */
  /**::-webkit-scrollbar {
    width: 16px;
  }*/

  /**::-webkit-scrollbar-track {
    background: #f5be01;
  }*/

  /**::-webkit-scrollbar-thumb {
    background-color: #c12029;
    border-radius: 10px;
    border: 3px none #ffffff;
  }*/


/*Slider CSS starts*/
@font-face {
  src: url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300");
  font-family: 'Open Sans Condensed', sans-serif;
}
.slide__text-desc {
  font-family: 'Open Sans Condensed', sans-serif;
}

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



svg {
  display: block;
  overflow: visible;
}



.slider-container {
  position: relative;
  height: 100vh;
  user-select: none;
}

.slider-control {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  transition: opacity 0.3s;
  will-change: opacity;
  opacity: 0;
}
.slider-control.inactive:hover {
  cursor: auto;
}
.slider-control:not(.inactive):hover {
  opacity: 1;
  cursor: pointer;
}
.slider-control.left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, transparent 100%);
}
.slider-control.right {
  right: 0;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.18) 100%);
}

.slider-pagi {
  position: absolute;
  z-index: 3;
  left: 2.8vw;
  bottom: 4vh;
  /*transform: translateX(-50%);*/
  font-size: 0;
  list-style-type: none;
  opacity: 50%;
}
.slider-pagi__elem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 1rem;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  background-color: #fff;
}
.slider-pagi__elem:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  transform: translate(-50%, -50%) scale(0);
}
.slider-pagi__elem.active:before, .slider-pagi__elem:hover:before {
  transform: translate(-50%, -50%) scale(1.3);
}

.slider {
  z-index: 1;
  position: relative;
  height: 100%;
}
.slider.animating {
  transition: transform 0.5s;
  will-change: transform;
}
.slider.animating .slide__bg {
  transition: transform 0.5s;
  will-change: transform;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide.active .slide__overlay,
.slide.active .slide__text {
  opacity: 1;
  transform: translateX(0);
}
.slide__bg {
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  will-change: transform;
}
.slide:nth-child(1) {
  left: 0;
  top:0;
}
.slide:nth-child(1) .slide__bg {
  left: 0;
  top:0;
}
.slide:nth-child(1) .slide__overlay-path {
  fill: #e99c7e;
}
@media (max-width: 991px) {
  .slide:nth-child(1) .slide__text {
    
  }
}
.slide:nth-child(2) {
  left: 0;
  top:100%;
}
.slide:nth-child(2) .slide__bg {
  left: 0;
  top:-50%;
}
.slide:nth-child(2) .slide__overlay-path {
  fill: #303030;
}
@media (max-width: 991px) {
  .slide:nth-child(2) .slide__text {
    
  }
}
.slide:nth-child(3) {
  left: 0;
  top:200%;
}
.slide:nth-child(3) .slide__bg {
  left: 0;
  top:-100%;
}
.slide:nth-child(3) .slide__overlay-path {
  fill: #29424a;
}
@media (max-width: 991px) {
  .slide:nth-child(3) .slide__text {
   
  }
}
.slide:nth-child(4) {
  left: 0;
  top:300%;
}
.slide:nth-child(4) .slide__bg {
  left: 0;
  top:-150%;
}
.slide:nth-child(4) .slide__overlay-path {
  fill: #29424a;
}
@media (max-width: 991px) {
  .slide:nth-child(4) .slide__text {
   
  }
}
.slide:nth-child(5) {
  left: 0;
  top:400%;
}
.slide:nth-child(5) .slide__bg {
  left: 0;
  top:-200%;
}
.slide:nth-child(5) .slide__overlay-path {
  fill: #cbc6c3;
}
@media (max-width: 991px) {
  .slide:nth-child(5) .slide__text {
    
  }
}
.slide:nth-child(6) {
  left: 0;
  top:500%;
}
.slide:nth-child(6) .slide__bg {
  left: 0;
  top:-250%;
}
.slide:nth-child(6) .slide__overlay-path {
  fill: #cbc6c3;
}
@media (max-width: 991px) {
  .slide:nth-child(6) .slide__text {
    
  }
}
.slide:nth-child(7) {
  left: 0;
  top:600%;
}
.slide:nth-child(7) .slide__bg {
  left: 0;
  top:-300%;
}
.slide:nth-child(7) .slide__overlay-path {
  fill: #cbc6c3;
}
@media (max-width: 991px) {
  .slide:nth-child(7) .slide__text {
    
  }
}
.slide:nth-child(8) {
  left: 0;
  top:700%;
}
.slide:nth-child(8) .slide__bg {
  left: 0;
  top:-350%;
}
.slide:nth-child(8) .slide__overlay-path {
  fill: #cbc6c3;
}
@media (max-width: 991px) {
  .slide:nth-child(8) .slide__text {
    
  }
}
.slide__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  min-height: 810px;
  transition: transform 0.5s 0.5s, opacity 0.2s 0.5s;
  will-change: transform, opacity;
  transform: translate3d(-20%, 0, 0);
  opacity: 0;
}
@media (max-width: 991px) {
  .slide__overlay {
    display: none;
  }
}
.slide__overlay path {
  opacity: 0.8;
}
.slide__text {
  position: absolute;
  width: 42vw;
  bottom: 10vh;
  left: 3vw;
  color: #fff;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
  will-change: transform, opacity;
  transform: translateY(-50%);
  opacity: 0;
}
.slide__text h1{
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: italic;
  font-size: 2.7rem;
  line-height:  1.2em;
  text-decoration: underline;
  text-transform: uppercase;
  width: 100%;
}
.slide__text .notUnderline{
  text-decoration: none !important;
}
.slide__text h2{
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: normal;
  font-size: 1.7rem;
  line-height:  1.2em;
  text-decoration: underline;
  text-transform: uppercase;
  width: 100%;
}
.slide__text p{
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: normal;
  font-size: 2.7rem;
  line-height:  1.2em;
}
.slide__text ul{
  list-style-type: circle;
}
.slide__text ul li{
  list-style-type: disc;
  font-family: 'Avenir Book';
  font-weight: normal;
  font-style: normal;
  font-size: 2.7rem;
  line-height:  1.2em;
  margin-left: 3rem;
}
@media (max-width: 991px) {
  .slide__text {
    width: 85%;
    bottom: 12vh;
    left: 3vw;
    text-align: left;
    transform: translateY(50%);
    transition: transform 0.5s 0.5s, opacity 0.5s 0.5s;
    padding: 0 ;
  }
}
.slide__text-heading {
  font-family: 'din_blackregular' !important;
  line-height: 9.2rem;
  font-size: 9rem;
  margin-bottom: 2rem;
}
.slide__text-heading span{
  font-family: 'DIN Pro Cond' !important;
  line-height: 8.2rem;
}
@media (max-width: 991px) {
  .slide__text-heading {
    line-height: 10rem;
    font-size: 3.5rem;
  }
}
.slide__text-desc {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .slide__text-desc {
    display: none;
  }
}
.slide__text-link {
  z-index: 5;
  display: inline-block;
  position: relative;
  padding: 0.5rem;
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 2.3rem;
  perspective: 1000px;
}
@media (max-width: 991px) {
  .slide__text-link {
    margin: -2rem 0 8rem;
  }
}
.slide__text-link:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform-origin: 50% 100%;
  transform: rotateX(-85deg);
  transition: transform 0.3s;
  will-change: transform;
}
.slide__text-link:hover:before {
  transform: rotateX(0);
}
/*Slider CSS ends*/




  
/*Media Quieries*/
@media screen and (max-width: 1800px) {
  html {
    font-size: 60%;
  }
}
@media screen and (max-width: 1550px) {
  html {
    font-size: 50%;
  }
  .slider-pagi {
    right: -5.8vw;
  }
}
@media screen and (max-width: 1366px){
  html {
    font-size: 44%;
  }
}
@media screen and (height: 1024px) and (width: 1366px){
  html {
    font-size: 65% !important;
  }
  .mainContainer .logo {
    width: 25vh;
    position: absolute;
    bottom: 4vh;
    left: 4vh;
  }
}
@media screen and (max-width: 1112px) {
  html {
    font-size: 36%;
  }
}
@media screen and (max-width: 1112px) and (max-height: 834px){
  html {
    font-size: 54%;
  }
  .mainContainer .logo {
    width: 25vh;
    position: absolute;
    bottom: 4vh;
    left: 4vh;
  }
  .slider-pagi {
    right: -6.8vw;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 46%;
  }
}
@media screen and (max-width: 1112px) and (height: 834px){
  html {
    font-size: 47%;
  }
  .mainContainer .logo {
    width: 25vh;
    position: absolute;
    bottom: 4vh;
    left: 4vh;
  }
}
@media screen and (width: 1024px) and (height: 768px){
  html {
    font-size: 47%;
  }
  .mainContainer .logo {
    width: 25vh;
    position: absolute;
    bottom: 4vh;
    left: 4vh;
  }
  .slider-pagi {
    right: -8.8vw;
  }
}
@media screen and (max-width: 834px) {
  html {
    font-size: 27%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 25%;
  }
}
@media screen and (max-width: 736px) {
  html {
    font-size: 24%;
  }
  #menuArea {
    right: 10px;
  }
  .menuOpen {
    margin-top: 8vh;
  }
  .open, .open:before {
    width: 30px;
    top:-15px;
  }
  .open:after {
    width: 30px;
    top:15px;
  }
  .mainContainer .logo {
    width: 22vh;
    float: left;
    position: absolute;
    bottom: 4vh;
    left: 5vh;
  }
  .slider-pagi {
    right: -8vw;
  }
  .slider-pagi__elem {
    width: 1.5rem;
    height: 1.5rem;
  }
  .slider-pagi__elem:before {
    width: 2rem;
    height: 2rem;
  }
  .slide__text ul li {
    line-height: 1.2em;
  }
}
@media screen and (max-width: 667px) {
  html {
    font-size: 22%;
  }
  .slider-pagi {
    right: -9.5vw;
  }
}
@media screen and (max-width: 568px) {
  html {
    font-size: 18%;
  }
  .slider-pagi {
    right: -10vw;
  }
}
@media screen and (max-width: 414px) {
  html {
    font-size: 14%;
  }
}
@media screen and (max-height: 414px){
  .mainContainer .logo {
    width: 40vh;
float: left;
position: absolute;
bottom: 4vh;
left: 5vh;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 12%;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 10%;
  }
}
@media screen and (max-width: 2000px) and (orientation:portrait){ 
  .content, .mainContainer, .gamesMainContainer {
    display: none;
  }
  .rotate {
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #e1f1f7;
  display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .rotate .inside{
  width: 60vw;
  -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  background-color: #e1f1f7;
  }
}