
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Roboto+Slab&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300&display=swap');
/*font-family: 'Oswald', sans-serif;*/
/*font-family: 'Noto Sans JP', sans-serif;*/
/*font-family: 'Titillium Web', sans-serif;*/

*{
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    border-style: none;
    text-decoration: none;
    font-family: 'Titillium Web', sans-serif;
    list-style: none;
}
body{
    background: rgb(255, 255, 255);
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}
.wrapper{
    margin-bottom: 300px;
} 
.navbar{
    background: rgb(255, 255, 255);
    position: fixed;
    width: 100%;
    height: 81px;
    z-index: 11;
    box-shadow: 0px 2px 4px rgb(139, 139, 139);
    top: 0;
}
.home-banner{
    display: block;
    top: 0;
    margin: -19px auto auto auto;
    width: 100%;
    z-index: 10;
}
.navbar-logo{
    float: left;
    height: 80px;
    padding: 15px 5px 15px 15px;
}
.motto{
    display: block;
    float: left;
    margin: auto;
    padding:25px 0 0 20px;
    width: fit-content;
    color: rgb(56, 56, 56);
    font-size: 18px;
    font-weight: 500;
    transition: all .5s ease-in-out;
}
.navbar ul{
    float: right;
    padding: 30px 15px 0 0;
}
.navbar ul li{
    float: left;
    text-transform: uppercase;
    font-size: 13px;
    margin: auto;
    padding-left: 30px;
    display: block;
    transition: all .5s ease-in-out;
}
.navbar ul li a{
    color: rgb(56, 56, 56);
    font-weight: bold;
    font-size: 15px;
    display: inline-block;     
   position: relative;
   padding: 30px 12px;     
   margin: -50px -15px; 
   transition: 0.5s;
}
.navbar ul li a:visited{
    color: rgb(56, 56, 56);
}
.navbar ul li a:hover{
    color: rgb(243, 243, 243);
    background: rgb(56, 56, 56);
}
.ticket-button{
    background-color: rgb(255, 153, 0);
    color: white;
    font-size: 15px;
    padding: 15px;
    margin-top: -15px;
    border-radius: 7px;
    cursor: pointer;
}
.missionButton{
    margin-top: 20px;
    background: rgb(255, 153, 0);
    width: 10rem;
    height: 4rem;
    font-size: 30px;
    transition: 0.3s;
    border-radius: 10px;
}
.missionButton a{
    display: inline-block;
    padding: 10px 10px;
    margin: auto;
    color: white;
    text-align: center;
}
.missionButton:hover{
    background: rgb(32, 32, 32);
    box-shadow: 0px 10px 10px grey;
    transform: translateY(-10px);
}
.services{
    width: 90%;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.service{
    padding: 40px 20px;
    background: rgba(231, 231, 231, 0.432);
    border-radius: 15px;
    margin: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}
.softwares{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: rgb(245, 245, 245);
    justify-content: space-evenly;
    align-items: center;
    
}
.software{
    margin: 30px;
    border-radius: 5px;
    transition: 0.5s;
}
.software:hover{
    transform: translateY(-10px);
}
.software img{
    height: 3rem;
}
.service img{
    height: 75px;
}
.service ul{
    padding-top: 20px;
    font-size: 20px;
}
.service ul li::before{
    content: "-";
    padding-right: 10px;
}
.service:hover{
    box-shadow: 0px 10px 20px rgb(139, 139, 139);
    transform: translateY(-10px);
}
.pusher{
    height: 300px;
}
footer{
    background: rgb(19, 19, 19);
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    color: white;
    bottom: 0;
    height: 300px;
}
.foot-info{
    margin: 40px;
}
.foot-links{
    display: flex;
    justify-content: end;
    flex-direction: column;
    margin: 40px;
}
.foot-links a, a:visited{
    margin: 10px;
    text-decoration: underline;
    color: white;
}
.contact-info{
    width: 80%;
    margin: auto;
    text-align: center;
    color: rgb(19,19,19);
    font-size: 30px;
    padding: 20px;
}
.contactBox{
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.contactCard{
    font-size: 20px;
    color: rgb(19, 19, 19);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    border-radius: 20px;
    width: 300px;
    height: 300px;
    background: rgb(238, 238, 238);
    border: 1px rgb(201, 201, 201) solid;
    text-align: center;
    font-weight: 600;
}
.contactCard a{
    color: rgb(19, 19, 19);
}
.contactForm{
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
}
.forminput{
    height: 40px;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 20px;
    background: rgb(19, 19, 19);
    color: white;
    padding-left:10px;
    outline: none;
    width: 60%
}
.forminput-message{
    width: 60%;
    height: 250px;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 20px;
    background: rgb(19, 19, 19);
    color: white;
    padding-left:10px;
}
.forminput-submit{
    height: 50px;
    width: 150px;
    font-size: 30px;
    background: rgb(19, 19, 19);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
}
.hiddeninfo{
    font-size: 40px; 
    margin: auto;
    padding: 20px;
    text-align: center;
}
.homebutton{
    font-size: 40px; 
    margin: auto;
    padding: 20px;
    text-align: center;
    color: black;
    transition: 0.5s;
    border-radius: 10px;
}
.homebutton:hover{
    color: white;
    background: rgb(1, 163, 55);
}
.forminput-submit:hover{
    background: rgb(255, 153, 0);
    color: rgb(19, 19, 19);;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}
.link-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.tech-link{
    background: rgb(250, 250, 250);
    border: 1px rgb(201, 201, 201) solid;
    height: 20vh;
    width: 25vh;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contract{
    background: rgb(250, 250, 250);
    border: 1px rgb(201, 201, 201) solid;
    width: 300px;
    height: fit-content;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}.contract h1{
    font-size: 20px;
}
.contract p{
    font-size: 25px;
    padding: 20px;
}
.ticket-menu{
    position: fixed;
    z-index: 15;
    display: flex;
    flex-direction: column;
    margin: auto;
    background-color: rgb(105, 105, 105);
    left: 0;
    right: 0;
    top: -200vh;
    bottom: 0;
    height: fit-content;
    width: 50%;
    padding: 10px 0 30px 0;
    border-radius: 20px;
    transition: 300ms;
}
.ticket-menu p{
    font-size: 25px;
    text-align: center;
    color: white;
    margin-top: 30px;
    padding: 10px;
}
.ticket-menu form{
    display: flex;
    flex-direction: column;
    width: 75%;
    margin: auto;
}
.ticket-menu form input{
    margin: 5px;
    padding: 10px;
    font-size: 25px;
}
.ticket-menu form input::placeholder{
    color: rgb(172, 172, 172);
    font-size: 25px;
}
.ticket-menu-close-container{
    position: absolute;
    cursor: pointer;
    right: 10px;
    height: 40px;
    width: 40px;
}
.ticket-menu-close{
    position: absolute;
    width: 40px;
    height: 5px;
    top: 18px;
    background-color: white;
    transform: rotate(45deg);
}
.ticket-menu-close::before{
    content: '';
    position: absolute;
    width: 40px;
    height: 5px;
    background-color: white;
    transform: rotate(90deg);
}
.blur{
    transition: 200ms;
    position: fixed;
    top: -200vh;
    right: 0;
    background-color: rgba(153, 153, 153, 0.822);
    width: 100%;
    height: 100%;
    z-index: 11;
}
.contract-info{
    margin: auto; 
    width: 80%;
    align-items: center;
    text-align:left;
    font-size: 20px;
}
.contract-info p{
    text-align: left;
}
.contract-info ol li{
    margin-top: 20px;
}
@media only screen and (min-width: 1026px) {
    .sideNav {
        display: none;
    }
}
@media only screen and (max-width: 1025px) {
    .ticket-menu{
        position: absolute;
        top: -200vh;
        width: 90%;
    }
    .ticket-menu form{
        width: 90%;
    }
    .sideNav {
        width: 0;
        position: fixed;
        top: 0;
        right: 0;
        transition: 0.2s;
        height: 100%;
        top: 75px;
        background: rgb(97, 97, 97);
        cursor: pointer;
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        font-size: 0px;
        z-index: 12;
    }
    footer{
        display: none;
    }
    .contactForm{
        width: 90%;
    }
    .contact-info{
        color: rgb(19,19,19);
        font-size: 20px;
    }
    .forminput{
        width: 100%;
        padding-left: 10px;
    }
    .forminput-message{
        width: 100%;
        padding-left: 10px;
    }
    .forminput-submit{
        height: 40px;
        margin-bottom: 30px;
        font-size: 25px;
        background: rgb(19, 19, 19);
        color: white;
    }
    .sideNav a {
        padding: 10px 40px 0 0;
        text-transform: uppercase;
        color: rgb(184, 184, 184);
    }
    .sideNav.open {
        background: rgb(19, 19, 19);
        width: 200px;
        font-size: 30px;;
    }
    .sideNav.open .navbar ul li a{
        color: white;
    }
    .sideNav.open a{
       font-size: 25px;
    }
    .sideNav.open a:hover{
        transition: 0.3s;
        color: rgb(85, 85, 85);
     }
    .motto{
        display: none;
    }
    .navbar ul {
        display: none;
    }
    .menu-btn{
        margin: 20px 20px 0 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        float: right;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: .5s ;
        
    }
    .menu-btn_burger{
        width: 30px;
        height: 4px;
        background: rgb(56, 56, 56);
        border-radius: 1px;
        transition: all .5s ease-in-out;
    }
    .menu-btn_burger::before,
    .menu-btn_burger::after{
        content: '';
        position: absolute;
        width: 30px;
        height: 4px;
        background: rgb(19, 19, 19);
        border-radius: 1px;
        transition: all .5s ease-in-out;

    }
    .menu-btn_burger::before{
        transform: translateY(-10px);
    }
    .menu-btn_burger::after{
        transform: translateY(10px);
    }
    .menu-btn.open .menu-btn_burger {
        background: transparent;
        box-shadow: none;
    }
    .menu-btn.open .menu-btn_burger::before {
        transform: rotate(45deg) ;
        background: rgb(255, 255, 255);
    }
    .menu-btn.open .menu-btn_burger::after {
        transform: rotate(-45deg) ;
        background: rgb(255, 255, 255);
    }
    .menu-btn.open .sidemenu{
        float: right;
        background: tomato;
    }
    .contract{
        width: 80%;
    }
  }