
/*default styles*/



body {
    font-size: 17px;
    line-height: 1.8em;
    margin: 0;
    padding: 0;
    color: #3c3c3c;
    font-family: 'Source Sans Pro';
    font-weight: normal;
}

ul, ol {
    margin: 0;
    padding: 0;
}

a {
    color: #FF4B4B;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

p {
    margin: 0 0 30px 0;
}

i {
    color: #7e7e7e;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 25px;
    text-align: center;
}

h4 {
    font-size: 23px;
}

h5 {
    font-size: 21px;
}

h6 {
    font-size: 19px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    margin-top: 0;
}

dl {
    margin: 0 0 43px 0;
    padding: 8px 0 22px 0;
    /*border-bottom: 4px solid #f2f2f2;*/
}

dt {
    padding: 0 0 0 30px;
    margin: 0 0 2px 0;
    position: relative;
    font-size: 21px;
    z-index: 1;
}

    dt:before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #3c3c3c;
        position: absolute;
        left: 0;
        top: 16px;
        margin-top: -4px;
    }

dd {
    padding: 0 0 0 30px;
    margin: 0 0 15px 0;
}

blockquote, q {
    color: #7e7e7e;
    font-size: 22px;
    line-height: 1.6em;
    padding: 8px 0 0 0;
    margin: 0 0 40px 0;
    display: block;
    font-style: italic;
}

    blockquote:before, q:before {
        content: '\"';
        font-style: italic;
    }

/*--header--*/
.site-header {
}

    .site-header .header-video-container {
        max-height: 500px;
        overflow-y: hidden;
        position: relative;
    }

        .site-header .header-video-container video {
            width: 100%;
            position: relative;
            top: 30%;
            transform: translateY(-30%);
        }


        .site-header .header-video-container .site-logo {
            width: 165px;
            margin: auto;
            position: absolute;
            top: 40px;
            left: 100px;
        }

        .site-header .header-video-container .lang-switcher {
            position: absolute;
            top: 40px;
            right: 100px;
        }

    .site-header .site-video-header-inner .site-header-name {
        position: absolute;
        top: 210px;
        left: 0px;
        right: 0px;
    }

.site-video-header-inner {
    position: relative;
}


.site-header-inner {
    background-repeat: no-repeat;
    background-position: center top;
    height: 400px;
    padding-top: 40px;
}

.site-header-top {
    margin-bottom: 130px;
}

.site-logo {
    float: left;
    width: 165px;
}

.lang-switcher {
    list-style: none;
    float: right;
}

.lang {
    display: inline-block;
    margin-left: 15px;
}

    .lang a {
        color: #fff;
    }

    .lang.active a {
        font-weight: bold;
    }

.site-header-name {
    font-size: 100px;
    font-weight: 200;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 1.2em;
}

.sticky-menu .header-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
}

.header-navigation {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #d1d0d0;
}

    .header-navigation li {
        display: inline-block;
        margin-left: 20px;
        margin-right: 20px;
    }

        .header-navigation li a {
            font-size: 17px;
            color: #7e7e7e;
            text-decoration: none;
            font-weight: 400;
            outline: none;
        }

            .header-navigation li a:hover,
            .header-navigation li.active a {
                color: #3c3c3c;
            }

        .header-navigation li.active a {
            font-weight: bold;
            font-size: 20px;
        }

.header-navigation-wrapper {
    z-index: 5;
    position: relative;
    min-height: 90px;
}

.open-menu {
    background-color: #FF4B4B;
    padding: 10px 35px;
    font-size: 17px;
    color: #fff;
    border-radius: 36px;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 0 2px 1px white;
}

    .open-menu:hover {
        text-decoration: none;
        background-color: #e32256;
    }

    .open-menu:before {
        content: '';
        display: inline-block;
        vertical-align: top;
        margin-top: 7px;
        width: 20px;
        height: 16px;
        background-image: url('../img/menu.png');
        background-repeat: no-repeat;
        background-size: 100% auto;
        margin-right: 10px;
    }

.close-menu {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('../img/x.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 20px;
    top: 20px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    opacity: 0.7;
    display: none;
}

.mobile-menu .header-navigation-wrapper {
    position: fixed;
    bottom: 0;
    left: -100%;
    width: 100%;
    text-align: center;
    min-height: 0;
    padding-bottom: 25px;
    transition: left 0.5s ease;
    overflow-x: hidden;
    background-color: #fff;
}

.mobile-menu .close-menu {
    display: block;
}

.mobile-menu .header-navigation-wrapper.opened {
    left: 0;
}

.mobile-menu .header-navigation li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-menu .mobile-menu-btn.open-menu {
    display: inline-block;
    position: relative;
}

.mobile-menu .open-menu-container {
    display: block;
}

.open-menu-container {
    position: fixed;
    bottom: 73px;
    left: 0;
    width: 100%;
    text-align: center;
    display: none;
    z-index: 2;
}

/*--content area--*/
.site-content {
    margin-bottom: 100px;
}

.section-content {
    padding-top: 80px;
}

    .section-content p:last-child {
        margin-bottom: 80px;
    }

.section-content-text {
    border-bottom: 4px solid #f2f2f2;
    padding-bottom: 7px;
    margin-bottom: 40px;
    overflow: visible;
    display: inline-block;
    width: 100%;
}

    .section-content-text p {
        display: inline-block;
        clear: both;
        overflow: visible;
    }

    .section-content-text.center table {
        margin: auto;
    }

    .section-content-text:last-child {
        border-bottom: none;
    }

.section-header {
    margin-bottom: 38px;
}

.section-header-title {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.27em;
    display: block;
}

    .section-header-title span {
        color: #FF4B4B;
    }

.content-center, section {
    max-width: 732px;
    margin-left: auto;
    margin-right: auto;
}

.align-img-left {
    float: left;
    margin: 25px 30px 10px -95px;
    max-width: 350px;
}

.align-img-right {
    float: right;
    margin: 25px -95px 30px 30px;
    max-width: 350px;
}

.align-img-both {
    max-width: 920px;
    clear: both;
    display: block;
    margin: auto;
    margin-bottom: 40px;
}


.slider {
    margin-top: 40px;
    margin-bottom: 40px;
}

.slide {
    position: relative;
}

    .slide img {
        margin-top: 20px;
    }

.slider-align-img-left {
    margin: auto;
}

.slider-align-img-right {
    margin: auto;
}

.slider-align-img-both {
    margin: auto;
}

.slick-next::before {
    color: #FF4B4B;
}

.slick-prev::before {
    color: #FF4B4B;
}

.align-both {
    margin: 0 -100px 40px -100px;
}

    .align-both iframe {
        width: 100% !important;
    }

.decorated-table {
    border: 1px solid #bcbcbc;
    border-collapse: collapse;
    line-height: 1.4em;
    font-size: 17px;
}

    .decorated-table tr {
        border: 1px solid #bcbcbc;
    }

    .decorated-table td {
        border: 1px solid #bcbcbc;
        padding: 8px 34px;
        vertical-align: top;
    }

        .decorated-table td p {
            margin-bottom: 0px !important;
        }

    .decorated-table th {
        padding: 8px 34px;
        font-weight: bold;
        background-color: #f2f2f2;
        border: 1px solid #bcbcbc;
        border-bottom-width: 2px;
        font-size: 18px;
    }

        .decorated-table th:first-child {
            border-right-width: 2px;
        }

    .decorated-table td:first-child {
        background-color: #f2f2f2;
        border-right-width: 2px;
    }

.italic-p {
    font-size: 22px;
    font-style: italic;
    color: #7e7e7e;
    line-height: 1.7em;
    margin-bottom: 40px;
}

/*--footer--*/
.site-footer {
    background-color: #FF4B4B;
    padding-top: 12px;
    padding-bottom: 12px;
}

.footer-nav {
    float: right;
    padding-top: 6px;
}

    .footer-nav li {
        margin-left: 19px;
        display: inline-block;
    }

    .footer-nav a {
        color: #fff;
        font-size: 17px;
        text-decoration: none;
        line-height: inherit;
    }

        .footer-nav a:hover {
            text-decoration: underline;
        }
/*--common--*/
.site-center {
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.top-border {
    border-top: 8px solid #FF4B4B;
}

.overlay {
    position: fixed;
    z-index: 2;
    background-color: rgba(0,0,0,0.35);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.6s;
}

.show-overlay .overlay {
    opacity: 1;
}

.link.button {
    font-weight: bold;
}

p + .link.button {
    position: relative;
    top: -25px;
}

@media (max-width: 1075px) {
    .site-header .header-video-container video {
        width: 100%;
        position: relative;
        top: 0%;
        transform: none;
    }
}


@media (max-width: 1000px) {
    .align-img-left {
        max-width: 200px;
        margin: 20px 20px 20px -15px;
    }

    .align-img-right {
        max-width: 200px;
        margin: 20px -15px 20px 20px;
    }

    .align-img-both {
        width: 100%;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
    }

    .align-both {
        margin-left: -15px;
        margin-right: -15px;
    }

        .align-both iframe {
            width: 100% !important;
        }

    .section-content {
        margin-left: 15px;
        margin-right: 15px;
    }

    .header-navigation li {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .header-navigation {
        text-align: left;
        border-bottom: none;
    }

        .header-navigation li {
            border-bottom: 1px solid #d1d0d0;
            padding-top: 15px;
            padding-bottom: 15px;
            display: block;
        }

            .header-navigation li:before {
                content: '';
                display: inline-block;
                width: 16px;
                height: 16px;
                background-image: url('../img/arrow.png');
                background-size: 100% auto;
                background-position: center center;
                margin-right: 15px;
                background-repeat: no-repeat;
                margin-top: 7px;
                vertical-align: top;
            }

    .site-header-name {
        font-size: 60px;
    }

    .site-header-inner {
        height: 300px;
    }

    .site-header-top {
        margin-bottom: 60px;
    }

    .header-navigation-wrapper.opened .header-navigation {
        display: block;
    }

    .header-navigation-wrapper.opened {
        background-color: #fff;
    }

        .header-navigation-wrapper.opened .open-menu {
            display: none;
        }

    .align-both iframe {
        height: 300px !important;
    }

    .section-header-title {
        font-size: 40px;
    }

    .first-section {
        margin-top: 38px;
        padding-top: 38px;
        border-top: 4px solid #f2f2f2;
    }

    .site-footer .site-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        float: none;
        margin-bottom: 15px;
    }

    .footer-nav {
        float: none;
        text-align: center;
    }

        .footer-nav li {
            margin-left: 10px;
            margin-right: 10px;
        }

    .site-footer {
        padding-top: 0;
        padding-bottom: 5px;
    }

        .site-footer .site-logo {
            display: none;
        }
}

@media (max-width: 650px) {
    .site-header .header-video-container .site-logo {
        left: 25px;
    }

    .site-header .header-video-container .lang-switcher {
        right: 25px;
    }

    .site-header .site-video-header-inner .site-header-name {
        top: calc(70% - 60px);
    }
}


@media (max-width: 550px) {



    .site-logo {
        width: 125px;
    }

    .decorated-table th,
    .decorated-table td {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 450px) {
    .site-header .site-video-header-inner .site-header-name {
        font-size: 40px;
        top: calc(70% - 40px);
    }

    .site-header .header-video-container .lang-switcher {
        top: 5px;
    }

    .site-header .header-video-container .site-logo {
        width: 100px;
    }

}


@media (max-width: 400px) {
    .footer-nav a {
        font-size: 14px;
    }

    .footer-nav li {
        line-height: 1em;
        margin-left: 6px;
        margin-right: 6px;
    }
}
