@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

html {
    scroll-behavior: smooth;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

sup {
    font-size:0.7rem;
    vertical-align:super;
}

/* Inter Regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Inter-Regular.ttf') format('woff2'), 
         url('../fonts/Inter-Regular.ttf') format('truetype'); 
  }
  
  /* Inter ExtraBold */
  @font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'),
         url('../fonts/Inter-ExtraBold.ttf') format('truetype');
  }

a, button {
    cursor: pointer;
}

a, a:visited {
    color: #232323;
}

.container {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 48rem) {

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
}

@media only screen and (min-width: 48rem) {

.container {
    width: 46rem;
  }
}

@media only screen and (min-width: 62rem) {

.container {
    width: 61rem;
}
}

@media only screen and (min-width: 75rem) {

.container {
    width: 71rem;
  }
}

.row {
   box-sizing: border-box;
   display: -ms-flexbox;
   display: -webkit-box;
   display: flex;
   -ms-flex: 0 1 auto;
   -webkit-box-flex: 0;
   flex: 0 1 auto;
   -ms-flex-direction: row;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
   flex-direction: row;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
}

.col {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
}

body {
    background-color: #0D0C10;
    color: #fefefe;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

header {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

header .row {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.logo.col {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
}

.logo a {
    display: inline-block;
    vertical-align: middle;
}

.logo a img {
    width: 10rem;
    vertical-align: middle;
}

.main-menu.col {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
}


/*typography*/

h1, h2, h3 {
    font-family: "Inter", sans-serif;
    font-weight: 800;
}

/*nav*/

.main-menu {
    text-align: right;
}

.main-menu li.nav-item {
    display: inline-block; 
    position: relative;
    padding: 1rem 0;
}

.main-menu li.nav-item a { 
    display: block;
    text-decoration: none; 
    font-size: 1rem; 
    font-weight: 400; 
    padding: 0.5rem 1.5rem;
    -webkit-transition: all ease-out .2s; 
    -moz-transition: all ease-out .2s; 
    -o-transition: all ease-out .2s; 
    transition: all ease-out .2s;
    position: relative;
    border-radius: 100px;
}

.main-menu li.nav-item.link-btn a {
    background-color: #0D0C10;
    color: #fefefe;
    border: 1.5px solid #fefefe;
}

.main-menu li.nav-item.link-btn a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100px;
    height: 0;
    width: 0;
    background-color: rgba(255,255,255,0.1);
    -webkit-transition: all ease-out .2s;
    -moz-transition: all ease-out .2s;
    -o-transition: all ease-out .2s;
    transition: all ease-out .2s;
    opacity: 0;
}

.main-menu li.nav-item.link-btn a:hover:before, .main-menu li.nav-item.link-btn a:active:before, .main-menu li.nav-item.link-btn a:focus:before {
    opacity: 1;
    height: 100%;
    width: 100%;
}

@media only screen and (max-width: 75rem) {
    
header .container {
    width: 100%;
}    
    
}

@media only screen and (max-width: 62rem) {
        
header {
    padding-top: 0;
}

}

@media only screen and (max-width: 62rem) {
        
header .container {
    padding: 0;
}

}

@media only screen and (max-width: 30rem) {
    
header {
    padding-top: 01rem;
} 

.main-menu {
    display: none;
}

.logo.col {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
}

.logo a img {
    width: 8rem;
}

}


/*intro*/

main {
    background: url(../img/bg.svg), url(../img/light-up-icon.svg);
    background-size: contain, 60rem;
    background-repeat: no-repeat, no-repeat;
    background-position: top left, top -6rem center;
}


#intro {
    position: relative;
}

#intro .container > .row {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    min-height: 60vh;
    padding: 6rem 0;
}

#intro .intro-info {
    text-align: center;
}

#intro .intro-info h1 {
    font-size: 6rem;
    line-height: 1.3;
}

#intro .intro-info h1 span {
    color: #D1FF10;
}

#intro .intro-info h1 + p {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #fefefe;
    margin-top: 3rem;
}

#intro .download-btn {
    margin-top: 3rem;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

#intro .download-btn a {
    text-decoration: none;
}

.btn-primary, .btn-primary:visited {
    background-color: #0D0C10;
    color: #D1FF10;
    border: 1.5px solid #D1FF10;
    border-radius: 100px;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: inherit;
    -webkit-transition: all ease-out .2s;
    -moz-transition: all ease-out .2s;
    -o-transition: all ease-out .2s;
    transition: all ease-out .2s;
    position: relative;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100px;
    height: 0;
    width: 0;
    background-color: rgba(255,255,255,0.1);
    -webkit-transition: all ease-out .2s;
    -moz-transition: all ease-out .2s;
    -o-transition: all ease-out .2s;
    transition: all ease-out .2s;
    opacity: 0;
}

.btn-primary:hover:before, .btn-primary:active:before, .btn-primary:focus:before {
    opacity: 1;
    height: 100%;
    width: 100%;
}

@media only screen and (max-width: 100rem) {

#intro .intro-info h1 {
    font-size: 5rem;
}       
    
}

@media only screen and (max-width: 75rem) {
 
main {
    background-size: 180%, 60rem;
}    

    
}

@media only screen and (max-width: 62rem) {

#intro .intro-info h1 {
    font-size: 4rem;
}

#intro .intro-info h1 + p {
    font-size: 1.5rem;
}

#intro .intro-info h1 + p br {
    display: none;
}

#intro .download-btn a {
	margin-right: 0.5rem;
    margin-left: 0.5rem;
	text-decoration: none;
}
    
}

@media only screen and (max-width: 48rem) {
    
#intro .intro-info h1 {
    padding: 0 1rem;
}
    
#intro .intro-info h1 + p {
    padding: 0 1rem;
}

    
} 

@media only screen and (max-width: 37rem) {
    
main {
    background-size: 300%, 50rem;
    background-position: top left, top -2rem center;
}    

#intro .intro-info h1 {
	font-size: 3.5rem;
}

#intro .intro-info h1 + p {
	font-size: 1.3rem;
}

#intro .container > .row {
	padding: 4rem 0;
}

}

/*about*/

#about {
    padding-top: 15rem;
}

#projects, #moreinfo, #contact {
    padding-top: 20rem;
}

#contact {
    padding-bottom: 20rem;
}

#about .container > .row {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

#about .container .row .col {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
    max-width: 48%;
}

h2.section-head {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: lowercase;
    line-height: 1.3;
    padding: 0 1rem;
}

h2.section-head span {
    color: #D1FF10;
}

#about .container .row .col {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
    max-width: 48%;
}

#about .container .row .col p {
    font-size: 1.3rem;
    line-height: 1.5;
    padding-top: 2rem;
    color: #868797;
}

@media only screen and (max-width: 75rem) {

h2.section-head {
    font-size: 4rem;
}


}

@media only screen and (max-width: 62rem) {

#about {
    padding-top: 10rem;
}

#projects, #moreinfo, #contact {
    padding-top: 12rem;
}

#contact {
    padding-bottom: 12rem;
}

#about .container .row .col {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

h2.section-head {
    font-size: 3rem;
    margin-bottom: 0;
}
    
}

@media only screen and (max-width: 48rem) {

#about {
    padding-top: 8rem;
}

#projects, #moreinfo, #contact {
    padding-top: 8rem;
}

#contact {
    padding-bottom: 8rem;
}
    
}

#projects .row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 1rem;
}

#projects .col {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
    text-align: center;
    border-radius: 16px;
    padding: 2rem 0;
    border: 3px dashed #D1FF10;
    margin-top: 2rem;
    position:relative;
}

#projects .col:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 16px;
	height: 0;
	width: 0;
	background-color: rgba(255,255,255,0.1);
	-webkit-transition: all ease-out .2s;
	-moz-transition: all ease-out .2s;
	-o-transition: all ease-out .2s;
	transition: all ease-out .2s;
	opacity: 0;
}

#projects .col:hover::before, #projects .col:active::before, #projects .col:focus::before {
	opacity: 1;
	height: 100%;
	width: 100%;
}

#projects .col img {
    width: 20rem;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 75rem) {

#projects .col {
    padding: 1rem 0;
}

#projects .col img {
	width: auto;
}
    
}

@media only screen and (max-width: 62rem) {

#projects .col {
    -ms-flex-preferred-size: 33%;
    flex-basis: 33%;
    max-width: 33%;
    border: none;
}
    
}

@media only screen and (max-width: 48rem) {

#projects .col img {
    width: 100%;
}
    
}

@media only screen and (max-width: 34rem) {

#projects .col {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}
    
}

@media only screen and (max-width: 34rem) {

#projects .col {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    border: 2px dashed #D1FF10;
}

#projects .col img {
	width: 15rem;
}
    
}

#contact .container > .row {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

#contact .container .row .col {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
    max-width: 48%;
  }

#contact .container .row .col p {
    font-size: 1.3rem;
    line-height: 1.5;
    padding-top: 2rem;
    color: #868797;
}

#contact .container .row .col span {
    color: #D1FF10;
}

#contact .container .row .col span span.hid {
    display: none;
}

@media only screen and (max-width: 62rem) {

#contact .container .row .col {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}
    
}

/* footer */

footer {
    background-color: #1F2029;
    padding: 1rem;
}

footer .row {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

footer .col {
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    color: #ffffff;
    display: inline-block;
    text-align: center;
}

@media only screen and (max-width: 62rem) {
    
footer .col {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0;
}
    
}

