* {
    padding: 0;
    margin: 0;
  }

:root{
    --first-color: #fff;
    --second-color: #ffbe0b;
    --red-color: #ba181b;
    --green-color: #007200;
    --orange-color: orange;
    --background-color:#f8f9fa;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    margin-left: 0px;
    margin-right: 0px;
}

a {
    text-decoration: none;
}

section.navbar {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top:0;
    top: 0;
    width: 100%;
    background-color: var(--orange-color);
    height: 50px;
    transition: 1.2s;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    overflow: hidden;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

section.navbar.open {
    height: 260px;
}

section.navbar .top {
    display: flex;
    width: 100%;
    padding: 0px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

section.navbar .top .logo {
    display: flex;
    justify-content: flex-start;
    padding-left: 5px;
}

section.navbar .top .logo .main-logo {
    height: 34px;
    width: 34px;
}
section.navbar .top .logo .title {
    padding-left: 15px;
}

section.navbar .top .menu-icon {
    font-size: 36px;
    color: black;
    text-align: center;
    padding-right: 8px;
    cursor: pointer;
}

section.navbar .top .menu-icon:hover {
    color: white;
}

section.navbar .content {
    margin-top: 0;
    
}

section.navbar .content .subtitle {
    margin-top: 8px;
    margin-left: 50px;
}

section.navbar .content .menu {
    padding-top: 10px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.45)
}

section.navbar .content .menu div {
    padding: 3px;
    cursor: pointer;
    transition: 1.2s;
}


section.navbar .content .menu div:hover {
    color: white;
}

section.navbar .content .menu div a{
    color: black;
    cursor: pointer;
    transition: 1.2s;
}

section.navbar .content .menu div a:hover{
    color: white;
}


section.navbar .content .menu .inactive {
    color: rgba(0, 0, 0, 0.25)
}

section.header{
    display: flex;
    justify-content:stretch;
    align-items: center;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 20px;
    margin-bottom: 10px;
    justify-self: center;
}

section.header .main-logo{
    height: 100px;
    width: 100px;
}

section.header .title {
    display: flex;
    flex-direction: column;
    justify-content: initial;
}

section.header h1 {
    font-weight: bolder;
    font-size: 32px;

}

section.header .title .description {
    font-size: 16px;
}

section.learning,
section.our-game {
    margin-left: 10px;
}

section.learning .wrapper,
section.our-game .wrapper {
    min-height: 150px;
    border: 1 px solid #ddd;
    display: flex;
    align-items: center;
    overflow-x: auto;
    transition: 1.8s;
}

section.learning  .wrapper::-webkit-scrollbar, 
section.our-game .wrapper::-webkit-scrollbar{
  width: 0;
}

section.learning p.title, 
section.our-game p.title {
    position: relative;
    bottom: -20px;
    color: gray ;
    font-style:inherit;
}


section.learning .card-game, 
section.our-game .card-game {
    position: relative;
    max-width: 110px;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    font-size: 14px;
    line-height: 14px;
    top: 12px;
    margin: 2px;
    width: 40%;
    height: 90px;
    border-radius: 10px;
    background-color: var(--first-color);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.9s;
    border: solid 2px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

section.learning .card-game:hover, 
section.our-game .card-game:hover {
    transition: 0.9s;
    background-color: var(--second-color);
    border-color: var(--green-color);
    transform: translateY(-7px);
}

section.learning .card-game .logo, 
section.our-game .card-game .logo {
    width: 60px;
    height: 60px;
}

section.jogos{
    display: grid;
    /* flex-direction: column; */
    /* flex-wrap: wrap; */
    grid-template-columns: 1fr 1fr;
    justify-content: space-around;
    align-items:center;
    justify-items: center;
    width: 100%;
    margin-top: 36px;
}


section.jogos .card-game {
    position: relative;
    max-width: 40%;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    font-size: 14px;
    line-height: 14px;
    margin: 2px;
    width: 40%;
    height: 90px;
    border-radius: 10px;
    background-color: var(--first-color);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.9s;
    border: solid 2px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

section.jogos .card-game:hover{
    transition: 0.9s;
    background-color: var(--second-color);
    border-color: var(--green-color);
    transform: translateY(-7px);
}


section.jogos .card-game .logo{
    width: 60px;
    height: 60px;
}

.new-game {
    position: absolute;
    font-size: .7rem;
    padding: .2rem .7rem;
    background-color: var(--green-color);
    color: var(--background-color);
    border-radius: .3rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    top: -10px;
    right: 2px;

}

.swiper {
    width: 95%;
    height: 190px;
    margin-top: 10px;
}


.swiper .title {
    position: relative;
    margin-top: 10px;
    margin-bottom: -30px;
    color: gray ;
    font-style:inherit;
}
.swiper-slide {
    /* border: 2px solid red; */
    /* padding: 10px;*/
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    
}

div.informations .card-contribution {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px;
    width: 320px;
    min-width: 320px;
    /* border: 1px solid #f1faee; */
    border: 1px solid #b1cbbb;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    cursor: pointer;
    transition: 1.2s;
    border-left: 7px solid var(--green-color);
    z-index: 10;
}

div.informations .card-contribution:hover {
    background: var(--orange-color);
}

.no-user-select-text {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.informations .card-contribution .description {
    color: gray;
    font-size: 14px;
    width: 75%;
}

div.informations .card-contribution .description .call-contribution {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 8px;
    color: black;
    font-size: 15px;
}

div.informations .card-contribution .description .call-contribution .ion-icon {
    margin-left: 3px;
    color: var(--green-color);
}


div.informations .card-contribution .ico {
    width: 70px;
    height: 70px;
}


section.whatsapp {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #007200;
    bottom: 12px;
    right: 12px;
    width: 60px;
    height: 60px;;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    z-index: 1000;
}

section.whatsapp .ico {
    font-size: 36px;
    text-align: center;
    color: white;
}


@media (min-width: 700px) and (orientation: landscape) { 
    
    section.jogos{
        display: flex;
        justify-content: space-around;
        width: 80%;
    }

    section.jogos .card-game {
        position: relative;
        max-width: 200px;
        min-width: 150px;
        display: flex;
    }

    .face1 {
        font-size: 2px;
    }  
}