/* General */

*{
    font-family: "Montserrat", serif;
    scroll-behavior: smooth;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1440px !important;
  }

#sobre, #como-jogar{
    scroll-margin-top:120px;
}

/* Header */

.language-selectors{
    display: flex;
    grid-gap:10px;
}

.language-selectors img{
    height:30px;
    cursor: pointer;
}

#language-select {
    background: url('/assets/img/pt.svg') no-repeat left center;
    background-size: 20px 20px;
    padding-left: 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
}

#language-select option {
    padding-left: 30px;
}

header {
    padding: 30px 0px;
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 8;
    transition: all .4s;
    background: #11111100;
    box-shadow: 0px 4px 49px 0px rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
}

header .logo-header img {
    height: 30px;
    transition: all .4s;
}

#header.scroll header{
    padding:20px 0px;
    box-shadow: 0px 4px 49px 0px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(6px);
    background:#111111b5;
}

#header.scroll header .logo-header img{
    height:30px;
}



header .col-lg-9{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

header .main-menu {
    display: flex;
    list-style: none;
    grid-gap: 0px 20px;
    flex-direction: row;
    align-items: center;
}

header .main-menu ul{
    display: flex;
    list-style: none;
    grid-gap:0px 20px;
    margin:0px;
    padding:0px;
}

header .main-menu ul a{
    color:#fff;
    transition:all .4s;
    display: block;
    font-weight: 600;
    font-size: 18px;
}

header .main-menu ul a:hover{
    color: #f9c32b;
    text-decoration: none;
}

.bt-jogar {
    display: flex;
    width: 220px;
    height: 35px;
    color: #FFF;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(0deg, #360A72, #7E32CF);
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0px;
    transition: all .4s;
    box-shadow: 0px 0px 0px transparent;
  }

  .bt-jogar:hover{
    color:#FFF;
    text-decoration: none;
    background: linear-gradient(90deg, #360A72, #7E32CF);
  }

.menu-resp{
    display: none;
}

  .hamburger .line{
    width: 50px;
    height: 5px;
    background-color: #2b2b2b;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 90px;
  }
  
  .hamburger:hover{
    cursor: pointer;
  }
  
  /* ONE */
  
  #hamburger-1.is-active .line:nth-child(2){
    opacity: 0;
  }
  
  #hamburger-1.is-active .line:nth-child(1){
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
  }
  
  #hamburger-1.is-active .line:nth-child(3){
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
  }

/* Footer */

footer{
    background: #212121;
    padding:20px 0px;
    position: relative;
    z-index: 99;
}

footer .icon-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    grid-gap: 10px;
}

footer .icon-social a {
    display: flex;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 90px;
    color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .4s;
}

footer .icon-social a svg{
    width:20px;
}

footer .icon-social a:hover{
    background:#fff;
    color:#1a1a1a;
}

footer .col-lg-6 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer .col-lg-6 p{
    text-align: center;
    color:#fff;
    margin-bottom: 0px;
    font-size: 14px;
}

footer .col-lg-3:nth-child(1) {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

footer .col-lg-3:nth-child(3) {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}


/*Responsive*/

@media only screen and (max-width: 1460px) {
    
}

@media only screen and (max-width: 1200px) {


}

@media only screen and (max-width: 990px) {
    
    .intro-jogo-responsavel{
        padding-top:67px;
        background:#000;
    }
    
    header {
    padding: 10px 0px;
    }
    
    #header.scroll header {
    padding: 10px 0px;
    }
      
   footer{
        padding:40px 0px;
    }
    
    footer .row{
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 20px;
    }

    footer .col-lg-3:nth-child(1) {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    footer .col-lg-3:nth-child(3) {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    header .col-lg-3 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 50%;
    }

    header .col-lg-9 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: 50%;
    }

    .menu-resp{
        display: block;
    }

    header .main-menu {
        display: flex;
        list-style: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-gap: 20px;
        position: fixed;
        left: -120%;
        top: 0px;
        width: 400px;
        height: 100vh;
        background: #000000f0;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: all .4s;
    }

    header .main-menu.active{
        left:0%;
    }

    header .main-menu ul {
        display: flex;
        list-style: none;
        grid-gap: 20px;
        margin: 0px;
        padding: 0px;
        flex-direction: column;
        align-items: center;
    }    

    header .main-menu ul a {
        color: #fff;
        transition: all .4s;
        display: block;
    }
}


@media only screen and (max-width: 600px) {


}