:root {
    --brand-color: #e6e6e6;
    --brand-active-color: #e6e6e6;
    --brand-dark-color: #e6e6e6;
    --secondary-color: #5e6c84;
    --secondary-light-color: #d4dae3;
    --grey-600-color: #646464;
    --grey-400-color: #969696;
    --grey-200-color: #cccccc;
    --grey-50-color: #e6e6e6;

    --section-title-mobile-size: 28px;
    --section-title-desktop-size: 59px;

    --header-mobile-height: 65px;
    --header-desktop-height: 95px;
    --section-horizontal-padding: 8vw;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-weight: bolder;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.15;
}

h4,
h5,
h6 {
    font-weight: bolder;
}

.hidden {
    display: none !important;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group__label {
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bolder;
}

.form-group__control {
    box-sizing: border-box;
    padding: 7px;
    border: solid 2px var(--grey-200-color);
    background-color: white;
    width: 100%;
}

.form-group__control--radio {
    width: auto;
}

.form-group__control:focus {
    border-color: black;

}

.form-group__radios {
    display: flex;
    flex-direction: column;
}

@media (min-width: 769px) {
    .form-group__radios {
        flex-direction: row;
    }

    .form-group__radio + .form-group__radio {
        margin-left: 15px;
    }
}

.btn {
    background-color: #e6e6e6;
    border: none;
    padding: 15px 50px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
    font-weight: bolder;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #e6e6e6;
}

.container {
    padding: 50px 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1920px;
        padding: 50px var(--section-horizontal-padding);
    }
}

.page-header {
    display: flex;
    height: var(--header-mobile-height);
    align-items: center;
    position: sticky;
    top: 0;
    padding: 0 34px;
    background-color: white;
    z-index: 1000;
}

.page-logo {
    align-self: center;
}

.page-logo__image {
    display: block;
    width: 100%;
    max-width: 100%;
}

.main-menu {
    line-height: var(--header-desktop-height);
}

.main-menu__items {
    display: none;
    list-style-type: none;
    padding: 0 36px;
    margin: 0;
}

.main-menu__items__link,
.main-menu__items__link:active {
    display: block;
    padding-right: 36px;
    padding-left: 36px;
    color: #000;
    font-weight: bolder;
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
}

.main-menu__items__link:hover {
    color: white;
    background-color: #e6e6e6;
}

@media (min-width: 1200px) {
    .page-header {
        height: var(--header-desktop-height);
    }

    .page-logo__image {
        margin: 0;
    }

    .main-menu__items {
        display: flex;
    }
}

.welcome-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - var(--header-mobile-height));
    background: url("../images/big5.png") no-repeat center;
    background-size: cover;
}

.welcome-section--readable {
    justify-content: flex-end;
    align-items: flex-start;
}

.welcome-section__title {
    margin: 0 30px 0 12vw;
    padding: 0;
    font-size: 10vw;
    color: white;
}

.welcome-section--readable .welcome-section__title {
    padding: 30px;
    background: rgba(0,0,0,0.5);
}

.welcome-section__subtext {
    margin-top: 40px;
    margin-left: 12vw;
    margin-right: 30px;
    border-left: solid 3px #e6e6e6;
    max-width: 455px;
    padding-left: 20px;
    color: white;
    line-height: 1.5em;
}

.welcome-section--readable .welcome-section__subtext {
    padding: 1px 30px 30px 30px;
    margin-top: 0;
    background: rgba(0,0,0,0.5);
    border-left: none;
}

.welcome-section--reverse .welcome-section__title,
.welcome-section--reverse .welcome-section__subtext {
    background: rgba(255,255,255,0.5);
    color: #111;
}

@media (min-width: 769px) {
    .welcome-section__title {
        margin-left: calc(var(--section-horizontal-padding) - 6px);
        font-size: 6vw;
    }

    .welcome-section--readable .welcome-section__title {
        margin-left: var(--section-horizontal-padding);
    }

    .welcome-section__subtext {
        margin-left: var(--section-horizontal-padding);
    }

    .welcome-section--readable .welcome-section__subtext {
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .welcome-section {
        height: calc(100vh - var(--header-desktop-height));
    }
}

.number-section__container {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    flex-wrap: wrap;
    margin: 0 50px;
    padding: 100px 0;
}

.number-section__number {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: solid 2px var(--secondary-light-color);
    padding: 30px 0;
}

.number-section__number__value {
    font-size: 36px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bolder;
    color: #e6e6e6;
    line-height: 1.15;
}

.number-section__number__description {
    margin-top: 1em;
    font-size: 14px;
    font-weight: bolder;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.15;
}

@media (min-width: 769px) {
    .number-section__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .number-section__container {
        grid-template-columns: repeat(3, 1fr);
        margin: 0 var(--section-horizontal-padding);
    }

    .number-section__number {
        padding: 50px 0;
    }

    .number-section__number__value {
        font-size: 5vw;
    }

    .number-section__number__description {
        font-size: 1rem;
    }
}

.expectation-section__container,
.offer-section__container {
    padding: 50px 20px;
    background-color: var(--grey-50-color);
    overflow: hidden;
}

.offer-section__container {
    box-sizing: border-box;
}

.expectation-section__title,
.offer-section__title {
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--section-title-mobile-size);
}

.offer-section__expectations {
    box-sizing: border-box;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-rows: auto;
}

.expectation-section__expectation,
.offer-section__offer,
.expectation-section__expectation.swiper-slide,
.offer-section__offer.swiper-slide {
    box-sizing: border-box;
    grid-column: auto;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 3vw;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
    line-height: 1.5;
    font-size: 14px;
}

.offer-section__offer {
    padding: 0;
}

.expectation-section__expectation__icon,
.offer-section__offer__icon {
    height: 120px;
    max-width: 100px;
}

.expectation-section__expectation__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
    margin-left: 0;
}

.offer-section__offer__content {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px 20px 15px 3vw;
    background-color: #f5f5f5;
}

.expectation-section__expectation__title {
    margin: 0;
    font-size: 20px;
    font-weight: bolder;
    font-family: 'Roboto Condensed', sans-serif;
}

.expectation-section__expectation__description,
.offer-section__offer__description {
    margin-top: 1rem;
}

.expectation-section__container.swiper-container-multirow > .swiper-wrapper,
.offer-section__container.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: nowrap;
}

@media (min-width: 769px) {
    .expectation-section__title,
    .offer-section__title {
        font-size: var(--section-title-desktop-size);
    }

    .expectation-section__title,
    .offer-section__title {
        grid-column: span 2;
    }
}

@media (min-width: 1025px) {
    .expectation-section__container,
    .offer-section__container {
        padding: 50px var(--section-horizontal-padding);
    }

    .expectation-section__expectations,
    .offer-section__offers,
    .expectation-section__expectations.swiper-wrapper,
    .offer-section__offers.swiper-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 18vw;
        grid-gap: 5px;
    }

    .offer-section__offers,
    .offer-section__offers.swiper-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-rows: 20vw;
    }

    .expectation-section__expectation,
    .offer-section__offer,
    .expectation-section__expectation.swiper-slide,
    .offer-section__offer.swiper-slide {
        flex-direction: row;
    }

    .offer-section__offer.swiper-slide {
        padding: 0;
    }

    .offer-section__offer__content {
        grid-template-columns: 1fr;
    }

    .offer-section__title {
        grid-column: span 3;
    }

    .expectation-section__expectation {
        padding: 45px;
    }

    .expectation-section__expectation:hover .expectation-section__expectation__description {
        margin-top: 38px;
    }

    .expectation-section__expectation:hover,
    .offer-section__offer:hover {
        background-color: white;
        transform: scale(1.025, 1.025);
        z-index: 10;
    }

    .expectation-section__expectation__content {
        margin-top: 0;
        margin-left: 50px;
    }

    .offer-section__offer__content {
        height: calc(100% - 3vw);
        margin: 3vw 0 0;
        padding: 0 3vw 3vw;
        overflow: hidden;
        background-color: #f5f5f5;
        transition: height 0.2s ease, background-color 0.3s ease;
    }

    .offer-section__offer:hover .offer-section__offer__content {
        height: 100%;
        background-color: white;
    }

    .expectation-section__expectation__icon,
    .offer-section__offer__icon {
        min-height: 11vw;
        max-height: 200px;
        max-width: 200px;
    }

    .offer-section__offer__icon {
        max-height: 170px;
        max-width: 170px;
        transition: margin-top 0.2s;
    }

    .offer-section__offer:hover .offer-section__offer__icon {
        margin-top: -11vw;
    }

    .expectation-section__expectation__title {
        font-size: 24px;
    }

    .offer-section__offer__title {
        transition: all 0.2s ease-in;
    }

    .offer-section__offer:hover .offer-section__offer__title {
        margin-top: 0;
    }

    .expectation-section__expectation__description {
        margin-top: 1rem;
        opacity: 0;
        font-size: 0;
        transition: font-size 0.1s ease;
    }

    .offer-section__offer__description {
        transition: all 0.4s ease;
        position: relative;
        bottom: -100%;
    }

    .expectation-section__expectation:hover .expectation-section__expectation__description,
    .offer-section__offer:hover .offer-section__offer__description {
        bottom: 0;
        margin-top: 24px;
        font-size: 1em;
        opacity: 1;
    }

    .offer-section__offer:hover .offer-section__offer__description {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .expectation-section__expectation,
    .offer-section__offer,
    .expectation-section__expectation.swiper-slide,
    .offer-section__offer.swiper-slide {
        font-size: 0.9vm;
    }

    .expectation-section__expectation__title {
        font-size: 36px;
    }
}

@media (min-width: 1600px) {
    .expectation-section__expectation,
    .offer-section__offer,
    .expectation-section__expectation.swiper-slide,
    .offer-section__offer.swiper-slide {
        font-size: 1rem;
    }

    .offer-section__offer:hover .offer-section__offer__content {
        height: auto;
    }
}

.game-section {
    position: relative;
}

.game-section__title {
    position: absolute;
    top: 60px;
    left: var(--section-horizontal-padding);
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: var(--section-title-mobile-size);
    color: white;
}

.game-section__game {
    min-height: 75vh;
    padding: 150px var(--section-horizontal-padding);
    background-size: cover;
    box-sizing: border-box;
}

.game-section__game__title {
    margin-top: 0;
    color: white;
    font-size: 2em;
}

.game-section__game__description {
    color: white;
    font-weight: bolder;
    font-family: 'Roboto Condensed', sans-serif;
}

.game-section__game__links {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.game-section__game__link {
    margin: 10px 10px 0 0;
}

@media (min-width: 769px) {
    .game-section__title {
        top: 100px;
        font-size: var(--section-title-desktop-size);
    }

    .game-section__game {
        padding-top: 200px;
    }

    .game-section__game__title {
        font-size: 46px;
    }

    .game-section__game__description {
        max-width: 40vw;
    }

    .game-section__game__links {
        flex-direction: row;
    }
}

.blog-posts-section {
    padding: 50px 20px;
}

.blog-posts {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.blog-posts__post {
    position: relative;
}

.blog-posts__post__image {
    display: block;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.blog-posts-section .blog-posts__post__description {
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 10px;
    background-color: rgba(0,0,0,.7);
    color: #fff;
}

.blog-posts__post__title {
    margin: 0.5em 0;
    font-size: 1.6em;
}

.blog-posts-section__actions,
.blog-posts__post__actions {
    text-align: right;
}

.blog-posts-section__more,
.blog-posts__post__more,
.featured-blog-post__post__more,
.attachment .btn,
.attachment-error .btn {
    display: inline-block;
    margin-top: 5px;
    border: solid 2px #000;
    background-color: transparent;
    padding: 5px 10px;
    line-height: 1.4em;
    color: #000;
    text-decoration: none;
    font-weight: bolder;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
}

.blog-posts-section__more {
    margin-top: 15px;
    padding: 8px 15px;
    font-size: 1.2em;
}

.blog-posts-section .blog-posts__post__more {
    border-color: #fff;
    color: #fff;
}

.featured-blog-post {
    position: relative;
    color: #fff;
}

.featured-blog-post__title {
    font-size: 2.5rem;
}

.featured-blog-post__image  {
    width: 100%;
}

.featured-blog-post__container {
    position: absolute;
    bottom: 20px;
}

.featured-blog-post__post__more {
    border-color: #fff;
    color: #fff;
}

.featured-blog-post__actions {
    margin-top: 30px;
}

.blog-post-image {
    display: block;
    width: 100%;
}

.blog-post-content {
    padding-top: 20px;
}

.blog-post-title {
    font-size: 3rem;
}

.blog-post-content__media {
    max-width: 100%;
}

iframe.blog-post-content__media {
    width: 420px;
    height: 236px;
}

.blog-post-content__media--odd {
    float: right;
    margin: 15px 0 15px 15px;
}

.blog-post-content__media--even {
    float: left;
    margin: 15px 15px 15px 0;
}

.blog-post-tags {
    clear: both;
    margin: 15px 0;
}

.blog-post-tags__tag {
    padding: 5px 10px;
    margin-right: 5px;
    background-color: var(--grey-50-color);
    border-radius: 3px;
}

@media (min-width: 769px) {
    .blog-posts-section {
        padding: 50px var(--section-horizontal-padding);
    }

    .blog-posts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .blog-posts {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1600px) {
    .blog-posts {
        grid-gap: 50px;
    }
}

.contact-section {
    background-color: white;
}

.contact-section--after-blog {
    background-color: var(--grey-50-color);
}

.contact-section__title,
.blog-posts-section__title {
    font-size: var(--section-title-mobile-size);
}

.contact-section__form {
    box-sizing: border-box;
    max-width: 1200px;
    margin: auto;
    padding: 50px var(--section-horizontal-padding);
}

.contact-section__form__input {
    grid-column: 1/4;
}

.contact-section__form__message {
    grid-column: 1/4;
}

.contact-section__form__input + .contact-section__form__input,
.contact-section__form__message + .contact-section__form__input,
.contact-section__form__input + .contact-section__form__message,
.contact-section__form__actions {
    margin-top: 30px;
}

.contact-section__legal {
    grid-column: 1/4;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 30px;
}

.contact-section__legal a {
    color: black;
}

.contact-section__form__input--last-name {
    display: none!important;
}

.attachment,
.attachment-progress,
.attachment-error {
    grid-column: 1/4;
    padding: 5px 15px;
    border: solid 2px #000;
}

.attachment .btn,
.attachment-error .btn {
    margin: 0;
}

.attachment,
.attachment-error {
    display: flex;
    align-items: center;
}

.attachment__name {
    flex-grow: 1;
    padding: 0 10px;
    font-weight: bolder;
}

.attachment-progress__value:after {
    content: '%';
}

.attachment-error,
.attachment-error .btn {
    border-color: #e6e6e6;
}

.attachment-error__message {
    flex-grow: 1;
}

@media (min-width: 769px) {
    .contact-section__form__inputs {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
        grid-gap: 30px;
    }

    .contact-section__title,
    .blog-posts-section__title {
        font-size: var(--section-title-desktop-size);
    }

    .contact-section__form__input {
        grid-column: auto;
    }

    .contact-section__form__input + .contact-section__form__input,
    .contact-section__form__message + .contact-section__form__input,
    .contact-section__form__input + .contact-section__form__message,
    .contact-section__legal,
    .contact-section__form__actions {
        margin-top: 0;
    }
}

.page-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    clear: both;
}

.page-footer__social {
    display: flex;
    align-items: center;
    margin: 50px 0;
}

.page-footer__social__link {
    text-decoration: none;
    margin: 0 10px;
}

.page-footer__pages {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.page-footer__pages__link {
    margin: 0 10px 10px;
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--secondary-color);
    font-weight: bolder;
    text-decoration: none;
}

.page-footer__copyright {
    margin-bottom: 50px;
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--secondary-color);
}

@media (min-width: 769px) {
    .page-footer__pages {
        flex-direction: row;
    }

    .page-footer__social__link {
        margin: 0 20px;
    }
}

.simple-page {
    max-width: 1024px;
    padding: 0 20px;
    margin: auto;
}

.simple-page h1 {
    font-size: 48px;
}

.simple-page h2 {
    font-size: 36px;
}

.simple-page h3 {
    font-size: 24px;
}

.simple-page h4 {
    font-size: 18px;
}

.simple-page h5 {
    font-size: 1rem;
}

.sent-message {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 1001;
    transition: opacity 0.2s;
}

.sent-message--closing {
    opacity: 0;
}

.sent-message__container {
    max-width: 1200px;
    margin: 50px auto;
}

.sent-message__title {
    margin-top: 0;
}

.sent-message__message {
    padding-left: 20px;
    border-left: solid 3px #e6e6e6;
}

.sent-message__close {
    content: '×';
    position: absolute;
    top: 50px;
    right: 50px;
    height: 27px;
    font-size: 32px;
    font-weight: bolder;
    color: black;
    line-height: 27px;
    cursor: pointer;
}

.sent-message__close:after {
    content: '×';
    vertical-align: middle;
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: #fff;
    border: solid 4px #000;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
    width: 40px;
    height: 40px;
    border: solid 4px #000;
    background-color: #fff;
    border-radius: 40px;
    background-size: 20px 30px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.9;
}

.swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

@media (min-width: 769px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: block;
    }
}