/* -------------------------------------------------------------------------------------------------------------------------- */
/* stylesheet - steps © 2019 */
/* -------------------------------------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600&display=swap');

/* -------------------------------------------------------------------------------------------------------------------------- */
/* html tag */
html{
    font-family: 'Josefin Sans', sans-serif;
}
/* -------------------------------------------------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------------------------------------------------- */
/* body tag */
body{
    margin: 0 0 0 0;
    background-color: #161616;
    overflow-x: hidden;
}
/* -------------------------------------------------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------------------------------------------------- */
/* section tag */
section{
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #161616;
    height: 100vh;
    width: 100vw;
    position: relative;
}

section > div{
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: inherit;
    padding: 10px;
    margin: 8% 10% 5% 10%;
}

section > div > div:first-child{
    display: flex;
    flex: 0.8;
    justify-content: center;
    flex-direction: column;
    margin-right: 12px;
}

section > div > div:first-child > img{
    margin: 6% auto 6% auto;
    width: 40%;
}


section > div > div:first-child > div{
    display: flex;
    justify-content: center;
    flex-direction: row;
}

section > div > div:first-child > div > div{
    display: flex;
    flex: 1;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 6%;
}

section > div > div:first-child > h1{
    color: #48f7b9;
    text-align: center;
    margin: 5px;
}

section > div > div:first-child > h3{
    color: #f5f5f5;
    text-align: center;
    margin: 5px;
}

section > div > div:first-child > p{
    color: #f5f5f5;
    text-align: center;
    margin: 5px;
}
section > div > div{
    flex: 1;
    display: flex;
}

@media only screen and (max-width : 840px) {
    section > div{
        flex: 0;
    }
    section > div > div:first-child{
        min-width: 300px;
    }
    section > div > div:first-child > img{
        margin: 8% auto 8% auto;
        width: 60%;
    }
}

.justify{
    text-align: justify!important;
}

label{
    color: #f5f5f5;
    display: block;
    margin-left: 10%;
    margin-top: 10%;
}

button{
    color: #161616;
    background-color: #48f7b9;
    padding: 10px 30px 10px 30px;
    border: solid #48f7b9;
    border-radius: 30px;
    display: block;
    font-weight: bold;
    float: right;
    margin-top: 10%;
    margin-right: 10%;
    cursor: pointer;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
}

button:hover{
    background-color: #f5f5f5;
    border: solid #f5f5f5;
    color: #161616;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset;
}

input{
    display: block;
    padding: 10px;
    border: solid #f5f5f5;
    text-indent: 10px;
    border-radius: 30px;
    margin: auto;
    width: 80%;
}

textarea {
    display: block;
    width: 85%;
    height: 150px;
    padding: 10px;
    text-indent: 10px;
    box-sizing: border-box;
    border: solid #f5f5f5;
    border-radius: 30px;
    background-color: #f5f5f5;
    resize: none;
    margin: auto;
  }
/* -------------------------------------------------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------------------------------------------------- */
/* header tag */ 
header{
    width: 100%;
    height: 96px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#logo{
    position: absolute;
    display: block;
    float: left;
    background-image: url(../img/iso.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    left: 10%;
    top: 20%;
    z-index: 2;
}

nav {
    float: right;
    margin-right: 10%;
    padding: 20px;
    font-size: 18px;
}

a{
    text-decoration: none;
    color: #f5f5f5;
    transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}

a:hover{
    color: #7fffd2;
}

li {
	display: inline-block;
    padding: 2px 10px 10px 10px;
}

#menu-icon{
    display: none;
    font-size: 35px;
    text-align: center;
    right: 10%;
	width: 35px;
	height: 35px;
}

.pre-register{
    background-color: #48f7b9;
    color: #161616;
    border-radius: 30px;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
}

.pre-register:hover{
    background-color: #f5f5f5;
    color: #161616;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3) inset;
}

@media only screen and (max-width : 840px) {

header{
    position: absolute;
}

#menu-icon{
    position: absolute;
    display: block;
    top: 40%;
}

nav ul, nav:active ul{
    display: none;
    position: absolute;
    background: #161616;
    margin: auto;
    right: 0px;
    top: 150px;
    width: 100%;
}

nav li{
    text-align: center;
    width: 100%;
    padding: 10px 0;
    margin: 0;
}

#list{
    transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
}

}


/* -------------------------------------------------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------------------------------------------------- */
/*tooltip*/
.tippy-tooltip{
    background-color: #48f7b9;
    color: #161616;
}
.tippy-tooltip[data-animation='scale'][data-state='hidden']{
    opacity: 0;
    transform: scale(0);
    color: #161616;
}
/* -------------------------------------------------------------------------------------------------------------------------- */