/* reset */

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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul,

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
	word-wrap: break-word;
}


/* flex class */

.flex {
    display: flex;
}

.flex-w {
    display: flex;
    flex-wrap: wrap;
}

.just-c {
    justify-content: center;
}

.just-sb {
    justify-content: space-between;
}

.align-c {
    align-items: center;
}


/* fonts */

@font-face {
    font-family: "Lato";
	src: local("☺"),
		url("./assets/fonts/latolight.svg") format("svg"),
		url("./assets/fonts/latolight.otf") format("opentype"),
		url("./assets/fonts/latolight.ttf") format("ttf"),
		url("./assets/fonts/latolight.woff") format("woff"),
		url("./assets/fonts/latolight.woff2") format("woff2");
    font-weight: 300;
	font-display: swap;
}

@font-face {	
	src: local("☺"),
		url("./assets/fonts/latoregular.svg") format("svg"),
		url("./assets/fonts/latoregular.otf") format("opentype"),
		url("./assets/fonts/latoregular.ttf") format("ttf"),
		url("./assets/fonts/latoregular.woff") format("woff"),
		url("./assets/fonts/latoregular.woff2") format("woff2");
    font-weight: 400;
	font-display: swap;
}

@font-face {
    font-family: "Lato";
	src: local("☺"),
		url("./assets/fonts/latosemibold.svg") format("svg"),
		url("./assets/fonts/latosemibold.otf") format("opentype"),
		url("./assets/fonts/latosemibold.ttf") format("ttf"),
		url("./assets/fonts/latosemibold.woff") format("woff"),
		url("./assets/fonts/latosemibold.woff2") format("woff2");
    font-weight: 600;
	font-display: swap;
}

@font-face {
    font-family: "Lato";
	src: local("☺"),
	src:	url("./assets/fonts/latobold.svg") format("svg"),
	src:	url("./assets/fonts/latobold.ttf") format("ttf"),
	src:	url("./assets/fonts/latobold.woff") format("woff"),
	src:	url("./assets/fonts/latobold.woff2") format("woff2");
    font-weight: 700;
	font-display: swap;
}

@font-face {
    font-family: "Lato";
	src: local("☺"),
	src:	url("./assets/fonts/latoblack.svg") format("svg"),
	src:	url("./assets/fonts/latoblack.ttf") format("ttf"),
	src:	url("./assets/fonts/latoblack.woff") format("woff"),
	src:	url("./assets/fonts/latoblack.woff2") format("woff2");
    font-weight: 900;
	font-display: swap;
}

body * {
    font-family: "Lato";
    color: #FFF;
}

/* styles */

.cont {
    width: 1240px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

body {
    background-color: #0A0A0A;
}


/* ui kit */

.btn {
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #aaaaaa;
    box-sizing: border-box;
    border-radius: 8px;
    font-weight: 900;
    font-size: 16px;
    line-height: 27px;
    padding: 18px 28px;
    cursor: pointer;
    text-transform: uppercase;
    transition: .3s;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #FFFFFF;
}

.h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 43px;
}


/* header */

.header-mobile {
    display: none;
}

.header {
    padding-top: 27px;
    background-color: #000;
}

.nav-item {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    margin: 0 40px;
}

.header-logo {
    margin: 0 41px;
}

@media screen and (max-width: 1300px) {

    /* ui */
    .cont {
        width: 740px;
    }

    /* header */
    .nav-item {
        margin: 0 15px;
        font-size: 14px;
    }

    .header-logo>svg {
        width: 70px;
    }
}

@media screen and (max-width: 750px) {

    /* ui */
    .cont {
        width: 95%;
    }

    .h2 {
        font-size: 22px;
        line-height: 26px;
    }

    /* header */
    .header {
        padding-top: 10px;
    }

    .header .cont {
        z-index: 99;
    }

    .header-mobile {
        position: relative;
        z-index: 4;
        display: flex;
        justify-content: space-between;
    }

    .mobile-logo>svg {
        display: block;
    }

    .close {
        display: none;
    }

    .menu-open .close {
        display: block;
    }

    .menu-open .burger {
        display: none;
    }

    .menu-open .header-nav {
        opacity: 1;
        pointer-events: all;
    }

    .menu-open {
        overflow: hidden;
    }

    .header-logo {
        display: none;
    }

    .header-nav {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100vh;
        z-index: 2;
        background: rgba(10, 10, 10, 0.8);
        display: block;
        box-sizing: border-box;
        font-weight: bold;
        font-size: 18px;
        line-height: 22px;
        padding: 124px 20px 0 20px;
        opacity: 0;
        pointer-events: none;
        transition: .3s;
    }

    .nav-item {
        width: 100%;
        display: block;
        margin: 0 0 40px 0;
    }
}