@font-face {
    font-family: Drexs;
    src: url(fonts/drexs.ttf);
}
body {
    padding:0;
    margin:0;
    font-family: "Comfortaa", cursive;
}
* {
    box-sizing: border-box;
}
a {
    text-decoration:none;
}
header {
    width:100%;
    position:fixed;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:10;
    padding: 25px 0;
    transition: 300ms;
}
header.active {
    background: rgba(0,0,0,0.3);
    padding:0;
}
.logo a {
    padding: 25px 50px;
    font-size: 32px;
    font-weight: 600;
    color:#fff;
    font-family: Drexs;
}
.navbar {
    margin: 0 50px;
}
.navbar ul {
    display:inline-block;
    list-style:none;
}
.navbar ul li {
    display:inline-block;
    margin: 0 10px;
}
.navbar ul li a {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}
.profile {
    border-radius:20px;
    color:#fff;
    font-size: 18px;
    font-weight: 600;
    vertical-align:middle;
    background: rgba(255,255,255,0.2);
    margin-left: 20px;
    padding: 10px 15px 10px 5px;
    transition:300ms;
}
.profile:hover {
    background: rgba(0,0,0,0.2);
}
.profile img {
    width: 30px;
    height:auto;
    vertical-align:middle;
    margin-right: 10px;
}
.hamburger {
    display:none;
}
@media only screen and (max-width:600px){
    .page-inner {
        padding: 25px 0 !important;
    }
    .page {
        padding: 50px!important;
    }
    .hp-title {
        width: inherit !important;
        text-align: center;
    }
    .bt-40 {
        font-size: 26px!important;
        line-height: 50px!important;
    }
    .heros-2 {
        padding: 50px 0;
        display: flex;
    }
    .heros {
        display: none !important;
    }
    .container {
        display: block !important;
    }
    .moon {
        width: 100%;
    }
    .mars {
        width: 80%;
    }
}
@media only screen and (min-width: 600px) and (max-width: 992px){
    .page {
        padding: 50px!important;
    }
    .hp-title {
        width: inherit !important;
        text-align:center;
    }
    .bt-40 {
        font-size: 35px!important;
        line-height: 60px!important;
    }
    .heros-2 {
        padding: 50px 0;
        display:flex;
    }
    .heros {
        display:none !important;
    }
    .container {
        display:block !important;
    }
    .moon {
        width: 100%!important;
    }
    .mars {
        width: 80%!important;
    }
}
@media only screen and (min-width: 992px){
    .col-2 {
        width: 50%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px){
    .heros-2 {
        display:none;
    }
    .page {
        padding: 50px !important;
    }
    .bt-40 {
        font-size: 30px !important;
        line-height: 60px !important;
    }
    .heros {
        padding: 25px !important;
    }
    .moon {
        width: 100%;
    }
    .mars {
        width: 50%;
    }
}
@media only screen and (min-width: 1200px) {
    .heros-2 {
        display:none;
    }
}
.gallery {
    width: 100%;
    display:flex;
    margin: 25px 0;
    flex-wrap: wrap;
    justify-content:center;
}
.gallery-item {
    width: 210px;
    height:150px;
    border-radius: 10px;
    margin: 2px;
    overflow:hidden;
    box-sizing:content-box;
    position:relative;
    cursor:pointer;
}
.gallery-item img {
    width: 210px;
    height: 150px;
    transform: scale(1.0);
    transition: transform 300ms ease-out;
}
.gallery-item:hover img {
    transform: scale(1.1);
    transition: transform 300ms ease-in;
}
.transparent-window {
    position:absolute;
    top:0;
    left:0;
    height: 150px;
    width: 210px;
    background-color: rgba(0,0,0,0);
    transition: background-color 300ms ease-in;
}
.transparent-window:hover {
    background-color: rgba(0,0,0,0.4);
    transition: 300ms ease-out;
}
.caption {
    position:absolute;
    bottom: 5px;
    left: 10px;
    opacity:0;
    transform: translateY(0);
    transition: 300ms ease-out;
}
.transparent-window:hover .caption {
    opacity:1;
    transform: translateY(-10px);
    transition: 300ms ease-in;
}
.gallery-item a {
    color:#fff;
    font-size: 16px;
    font-weight: 400;
}
.page {
    padding: 100px;
}
.page.home {
    background:#0d121a;
}
.page.gl {
    background: #0a0b0e;
}
.page-inner {
    padding: 50px;
}
.page-title {
    width: 100%;
    text-align:center;
    font-size: 26px;
    color:#fff;
}
.bt-40 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    line-height: 100px;
    margin:0;
    padding:0;
}
.pt-20 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 40px;
}
.hp-title {
    width: 50%;
}
.heros {
    padding: 25px 100px;
    width:50%;
    display:flex;
    justify-content: center;
}
.moon {
    position:relative;
    width: 80%;
}
.moon img {
    width: 100%;
    height:auto;
}
.mars {
    width: 40%;
    position:relative;
    left:20%;
}
.mars img {
    width: 100%;
    height:auto;
}
.container {
    display:flex;
    align-items:center;
}