/* Global */
*{
    box-sizing: border-box;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #003061 white;
}
  
::-webkit-scrollbar {
    height: 6px;
    width: 7px;
}
  
::-webkit-scrollbar-track {
    background: #003061;
}
  
::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 5px;
    border: 1.5px solid #003061;
}

h1, h2, h3, a, p, li, span{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: white;
    text-decoration: none;
    line-height: normal;
    text-align: center;
}

section{
    padding: 2vw 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap{
    display: flex;
    justify-content: space-between;
}

.w1{
    width: 100%;
}

.w2{
    width: 50%;
}

.w3{
    width: 25%;
}

h1{
    font-size: 5em;
    margin-bottom: 50px;
}

h2{
    font-size: 3em;
}

h3{
    font-size: 1.5em;
}

p{
    font-size: 1.1em;
    font-weight: normal;
    margin-bottom: 10px;
}

.inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner *{
    margin-bottom: 20px;
}

img{
    width: 45%;
    border-radius: 15px;
    object-fit: cover;
    object-position: center center;
}

a{
    font-size: 20px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    text-shadow: 2px 2px 2px darkblue;
  }
  
  a::after{
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 3px;
    background: blue;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
  }
  
  a:hover {
    color: blue;
  }
  
  a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

/* Menu */
.menu{
    height: 80px;
    padding: 0 5vw;
    background: black;
}

.nav{
    margin: 0 auto;
    justify-content: center;
}

.nav *{
    margin-left: 25px;
}

.nav *:first-child{
    margin: 0;
}

/* Banner */
.banner{
    height: calc(100vh - 80px);
    padding: 0;
    background: url(../img/banner.webp);
    background-size: cover;
    background-position: center center;
}

.title{
    position: absolute;
}

.allScreen{
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.box{
    padding: 2vw;
    background: #0000ffa0;
    border-top-left-radius: 15px;
}

.box p{
    font-size: 1em;
}

/* MediaBox */
.mediaBox{
    display: none;
    padding: 0;
    background: url(../img/banner.webp);
    background-size: cover;
    background-position: center center;
}

.mediaBox .inner{
    padding: 5vw;
    background: #0000ffa0;
}

/* feels */
.feels{
    background: #292569;
}

.feelsWrap{
    align-items: center;
}

/* Fly */
.fly *{
    color: black;
}

.mediaFly{
    display: none;
    margin: 0;
}

/* They */
.they{
    background: #655e67;
}

.text{
    width: 45%;
}

/* Fackts */
.fackts{
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .8)), url(../img/space.jpg);
    background-size: cover;
    background-position: center center;
}

.fackts *{
    
    text-align: left;
}

.fackts .inner{
    align-items: flex-start;
}

.fackts .inner h2{
    margin: 0 auto 20px;
}

.numberBox{
    width: 10%;
    margin: 0 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    border: 5px dotted white;
    border-radius: 50%;
    margin: 0;
    padding: 25px;
}

.footer{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.footer *{
    margin: 0;
}

.footer .logo{
    width: 5%;
    height: calc(75% + 1vw);
    display: flex;
    justify-content: center;
    padding: 1vw;
}

.footer .logo:hover{
    transform: scale(1.2);
}

.footer .logo::after{
    display: none;
}

.footer .logo img{
    width: auto;
    height: 100%;
}

.footer span{
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

/* Media */
@media (max-width: 1152px){
    /* Global */
    h1{
        font-size: 3.5em;
    }

    h3{
        font-size: 1.1em;
    }

    p{
        font-size: 1em;
    }

    /* Menu */
    .menu .wrap{
        width: 100%;
        padding: 0 5vw;
    }

    /* Banner */
    .box{
        display: none;
    }

    .mediaBox{
        display: block;
    }

    /* Fly */
    .fly .inner .inner .wrap{
        display: none;
    }

    .mediaFly{
        display: block;
    }
}