@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@800&family=Maven+Pro:wght@900&family=Roboto:wght@500&family=Ubuntu:wght@700&display=swap');

:root{
    /* colors  */
    --backcolor:#111111;
    --fontcolor:#eeeae1;
    --btncolor:rgb(235, 224, 129);
    --fadecolor:#238888;
    --ccolor:linear-gradient(221deg, #212121 28%, #00c1c1 100%);

    --box1color:#6616ca;
    --box1image:linear-gradient(235deg, #6616ca 0%, #f804e9 100%);
    --box2color:#118ff6;
    --box2image:linear-gradient(235deg, #118ff6 0%, #01c1ff 100%);
    --box3color:#0d1518;
    --box3image:linear-gradient(235deg, #0d1518 0%, #0b3f12 100%);
    /*---------*/

    /* fonts  */
    --h2font:'Dosis';
    --pfont:'Roboto', sans-serif;
    --logofont:'Maven Pro', sans-serif;
    --navfont:'Ubuntu';
    --titletext:'Dosis';
    /*--------*/

    /* padding  */

    /* ------- */

    /* background-image  */
    --bannerback:url(../media/jason-maxx/bg/office_bg.png);
    --nabosicon:url(../media/nabos/logo_icon.png);
    --nabostitle:url(../media/nabos/logo_title.png);
    --bannerbackwebm:url(../media/jason-maxx/videos/office.webm);

    --toggleimg:url(../media/menu-alt.png);
    --toggleactiveimg:url(../media/menu-x.png);
    --merback:url(../media/mer-bg.jpg);

    /*-------------------*/
}
::-webkit-scrollbar{
    width:12px ;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(var(--btncolor),var(--btncolor));
    border-radius: 8px;
}
::-webkit-scrollbar-track{
    background: var(--backcolor);
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: var(--backcolor);
    /* height: 10000px; */
}
p{
    color: var(--fontcolor);
    font-family: var(--pfont);
}
section{
    padding: 100px;
}
/* navbar  */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 19px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index:10000;
    transition: 0.75s;
}

nav.sticky{
    background: var(--backcolor);
    padding: 19px 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
nav .logo{
    font-family: var(--logofont);
    color: var(--fontcolor);
    text-decoration: none;
    font-size: 2em;
}

nav .logo box-icon{
    margin-right:5px;
}
nav .logo span{
    margin-left: 5px;
    color: var(--btncolor);
}

nav .navigation{
    position: relative;
    display: flex;
}

nav .navigation li{
    list-style: none;
    margin-left: 30px;
}

nav .navigation li a {
    font-family: var(--navfont);
    color: var(--fontcolor);
    text-decoration: none;
    font-size: 1.2em;
    transition: all 0.75s ease-in;
}
nav .navigation li a:hover{
    color: var(--btncolor);
    transition: all 0.75s ease-out;

}

/*---------*/

/* banner  */

.banner{
    position: relative;
    width:100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bannerback);
    background-size: cover;
    background-position: center;
}

.nabos-logo{
    height: 64px;
    aspect-ratio: auto;
    vertical-align: baseline;
}

.nabos-title{
    height: 48px;
    aspect-ratio: auto;
    margin-left: 8px;
    margin-right: auto;
    margin-bottom: 4px;
    vertical-align: baseline;
}

.banner .video{
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.banner .content{
    max-width: 900px;
    text-align: center;
}
.banner .content h2{
    font-family: var(--h2font);
    font-size: 3em;
    color: var(--fontcolor);
    margin: 0;
    letter-spacing: 2px;
}

.banner .content p{
    font-size: 0.80em;
    letter-spacing: 2px;
    margin: 15px;
}

.demo a {
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font : normal 400 20px/1 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
    /* margin-top: 50px; */
}
.demo a:hover {
    opacity: .5;
}
#section10 a {
    padding-top: 60px;
  }
#section10 a span {
    position: absolute;
    top: 150px;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
}
#section10 a span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    /* -webkit-animation: sdb10 2s infinite; */
    /* animation: sdb10 2s infinite; */
    box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
    0% {
      -webkit-transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      -webkit-transform: translate(0, 20px);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}
@keyframes sdb10 {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      transform: translate(0, 20px);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}
/*---------*/

/* about */
.title-text{
    font-family: var(--titletext);
    color: var(--fontcolor);
    font-size: 1.60em;
    letter-spacing: 1.75px;
}
.title-text span{
    color: var(--btncolor);
}
.title-text box-icon{
    margin-right: 5px;
}

.title-text lord-icon{
    width: 50px;
}

.row{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.row .col50{
    position: relative;
    width: 48%;
}

.row .col50 p{
    text-align: justify;
    margin-top: 24px;
}

.row .col50 .imgBx{
    position: relative;
    height: 100%;
    aspect-ratio: auto;
}

.row .col50 .imgBx img{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    object-fit: fill;
    aspect-ratio: auto;
}
/*---------*/

/* games */

.game .content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.btn-2 {
    margin-top: 64px;
    padding: 15px 15px;
    font-family: var(--pfont);
    background: var(--fontcolor);
    color: var(--backcolor);
    max-width: 200px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 700;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
    box-shadow:inset 0 0 0 0 rgb(66, 255, 176) ;
    transition: ease-in 0.3s;
}

.btn-2 a{
    color: var(--backcolor);
    text-decoration: none;
}

.btn-2:hover{
    box-shadow:inset 250px 0 0 0 rgb(66, 255, 176) ;
    transition: 0.75s;   
}

.game .content .box{
    position: relative;
    width: 340px;
    height: 190px;
    margin: 20px;
    padding: 4  px;
    /* background-color: var(--btncolor); */
    background-color: var(--fontcolor);
    /* background: rgba(255, 255, 255, 0.33); */
    border-radius: 8px;
    backdrop-filter: blur(2.8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    border: none;
}
.game .content .box .text{
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 280px;
    color: var(--backcolor);
    font-family: var(--pfont);
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    background-color: var(--fontcolor);
    box-shadow: 2px -62px 46px 0px rgba(0,0,0,0.36);
    -webkit-box-shadow: 2px -62px 46px 0px rgba(0,0,0,0.36);
    -moz-box-shadow: 2px -62px 46px 0px rgba(0,0,0,0.36);
}
.game .content .box .text h3{
    padding: 10px 24px;
    cursor: pointer;
}
.game .content .box .text h3:hover{
    color:#162936;
    /* text-shadow: -1px 5px 0px rgba(0,255,255,0.44); */
    transform: translateY(-5px);
    transition: 0.5s;

}
.game .content .box .imgBx{
    width: 100%;
    height: 300px;
    position: relative;
}

.game .content .box .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    object-fit: fill;
    border-radius: 0px;
}
.title{
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.title p{
    margin-top: 5px;
}
.game .title-text{
    font-size: 2.6em;
}
/*---------*/

/* merchandise  */
.merchandise{
    background: var(--merback);
    background-size: cover;
}

.merchandise .content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
}

.merchandise .content .box{
    position: relative;
    background-color: #01C1FF;
    width:317px;
    margin: 30px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    cursor: pointer;
}
.merchandise .content .box .imgBx{
    width: 100%;
    position: relative;
    clip-path: polygon(0 0,100% 0,100% 69%,0 94%)
}
.merchandise .content .box .imgBx img{
    width: 100%;
    object-fit: cover;
    height: 263px;
    border-radius: 10px 10px 0px 0px;
}
.merchandise .content .box .text{
    padding: 20px 10px;
}
.merchandise .content .box .text h3{
    font-family: var(--pfont);
    font-size: 1.60em;
    font-weight: 700;
    text-align: left;
    color: var(--fontcolor);
}

.merchandise .content .box .text p{
    margin-top: 8px;
    font-weight: 500;
    font-size: 0.85em;
    text-align: left;
}
.merchandise .title-text{
    font-size: 2.2em;
}

.merchandise .content .box-1{
    background-color: var(--box1color);
    background-image: var(--box1image);
}
.merchandise .content .box-2{
    background-color: var(--box2color);
    background-image: var(--box2image);
}
.merchandise .content .box-3{
    background-color: var(--box3color);
    background-image: var(--box3image);
}
.box .know{
    position: absolute;
    bottom: -20px;
    left: 95px;
    text-decoration: none;
    background-color: var(--fontcolor);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: none;
    font-size: 0.95em;
    font-weight: bold;
    color: var(--backcolor);
    font-family:var(--navfont);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    transition: all 0.75s ease-out;
}

.box .know:hover{
    background-color:var(--backcolor);
    color: var(--fontcolor);
    transform: translateY(-5px);
}
/*---------*/


/* contact  */
.contact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: #212121;
    background-image: linear-gradient(221deg, #12181c 28%, #111111 100%);
}
.contact .content .text{
    margin-bottom: 30px;
}
.contact .content .text h3{
    font-size: 2em;
    color: var(--fontcolor);
    font-family: var(--h2font);
    margin: 5px 0px ;
}
.contact .social{
    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;}
.contact .contactForm{
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}
.contact .contactForm form{
    width: 100%;
}

.contact .contactForm .row100{
    display:flex;
    width: 100%;
}
.contact .contactForm .row100 .inputBox50{
    width: 50%;
    margin: 0 20px;
}
.contact .contactForm .row100 .inputBox100{
    width: 100%;
    margin: 0 20px;
}

.contact .contactForm .row100 input,
.contact .contactForm .row100 textarea{
    position: relative;
    border: none;
    border-bottom: 1px solid var(--btncolor);
    color: var(--fontcolor);
    background: transparent;
    width: 100%;
    padding: 10px 0;
    outline: none;
    font-size: 18px;
    font-weight: 400;
    margin: 20px 0;
    resize: none;

}

.contact .contactForm .row100 textarea{
    height: 100px;
}

.contact .contactForm .row100 input::placeholder,
.contact .contactForm .row100 textarea::placeholder{
    color: var(--fontcolor);
}
.contact .contactForm .row100 input[type="submit"]{
    background: var(--fontcolor);
    color: var(--backcolor);
    max-width: 100px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: 700;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
    box-shadow:inset 0 0 0 0 rgb(66, 255, 176) ;
    transition: ease-in 0.3s;

}
.contact .contactForm .row100 input[type="submit"]:hover{
    box-shadow:inset 250px 0 0 0 rgb(66, 255, 176) ;
    transition: 0.75s;   
}
.contact .social li{
    list-style: none;
    margin:25px;
}

.contact .social li a img{
    width: 50px;
}

.copyright{
    margin-bottom: -50px;
    font-family: var(--navfont);
    color: var(--fontcolor);
}
.copyright a{
    text-decoration: none;
    /* background-color: var(--fontcolor); */
    color: var(--btncolor);
    /* padding: 5px 15px; */
    border-radius: 50px;

}
/*---------*/

.mail {
    margin-top: 20px;
    text-decoration: none;
    color: var(--btncolor);
    font-size: 18px;
}

.mail p a{
    text-decoration: none;
    color: var(--btncolor);
}

/* media query */

@media (max-width:1080px){
    nav{
        padding: 19px 30px;
    }
    nav.sticky{
        padding: 19px 30px;
    }
    .row{
        flex-direction: column;
    }
    .row .col50{
        width: 100%;
    }
    .row .col50 .imgBx img{
        width:100% ;
        margin-top: 35px;
    }
    section{
        padding:100px 50px 100px 50px;
    }
    .game{
        margin-top: 273px;
    }
    .game .title-text{
        font-size: 2.6em;
    }

}
@media (max-width:790px){
    nav .logo box-icon{
        display: none;
    }
    .banner .content h2{
        font-size: 36px;
    }
}
@media (max-width:620px){
    .banner .content h2{
        font-size: 26px;
    }
    section{
        padding: 131px 22px 100px 22px;
    }
    nav .navigation{
        display: none;
    }
    nav .logo box-icon{
        display: none;
    }
    nav .logo{
        font-size: 1.60em;
    }

    .menuToggle{
        position: absolute;
        right: 14px;
        top: 10px;
        width: 40px;
        height: 40px;
        background: var(--toggleimg);
        background-size: 45px;
        background-repeat: no-repeat;
        cursor: pointer;
    }
    .menuToggle.active{
        background: var(--toggleactiveimg);
        background-size: 45px;
        background-repeat: no-repeat;
        cursor: pointer;
        z-index: 1000;
    }

    nav .navigation.active{
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: var(--backcolor);
    }
    nav .navigation li {
        margin: 10px 0px;

    }
    nav .navigation li a{
        font-size: 2.6em;
    }
    .game .content .box .text{
        width: 248px;
        left: 44px;
    }

}

@media (max-width:400px){
    .game .content .box .text{
        width: 170px;
        left: 60px;
    }
    .box .know{
        right: 10px;
    }
}

/* image zoom modal */
.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 61px; /* height of navbar */
  width: 100vw;
  height: calc(100vh - 61px); /* subtract navbar height */
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-modal-content {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 24px #000;
  border-radius: 8px;
  margin: 0 auto;
}
.img-modal-close {
  position: absolute;
  top: 0;
  right: 48px;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.copyright {
  font-size: 0.85em;
  color: #aaa;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}
.copyright a {
  color: #aaa;
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.copyright a:hover {
  color: #555;
}