a, header {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out
}

a, button {
    outline: 0 !important
}

a img, button {
    border: none
}

#main_container, header {
    width: 100%;
    height: auto
}

footer, header {
    align-items: center
}

h1, h2 {
    position: relative
}

body, html {
    height: 100%
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font: inherit;*/
    vertical-align: baseline
}

h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 10px
}

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

blockquote, q {
    quotes: none
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 400
}

h1 {
    font-size: 80px;
    margin-bottom: 0
}

h2 {
    font-size: 44px
}

h3 {
    font-size: 30px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 20px
}

h6 {
    font-size: 18px
}

body, button {
    font-family: pop;
    font-size: 14px
}

@font-face {
    font-family: popb;
    src: url(../../fonts/poppins_bold/poppins-extrabold-webfont.eot);
    src: url(../../fonts/poppins_bold/poppins-extrabold-webfont.eot?#iefix) format("embedded-opentype"), url(../css/fonts/poppins_bold/poppins-extrabold-webfont.woff) format("woff"), url(../css/fonts/poppins_bold/poppins-extrabold-webfont.ttf) format("truetype"), url(../../fonts/poppins_bold/poppins-extrabold-webfont.svg#svgFontName) format("svg")
}

@font-face {
    font-family: pop;
    src: url(../css/fonts/poppins/poppins-regular-webfont.eot);
    src: url(../css/fonts/poppins/poppins-regular-webfont.eot?#iefix) format("embedded-opentype"), url(../css/fonts/poppins/poppins-regular-webfont.woff) format("woff"), url(../../fonts/poppins/poppins-regular-webfont.ttf) format("truetype"), url(../../fonts/poppins/poppins-regular-webfont.svg#svgFontName) format("svg")
}

body {
    line-height: 1.5;
    color: #4A4A4A;
    background-color: #18171c
}

#main_container {
    min-height: -moz-calc(100vh - 160px);
    min-height: -webkit-calc(100vh - 160px);
    min-height: calc(100vh - 160px);
    overflow: hidden
}

button {
    background: 0 0;
    cursor: pointer;
    padding: 0
}

a {
    text-decoration: none !important;
    transition: all .3s ease-in-out;
    color: inherit
}

::selection {
    background: #d641d6 !important;
    color: #fff
}

::-moz-selection {
    background: #d641d6 !important;
    color: #fff
}

header.active, header.active_bg {
    background: #18171c
}

*, ::after, ::before {
    box-sizing: border-box
}

header {
    padding: 30px 100px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    transition: all .3s ease-in-out
}

header .nav_btn, header nav {
    position: relative
}

@media screen and (max-width: 1600px) {
    header {
        padding: 30px 50px
    }
}

@media screen and (max-width: 1400px) {
    header {
        padding: 30px
    }
}

@media screen and (max-width: 1200px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 15px 30px;
        height: 85px
    }

    header.active_bg {
        height: 100vh
    }
}

header.active {
    padding-top: 15px;
    padding-bottom: 15px
}

header .logo img {
    width: 80px;
    height: auto
}

header nav ul {
    display: flex;
    list-style: none;
    text-transform: uppercase
}

header nav ul li a {
    padding: 5px 15px;
    display: block
}

@media screen and (max-width: 1200px) {
    header nav {
        width: 100%;
        height: auto;
        padding: 50px 0 30px;
        display: none
    }

    header nav ul {
        display: block;
        text-align: center
    }

    header nav ul li a {
        padding: 10px 15px
    }
}

header nav ul li a:hover {
    color: #d641d6
}

header nav ul li a.active {
    color: #d641d6;
    border-bottom: 1px solid #d641d6
}

header .nav_btn {
    width: 70px;
    height: 70px;
    display: none
}

@media screen and (max-width: 1200px) {
    header .nav_btn {
        display: block;
        position: absolute;
        right: 0;
        top: 0
    }
}

header .nav_btn::before {
    width: 30px;
    height: 3px;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin: -10px 0 0 -15px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

header .nav_btn::after {
    width: 30px;
    height: 3px;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin: 10px 0 0 -15px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

header .nav_btn span::after {
    width: 30px;
    height: 3px;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin: 0 0 0 -15px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

header .nav_btn.active::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 0 0 -15px
}

header .nav_btn.active::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 0 0 0 -15px
}

header .nav_btn.active span::after {
    width: 0;
    margin: 0
}

footer {
    width: 100%;
    height: auto;
    padding: 150px 15px;
    background: #18171c;
    color: #FFF;
    display: flex;
    justify-content: center
}

.socials, footer .footer ul {
    display: flex;
    align-items: center
}

footer .footer {
    width: auto;
    height: auto;
    text-align: center
}

footer .footer img {
    width: 90px;
    height: auto
}

footer .footer ul {
    justify-content: center;
    list-style: none;
    margin: 50px 0
}

@media screen and (max-width: 760px) {
    header nav ul li a {
        font-family: popb;
        font-size: 18px;
        padding: 10px 15px
    }

    footer {
        padding: 90px 15px
    }

    footer .footer ul {
        flex-direction: column;
        margin: 50px 0 0
    }
}

footer .footer ul li a {
    display: block;
    padding: 5px 15px
}

@media screen and (max-width: 760px) {
    footer .footer ul li a {
        padding: 10px 15px
    }
}

footer .footer ul li a:hover {
    color: #d641d6
}

footer .footer ul li a.active {
    color: #d641d6;
    border-bottom: 1px solid #d641d6
}

.socials {
    width: 100%;
    height: auto;
    justify-content: center
}

.socials a, .socials_n {
    align-items: center;
    display: flex
}

.socials a {
    width: 50px;
    height: 50px;
    justify-content: center;
    margin: 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0)
}

.socials a img, .socials_n {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out
}

.socials a img {
    width: 20px;
    height: 20px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    opacity: .5;
    transition: all .3s ease-in-out
}

.socials a:hover {
    background: #24242f;
    border: 1px solid #d641d6
}

.socials a:hover img {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1
}

.socials_n {
    width: auto;
    height: auto;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: -25px;
    z-index: 1;
    transition: all .3s ease-in-out
}

@media screen and (max-width: 1200px) {
    .socials_n {
        position: inherit;
        width: 100%;
        text-align: center;
        padding: 30px 0 10px;
        right: 0;
        top: 0
    }
}

.socials_n a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px
}

.socials_n a img {
    width: 14px;
    height: 14px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    opacity: .5;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

@media screen and (max-width: 1200px) {
    .socials_n a {
        margin: 0 10px;
        padding: 0 5px
    }

    .socials_n a img {
        width: 20px;
        height: 20px
    }
}

.socials_n a:hover img {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1
}

.active .socials_n {
    top: -20px
}
