.header-video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc((100vw / 16) * 9);
    position: relative;
    background-size: 100% 100%;
    overflow: hidden;
}
.header-video__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.header-video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 2;
}
.header-video__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.header-video__inner__content {
    text-align: center;
}
.header-video__inner__content__title {
    width: 100%;
    margin: 0;
    font-weight: 800;
    font-size: 5rem;
    color: var(--header-title-color);
}
.header-video__inner__content__description {
    margin: 0;
    font-size: 2rem;
    line-height: 3rem;
    color: var(--header-description-color);
}
.section__content__title + .header-video__inner__content__description,
.header-video__inner__content__title + .header-video__inner__content__description {
    margin-top: 1.5rem;
}
.header-video__inner__content__description p {
    margin: 0;
}
.header-video__inner__content__description p + p {
    margin-top: 1.5rem;
}
@media (max-width: 719px) {
    .header-video__inner__content__title {
        font-size: 3rem;
    }
}
.header__inner__search {
    margin-top: 2.5rem;
}
.search__bar {
    display: flex;
    align-items: center;
    width: 100%;
    border: 6px solid rgba(0, 0, 0, .14);
    border-radius: .4rem;
}
.search__bar__item {
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 .8rem;
    outline: none;
    font-size: 1.1rem;
}
.search__bar__item:first-child {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.search__bar__item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.search__bar__item_input {
    flex: 1 auto;
    border-width: 0 1px;
    border-style: solid;
    border-color: #E6E9ED;
    color: #333333;
}
.search__bar__item_select {
    width: fit-content;
    background-color: #ffffff;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: #FFF !important;
    color: #333333;
    max-width: 280px;
}
.search__bar__item_button {
    border: none;
    background-color: #449D44;
    color: #ffffff;
    padding: 0 1rem;
}

.header__inner__social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
}
.header__inner__social__link {
    text-decoration: none;
    padding: 0 1rem;
}
.header__inner__social__link * {
    font-size: 2.2rem;
}
.header__inner__social__link:hover {
    cursor: pointer;
}
.header__inner__social__link_linkedin:hover {
    color: #0077B5 !important;
}
.header__inner__social__link_facebook:hover {
    color: #0866FF !important;
}
.header__inner__social__link_twitter:hover {
    color: #000000 !important;
}
.header__inner__social__link_instagram:hover {
    color: #E1306C !important;
}
.header__inner__mobile__search {
    display: none;
}
@media (max-width: 768px) {
    .search__bar {
        flex-direction: column;
    }
    .search__bar__item {
        width: 100%;
    }
    .search__bar__item:first-child {
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0;
    }
    .search__bar__item:last-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: .25rem;
    }
    .search__bar__item_select {
        width: 100%;
        max-width: 100%;
    }
    .section__splitted__side-video {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    .header-video .header__inner__search {
        display: none;
    }
    .header__inner__mobile__search {
        display: block;
        padding: .75rem;
    }
    .header__inner__mobile__search .search__bar__item_select,
    .header__inner__mobile__search .search__bar__item_input {
        border-width: 1px 1px 0 1px !important
    }
    .header__inner__mobile__search .search__bar__item {
        height: 2rem;
        line-height: 2rem;
        font-size: 1rem;
    }
    .section__content__description * {
        font-size: 1.2rem;
    }
    .header__inner__social__link * {
        font-size: 1.7rem;
    }
}