body {
    background-color: #fff;

    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.4em;
}
@media (min-width: 992px) {
    body {
        font-size: 14px;
        line-height: 1.6em;
    }
}

h1 {
    margin: 0 0 23px 0;

    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4em;
    text-align: center;
}
@media (min-width: 768px) {
    h1 {
        margin-top: 40px;

        text-align: left;
    }
}
@media (min-width: 992px) {
    h1 {
        font-size: 30px;
    }
}
@media (min-width: 1200px) {
    h1 {
        font-size: 36px;
    }
}

h2 {
    padding-bottom: 20px;
    margin: 0 0 20px 0;

    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #193b71;
    line-height: 1.4em;
    text-align: center;

    background-image: url(../images/h2-decor.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 60px 7px;
}
@media (min-width: 768px) {
    h2 {
        margin-bottom: 30px;

        background-size: 82px 9px;

        font-size: 32px;
    }
}
@media (min-width: 992px) {
    h2 {
        margin-bottom: 42px;

        font-size: 36px;
    }
}
h2.h2--white {
    color: #fff;
}
h2.h2--circle {
    display: block;
    width: 201px;
    height: 201px;

    padding: 55px 0 0 0;
    margin: 0 auto -40px;

    background-color: #0091ff;
    background-image: url(../images/h2-decor--white.png);
    background-position: center 135px;
    border-radius: 50%;

    color: #fff;
}
@media (min-width: 768px) {
    h2.h2--circle {
        width: 259px;
        height: 259px;

        padding-top: 78px;

        background-position: center 182px;
    }
}
@media (min-width: 1200px) {
    h2.h2--circle {
        position: relative;
        top: 170px;

        padding-top: 65px;
        margin-bottom: -259px;
    }
}

h3 {
    margin: 0 0 15px 0;

    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #193b71;
    line-height: 1.4em;
    text-align: center;
}
@media (min-width: 768px) {
    h3 {
        font-size: 24px;
        text-align: left;
    }
}

a {
    color: #0091ff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

dl, dd {
    margin: 0;
}

p {
    margin: 20px 0;
}

em {
    font-size: 16px;
    font-style: normal;
    color: #0091ff;
}
@media (min-width: 992px) {
    em {
        font-size: 18px;
    }
}

strong {
    font-weight: 600;
}

small {
    font-size: 12px;
}

.text-white {
    color: #fff;
}
.text-big {
    font-size: 16px;
}
.text-nowrap {
    white-space: nowrap;
}

.header {
    height: 60px;

    position: relative;
    z-index: 1011;

    background-color: #051a3f;
}
@media (min-width: 768px) {
    .header {
        height: 70px;

        background-color: #1a3b71;
    }
}
.headerContainer {
    height: 100%;

    position: relative;
}
.header__logoLink {
    display: block;
}
.header__logoImage {
    display: block;
    width: 160px;
    height: 30px;
}


@media (min-width: 768px) {
    .header__logoImage {
        width: 200px;
        height: 38px;
    }
}

.headerNavigation__toggle {
    width: 60px;
    height: 60px;

    position: relative;

    background: none;
    border: 0;

    cursor: pointer;
}
@media (min-width: 768px) {
    .headerNavigation__toggle {
        display: none;
    }
}
.headerNavigation__toggle.--active {
    background-color: #001233;
}
.headerNavigation__toggle span {
    display: block;
    height: 3px;
    width: 40px;

    position: absolute;
    left: 10px;

    background: #fff;
    border-top: solid 1px #8a94a5;
    border-bottom: solid 1px #8a94a5;

    opacity: 1;

    transform: rotate(0deg);
}
.headerNavigation__toggle span:nth-child(1) {
    top: 15px;
}
.headerNavigation__toggle span:nth-child(2),
.headerNavigation__toggle span:nth-child(3) {
    top: 27px;
}
.headerNavigation__toggle span:nth-child(4) {
    width: 22px;
    top: 39px;
}
.headerNavigation__toggle--open span:nth-child(1) {
    width: 0px;

    top: 15px;
    left: 30px;
}
.headerNavigation__toggle--open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.headerNavigation__toggle--open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.headerNavigation__toggle--open span:nth-child(4) {
    width: 0px;

    top: 39px;
    left: 30px;
}

.headerNavigation {
    display: none;

    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1010;

    background-color: #001233;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
}
@media (min-width: 768px) {
    .headerNavigation {
        display: flex;
        height: 100%;
        align-items: center;

        position: relative;
        top: auto;
        right: auto;
        z-index: 0;

        background: none;
        border-radius: 0;

        opacity: 1;
    }
}
.headerNavigation--expanded {
    display: block;
}
.headerNavigation__list {
    padding: 0;
    margin: 0;

    list-style: none;
}
@media (min-width: 768px) {
    .headerNavigation__list {
        display: flex;
        height: 100%;
        align-items: center;
    }
}
@media (min-width: 768px) {
    .headerNavigation__listItem {
        display: flex;
        height: 100%;
        align-items: center;
    }
}
.headerNavigation__link {
    display: block;

    padding: 15px 36px;

    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .headerNavigation__link {
        display: flex;
        height: 100%;
        align-items: center;

        padding: 0 8px;

        font-size: 13px;
        line-height: 100%;
    }
}
@media (min-width: 992px) {
    .headerNavigation__link {
        padding: 0 17px;
    }
}
.headerNavigation__link:hover,
.headerNavigation__link.--current {
    text-decoration: underline;
}

.headerLanguageSwitch {
    display: flex;

    margin: 12px auto 32px 36px;
}
@media (min-width: 768px) {
    .headerLanguageSwitch {
        margin: 0 0 0 15px;
    }
}
.headerLanguageSwitch__list {
    display: flex;

    padding: 0;
    margin: 0;

    list-style: none;

    border: solid 1px #5f6a7f;
    border-radius: 25px;
}
.headerLanguageSwitch__listItem {
    display: flex;
    align-items: center;
}
.headerLanguageSwitch__listItem:first-of-type {
    margin-right: -3px;
}
.headerLanguageSwitch__link {
    display: block;
    width: 40px;
    height: 40px;

    margin: 3px;

    border-radius: 23px;

    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
}
@media (min-width: 768px) {
    .headerLanguageSwitch__link {
        width: 26px;
        height: 26px;

        font-size: 13px;
        line-height: 26px;
    }
}
.headerLanguageSwitch__link:hover,
.headerLanguageSwitch__link.--current {
    background-color: #fff;

    color: #001233;
    text-decoration: none;
}

.tags {
    padding-top: 25px;

    border-top: solid 1px #cfd6eb;

    text-align: center;
}
.tag {
    display: inline-block;

    padding: 4px 7px;
    margin: 2px;

    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 1em;
    white-space: nowrap;

    background-color: #1a3b71;
    border-radius: 3px;
}

.partnerLogo {
    display: block;
    max-width: 40%;

    margin: 10px auto 25px;
}
.logo-card {
    padding: 15px;
    margin: 0 0 14px 0;

  
    border-radius: 10px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.15);
}

.card {
    padding: 15px;
    margin: 0 0 14px 0;

    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.15);
}
@media (min-width: 768px) {
    .card {
        margin-bottom: 30px;
    }
}
.card--light {
    margin-bottom: 9px;

    box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
}
.card__image {
    display: block;
    max-width: 100%;

    margin: 10px auto 25px;
}
.card__image--logo {
    margin-bottom: 10px;
}



.card__heading {
    margin: 0;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #193b71;
    text-align: left;
}
@media ( min-width: 992px ) and ( max-width: 1199px ) {
    .card__heading.cx-text-lg-center {
        text-align: center;
    }
}
@media ( min-width: 1200px ) {
    .card__heading.cx-text-xl-center {
        text-align: center;
    }
}
.card--light .card__heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
}
.card--big {
    padding-bottom: 30px;
}
.card--big .card__heading {
    font-size: 18px;
    text-align: center;
}
.card--transparent {
    background: none;
    box-shadow: none;

    color: #fff;
}
.card--transparent .card__heading {
    color: #fff;

    text-align: center;
}
.card--withArrow {
    position: relative;
}
.card--withArrow::after {
    content: " ";
	height: 0;
    width: 0;

	position: absolute;
    bottom: 100%;
    left: 50%;

    margin-left: -12px;

    border: solid transparent;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 12px;

	pointer-events: none;
}
@media (min-width: 1200px) {
    .card--withArrow-xl-left {
        margin-left: -30px;
    }
    .card--withArrow-xl-left:after {
        bottom: auto;
        left: auto;
        right: 100%;
        top: 50%;

        margin-left: 0;
        margin-top: -12px;

        border-bottom-color: transparent;
        border-right-color: #fff;
    }
}
@media (min-width: 1200px) {
    .card--withArrow-xl-right {
        margin-right: -30px;
    }
    .card--withArrow-xl-right:after {
        bottom: auto;
        left: auto;
        left: 100%;
        top: 50%;

        margin-left: 0;
        margin-top: -12px;

        border-bottom-color: transparent;
        border-left-color: #fff;
    }
}
.card--dark {
    background-color: #1a3b71;

    color: #fff;
}
.card--dark .card__heading {
    color: #fff;
}

.card--stickyFooter {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
}
.card--stickyFooter .card__body {
    flex-grow: 1;
    flex-shrink: 1;
}
.card--stickyFooter .card__footer {
    flex-grow: 0;
    flex-shrink: 0;
}

.button {
    display: block;
    width: 100%;
    height: 45px;

    padding: 0 20px;
    margin: 0;

    position: relative;

    border: solid 1px rgba(255, 255, 255, 0);
    border-radius: 23px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;
}
@media (min-width: 576px) {
    .button {
        display: inline-block;
        width: auto;
    }
}
.button:hover {
    text-decoration: none;
}
.button--white {
    background-color: #fff;

    color: #193b71;
}
.button--white:hover {
    background: none;
    border-color: rgba(255, 255, 255, 1);

    color: #fff;
}
.button--transparentWhite {
    background: none;
    border-color: rgba(255, 255, 255, 1);

    color: #fff;
}
.button--transparentWhite:hover {
    background-color: #fff;

    color: #193b71;
}
.button--blue {
    background-color: #0091ff;

    color: #fff;
}
.button--blue:hover {
    background-color: #fff;
    border-color: #0091ff;

    color: #0091ff;
}

/* .button--recruit {
    display: block;
    width: 50%;
    height: 45px;
    margin: 10px auto 25px;

    position: relative;
    vertical-align: bottom;

    border: solid 1px rgba(255, 255, 255, 0);
    border-radius: 23px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;

} */

.buttonSpinner {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-color: #0091ff;
    border-radius: 23px;

    text-align: center;
}
.buttonSpinner::after,
.buttonSpinner::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;

    position: relative;

    margin: 0 -3px;

    background-color: #fff;
    border-radius: 50%;
}
.buttonSpinner::after {
    animation: buttonSpinnerAnimation 1s ease infinite both;
}
.buttonSpinner::before {
    animation: buttonSpinnerAnimation 1s ease .5s infinite both;
}

@keyframes buttonSpinnerAnimation {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

.thanks {
    display: block;

    padding: 12px 0;

    color: #fff;
}
@media (min-width: 576px) {
    .thanks {
        display: inline-block;

        padding-left: 12px;
        padding-right: 12px;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.article {
    margin: 25px 0;
}
.article__decor {
    position: relative;
}
.article__decor > * {
    position: relative;
    z-index: 2;
}
.article__decor::before {
    display: none;

    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;

    font-family: 'Open Sans', sans-serif;
    font-size: 240px;
    font-weight: 700;
    color: #e6e7ef;
    line-height: 0.7em;
}
@media (min-width: 768px) {
    .article__decor::before {
        display: block;
    }
}
.article__decor--01::before {
    content: "01";

    right: -22px;
}
.article__decor--02::before {
    content: "02";

    right: 10px;
}
.article__decor--03::before {
    content: "03";

    right: 8px;
}
.article__image {
    margin: 25px auto;
}
.article__heading {
    margin-top: 0;
}
@media (min-width: 768px) {
    .article__heading {
        margin-top: 35px;
    }
}

.contents {
    overflow: hidden;
}

.contents__header {
    position: relative;

    padding: 50px 0 0 0;

    background: #1a3b71;
    background: linear-gradient(to bottom,  #1a3b71 0%,#097fd9 100%);
}
.contents__headerInner {
    position: relative;
    z-index: 2;
}
.contents__header::after {
    content: "";
    display: block;
    height: 83px;

    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;

    background-image: url(../images/header-decor-wave.png);
    background-repeat: no-repeat;
    background-size: 100% 39px;
    border-bottom: solid 44px #fff;
}
@media (min-width: 768px) {
    .contents__header::after {
        height: 122px;

        background-size: 100% 122px;
        border-bottom: 0;
    }
}
@media (min-width: 1200px) {
    .contents__header::after {
        height: 228px;

        background-size: 100% 228px;
    }
}
.contents__headerImage {
    margin: 35px auto 0;

    transform: rotate(-8.3deg);
}
@media (min-width: 768px) {
    .contents__headerImage {
        margin-top: 0;
    }
}
.contents__headerButtons {
    text-align: center;
}
@media (min-width: 768px) {
    .contents__headerButtons {
        text-align: left;
    }
}
.contents__headerButton {
    margin: 0 13px 13px 0;
}

.contents__section {
    position: relative;

    padding: 30px 0 57px 0;
}
@media (min-width: 768px) {
    .contents__section {
        padding: 50px 0 79px 0;
    }
}
@media (min-width: 1200px) {
    .contents__section {
        padding: 70px 0 145px 0;
    }
}
.contents__section--O_nas {
    padding-bottom: 22px;
}
@media (min-width: 768px) {
    .contents__section--O_nas {
        padding-bottom: 64px;
    }
}
@media (min-width: 1200px) {
    .contents__section--O_nas {
        padding-bottom: 75px;
    }
}
.contents__sectionInner {
    position: relative;
    z-index: 2;
}
.contents__section::after {
    content: "";
    display: block;

    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;

    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.contents__section--waveWhiteToGrey::after {
    height: 26px;

    background-image: url(../images/section-decor-wave-grey.png);
}
@media (min-width: 768px) {
    .contents__section--waveWhiteToGrey::after {
        height: 80px;
    }
}
@media (min-width: 1200px) {
    .contents__section--waveWhiteToGrey::after {
        height: 150px;
    }
}
.contents__section--waveGreyToWhite {
    background-color: #f5f7fc;
}
.contents__section--waveGreyToWhite::after {
    height: 26px;

    background-image: url(../images/section-decor-wave-white.png);
}
@media (min-width: 768px) {
    .contents__section--waveGreyToWhite::after {
        height: 80px;
    }
}
@media (min-width: 1200px) {
    .contents__section--waveGreyToWhite::after {
        height: 150px;
    }
}
.contents__section--waveGreyToBlue {
    padding-bottom: 10px;

    background-color: #f5f7fc;
}
@media (min-width: 768px) {
    .contents__section--waveGreyToBlue {
        padding-bottom: 30px;
    }
}
@media (min-width: 1200px) {
    .contents__section--waveGreyToBlue {
        padding-bottom: 70px;
    }
}
.contents__section--waveGreyToBlue::after {
    height: 8px;

    background-image: url(../images/section-decor-wave-blue-small.png);
}
@media (min-width: 768px) {
    .contents__section--waveGreyToBlue::after {
        height: 27px;
    }
}
@media (min-width: 1200px) {
    .contents__section--waveGreyToBlue::after {
        height: 50px;
    }
}

.contents__section--waveWhiteToBlue {
    padding-bottom: 10px;

    background-color: #ffffff;
}
@media (min-width: 768px) {
    .contents__section--waveWhiteToBlue {
        padding-bottom: 30px;
    }
}
@media (min-width: 1200px) {
    .contents__section--waveWhiteToBlue {
        padding-bottom: 70px;
    }
}
.contents__section--waveWhiteToBlue::after {
    height: 8px;

    background-image: url(../images/section-decor-wave-blue-small.png);
}
@media (min-width: 768px) {
    .contents__section--waveWhiteToBlue::after {
        height: 27px;
    }
}
@media (min-width: 1200px) {
    .contents__section--waveWhiteToBlue::after {
        height: 50px;
    }
}











.contents__section--waveBlueToGrey {
    padding-bottom: 30px;

    background-color: #1a3b71;
}
@media (min-width: 768px) {
    .contents__section--waveBlueToGrey {
        padding-bottom: 50px;
    }
}
@media (min-width: 1200px) {
    .contents__section--waveBlueToGrey {
        padding-bottom: 100px;
    }
}
.contents__section--waveBlueToGrey::after {
    height: 8px;

    background-image: url(../images/section-decor-wave-grey-small.png);
}
@media (min-width: 768px) {
    .contents__section--waveBlueToGrey::after {
        height: 27px;
    }
}
@media (min-width: 1200px) {
    .contents__section--waveBlueToGrey::after {
        height: 50px;
    }
}
.contents__section--grey {
    padding-bottom: 20px;

    background-color: #f5f7fc;
}
@media (min-width: 768px) {
    .contents__section--grey {
        padding-bottom: 0px;
    }
}
@media (min-width: 1200px) {
    .contents__section--grey {
        padding-bottom: 30px;
    }
}

.contents__footer {
    position: relative;

    padding: 70px 0 0 0;

    background: #1a3b71;
    background: linear-gradient(to bottom, #097fd9 0%, #1a3b71 30%);
}
@media (min-width: 786px) {
    .contents__footer {
        padding-top: 150px;
    }
}
@media (min-width: 1200px) {
    .contents__footer {
        padding-top: 240px;
    }
}
.contents__footer::after {
    content: "";
    display: block;
    height: 39px;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;

    background-image: url(../images/footer-decor-wave.png);
    background-repeat: no-repeat;
    background-size: 100% 39px;
}
@media (min-width: 768px) {
    .contents__footer::after {
        height: 122px;

        background-size: 100% 122px;
    }
}
@media (min-width: 1200px) {
    .contents__footer::after {
        height: 228px;

        background-size: 100% 228px;
    }
}

.form {
    margin-bottom: 45px;
}
.formField {
    display: block;

    position: relative;

    margin-bottom: 12px;
}
.formField__input {
    display: block;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 45px;
    min-height: 45px;

    padding: 15px;

    background-color: #1a3b71;
    border: solid 1px #536c95;
    border-radius: 23px;

    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #fff;
    line-height: 1.2em;
}
.formField--error .formField__input {
    background-color: #ffd7e7;
    border-color: #e50762;

    color: #a40043;
}
.formField__input::placeholder {
    color: #fff;
}
.formField__input::-moz-placeholder {
    color: #fff;
}
.formField__input::-ms-input-placeholder {
    color: #fff;
}
.formField__input::-webkit-input-placeholder {
    color: #fff;
}
.formField--error .formField__input::placeholder {
    color: #a40043;
}
.formField--error .formField__input::-moz-placeholder {
    color: #a40043;
}
.formField--error .formField__input::-ms-input-placeholder {
    color: #a40043;
}
.formField--error .formField__input::-webkit-input-placeholder {
    color: #a40043;
}
.formField__input:focus::placeholder {
    color: #102c58;
}
.formField__input:focus::-moz-placeholder {
    color: #102c58;
}
.formField__input:focus::-ms-input-placeholder {
    color: #102c58;
}
.formField__input:focus::-webkit-input-placeholder {
    color: #102c58;
}
.formField__input:focus {
    background-color: #ddebfb;
    box-shadow: inset 0 5px 5px 0 rgba(0, 0, 0, .5), 0 0 10px 0 rgba(0, 145, 255, 1);

    color: #102c58;
}
.formField__input--textarea {
    height: auto;
    min-height: 100px;
}
.formField__input--checkbox {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;

    padding: 0;
    margin: 0;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: none;
    border: 0;

    opacity: 0;
}
.formField__input--checkbox:focus {
    background-color: #fff;

    box-shadow: none;
}
.formField__inputFakeWrap {
    display: block;

    position: relative;

    margin: 0 auto;
}
.formField__inputFakeWrap--checkbox {
    width: 19px;
    height: 19px;

    background-color: #fff;
    border: solid 3px #0091ff;
    border-radius: 3px;
}
.formField__inputFake {
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.formField__inputFake--checkbox {
    background-color: #fff;
}
.formField__input--checkbox:checked ~ .formField__inputFake--checkbox {
    background-color: #0091ff;
}
.formField__inputFake--checkbox::after {
    content: '';
    display: block;
    width: 6px;
    height: 11px;

    position: absolute;
    top: 0;
    left: 4px;

    border: solid #fff;
    border-width: 0 3px 3px 0;

    transform: rotate(45deg);

    opacity: 0;
}
.formField__input--checkbox:checked ~ .formField__inputFake--checkbox::after {
    opacity: 1;
}
.formField__error {
    display: block;

    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;

    text-align: center;
}
.formField__error .error {
    display: inline-block;

    position: relative;

    padding: 2px 6px;
    margin-bottom: 6px;

    background-color: #fff;
    border-radius: 3px;
}
.formField__error .error::after {
    content: "";
	height: 0;
    width: 0;

    position: absolute;
    top: 100%;
    left: 50%;

    margin-left: -6px;

    border: solid transparent;
    border-color: rgba(255, 255, 255, 0);
	border-top-color: #fff;
	border-width: 6px;

	pointer-events: none;
}

.companyInfo {
    padding: 0 0 45px 0;

    color: #fff;
}
.companyInfo a {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}
.companyInfo a:hover {
    text-decoration: underline;
}
.companyInfo__name {
    display: none;
}
.companyInfo__logo {
    display: block;

    margin: 0 auto 20px;
}
@media (min-width: 768px) {
    .companyInfo__logo {
        margin-left: 0;
    }
}
.companyInfo__address {
    margin-bottom: 20px;

    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4em;
    text-align: center;
}
@media (min-width: 768px) {
    .companyInfo__address {
        text-align: left;
    }
}
.companyInfo__contactPoint {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7em;
    text-align: center;
}
@media (min-width: 768px) {
    .companyInfo__contactPoint {
        text-align: left;
    }
}
.companyInfo__contactPoint dt,
.companyInfo__contactPoint dd {
    display: inline-block;
    vertical-align: middle;
}
.companyInfo__icon {
    width: 16px;
    height: 16px;

    position: relative;

    margin-right: 3px;

    text-indent: -9999px;
}
.companyInfo__icon::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-repeat: no-repeat;
    background-position: center;
}
.companyInfo__icon--email::after {
    background-image: url(../images/icon--email.png);
}
.companyInfo__icon--phone::after {
    background-image: url(../images/icon--phone.png);
}


.footer {
    background-color: #001233;
}
.footer__copyright {
    width: 100%;

    margin-bottom: 10px;

    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #d0d2d5;
    text-align: center;
}
@media (min-width: 768px) {
    .footer__copyright {
        text-align: left;
    }
}
.footer__notes {
    margin-top: 10px;

    color: #d0d2d5;
}

[cx-accordion-toggle] {
    cursor: pointer;

    position: relative;
}
[cx-accordion-toggle]::after {
    content: '+';
    display: inline-block;

    position: absolute;
    top: 0;
    right: 0;

    font-size: 20px;
    font-weight: bold;
    color: #0091ff;
    line-height: 20px;
    text-align: center;
}
[cx-accordion-toggle].expanded::after {
    content: '−';
}
[cx-accordion-contents] {
    display: none;

    padding-top: 15px;
}

.contactWidget {
    /* display: none; */
}
.contactWidget__buttons {
    width: 40px;

    position: fixed;
    top: 35%;
    right: 0;
    z-index: 1010;

    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.contactWidget__toggle {
    height: 40px;

    padding: 10px;
    margin: 0;

    border: 0;
    border-radius: 6px;
    background-color: rgb( 81, 44, 164 );

    font-size: 16px;
    color: #fff;
    line-height: 1em;
    white-space: nowrap;

    cursor: pointer;

    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 70px 70px 0;
    -moz-transform-origin: 70px 70px 0;
    transform-origin: 70px 70px 0;
}
.contactWidget__formWrap {
    display: none;

    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1011;

    padding: 0;

    background-color: #102c58;
}
@media (min-width: 768px) {
    .contactWidget__formWrap {
        /* display: block; */
        width: 60%;
        max-width: 600px;

        top: 80px;
        left: auto;
        right: 45px;
        bottom: 40px;

        border-radius: 23px;
        box-shadow: 0 0 10px 0 rgba( 0, 0, 0, .5 );

        /* -webkit-transform: translate3d( 120%, 0, 0 );
        -moz-transform: translate3d( 120%, 0, 0 );
        transform: translate3d( 120%, 0, 0 ); */

        /* transition: all .3s ease-out; */
    }
}
@media (min-width: 768px) {
    .contactWidget__formWrap.visible {
        /* -webkit-transform: translate3d( 0, 0, 0 );
        -moz-transform: translate3d( 0, 0, 0 );
        transform: translate3d( 0, 0, 0 ); */
    }
}
.contactWidget__formWrap p {
    line-height: 1.2em;

    margin: 0 0 12px;
}
.contactWidget__formWrap .form {
    margin-bottom: 0;
}
.contactWidget__formWrap .thanks {
    padding: 12px 12px 0 12px;
}
@media (min-width: 576px) {
    .contactWidget__formWrap .thanks {
        padding: 0;
    }
}
.contactWidget__formWrap .form .formField__input--textarea {
    height: 100px;
}
.contactWidget__formHeader {
    width: auto;
    height: 60px;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    background-color: #102c58;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;

    text-align: right;
}
@media (min-width: 768px) {
    .contactWidget__formHeader {
        width: 45px;
        height: 45px;

        top: 20px;
        left: auto;
        right: 100%;
    }
}
.contactWidget__close {
    display: inline-block;
    width: 45px;
    height: 45px;

    margin: 8px;
    padding: 0;

    background: none;
    border: 0;

    font-family: 'Courier New', Courier, monospace;
    font-size: 45px;
    color: #fff;
    line-height: 1em;

    cursor: pointer;
}
@media (min-width: 768px) {
    .contactWidget__close {
        margin: 0;
    }
}
.contactWidget__formContents {
    overflow: auto;

    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 60px;

    padding: 0 20px;
}
@media (min-width: 768px) {
    .contactWidget__formContents {
        top: 0;

        padding: 20px 20px 0 20px;
    }
}
.contactWidget__formFooter {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 12px 0;

    background-color: #102c58;
    border-bottom-left-radius: 23px;
    border-bottom-right-radius: 23px;
}

.icon-envelope,
.icon-envelope::after {
    display: block;
    height: 14px;
    box-sizing: border-box;

    border: 1px solid;
}
.icon-envelope {
    display: inline-block;
    width: 18px;
    overflow: hidden;

    position: relative;

    margin: 0 5px 0 0;

    border-radius: 2px;

    transform: rotate(90deg) scale(1);
}
.icon-envelope::after {
    content: "";
    width: 14px;

    position: absolute;
    bottom: 5px;
    left: 1px;

    border-radius: 3px;

    transform: rotate(-45deg);
}


#hubspot-messages-iframe-container {
    height: auto !important;

    top: 60px;
    z-index: 1000 !important;
}
@media (min-width: 768px) {
    #hubspot-messages-iframe-container {
        top: 70px;
    }
}
