/* base */
body, input, select, textarea {
    font-family: 'Poppins', sans-serif;
    background-color: #1e1f23;
}

body:after {
    -moz-pointer-events: none;
    -webkit-pointer-events: none;
    -ms-pointer-events: none;
    pointer-events: none;
    -moz-transition: opacity 1.5s ease-in-out, visibility 1.5s;
    -webkit-transition: opacity 1.5s ease-in-out, visibility 1.5s;
    -ms-transition: opacity 1.5s ease-in-out, visibility 1.5s;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
    content: '';
    background-image: url(../images/bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 980px) {
    body:after {
        background-attachment: scroll;
        background-position: top;
        background-size: 100%;
    }
}

/* reset */
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

/* container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


@media screen and (max-width: 1280px) {
    .container {
        max-width: 980px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
}

@media screen and (max-width: 980px) {
    .container {
        max-width: 700px;
    }
}

@media screen and (max-width: 736px) {
    .container {
        max-width: 460px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        max-width: 360px;
    }
}

@media screen and (max-width: 380px) {
    .container {
        max-width: 320px;
    }
}

/* header */
.header {
    padding-top: 8rem;
}

.header__logo {
    text-align: center;
}

.header__title {
    font-size: 3.7rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    text-decoration: none;
    line-height: 1rem;
}

.header__title:after {
    content: "";
    display: block;
    background-color: #bbb;
    margin: auto;
    width: 40%;
    height: .1rem;
    position: absolute;
    top: 100%;
    left: 30%;
    z-index: 1;
}

/* nav */
.nav {
    font-size: 1.1rem;
    font-weight: 300;
    padding: 2rem 0;
    text-transform: uppercase;
    text-align: center;
}

.nav__link {
    margin: 0 1.2rem;
    color: #bbb;
    position: relative;
    text-decoration: none;
}

.nav__link:after {
    content: "";
    display: none;
    background-color: #fff;
    width: 100%;
    height: .1rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
}

.nav__link:hover {
    color: #fff;
}

.nav__link:hover:after {
    display: block;
}

/* section */
.section {
    background-color: #f2f2f2;
    box-shadow: 0 0 15px 0 #333;
    overflow: hidden;
    border-radius: 4px;
}

/* notification */
.info_message {
    width: 100%;
    background-color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.info__danger {
    color: #ff3737;
}

.info__success {
    color: #37aa37;
}

/* one */
.one__image img {
    width: 100%;
    display: block;
}

/* special_header */
.special-header {
    width: 100%;
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
}

@media screen and (max-width: 980px) {
    .special-header {
        padding: 2rem;
    }
}

.special-header_background-color_black {
    background-color: #000;
}

.special-header__title {
    position: relative;
    padding-bottom: .75rem;
    margin-bottom: .75rem;
    font-size: 1.6rem;
}

@media screen and (max-width: 736px) {
    .special-header__title {
        font-size: 1.5rem;
    }
}

.special-header__title_color_white {
    color: #fff;
}

.special-header__title:after {
    content: '';
    position: absolute;
    margin: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 0.05rem;
    background-color: #666;
}

@media screen and (max-width: 736px) {
    .special-header__title:after {
        width: 50%;
    }
}

.special-header__subtitle {
    text-transform: uppercase;
    font-weight: 300;
    font-size: .8rem;
    color: #666;
    letter-spacing: .25rem;
    margin: 0;
}

/* content */
.content {
    padding: 4rem 6rem;
}

@media screen and (max-width: 736px) {
    .content {
        padding: 2rem;
    }
}

.container__paragraph {
    font-weight: 300;
    margin: 2rem 0;
    color: #999;
}

@media screen and (max-width: 736px) {
    .container__paragraph {
        margin: 0 0 2rem 0;
    }
}

/* gallery */
.gallery {
    background-color: #222;
    padding: 6rem;
}

@media screen and (max-width: 736px) {
    .gallery {
        padding: 2rem;
    }
}

.gallery__inner {
    overflow: hidden;
    border-radius: 4px;
}

.gallery__images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    background-color: #000;
}
.gallery__item {
    width: 50%;
}

.gallery__item img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 980px) {
    .gallery__item {
        width: 100%;
    }
}

/* spotlight */
.spotlight {
    display: flex;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 980px) {
    .spotlight {
        flex-wrap: wrap;
        text-align: center;
    }
}

.spotlight__motion {
    flex-direction: row-reverse;
    background-color: #1e1f23;
    color: #fff;
    text-align: right;
}

@media screen and (max-width: 980px) {
    .spotlight__motion {
        text-align: center;
    }
}

.spotlight__image {
    width: 50%;
}

@media screen and (max-width: 980px) {
    .spotlight__image {
        width: 100%;
    }
}

.spotlight__image img {
    display: block;
    width: 100%;
}

.spotlight__inner {
    vertical-align: auto;
    width: 50%;
    padding: 6rem;
}

@media screen and (max-width: 980px) {
    .spotlight__inner {
        width: 100%;
    }
}

@media screen and (max-width: 736px) {
    .spotlight__inner {
        padding: 2rem;
    }
}

.spotlight__title {
    margin-bottom: 1rem;
}

.spotlight__text {
    font-weight: 300;
    color: #808080;
}

/* social */
.social {
    margin: 3rem auto 0;
    display: flex;
    justify-content: center;
}

.social__item {
    /*width: 5%;*/
}

.social__link img {
    display: block;
    height: 3rem;
    opacity: .5;
}

.social__link:hover img {
    opacity: 1;
}

/* forms */
.form {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2rem;
}

.form__inner {
    vertical-align: auto;
    width: 50%;
    padding: 2rem;
}

@media screen and (max-width: 1280px) {
    .form {
        padding: 1rem;
    }

    .form__inner {
        width: 65%;
    }
}

@media screen and (max-width: 1024px) {
    .form {
        flex-direction: column-reverse;
    }

    .form__inner {
        width: 80%;
    }
}

@media screen and (max-width: 980px) {
    .form__inner {
        width: 90%;
    }
}

@media screen and (max-width: 736px) {
    .form {
        padding: 0.5rem;
    }

    .form__inner {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .form__inner {
        padding: 0.7rem;
    }
}

@media screen and (max-width: 380px) {
    .form__inner {
        width: 100%;
    }
}

.form__row {
    padding-bottom: 1rem;
    color: #999;
}

@media screen and (max-width: 480px) {
    .form__row {
        padding-bottom: 0.7rem;
    }
}

.row__content {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row__inner {
    width: 30%;
    display: block;
    text-align: center;
}

@media screen and (max-width: 736px) {
    .row__content {
        flex-direction: column;
    }

    .row__inner {
        padding-top: 0.4rem;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .row__content {
        padding-top: 0.4rem;
    }
}

@media screen and (max-width: 380px) {
    .row__content {
        padding-top: 0.3rem;
    }
}

.form__logo {
    width: 50%;
}

.form__title {
    text-align: center;
    font-size: 3.5rem;
}

@media screen and (max-width: 1024px) {
    .form__title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .form__title {
        font-size: 2.5rem;
    }
}

/* elements */
input[type="text"], input[type="email"], input[type="password"] {
    height: 2.75rem;
    line-height: 1.65;
    background: rgba(144, 144, 144, 0.075);
    appearance: none;
    border: 0.13rem solid rgba(144, 144, 144, 0.25);
    border-radius: 0.4rem;
    color: #444;
    display: block;
    outline: 0;
    padding: 0 1rem;
    text-decoration: none;
    width: 100%;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
    border-color: #52a452;
}

input[type="submit"], .button {
    height: 2.75rem;
    line-height: 2.75rem;
    background: #54a354;
    border: 0;
    appearance: none;
    border-radius: 0.4rem;
    color: #ffffff;
    display: block;
    outline: 0;
    padding: 0 1rem;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

input[type="submit"]:hover, .button:hover {
    background: #72ae72;
}

.ya_button {
    text-transform: none;
    color: #f5f5dc;
    font-size: 1.2rem;
    background: #ff3737;
}

.ya_button:hover {
    background: #ff5555;
}

input[type="checkbox"], input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -2rem;
    opacity: 0;
    width: 1rem;
    z-index: -1;
}

input[type="checkbox"] + label, input[type="radio"] + label {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    color: rgba(0, 0, 0, 0.5);
    font-size: 1rem;
    font-weight: 300;
    padding-left: 2.4rem;
    padding-right: 0.75rem;
    position: relative;
}

input[type="checkbox"]:focus + label::before, input[type="radio"]:focus + label::before {
    border-color: #52a452;
}

input[type="checkbox"] + label::before, input[type="radio"] + label::before {
    background: rgba(144, 144, 144, 0.075);
    border: 0.13rem solid rgba(144, 144, 144, 0.25);
    content: '';
    display: inline-block;
    height: 1.65rem;
    left: 0;
    line-height: 1.58rem;
    position: absolute;
    text-align: center;
    top: 0;
    width: 1.65rem;
}

input[type="checkbox"] + label::before {
    border-radius: 0.2rem;
}

input[type="radio"] + label::before {
    border-radius: 0.87rem;
}

input[type="checkbox"]:checked + label::before, input[type="radio"]:checked + label::before {
    background-color: #54a354;
    border-color: #54a354;
    color: #ffffff;
    content: '\2714';
}

a {
    color: #54a354;
}

a:hover {
    text-decoration: none;
}

/* footer */
.footer {
    text-align: center;
}

.footer__copyright {
    margin: 2rem 0 1.5rem;
    color: #bbb;
    font-size: 0.9rem;
}