* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --menu-speed: 0.75s;
}
body {
  font-family: "minecraft";
  line-height: 1.4;
}
header {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}





.input{
    font-size: 20px;
    padding: 8px 15px;
    width: 100%;
    border-radius: 8px;
    border: 0;
    box-shadow: -1px -1px 20px 6px #cad2d980;
}
.area{
    font-size: 20px;
    padding: 8px 15px;
    width: 100%;
    border-radius: 8px;
    border: 0;
    height: 100px;
    box-shadow: -1px -1px 20px 5px #cad2d980;
}
.btn-send{
    background-color: #008eff;
    padding: 8px 40px;
    border-radius: 25px;
    color: white !important;
    border: 0;
}
.btn-gr{
    background: #36EE9D 0% 0% no-repeat padding-box;
    border-radius: 32px;
    color: #fff;
    border: 0;
    padding: 3px 15px;
        float: left;
        margin-left:25px !important;

}
.field{
    border: 0;
    padding: 5px 20px;
    font-size: 18px;
    border-radius: 30px;
}
.modal-content{
    background-color: #000;
}
.slid{
    max-width: 1200px;
    margin: auto;
}
.modal-xl{
    max-width: 100%;
}
.link{
    color: #fff;
}
.link:hover{
    color: #fff;
    text-decoration: none;
}
.close{
    position: relative;
    z-index: 100000;
    color: #fff;
    opacity: .8;
}
.hr{
    margin-top: 22px;
    border-bottom: 1px solid gray;
}
.modal-backdrop {
    background-color: #000 !important;
    opacity: 1 !important
}
.font-222 a{
    text-decoration: none;
    color: black;
    font-size: 22px;
}

.nav-link:focus, .nav-link:hover {
    text-decoration: none;
    /* background-color: #36ee9d !important; */
    border-radius: 62px !important;
    color: black !important;
}

.btn-gr:hover {
    float: left;
    background: #ffffff;
    color: black;
    color: #36ee9d;
    border: 2px solid #36ee9d;
    margin-left: 29px !important;
}

/*Buttons*/

.btn-send:hover{
    background: #77c0fb;
    border: 2px solid white;
    font-weight: 600;
    }
.btn-green:hover{
    background: #b4f9cf;
    border: 2px solid white;
    font-weight: 600;
    color: white;
}

    
    .centered {
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Karla', sans-serif !important;
    font-size: 38px;
    font-weight: 900;
    color: white !important;
}




@media screen {

    html, body {
        min-height: 100%;
    }

    body {
        margin: 0;
        font-size: 18px;
        font-family: 'minecraft';
  background: url("/assets/images/bg-img.jpg") no-repeat center center/cover;
        line-height: 1.4;
        overflow: hidden;
    }

    /*** canvas ***/

    /* our canvas will have the size of our window */
    #canvas {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 100vh;
        z-index: 1;
    }

    /*** content ***/

    #content {
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    #title {
        position: fixed;
        top: 20px;
        right: 20px;
        left: 20px;
        z-index: 1;
        pointer-events: none;
        font-size: 1.5em;
        line-height: 1;
        margin: 0;
        text-transform: uppercase;
        color: white;
        text-align: center;
    }

    #projecttitle{
            position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    font-size: 50px !important;
    stroke: 1px solid black;
    z-index: 1;
    pointer-events: none;
    font-size: 1.5em;
    font-family: "brushstrike";
    line-height: 1;
    margin: 0;
    text-transform: capitalize;
    color: white;
    text-align: center;
    color: black;
    text-stroke: 1px white;
    -webkit-text-stroke: 1px white;
    }

    #planes {
        width: calc(((100vw / 1.75) + 10vw) * 8); /* width of items * number of items */

        padding: 0 2.5vw;
        height: 100vh;
        display: flex;
        align-items: center;

        cursor: move;
    }

    .plane-wrapper {
        position: relative;

        width: calc(100vw / 1.75);
        height: 70vh;
        margin: auto 5vw;
        text-align: center;
    }

    /* disable pointer events and text selection during drag */
    #planes.dragged .plane-wrapper {
        pointer-events: none;

        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .plane-title {
        position: absolute;
        top: 50%;
        left: 50%;
        font-family: "brushstrike";
        z-index: 1;
        transform: translate3D(-50%, -50%, 0);
        font-size: 4vw;
        font-weight: 700;
        line-height: 1.2;
        text-transform: capitalize;
        color: black;
        z-index: 9999999 !important;
        text-stroke: 1px white;
        -webkit-text-stroke: 1px white;
        opacity: 0;
        transition: color 0.5s, opacity 0.5s;
    }

    #planes.dragged .plane-title {
        color: transparent;
    }

    .plane-wrapper.loaded .plane-title {
        opacity: 1;
    }

    .plane {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .plane img {
        /* hide original images if there's no WebGL error */
        display: none;
        /* prevent original image from dragging */
        pointer-events: none;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;
    }

    #drag-tip {
        position: fixed;
        right: 20px;
        bottom: 79px;
        left: 20px;
        pointer-events: none;
        font-size: 0.9em;
        text-transform: uppercase;
        color: #888;
        text-align: center;
        display: none;
    }


    /*** handling WebGL errors ***/

    .no-curtains #planes {
        transition: background-color 0.5s;
    }

    .no-curtains #planes.dragged {
        background-color: #0d0d0d;
    }

    .no-curtains .plane-title {
        opacity: 1;
    }

    .no-curtains .plane {
        display: flex;
        overflow: hidden;
        transition: filter 0.5s;
    }

    .no-curtains #planes.dragged .plane {
        filter: grayscale(1);
    }

    .no-curtains .plane img {
        display: block;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

}




@media screen and (orientation: portrait) {

    #content {
        max-height: 100vh;
    }

    #planes {
        overflow: hidden;
        width: 100vw;

        padding: 2.5vh 0;
        height: auto;
        flex-direction: column;
    }

    .plane-wrapper {
        position: relative;

        width: 70vw;
        height: calc(100vh / 1.75);
        margin: 5vw 0;
    }

    .plane-title {
        font-size: 10vw;
    }

}





@font-face {
  font-family: brushstrike;
  src: url(brushstrike.woff);
}


@font-face {
  font-family: minecraft;
  src: url(minecraft_font.woff);
}

ul.social {
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

ul.social > li {
  display: inline-block;
}

ul.social > li > a {
display: inline-block;
    font-size: 18px !important;
    line-height: 30px;
    width: 30px;
    height: 30px;
    border-radius: 36px;
    background-color: #ffffff;
    color: #3690ff;
    margin: 0 3px 3px 0;
}

ul.social > li > a:hover {
  text-decoration: none;
  background-color: #ee7c22;
}
  h2.centered.text-white {
    color: white !important;
    font-size: 40px !important;
    font-weight: 800;
    text-transform: capitalize;
}
  .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} 



  h2.centered.text-white {
    color: white !important;
    font-size: 40px !important;
    font-weight: 800;
    text-transform: capitalize;
}
  .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} 


.container{
    max-width: 1366px;
}



html {
  scroll-behavior: smooth;
}
* {
    font-family: 'minecraft', sans-serif;
    transition: all 0.5s linear;
}

.login{
    font-size: 20px;
}
.btn-social{
    padding-top: 0px
}

.card-button:hover {
    background: #36ee9d !important;

}

a.nav-link.login {
    font-size: 15px;
    background: #b4f9cf;
    border-radius: 61px;
    color: #000000 !important;
    margin-bottom: 3px;
    margin-left: 5px;
}

button.btn.btn-md.btn-block {
    background: #b4f9cf;
    border-radius: 33px;
}

.bg-green{

  background: #b4f9cf !important ;
}



.container{
    max-width: 1366px;
}
@media(max-width: 992px){
    .nav-link{
        color: #000000;
        margin: 0 2px;
        padding: 5px 10px !important;
        font-size: 16px;
        margin: 10px 0 !important;
    }
}

@media(max-width: 1200px){
    .btn-social{
        padding-top: 0px;
    }
    .nav-link{
        color: #000000;
        margin: 0 2px;
        padding: 3.5px 10px !important;
        font-size: 16px;
    }
}
@media(max-width: 500px){
    .logo{
        max-width: 220px;
    }
}
.font-700{
    font-weight: 700;
}
.font-white{
    font-weight: 800;
    color: white;
}
h1{
    font-size: 40px; 
    font-weight: 700;
}
h5{
    font-size: 22px;
}
.header{
    background: url(/assets/images/2.jpg) no-repeat center;
    background-size: cover;
    height: 750px;
}
.color{
    color: #36ee9d;
    text-shadow: 0px 1px 1px #00000029;
    text-stroke: red 8px solid;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #000000;
    -webkit-text-fill-color: #36ee9d;
}
.btn-enter{
    background: #36EE9D 0% 0% no-repeat padding-box;
    border-radius: 32px;
    border: 0;
    padding: 5px 45px;
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
}
.video-sec{
    max-width: 780px;
    margin: auto;
}

.video{
    height: 271px;
    width: 100%;
    margin: auto;
    border: 0;
}
.about{
    background: #B4F9CF 0% 0% no-repeat padding-box;
    padding: 60px 0;
}
.box{
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    background: #fff;
    border-radius: 35px;
}
h2{
    font-size: 38px;
    color: #000000 !important;
}
.font-22{
    font-size: 22px;
}
.cards{
    position: relative;
    max-width: 333px;
    margin: auto;
}
.overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
}
.overlay h6{
    font-size: 23px;
}
.bg{
    background: #1179f9a3;
    box-shadow: 1px 2px 20px 20px #008cff80;
}
.bx{
    position: relative;
    max-width: 450px;
    margin: auto;
}
.over{
    width: 100%;
    position: absolute;
    height: 100%;
    background-color: rgba(0, 0, 0, .59);
    opacity: 0;
}
.bx:hover .over{
    opacity: 1;
}
.over p{
    text-align: center;
    position: absolute;
    width: 90%;
    margin: auto;
    color: #b9b9b9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.st{
    width: 33%; 
}
@media(max-width: 992px){
    .st{
        width: 95%;
    }
}
.st p{
    color: #7E9096;
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    position: relative;
    content: 'next';
    color: #fff;
    font-weight: 700;
    transform: translate(0, -30%);
    z-index: 10000;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-prev:after {
    position: relative;
    color: #fff;
    font-weight: 700;
    z-index: 10000;
    transform: translate(0, -30%);
}
.sub{
    background: url(/assets/images/bg-2.png) no-repeat center;
    background-size: cover;
}
.g-box{
    background-color: #B4F9CF;
    border-radius: 10px;
    padding: 15px;
    max-width: 400px;
    margin: auto;
}
.btn-green{
    background: #36EE9D 0% 0% no-repeat padding-box;
    border-radius: 32px;
    color: #fff;
    border: 0;
    font-size: 20px;
    padding: 5px 30px;
}
.text-gray{
    color: #94A3A8;
}
.input{
    font-size: 20px;
    padding: 8px 15px;
    width: 100%;
    border-radius: 8px;
    border: 0;
    box-shadow: -1px -1px 20px 6px #cad2d980;
}
.area{
    font-size: 20px;
    padding: 8px 15px;
    width: 100%;
    border-radius: 8px;
    border: 0;
    height: 100px;
    box-shadow: -1px -1px 20px 5px #cad2d980;
}
.btn-send{
    background-color: #008eff;
    padding: 8px 40px;
    border-radius: 25px;
    color: white !important;
    border: 0;
}
.btn-gr{
    background: #36EE9D 0% 0% no-repeat padding-box;
    border-radius: 32px;
    color: #fff;
    border: 0;
    padding: 3px 15px;
        float: left;
        margin-left:25px !important;

}
.field{
    border: 0;
    padding: 5px 20px;
    font-size: 18px;
    border-radius: 30px;
}
.modal-content{
    background-color: #000;
}
.slid{
    max-width: 1200px;
    margin: auto;
}
.modal-xl{
    max-width: 100%;
}
.link{
    color: #fff;
}
.link:hover{
    color: #fff;
    text-decoration: none;
}
.close{
    position: relative;
    z-index: 100000;
    color: #fff;
    opacity: .8;
}
.hr{
    margin-top: 22px;
    border-bottom: 1px solid gray;
}
.modal-backdrop {
    background-color: #000 !important;
    opacity: 1 !important
}
.font-222 a{
    text-decoration: none;
    color: black;
    font-size: 22px;
}

.nav-link:focus, .nav-link:hover {
    text-decoration: none;
    /* background-color: #36ee9d !important; */
    border-radius: 62px !important;
    color: black !important;
}

.btn-gr:hover {
    float: left;
    background: #ffffff;
    color: black;
    color: #36ee9d;
    border: 2px solid #36ee9d;
    margin-left: 29px !important;
}

/*Buttons*/

.btn-send:hover{
    background: #77c0fb;
    border: 2px solid white;
    font-weight: 600;
    }
.btn-green:hover{
    background: #b4f9cf;
    border: 2px solid white;
    font-weight: 600;
    color: white;
}

    
    .centered {
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'minecraft', sans-serif !important;
    font-size: 38px;
    font-weight: 900;
    color: white !important;
}
