@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    cursor: default;
}

html {
    overflow-y: scroll;
}

html.noscroll {
    position: fixed;
    overflow-y: scroll;
    width: 100%;
}

.touch {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner {
    border: 0;
}

input,
textarea,
select {
    font-family: "Roboto", sans-serif;
    resize: none;
}

input::-ms-clear {
    display: none;
}

input:focus,
div:focus,
h1:focus,
h2:focus,
h3:focus,
span:focus,
textarea:focus,
select:focus {
    outline: none;
    background-image: none;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    background-color: rgba(255, 0, 128, 0.85);
    z-index: 995;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    height: 100%;
    padding-left: 26px;
    padding-right: 25px;
}

.menu-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 23px;
    height: 20px;
    cursor: pointer;
}

.menu-line {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 100px;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.menu-lines:hover .menu-line,
.menu-lines:visited:hover .menu-line {
    background-color: #222222;
}

.touch .menu-lines:hover .menu-line,
.touch .menu-lines:visited:hover .menu-line {
    background-color: #FFFFFF;
}

.menu-lines:active .menu-line,
.touch .menu-lines:active .menu-line {
    background-color: #222222;
}

.brand-iso {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    height: 100%;
}

.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    height: 100%;
}

.brand-iso img {
    display: block;
    height: 56px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.brand-logo img {
    display: block;
    padding: 0;
    padding-top: 3px;
    padding-left: 8px;
    margin: 0;
    height: 48px;
    cursor: pointer;
}

.actions {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 18px;
    height: 100%;
}

.get-top,
.get-top:link,
.get-top:visited {
    height: 48px;
    background-color: #FFFFFF;
    padding: 15px;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    border-radius: 8px;
    color: #FF0080;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.get-top:hover,
.get-top:visited:hover {
    color: #FFFFFF;
    background-color: #222222;
}

.touch .get-top:hover,
.touch .get-top:visited:hover {
    color: #FF0080;
    background-color: #FFFFFF;
}

.get-top:active,
.touch .get-top:active {
    color: #FFFFFF;
    background-color: #222222;
}

.get-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: 998;
}

@-webkit-keyframes anima-get-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@keyframes anima-get-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

.get-overlay-show {
    -webkit-animation-name: anima-get-overlay-show;
    animation-name: anima-get-overlay-show;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

@-webkit-keyframes anima-get-overlay-hide {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0;
    }
}

@keyframes anima-get-overlay-hide {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0;
    }
}

.get-overlay-hide {
    -webkit-animation-name: anima-get-overlay-hide;
    animation-name: anima-get-overlay-hide;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.get-block {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    box-sizing: border-box;
    z-index: 999;
}

.get-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.get {
    position: relative;
    width: 100%;
    max-width: 360px;
    background-color: #FFFFFF;
    border-radius: 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.32) 0px 26px 58px 0px, rgba(0, 0, 0, 0.28) 0px 5px 14px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.32) 0px 26px 58px 0px, rgba(0, 0, 0, 0.28) 0px 5px 14px 0px;
    box-shadow: rgba(0, 0, 0, 0.32) 0px 26px 58px 0px, rgba(0, 0, 0, 0.28) 0px 5px 14px 0px;
}

@-webkit-keyframes anima-get-show {
    from {
        opacity: 0;
        -ms-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes anima-get-show {
    from {
        opacity: 0;
        -ms-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.get-show {
    -webkit-animation-name: anima-get-show;
    animation-name: anima-get-show;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

@-webkit-keyframes anima-get-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0.97);
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
}

@keyframes anima-get-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0.97);
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
}

.get-hide {
    -webkit-animation-name: anima-get-hide;
    animation-name: anima-get-hide;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.get-icon {
    display: block;
    width: 76px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.get-headline {
    padding-top: 48px;
    padding-left: 24px;
    padding-right: 24px;
    color: #FF0080;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
}

.get-buttons {
    padding: 24px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.get-btn,
.get-btn:link,
.get-btn:visited {
    display: flex;
    height: 57px;
    margin-bottom: 10px;
    background-color: #222222;
    border-radius: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
    -webkit-transition: 0.18s;
    transition: 0.18s;
}

.get-btn:hover,
.get-btn:visited:hover {
    background-color: #FF0080;
}

.touch .get-btn:hover,
.touch .get-btn:visited:hover {
    background-color: #222222;
}

.get-btn:active,
.touch .get-btn:active {
    background-color: #FF0080;
}

.get-btn:last-of-type {
    margin-bottom: 0px;
}

.get-btn-icon {
    flex: none;
    height: 100%;
    padding: 2px;
    box-sizing: border-box;
}

.get-btn-icon img {
    display: block;
    height: 100%;
}

.get-btn-tag {
    flex: 1;
    padding-top: 17px;
    padding-right: 36px;
    text-align: center;
}

.get-close,
.get-close:link,
.get-close:visited {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border: solid 2px #E2E2E2;
    border-radius: 100px;
    cursor: pointer;
    -webkit-transition: 0.18s;
    transition: 0.18s;
}

.get-close:hover,
.get-close:visited:hover {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.touch .get-close:hover,
.touch .get-close:visited:hover {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.get-close:active,
.touch .get-close:active {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.get-close img {
    display: block;
    width: 100%;
}

.board-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: 996;
}

@-webkit-keyframes anima-board-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@keyframes anima-board-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

.board-overlay-show {
    -webkit-animation-name: anima-board-overlay-show;
    animation-name: anima-board-overlay-show;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

@-webkit-keyframes anima-board-overlay-hide {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0;
    }
}

@keyframes anima-board-overlay-hide {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0;
    }
}

.board-overlay-hide {
    -webkit-animation-name: anima-board-overlay-hide;
    animation-name: anima-board-overlay-hide;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.board {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 1;
    -webkit-box-shadow: rgba(0, 0, 0, 0.32) 0px 26px 58px 0px, rgba(0, 0, 0, 0.28) 0px 5px 14px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.32) 0px 26px 58px 0px, rgba(0, 0, 0, 0.28) 0px 5px 14px 0px;
    box-shadow: rgba(0, 0, 0, 0.32) 0px 26px 58px 0px, rgba(0, 0, 0, 0.28) 0px 5px 14px 0px;
    z-index: 997;
}

@-webkit-keyframes anima-board-show {
    from {
        opacity: 0;
        -ms-transform: translateX(-15%);
        -webkit-transform: translateX(-15%);
        transform: translateX(-15%);
    }

    to {
        opacity: 1;
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes anima-board-show {
    from {
        opacity: 0;
        -ms-transform: translateX(-15%);
        -webkit-transform: translateX(-15%);
        transform: translateX(-15%);
    }

    to {
        opacity: 1;
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.board-show {
    -webkit-animation-name: anima-board-show;
    animation-name: anima-board-show;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

@-webkit-keyframes anima-board-hide {
    from {
        opacity: 1;
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateX(-15%);
        -webkit-transform: translateX(-15%);
        transform: translateX(-15%);
    }
}

@keyframes anima-board-hide {
    from {
        opacity: 1;
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateX(-15%);
        -webkit-transform: translateX(-15%);
        transform: translateX(-15%);
    }
}

.board-hide {
    -webkit-animation-name: anima-board-hide;
    animation-name: anima-board-hide;
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.board-header {
    position: relative;
    flex: none;
    width: 100%;
    height: 76px;
    background-color: #FFFFFF;
}

.board-content {
    flex: 1;
    height: 100%;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;
    overflow: auto;
}

.board-content::-webkit-scrollbar {
    width: 15px;
    height: 15px;
}

.board-content::-webkit-scrollbar-thumb {
    min-height: 50px;
    background: #DEDEDE;
    border: solid 5px #FFFFFF;
    border-radius: 20px;
}

.board-content::-webkit-scrollbar-thumb:hover {
    background: #CCCCCC;
}

.board-content::-webkit-scrollbar-track {
    background: #FFFFFF;
}

.board-content::-webkit-scrollbar-corner {
    background: transparent;
}

.board-section {
    padding-top: 24px;
    padding-bottom: 8px;
    color: #FF0080;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.board-section:first-of-type {
    padding-top: 8px;
}

.board-section-icons {
    padding-bottom: 12px;
}

.board-section-footer {
    padding-top: 0px !important;
    margin-top: -3px;
}

.board-space {
    height: 40px;
}

.board-space-footer {
    height: 6px;
}

.board-link,
.board-link:link,
.board-link:visited {
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #222222;
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.board-link:hover,
.board-link:visited:hover {
    color: #FF0080;
}

.touch .board-link:hover,
.touch .board-link:visited:hover {
    color: #222222;
}

.board-link:active,
.touch .board-link:active {
    color: #FF0080;
}

.board-link-spotlight {
    font-weight: 500;
}

.board-get,
.board-get:link,
.board-get:visited {
    display: block;
    float: left;
    width: 48px;
    height: 48px;
    margin-right: 8px;
    background-color: #222222;
    border-radius: 100px;
    cursor: pointer;
    -webkit-transition: 0.18s;
    transition: 0.18s;
}

.board-get:hover,
.board-get:visited:hover {
    background-color: #FF0080;
}

.touch .board-get:hover,
.touch .board-get:visited:hover {
    background-color: #222222;
}

.board-get:active,
.touch .board-get:active {
    background-color: #FF0080;
}

.board-social,
.board-social:link,
.board-social:visited {
    display: block;
    float: left;
    width: 34px;
    height: 34px;
    margin-right: 8px;
    background-color: #FF0080;
    border-radius: 100px;
    cursor: pointer;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.board-social:hover,
.board-social:visited:hover {
    -ms-transform: scale(1.16);
    -webkit-transform: scale(1.16);
    transform: scale(1.16);
}

.touch .board-social:hover,
.touch .board-social:visited:hover {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.board-social:active,
.touch .board-social:active {
    -ms-transform: scale(1.16);
    -webkit-transform: scale(1.16);
    transform: scale(1.16);
}

.board-copy {
    padding-top: 16px;
    padding-bottom: 70px;
    color: #999999;
    font-size: 13px;
    line-height: 17px;
}

.board-copy strong {
    font-weight: 500;
}

.board-close,
.board-close:link,
.board-close:visited {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 14px;
    left: 14px;
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    cursor: pointer;
}

.board-close img {
    width: 16px;
    margin-left: -1px;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.board-close:hover img,
.board-close:visited:hover img {
    -ms-transform: scale(1.22);
    -webkit-transform: scale(1.22);
    transform: scale(1.22);
}

.touch .board-close:hover img,
.touch .board-close:visited:hover img {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.board-close:active img,
.touch .board-close:active img {
    -ms-transform: scale(1.22);
    -webkit-transform: scale(1.22);
    transform: scale(1.22);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: 998;
}

@-webkit-keyframes anima-modal-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@keyframes anima-modal-overlay-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

.modal-overlay-show {
    -webkit-animation-name: anima-modal-overlay-show;
    animation-name: anima-modal-overlay-show;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

@-webkit-keyframes anima-modal-overlay-hide {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0;
    }
}

@keyframes anima-modal-overlay-hide {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 0;
    }
}

.modal-overlay-hide {
    -webkit-animation-name: anima-modal-overlay-hide;
    animation-name: anima-modal-overlay-hide;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.modal-block {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    box-sizing: border-box;
    z-index: 999;
}

.modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 100%;
    background-color: #FFFFFF;
    border-radius: 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.32) 0px 26px 58px 0px, rgba(0, 0, 0, 0.28) 0px 5px 14px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.32) 0px 26px 58px 0px, rgba(0, 0, 0, 0.28) 0px 5px 14px 0px;
    box-shadow: rgba(0, 0, 0, 0.32) 0px 26px 58px 0px, rgba(0, 0, 0, 0.28) 0px 5px 14px 0px;
    overflow: hidden;
}

@-webkit-keyframes anima-modal-show {
    from {
        opacity: 0;
        -ms-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes anima-modal-show {
    from {
        opacity: 0;
        -ms-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.modal-show {
    -webkit-animation-name: anima-modal-show;
    animation-name: anima-modal-show;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

@-webkit-keyframes anima-modal-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0.97);
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
}

@keyframes anima-modal-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0.97);
        -webkit-transform: scale(0.97);
        transform: scale(0.97);
    }
}

.modal-hide {
    -webkit-animation-name: anima-modal-hide;
    animation-name: anima-modal-hide;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.modal-header {
    flex: none;
    position: relative;
    width: 100%;
    height: 62px;
}

.modal-title {
    width: 100%;
    padding-top: 23px;
    padding-left: 27px;
    padding-right: 62px;
    box-sizing: border-box;
    color: #FF0080;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.modal-viewer {
    flex: auto;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-viewer::-webkit-scrollbar {
    width: 15px;
    height: 15px;
}

.modal-viewer::-webkit-scrollbar-thumb {
    min-height: 80px;
    background: #DEDEDE;
    border: solid 5px #FFFFFF;
    border-radius: 20px;
}

.modal-viewer::-webkit-scrollbar-thumb:hover {
    background: #CCCCCC;
}

.modal-viewer::-webkit-scrollbar-track {
    background: #FFFFFF;
}

.modal-viewer::-webkit-scrollbar-corner {
    background: transparent;
}

.modal-close,
.modal-close:link,
.modal-close:visited {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border: solid 2px #E2E2E2;
    border-radius: 100px;
    cursor: pointer;
    -webkit-transition: 0.18s;
    transition: 0.18s;
}

.modal-close:hover,
.modal-close:visited:hover {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.touch .modal-close:hover,
.touch .modal-close:visited:hover {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.modal-close:active,
.touch .modal-close:active {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.modal-close img {
    display: block;
    width: 100%;
}

.modal-quick-title,
.modal-info {
    display: none;
}

.document-block {
    padding-left: 27px;
    padding-right: 27px;
    padding-bottom: 70px;
    box-sizing: border-box;
}

.document-title {
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #222222;
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
}

.document-intro {
    padding-bottom: 10px;
    color: #222222;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
}

.document-content {
    color: #7E7E7E;
    font-size: 13px;
    line-height: 21px;
}

.document-content p {
    padding: 0;
    padding-bottom: 16px;
    margin: 0;
}

.document-content ul,
.document-content ol {
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    margin-bottom: 16px;
}

.document-content ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.document-content ol li {
    list-style-type: decimal;
    list-style-position: inside;
}

.document-content h2 {
    padding: 0;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 16px;
    color: #FF0080;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    text-transform: uppercase;
}

.document-content h3 {
    padding: 0;
    margin: 0;
    margin-top: 2px;
    margin-bottom: 16px;
    color: #FF0080;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
}

.document-content h4 {
    color: #222222;
    padding: 0;
    margin: 0;
    margin-top: 0px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 21px;
    font-weight: 500;
}

.document-content h5 {
    color: #666666;
    padding: 0;
    margin: 0;
    margin-top: 0px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 21px;
    font-weight: 500;
}

.document-content strong {
    color: #666666;
    font-weight: 500;
}

.document-content a,
.document-content a:link,
.document-content a:active,
.document-content a:visited,
.document-content a:hover,
.document-content a:visited:hover {
    color: #A3A3A3;
    text-decoration: underline;
}

.fr-text-gray {
    color: #B3B3B3;
}

.layout-section {
    width: 100%;
    box-sizing: border-box;
    background-color: royalblue;
}

.layout-full {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    box-sizing: border-box;
}

.layout-mid {
    position: relative;
    float: left;
    width: 50%;
    min-height: 1px;
    box-sizing: border-box;
}

.layout-third {
    position: relative;
    float: left;
    width: 33.33333%;
    min-height: 1px;
    box-sizing: border-box;
}

.padding-both {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
}

.padding-left {
    padding-left: 8.33333%;
}

.padding-right {
    padding-right: 8.33333%;
}

.align-center {
    text-align: center;
}

.hero {
    padding-top: 84px;
    box-sizing: border-box;
    background-color: #FF0080;
    background-image: url(../resources/landing/people.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-left {
    padding-bottom: 70px;
}

.hero-headline {
    padding-top: 160px;
    padding-bottom: 24px;
    color: #FFFFFF;
    font-size: 52px;
    line-height: 62px;
    font-weight: 400;
}

.hero-intro {
    padding-bottom: 24px;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}

.get-hero,
.get-hero:link,
.get-hero:visited {
    display: inline-block;
    height: 48px;
    padding-top: 13px;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    background-color: #FF0080;
    border: solid 2px #FFFFFF;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.get-hero:hover,
.get-hero:visited:hover {
    background-color: #FFFFFF;
    color: #FF0080;
}

.touch .get-hero:hover,
.touch .get-hero:visited:hover {
    background-color: #FF0080;
    color: #FFFFFF;
}

.get-hero:active,
.touch .get-hero:active {
    background-color: #FFFFFF;
    color: #FF0080;
}

.phone img {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.features {
    background-color: #FFFFFF;
}

.features-headline {
    padding-top: 60px;
    padding-bottom: 32px;
    padding-left: 15%;
    padding-right: 15%;
    color: #333333;
    font-size: 38px;
    line-height: 48px;
    font-weight: 500;
}

.features-headline strong {
    color: #FF0080;
    font-weight: 500;
}

.features-items {
    padding-left: 12%;
    padding-right: 12%;
    padding-bottom: 40px;
}

.features-item {
    padding-bottom: 35px;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.features-title {
    padding-top: 18px;
    padding-bottom: 6px;
    color: #333333;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.features-detail {
    color: #888888;
    font-size: 16px;
    line-height: 24px;
}

.features-pic {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.video {
    padding-left: 18%;
    padding-right: 18%;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #222222;
}

.video-container {
    position: relative;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    margin: 0 auto;
    background-color: #333333;
    border-radius: 6px;
}

.activism {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #FFFFFF;
}

.activism-content {
    padding-right: 60px;
    box-sizing: border-box;
}

.activism-headline {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 100px;
    color: #333333;
    font-size: 38px;
    line-height: 48px;
    font-weight: 500;
}

.activism-headline strong {
    color: #FF0080;
    font-weight: 500;
}

.activism-paragraph {
    padding-bottom: 18px;
    color: #888888;
    font-size: 16px;
    line-height: 24px;
}

.get-activism,
.get-activism:link,
.get-activism:visited {
    display: inline-block;
    height: 48px;
    padding-top: 13px;
    padding-left: 28px;
    padding-right: 28px;
    margin-top: 7px;
    box-sizing: border-box;
    background-color: #FF0080;
    border: solid 2px #FF0080;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.get-activism:hover,
.get-activism:visited:hover {
    background-color: #FFFFFF;
    color: #FF0080;
}

.touch .get-activism:hover,
.touch .get-activism:visited:hover {
    background-color: #FF0080;
    color: #FFFFFF;
}

.get-activism:active,
.touch .get-activism:active {
    background-color: #FFFFFF;
    color: #FF0080;
}

.activism-picture {
    padding-right: 16px;
    box-sizing: border-box;
}

.activism-picture img {
    display: block;
    width: 100%;
    border-radius: 4px;
}

.events {
    padding-top: 20px;
    padding-bottom: 50px;
    background: #FFAACB;
    background: -moz-linear-gradient(45deg, #FFAACB 0%, #ffffff 100%);
    background: -webkit-linear-gradient(45deg, #FFAACB 0%, #ffffff 100%);
    background: linear-gradient(45deg, #FFAACB 0%, #ffffff 100%);
}

.events-headline {
    padding-top: 70px;
    padding-bottom: 32px;
    padding-left: 15%;
    padding-right: 15%;
    color: #333333;
    font-size: 42px;
    line-height: 52px;
    font-weight: 500;
}

.events-headline strong {
    color: #FF0080;
    font-weight: 500;
}

.events-screen {
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    margin-top: 16px;
    margin-bottom: 40px;
    border-radius: 7px;
    -webkit-box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.events-screen img {
    display: block;
    width: 100%;
}

.events-items {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
    padding: 15px;
    box-sizing: border-box;
}

.events-frame {
    padding: 15px;
    box-sizing: border-box;
}

.events-item {
    height: 100%;
    padding: 24px;
    padding-top: 48px;
    padding-bottom: 56px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-radius: 10px;
    -webkit-box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.05);
}

.events-title {
    padding-top: 18px;
    padding-bottom: 6px;
    color: #333333;
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
}

.events-detail {
    color: #888888;
    font-size: 15px;
    line-height: 23px;
}

.events-pic {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    margin-bottom: 8px;
    border-radius: 500px;
    background-color: #FFE3EE;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.events-social {
    background-image: url(../resources/landing/social.jpg);
}

.events-politic {
    background-image: url(../resources/landing/politic.jpg);
}

.events-ecology {
    background-image: url(../resources/landing/ecology.jpg);
}

.events-conscience {
    background-image: url(../resources/landing/conscience.jpg);
}

.posters {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #FFFFFF;
    background-image: url(../resources/landing/posters.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.posters-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.posters-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.55);
}

.posters-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 10%;
    padding-right: 30%;
    box-sizing: border-box;
    z-index: 3;
}

.posters-headline {
    color: #FFFFFF;
    font-size: 42px;
    line-height: 52px;
    font-weight: 300;
}

.posters-headline strong {
    font-weight: 500;
}

.get-posters,
.get-posters:link,
.get-posters:visited {
    display: inline-block;
    height: 48px;
    padding-top: 13px;
    padding-left: 28px;
    padding-right: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: rgba(30, 30, 30, 0.55);
    border: solid 2px #FFFFFF;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.get-posters:hover,
.get-posters:visited:hover {
    background-color: rgba(30, 30, 30, 1);
}

.touch .get-posters:hover,
.touch .get-posters:visited:hover {
    background-color: rgba(30, 30, 30, 0.55);
}

.get-posters:active,
.touch .get-posters:active {
    background-color: rgba(30, 30, 30, 1);
}

.attributes {
    padding-top: 80px;
    padding-bottom: 80px;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

.attributes-picture {
    padding-right: 80px;
}

.attributes-picture-frame {
    position: relative;
    float: right;
}

.attributes-splash {
    display: block;
    position: relative;
    height: 580px;
    border-radius: 7px;
    -webkit-box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 2;
}

.attributes-screen {
    display: block;
    position: absolute;
    top: 0;
    right: 50%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.attributes-screen img {
    display: block;
    height: 100%;
    border-radius: 7px;
    -webkit-box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.attributes-content {
    padding-right: 35%;
}

.attributes-headline {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-right: 10%;
    box-sizing: border-box;
    color: #333333;
    font-size: 38px;
    line-height: 48px;
    font-weight: 500;
}

.attributes-headline strong {
    color: #FF0080;
    font-weight: 500;
}

.attributes-title {
    padding-top: 16px;
    border-top: solid 1px #CCCCCC;
    color: #222222;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.attributes-title:first-of-type {
    border-top-style: none;
}

.attributes-detail {
    padding-bottom: 20px;
    color: #888888;
    font-size: 16px;
    line-height: 24px;
}

.ending {
    position: relative;
    padding-top: 200px;
    padding-bottom: 160px;
    background-color: #FF0080;
    background-image: url(../resources/landing/ending.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.ending-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.ending-headline {
    color: #FFFFFF;
    font-size: 42px;
    line-height: 52px;
    font-weight: 400;
}

.get-ending,
.get-ending:link,
.get-ending:visited {
    display: inline-block;
    height: 48px;
    padding-top: 13px;
    padding-left: 28px;
    padding-right: 28px;
    margin-top: 30px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: rgba(255, 0, 128, 0.1);
    border: solid 2px #FF0080;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.get-ending:hover,
.get-ending:visited:hover {
    background-color: rgba(255, 0, 128, 1);
}

.touch .get-ending:hover,
.touch .get-ending:visited:hover {
    background-color: rgba(255, 0, 128, 0.1);
}

.get-ending:active,
.touch .get-ending:active {
    background-color: rgba(255, 0, 128, 1);
}

.form {
    padding-top: 60px;
    padding-bottom: 100px;
    background-color: #FFFFFF;
    border-top: solid 1px #CCCCCC;
}

.form-headline {
    padding-top: 24px;
    padding-bottom: 16px;
    padding-left: 15%;
    padding-right: 15%;
    color: #333333;
    font-size: 42px;
    line-height: 52px;
    font-weight: 500;
    text-align: right;
}

.form-headline strong {
    color: #FF0080;
    font-weight: 500;
}

.form-intro {
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 32px;
    color: #888888;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
}

.form-picture {
    padding-left: 15%;
    padding-right: 15%;
    box-sizing: border-box;
}

.form-picture img {
    display: block;
    width: 100%;
    border-radius: 4px;
}

.form-fields {
    max-width: 480px;
}

.form-section {
    display: inline-block;
    padding-top: 20px;
    padding-bottom: 11px;
    color: #FF0080;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    text-transform: uppercase;
}

.form-section-contact {
    margin-bottom: 10px;
}

.form-caption {
    padding-top: 8px;
    padding-bottom: 10px;
    color: #222222;
    font-size: 15px;
    line-height: 20px;
}

.form-note {
    color: #999999;
}

.form-details {
    color: #999999;
    font-size: 13px;
    line-height: 17px;
}

.form-detail {
    display: none;
    padding-top: 5px;
}

.form-box {
    padding-bottom: 10px;
}

.form-input {
    display: block;
    width: 100%;
    height: 42px;
    margin: 0;
    padding: 0;
    padding-bottom: 1px;
    padding-left: 16px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border: solid 1px #D2D2D2;
    border-radius: 5px;
    color: #222222;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.form-textarea {
    display: block;
    width: 100%;
    height: 120px;
    margin: 0;
    padding-top: 11px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 11px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border: solid 1px #D2D2D2;
    border-radius: 5px;
    color: #222222;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.form-textarea::-webkit-scrollbar {
    width: 13px;
    height: 13px;
    cursor: default !important;
}

.form-textarea::-ms-scrollbar {
    width: 13px;
    height: 13px;
    cursor: default !important;
}

.form-textarea::-webkit-scrollbar-thumb {
    min-height: 50px;
    background-color: #DEDEDE;
    border: solid 5px #FFFFFF;
}

.form-textarea::-webkit-scrollbar-corner {
    background: transparent;
}

.form-input:focus,
.form-textarea:focus {
    border: solid 1px #FF0080 !important;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #A5A5A5;
    font-weight: 400;
    opacity: 1;
}

.form-input:-ms-input-placeholder,
.form-textarea:-ms-input-placeholder {
    color: #A5A5A5;
    font-weight: 400;
}

.form-input::-ms-input-placeholder,
.form-textarea::-ms-input-placeholder {
    color: #A5A5A5;
    font-weight: 400;
}

.form-submit,
.form-submit:link,
.form-submit:visited {
    display: block;
    height: 48px;
    padding-top: 0px;
    padding-left: 36px;
    padding-right: 36px;
    margin-top: 14px;
    box-sizing: border-box;
    background-color: #FF0080;
    border: solid 2px #FF0080;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.form-submit:hover,
.form-submit:visited:hover {
    background-color: #FFFFFF;
    color: #FF0080;
}

.touch .form-submit:hover,
.touch .form-submit:visited:hover {
    background-color: #FF0080;
    color: #FFFFFF;
}

.form-submit:active,
.touch .form-submit:active {
    background-color: #FFFFFF;
    color: #FF0080;
}

.footer {
    padding-top: 60px;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    background-image: url(../resources/landing/bottom.svg);
}

.footer-logo img {
    display: block;
    width: 130px;
}

.footer-description {
    padding-top: 20px;
    padding-right: 25%;
    padding-bottom: 20px;
    box-sizing: border-box;
    color: #777777;
    font-size: 16px;
    line-height: 24px;
}

.footer-description strong {
    font-weight: 500;
}

.footer-networks {
    padding-top: 12px;
    padding-right: 32px;
}

.footer-social,
.footer-social:link,
.footer-social:visited {
    display: block;
    float: left;
    width: 36px;
    height: 36px;
    margin-right: 16px;
    margin-bottom: 8px;
    border-radius: 120px;
    background-color: #FF0088;
    cursor: pointer;
    -webkit-transition: 0.15s;
    transition: 0.15s;
}

.footer-social:hover,
.footer-social:visited:hover {
    -ms-transform: scale(1.16);
    -webkit-transform: scale(1.16);
    transform: scale(1.16);
}

.touch .footer-social:hover,
.touch .footer-social:visited:hover {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.footer-social:active,
.touch .footer-social:active {
    -ms-transform: scale(1.16);
    -webkit-transform: scale(1.16);
    transform: scale(1.16);
}

.footer-social:last-of-type {
    margin-right: 0px;
}

.footer-copy {
    padding-top: 50px;
    padding-bottom: 48px;
    color: #AFAFAF;
    font-size: 14px;
    line-height: 22px;
}

.footer-copy strong {
    font-weight: 500;
}

.lang {
    position: fixed;
    left: 10px;
    bottom: 10px;
    display: flex;
    padding: 6px;
    padding-left: 11px;
    padding-right: 12px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    color: #222222;
    font-size: 13px;
    line-height: 16px;
    cursor: pointer;
    -webkit-transition: 0.18s;
    transition: 0.18s;
    z-index: 997;
}

.lang:hover:hover,
.lang:visited:hover {
    color: #FF0080;
}

.touch .lang:hover,
.touch .lang:visited:hover {
    color: #222222;
}

.lang:hover:active,
.touch .lang:active {
    color: #FF0080;
}

.lang-code {
    flex: none;
    width: 24px;
    color: #FF0080;
    font-weight: 500;
    text-transform: uppercase;
}

.langs {
    display: none;
    position: fixed;
    left: 10px;
    bottom: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 9px;
    padding-right: 14px;
    background-color: #FFFFFF;
    border-radius: 4px;
    color: #222222;
    font-size: 13px;
    line-height: 16px;
    z-index: 997;
}

.lang-item,
.lang-item:link,
.lang-item:visited {
    display: flex;
    padding: 5px;
    padding-left: 11px;
    padding-right: 12px;
    color: #222222;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.18s;
    transition: 0.18s;
}

.lang-item:hover,
.lang-item:visited:hover {
    color: #FF0080;
}

.touch .lang-item:hover,
.touch .lang-item:visited:hover {
    color: #222222;
}

.lang-item:active,
.touch .lang-item:active {
    color: #FF0080;
}

#toast {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    padding-top: 48px;
    box-sizing: border-box;
    text-align: center;
    z-index: 1000;
}

#toast-content {
    background-color: #222222;
    border-radius: 100px;
    display: inline-block;
    padding: 17px;
    padding-bottom: 20px;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 17px;
    line-height: 23px;
    color: #FFFFFF;
    font-weight: 400;
    -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    -ms-transform: translateY(-80%);
    -webkit-transform: translateY(-80%);
    transform: translateY(-80%);
}

.toast-white #toast-content {
    background-color: #FFFFFF;
    color: #FF0080;
}

@media (max-width: 1300px) {

    .hero {
        background-size: 115% auto;
    }

}

@media (max-width: 1200px) {

    .padding-both {
        padding-left: 5%;
        padding-right: 5%;
    }

    .padding-left {
        padding-left: 5%;
    }

    .padding-right {
        padding-right: 5%;
    }

    .hero {
        background-size: 130% auto;
    }

    .features-headline {
        padding-left: 8%;
        padding-right: 8%;
    }

    .features-items {
        padding-left: 5%;
        padding-right: 5%;
    }

    .events {
        padding-left: 0%;
        padding-right: 0%;
    }

    .events-headline {
        padding-left: 5%;
        padding-right: 5%;
    }

    .attributes-picture {
        padding-right: 0px;
    }

    .attributes-content-frame {
        padding-left: 40px;
    }

    .attributes-content {
        padding-right: 0%;
    }

    .form-headline {
        padding-left: 0%;
        padding-right: 10%;
    }

    .form-intro {
        padding-left: 0%;
        padding-right: 10%;
    }

    .form-picture {
        padding-left: 0%;
        padding-right: 10%;
    }

}

@media (max-width: 1040px) {

    .attributes-screen {
        right: 40%;
    }

}

@media (max-width: 1100px) {

    .hero {
        background-size: 145% auto;
    }

    .events-main {
        width: 100%;
    }

    .events-items {
        width: 100%;
    }

    .events-headline {
        padding-left: 10%;
        padding-right: 10%;
    }

}

@media (max-width: 1000px) {

    .hero {
        background-size: 160% auto;
    }

    .posters-content {
        padding-right: 10%;
    }

}

@media (max-width: 960px) {

    .layout-mid {
        width: 100%;
    }

    .hero {
        background-size: 170% auto;
        background-position: center 64px;
    }

    .hero-left {
        padding-bottom: 50px;
    }

    .video {
        padding-left: 2%;
        padding-right: 2%;
    }

    .activism-content {
        padding-right: 5%;
    }

    .activism-headline {
        padding-top: 10px;
        padding-right: 0px;
    }

    .activism-picture {
        padding-right: 0px;
        padding-top: 60px;
    }

    .activism-picture img {
        border-radius: 0px;
    }

    .attributes-picture {
        padding-left: 96px;
    }

    .attributes-picture-frame {
        float: none;
        margin: 0 auto;
        width: 326px;
    }

    .attributes-screen {
        right: 163px;
        width: 270px;
    }

    .attributes-content-frame {
        padding-left: 5%;
    }

    .attributes-headline {
        padding-right: 0%;
        padding-top: 64px;
    }

    .form-headline {
        padding-left: 0%;
        padding-right: 0%;
    }

    .form-intro {
        padding-left: 0%;
        padding-right: 0%;
    }

    .form-picture {
        padding-left: 0%;
        padding-right: 0%;
        margin-bottom: 22px;
    }

    .footer-description {
        padding-right: 0;
    }

    .board-section-footer {
        padding-top: 32px !important;
        margin-top: 0px;
    }

}

@media (max-width: 900px) {

    .hero {
        background-size: 185% auto;
        background-position: center 74px;
    }

}

@media (max-width: 800px) {

    .layout-third {
        width: 100%;
    }

    .hero {
        background-size: 195% auto;
        background-position: center 84px;
    }

}

@media (max-width: 700px) {

    .hero {
        background-size: 220% auto;
        background-position: center 84px;
    }

}

@media (max-width: 600px) {

    .hero {
        background-size: 245% auto;
        background-position: center 84px;
    }

    .video {
        padding-left: 0%;
        padding-right: 0%;
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .video-container iframe,
    .video-container object,
    .video-container embed {
        border-radius: 0px;
    }

    .events-items {
        grid-template-columns: 100%;
        grid-template-rows: auto;
    }

    .posters-content {
        padding-left: 5%;
        padding-right: 5%;
    }

    .posters-headline {
        font-size: 32px;
        line-height: 42px;
    }

    .attributes-picture {
        padding-left: 95px;
    }

    .attributes-picture-frame {
        float: none;
        margin: 0 auto;
        width: 304px;
    }

    .attributes-splash {
        height: 540px;
    }

    .attributes-screen {
        right: 140px;
    }

}

@media (max-width: 500px) {

    .hero {
        background-size: 265% auto;
        background-position: center 84px;
    }

    .features-headline {
        padding-bottom: 24px;
        padding-left: 5%;
        padding-right: 5%;
        font-size: 30px;
        line-height: 40px;
    }

    .activism-headline {
        padding-top: 0px;
        padding-right: 0px;
        font-size: 30px;
        line-height: 40px;
    }

    .activism-picture {
        padding-top: 50px;
    }

    .events-main {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .form-headline {
        font-size: 32px;
        line-height: 42px;
    }

    .ending {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .ending-headline {
        font-size: 32px;
        line-height: 42px;
    }

}

@media (max-width: 480px) {

    .actions {
        display: none;
    }

    .switch-nav.actions{
        display: flex !important;
    }

    .switch-nav.brand-logo{
        display: none !important;
    }

    .hero {
        background-size: 370% auto;
        background-position: center top;
    }

    .hero-headline {
        padding-top: 100px;
        font-size: 44px;
        line-height: 54px;
    }

    .hero-intro {
        font-size: 18px;
        line-height: 28px;
    }

    .video {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .events-headline {
        padding-top: 35px;
        padding-left: 5%;
        padding-right: 5%;
        font-size: 32px;
        line-height: 42px;
    }

    .attributes-headline {
        padding-right: 0%;
        font-size: 28px;
        line-height: 38px;
    }

    .attributes-picture {
        padding-left: 74px;
    }

    .attributes-picture-frame {
        float: none;
        margin: 0 auto;
        width: 225px;
    }

    .attributes-splash {
        height: 400px;
    }

    .attributes-screen {
        right: 30px;
    }

}