@font-face {
    font-family: 'Eagle Book';
    src: url('../fonts/Eagle-Book.woff2') format('woff2'),
    url('../fonts/Eagle-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Eagle Bold';
    src: url('../fonts/eagle_bold_cg-webfont.woff2') format('woff2'),
    url('../fonts/eagle_bold_cg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Helvetica Neue LT Std';
    src: url('../fonts/HelveticaNeueLTStd-BdEx.woff2') format('woff2'),
    url('../fonts/HelveticaNeueLTStd-BdEx.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaExtNormal';
    src: url('../fonts/HelveticaExtNormal.woff2') format('woff2'),
    url('../fonts/HelveticaExtNormal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: Arial, serif;
    background-color: black;
    margin: 0;
    font-size: 16px;
}
.mobile-menu-button {
    display: none;
    background: none;
    border: 0;
}
.icon-mobile-menu {
    fill: white;
}
.header__main-container {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    height: 70px;
    width: 100%;
}
.header__main {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(0,0,0,0.5);
}
.header__brand {
    padding: 12px 20px;
}
.header__brand-image {
    width: 170px;
}
.header__menu-container {
    width: calc(100% - 160px);
    height: 100%;
    text-align: right;
}
.header__menu {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
.header__menu-item {
    height: 100%;
    display: inline-block;
    margin-right: 10px;
}
.header__menu-link {
    display: block;
    height: 100%;
    line-height: 70px;
    padding: 0 15px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}
.header__menu-link--selected {
    color: #fa0304;
}
.footer {
    display: block;
    background: #313131;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 12px;
    color: white;
}
main {
    display: block;
    width: 100%;
    height: 100%;
}
.block {
    width: 100%;
    height: auto;
    display: grid;
}
.block__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.block__video-container {
    display: block;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.block__video {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.block__video__youtube {
    width: 100%;
    height: 100%;
}
.block__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 450ms linear,opacity .3s linear, -webkit-transform 450ms linear !important;
    -webkit-transform: perspective(500px) translateZ(0);
    transform: perspective(500px) translateZ(0);
    background-position: 50%;
    background-size: cover;
}
.block__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(30px);
    transform: translateZ(30px);
    text-align: center;
    user-select: none;
    position: relative;
    text-decoration: none;
    color: #fff;
}
.block__button__title {
    box-sizing: border-box;
    width: 100%;
    font-size: 1.5rem;
    font-family: "Eagle Book", serif;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    transition: opacity 225ms linear 225ms;
    opacity: 1;
    bottom: 0;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}
.block__button:hover .block__button__title {
    opacity: 0;
}
.block__button__details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 4.5vmin;
    transition: opacity 225ms linear 225ms;
    opacity: 0;
    background: rgba(0,0,0,.6);
}
.block__button:hover .block__button__details {
    opacity: 1;
}
.block__button__details-title {
    font-size: 2.5rem;
    font-family: "Eagle Book", serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
.block__button__details-title::after {
    content: '';
    display: block;
    width: 8vmax;
    height: 3px;
    background: #fa0304;
    margin: 1rem auto;
}
.block__button__details-description {
    font-size: 0.8rem;
    font-family: 'Helvetica Neue LT Std', serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
}
.block__border-red {
    border-bottom: 2px solid #fa0304;
}
.block__contact__container {
    width: 90%;
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-between;
    font-family: 'Helvetica Neue LT Std', serif;
}
.block__contact__data__container {
    display: flex;
    flex-direction: column;
    width: 415px;
}
.block__contact__data {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0;
}
.block__contact__data__email {
    color: white;
    text-decoration: none;
}
.block__contact__data__title {
    font-size: 2.2rem;
    letter-spacing: 6.5px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1rem;
}
.block__contact__data__brand-image {
    width: 100%;
}
.block__contact__middle-line {
    height: 100%;
    width: auto;
    border-left: 2px solid white;
    border-right: 2px solid white;
}
.block__contact__form {
    width: 25%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}
.block__contact__form input,
.block__contact__form textarea {
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.block__contact__social {
    position: absolute;
    bottom: 2%;
    left: 5%;
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
}
.block__contact__social__linkedin {
    width: 50px;
}
.row-50 {
    display: flex;
    width: 100%;
    height: 50vh;
}
.row-100 {
    display: flex;
    width: 100%;
    height: 100vh
}
.page__title,
.page__subtitle,
.page__section-title,
.page__section-description {
    color: white;
    text-transform: uppercase;
    margin: 0 15%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
}
.page__section-description--full-with {
    margin: 0.5rem 2%;
}
.page__title {
    font-size: 3.5rem;
    font-family: "Eagle Book", serif;
    letter-spacing: 2px;
    text-align: center;
    border-bottom: #fa0304 6px;
}
.page__title::after {
    content: '';
    display: block;
    width: 8vmax;
    height: 6px;
    background: #fa0304;
    margin: 1rem auto;
}
.page__subtitle {
    font-size: 1rem;
    font-family: "Helvetica Neue LT Std", serif;
    letter-spacing: 6px;
    text-align: center;
}
.page__section-title {
    width: 100%;
    font-size: 3rem;
    text-align: left;
    margin: 0.5rem 0;
    padding: 0 15%;
}
.page__section-title::after {
    content: '';
    display: block;
    width: 8vmax;
    height: 6px;
    background: #fa0304;
    margin: 1rem auto;
}
.page__section-description {
    font-size: 1.25rem;
    text-transform: none;
}
.line-divider {
    width: 20%;
    border: 0;
    border-top: 6px solid #fa0304;
}
.video__button {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    color: white;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}
.video__button--muted {
    text-decoration: line-through;
}
/* under h 3px w 8vmax */
/* bg */
.bg--align-top {
    background-position: top center;
}
.bg--align-center {
    background-position: center;
}
/* portfolio */
.bg--gray {
    background: #313131;
}
.bg--portfolio {
    background-image: url("../images/portfolio/intro.jpg");
}
@media screen and (max-width: 1023px) {
    .row-50,
    .row-100 {
        flex-wrap: wrap;
        height: auto;
    }
    .row-50 .col {
        flex: 0 0 100%;
        height: 50vh;
    }
    .row-100 .col {
        flex: 0 0 100%;
        height: 100vh;
    }
}
@media screen and (max-width: 767px) {
    .header__main {
        justify-content: space-between;
    }
    .mobile-menu-button {
        display: block;
    }
    .header__menu-container {
        display: none;
    }
    .menu--open {
        display: block;
        position: absolute;
        width: 100%;
        top: 70px;
        height: 350px;
    }
    .menu--open .header__menu {
        background: black;
    }
    .menu--open .header__menu-item {
        width: 100%;
        height: 70px;
    }
    .page__section-title {
        font-size: 2rem;
    }
    .page__section-description {
        font-size: 1rem;
    }
    .block__video {
        /* width: auto;
        height: 100%; */
    }
    .block__contact__container {
        flex-direction: column;
    }
    .block__contact__data__container {
        width: 100%;
    }
    .block__contact__data__title {
        font-size: 1.25rem;
    }
    .block__contact__data__brand-image {
        width: 65%;
    }
    .block__contact__data {
        font-size: 0.80rem;
    }
    .block__contact__middle-line {
        display: none;
    }
    .block__contact__form {
        width: 100%;
        margin-top: 1.5rem;
    }
    .block__contact__form input,
    .block__contact__form textarea {
        border-width: 1px;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    .video__button {
        width: 30px;
        height: 30px;
        font-size: 30px;
        line-height: 30px;
    }
    .row-50--to-100-mobile .col {
        height: 100vh;
    }
}
