.clearfix:after,
.clearfix:before {
    content: " ";
    display: table
}

.clearfix:after {
    clear: both
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pull-right {
    float: right!important
}

.pull-left {
    float: left!important
}

.hide {
    display: none!important
}

.show {
    display: block!important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none!important
}

.affix {
    position: fixed
}

.choices {
    position: relative;
    margin-bottom: 24px;
    font-size: 16px
}

.choices:focus {
    outline: none
}

.choices:last-child {
    margin-bottom: 0
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
    background-color: #eaeaea;
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.choices.is-disabled .choices__item {
    cursor: not-allowed
}

.choices[data-type*=select-one] {
    cursor: pointer
}

.choices[data-type*=select-one] .choices__inner {
    padding-bottom: 7.5px
}

.choices[data-type*=select-one] .choices__input {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    margin: 0
}

.choices[data-type*=select-one] .choices__button {
    background-image: url(icons/cross-inverse.svg);
    padding: 0;
    background-size: 8px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: .5
}

.choices[data-type*=select-one] .choices__button:focus,
.choices[data-type*=select-one] .choices__button:hover {
    opacity: 1
}

.choices[data-type*=select-one] .choices__button:focus {
    box-shadow: 0 0 0 2px #00bcd4
}

.choices[data-type*=select-one]:after {
    content: "";
    height: 0;
    width: 0;
    border-color: #333 transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none
}

.choices[data-type*=select-one].is-open:after {
    border-color: transparent transparent #333;
    margin-top: -7.5px
}

.choices[data-type*=select-one][dir=rtl]:after {
    left: 11.5px;
    right: auto
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
    right: auto;
    left: 0;
    margin-left: 25px;
    margin-right: 0
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
    cursor: text
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
    position: relative;
    display: inline-block;
    margin: 0 -4px 0 8px;
    padding-left: 16px;
    border-left: 1px solid #008fa1;
    background-image: url(icons/cross.svg);
    background-size: 8px;
    width: 8px;
    line-height: 1;
    opacity: .75
}

.choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=select-multiple] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover {
    opacity: 1
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding: 7.5px 7.5px 3.75px;
    border: 1px solid #ddd;
    border-radius: 2.5px;
    font-size: 14px;
    min-height: 44px;
    overflow: hidden
}

.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: #b7b7b7
}

.is-open .choices__inner {
    border-radius: 2.5px 2.5px 0 0
}

.is-flipped.is-open .choices__inner {
    border-radius: 0 0 2.5px 2.5px
}

.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none
}

.choices__list--single {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    width: 100%
}

[dir=rtl] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px
}

.choices__list--single .choices__item {
    width: 100%
}

.choices__list--multiple {
    display: inline
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00bcd4;
    border: 1px solid #00a5bb;
    color: #fff;
    word-break: break-all
}

.choices__list--multiple .choices__item[data-deletable] {
    padding-right: 5px
}

[dir=rtl] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00a5bb;
    border: 1px solid #008fa1
}

.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaa;
    border: 1px solid #919191
}

.choices__list--dropdown {
    display: none;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 2.5px;
    border-bottom-right-radius: 2.5px;
    overflow: hidden;
    word-break: break-all
}

.choices__list--dropdown.is-active {
    display: block
}

.is-open .choices__list--dropdown {
    border-color: #b7b7b7
}

.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: .25rem .25rem 0 0
}

.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px
}

[dir=rtl] .choices__list--dropdown .choices__item {
    text-align: right
}

@media (min-width:640px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 100px
    }
    .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 12px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    [dir=rtl] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px
    }
    [dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
        right: auto;
        left: 10px
    }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
    opacity: .5
}

.choices__item {
    cursor: default
}

.choices__item--selectable {
    cursor: pointer
}

.choices__item--disabled {
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: .5
}

.choices__heading {
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #f7f7f7;
    color: gray
}

.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50%;
    cursor: pointer
}

.choices__button:focus {
    outline: none
}

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 14px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px
}

.choices__input:focus {
    outline: 0
}

[dir=rtl] .choices__input {
    padding-right: 2px;
    padding-left: 0
}

.choices__placeholder {
    opacity: .5
}

@font-face {
    font-family: GT;
    src: url(fonts/GT-Walsheim-Regular.eot);
    src: url(fonts/GT-Walsheim-Regular.eot) format("embedded-opentype"), url(fonts/GT-Walsheim-Regular.woff) format("woff"), url(fonts/GT-Walsheim-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

@font-face {
    font-family: GT;
    src: url(fonts/GT-Walsheim-Medium.eot);
    src: url(fonts/GT-Walsheim-Medium.eot) format("embedded-opentype"), url(fonts/GT-Walsheim-Medium.woff) format("woff"), url(fonts/GT-Walsheim-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

@font-face {
    font-family: GT;
    src: url(fonts/GT-Walsheim-Bold.eot);
    src: url(fonts/GT-Walsheim-Bold.eot) format("embedded-opentype"), url(fonts/GT-Walsheim-Bold.woff) format("woff"), url(fonts/GT-Walsheim-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

@font-face {
    font-family: GT;
    src: url(fonts/GT-Walsheim-Light.eot);
    src: url(fonts/GT-Walsheim-Light.eot) format("embedded-opentype"), url(fonts/GT-Walsheim-Light.woff) format("woff"), url(fonts/GT-Walsheim-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.logo,
.social {
    overflow: hidden;
    display: block;
    text-indent: -500%
}

.center {
    text-align: center
}

.rule-bottom:after,
.rule-top:before {
    content: "";
    position: absolute;
    background: #fff;
    height: 1px;
    width: 33.33333%;
    left: 50%;
    margin-left: -16.66667%
}

.rule-bottom:after {
    bottom: 0
}

.rule-top:before {
    top: 0
}

html {
    height: 100%
}

body {
    min-height: 100%;
    margin: 0;
    -webkit-text-size-adjust: none
}

h1,
h2,
h3 {
    margin-top: 0;
    font-weight: 400
}

p {
    margin-bottom: 1.2em;
    line-height: 1.4em
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
    width: 100%
}

ol,
ul {
    margin-bottom: 20px
}

li {
    margin-bottom: .5em;
    list-style: inside square
}

li ul {
    margin-left: 20px;
    margin-top: 10px
}

li ul li {
    font-size: 1em
}

a {
    cursor: pointer
}

a,
a:active,
a:focus,
a:hover {
    text-decoration: none;
    outline: 0
}

hr {
    height: 1px;
    width: 100%;
    border: 0;
    margin-bottom: 30px;
    margin-top: 40px
}

a,
article,
blockquote,
div,
footer,
h1,
h2,
h3,
header,
li,
main,
nav,
p,
section,
span,
ul {
    box-sizing: border-box;
    position: relative
}

main {
    display: block
}

body {
    font-family: GT, Helvetica, Arial, sans-serif;
    letter-spacing: .1em;
    color: #76777b;
    font-weight: 400
}

.service .choose a,
.testimonial,
h1,
h2 {
    font-size: 1.875em
}

@media (min-width:768px) {
    .service .choose a,
    .testimonial,
    h1,
    h2 {
        font-size: 2.5em
    }
}

.choices__list--dropdown .choices__item,
.choices__list--single .choices__item,
.downloads li,
.pagination a,
.post__back,
.service .statement-list li,
.support .content nav a,
.support .content p:first-child,
.tabs__list li,
h3,
h4,
input,
input[type=radio]+span,
label,
label+span,
p,
select,
textarea {
    font-size: 1.25em
}

@media (min-width:768px) {
    .choices__list--dropdown .choices__item,
    .choices__list--single .choices__item,
    .downloads li,
    .pagination a,
    .post__back,
    .service .statement-list li,
    .support .content nav a,
    .support .content p:first-child,
    .tabs__list li,
    h3,
    h4,
    input,
    input[type=radio]+span,
    label,
    label+span,
    p,
    select,
    textarea {
        font-size: 1.625em
    }
}

.process li,
footer nav a {
    font-size: 1.125em
}

@media (min-width:768px) {
    .process li,
    footer nav a {
        font-size: 1.3125em
    }
}

.landing__arrow a,
.menu__link__content h3,
.menu__subnav a,
.newsitem p,
.pinwheel .shape--turquoise>span,
.pinwheel__text,
.post p,
.subscript p,
.support .content p,
footer h5,
footer p,
form sub,
h5,
input[type=file],
ol li,
table tr {
    font-size: .875em
}

@media (min-width:768px) {
    .landing__arrow a,
    .menu__link__content h3,
    .menu__subnav a,
    .newsitem p,
    .pinwheel .shape--turquoise>span,
    .pinwheel__text,
    .post p,
    .subscript p,
    .support .content p,
    footer h5,
    footer p,
    form sub,
    h5,
    input[type=file],
    ol li,
    table tr {
        font-size: 1.125em
    }
}

h1,
h2 {
    font-weight: 500;
    text-align: center
}

h1 {
    margin: 0;
    line-height: 1.3em
}

h3 {
    font-weight: 500;
    color: #a8bbc3;
    line-height: 1.18em
}

h4 {
    font-weight: 700
}

h5 {
    margin: 0;
    line-height: 1em;
    font-weight: 500
}

h5+p {
    margin-top: .2em
}

p {
    font-weight: 400;
    line-height: 1.18em
}

a {
    color: #337ab7
}

a[href^=tel] {
    color: inherit
}

.sub {
    font-size: .625em
}

sup {
    vertical-align: top;
    line-height: 1em;
    font-size: .7em
}

sup:before {
    content: "*";
    font-size: 1.625em
}

blockquote {
    margin: 0
}

.theme--img blockquote+p,
blockquote cite {
    display: block;
    font-style: normal;
    font-size: .8em;
    color: #fff;
    font-weight: 400;
    margin-top: 1.2em
}

ol {
    padding: 0;
    margin-left: 1.8em
}

ol li {
    list-style: decimal;
    margin: 0;
    padding-left: 1em;
    line-height: 1.18em
}

ol li,
ol li ol li {
    letter-spacing: .05em
}

ol li ol li {
    list-style: lower-alpha;
    font-size: 1em
}

main {}

@media (min-width:600px) and (orientation:portrait),
(min-width:768px) {
    main {}
}

.container {
    padding: 25px;
    margin: 0 auto
}

@media (min-width:970px) {
    .container {
        max-width: 900px
    }
}

.navlist {
    margin-bottom: 0
}

@media (min-width:970px) {
    .navlist li {
        display: inline-block
    }
}

.regular {
    padding-bottom: 3em;
    padding-top: 3em;
    text-align: center
}

.regular h2:first-child {
    margin-bottom: 1.5em
}

.regular h2:first-child+h3,
.regular h2:first-child+p {
    margin-bottom: 2em;
    margin-top: -.9em
}

@media (min-width:600px) {
    .regular {
        padding-top: 3.4em;
        padding-bottom: 4em
    }
}

@media (min-width:970px) {
    .regular {
        padding-top: 4.8em;
        padding-bottom: 5em
    }
    .regular h2:first-child+h3,
    .regular h2:first-child+p {
        margin-bottom: 3em
    }
}

@media (min-width:1200px) {
    .regular {
        padding-top: 6.4em;
        padding-bottom: 7em
    }
}

@media (min-width:520px) {
    .flexbox .fluid-height {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        display: -webkit-flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        overflow: hidden
    }
    .flexbox .fluid-height .newsitem {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-left: 0;
        margin-right: 0
    }
}

.shape {
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-size: contain;
    background-position: top;
    display: block
}

.shape--purple {
    background: #927bcd
}

.shape--turquoise {
    background: #7bfbda
}

.shape--yellow {
    background: #f4e24c
}

.shape--coral {
    background: #ef8b77
}

.shape--fuchsia {
    background: #a63270
}

.shape--blue {
    background: #220d82
}

.shape--neutral-purple {
    background: #8e89a2
}

.shape--neutral-salmon {
    background: #d7b8ba
}

.shape--neutral-putty {
    background: #d1cfcd
}

.shape--neutral-ocean {
    background: #a8bbc3
}

.shape--neutral-smoke {
    background: #c3c5ca
}

.shape--neutral-biscuit {
    background: #eee9cd
}

.shape--black {
    background: #000
}

.shape--grey {
    background: #76777b
}

.shape--mid-grey {
    background: #4b4f54
}

.shape--white {
    background: #fff
}

.shape--square {
    border: 0;
    padding-top: 100%
}

.shape--circle {
    border-radius: 50%;
    padding-bottom: 100%
}

.shape--hexagon {
    padding-top: 88%;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2230%22%20height%3D%2226%22%3E%3Cpath%20fill%3D%22#7bfbda%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M0,12.99 7.51,0 22.49,0 30,12.99 22.49,25.98 7.51,25.98z%22%20%2F%3E%3C%2Fsvg%3E")
}

.shape--triangle {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2230%22%20height%3D%2230%22%3E%3Cpath%20fill%3D%22#927bcd%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M15,0 0,26 30,26 15,0z%22%20%2F%3E%3C%2Fsvg%3E")
}

.shape--pentagon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2230%22%20height%3D%2230%22%3E%3Cpath%20fill%3D%22#ef8b77%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M15,0 30,10.9 24.3,28.5 5.7,28.5 0,10.9z%22%20%2F%3E%3C%2Fsvg%3E")
}

.canvas .shape {
    -webkit-transition: all .4s linear;
    transition: all .4s linear
}

.canvas,
.canvas .shape {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.canvas {
    overflow: hidden
}

.canvas>div {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
    opacity: 0
}

.canvas .first.p0 {
    width: 52px;
    height: 44px;
    z-index: 4
}

.canvas .first.p1 {
    width: 86px;
    height: 74px;
    z-index: 3
}

.canvas .first.p2 {
    width: 172px;
    height: 148px;
    z-index: 2
}

.canvas .first.p3 {
    width: 344px;
    height: 296px;
    z-index: 1
}

.canvas .first.p4 {
    width: 516px;
    height: 444px;
    z-index: 0
}

@media (max-width:767px) {
    .canvas .first.p0 {
        width: 26px;
        height: 22px
    }
    .canvas .first.p1 {
        width: 43px;
        height: 37px
    }
    .canvas .first.p2 {
        width: 86px;
        height: 74px
    }
    .canvas .first.p3 {
        width: 172px;
        height: 148px
    }
    .canvas .first.p4 {
        width: 344px;
        height: 296px
    }
}

.canvas .second.p5 {
    width: 44px;
    height: 44px;
    z-index: 4
}

.canvas .second.p6 {
    width: 74px;
    height: 74px;
    z-index: 3
}

.canvas .second.p7 {
    width: 148px;
    height: 148px;
    z-index: 2
}

.canvas .second.p8 {
    width: 296px;
    height: 296px;
    z-index: 1
}

.canvas .second.p9 {
    width: 444px;
    height: 444px;
    z-index: 0
}

@media (max-width:767px) {
    .canvas .second.p5 {
        width: 22px;
        height: 22px
    }
    .canvas .second.p6 {
        width: 37px;
        height: 37px
    }
    .canvas .second.p7 {
        width: 74px;
        height: 74px
    }
    .canvas .second.p8 {
        width: 148px;
        height: 148px
    }
    .canvas .second.p9 {
        width: 296px;
        height: 296px
    }
}

body {
    background: #220d82
}

main h1,
main h2,
main h3 {
    color: #a8bbc3
}

main h1+h2,
main h5 {
    color: #ef8b77
}

.theme--img h2 {
    color: #a8bbc3
}

.theme--section1 {
    background-color: #ef8b77
}

.theme--section1 h2,
.theme--section1 h4,
.theme--section1 p {
    color: #220d82
}

.theme--section1 .tabs__list a {
    color: #ef8b77
}

.theme--section1 .tabs__list .active,
.theme--section1 .tabs__list li:hover {
    border-bottom-color: #220d82
}

.theme--section2 h2 {
    color: #fff
}

.theme--section2 h2+h3 {
    color: #4b4f54
}

.theme--section2 p {
    color: #220d82
}

.theme--section3 h2 {
    color: #ef8b77
}

.canvas .first .shape,
main .shape--hexagon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2230%22%20height%3D%2226%22%3E%3Cpath%20fill%3D%22#927bcd%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M0,12.99 7.51,0 22.49,0 30,12.99 22.49,25.98 7.51,25.98z%22%20%2F%3E%3C%2Fsvg%3E")
}

.canvas .second .shape {
    border-radius: 50%;
    height: auto;
    padding-bottom: 100%
}

.canvas .second .shape,
main .shape--circle {
    background-color: #7bfbda
}

.theme--img {
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%
}

.theme--img p {
    color: #7bfbda
}

.theme--img img,
.theme--img picture {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center bottom;
    object-position: center bottom;
    display: block
}

.no-objectfit .theme--img img,
.no-objectfit .theme--img picture {
    max-width: none;
    height: auto
}

.theme--img--top img,
.theme--img--top picture {
    -o-object-position: center top;
    object-position: center top
}

@media (min-width:600px) and (max-width:969px) {
    .theme--img img,
    .theme--img picture {
        position: relative
    }
    .theme--img .container {
        position: absolute;
        top: 0
    }
}

@media (min-width:970px) {
    .theme--img {
        padding-bottom: 31%
    }
}

@media (min-width:1200px) {
    .theme--img {
        padding-bottom: 26%
    }
}

@media (min-width:768px) {
    .theme--section3 h2 {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto
    }
}

.about body {
    background: #220d82
}

.about main h1,
.about main h2,
.about main h3 {
    color: #a8bbc3
}

.about main h1+h2,
.about main h5 {
    color: #ef8b77
}

.about .theme--img h2 {
    color: #a8bbc3
}

.about .theme--section1 {
    background-color: #ef8b77
}

.about .theme--section1 h2,
.about .theme--section1 h4,
.about .theme--section1 p {
    color: #220d82
}

.about .theme--section1 .tabs__list a {
    color: #ef8b77
}

.about .theme--section1 .tabs__list .active,
.about .theme--section1 .tabs__list li:hover {
    border-bottom-color: #220d82
}

.about .theme--section2 h2 {
    color: #fff
}

.about .theme--section2 h2+h3 {
    color: #4b4f54
}

.about .theme--section2 p {
    color: #220d82
}

.about .theme--section3 h2 {
    color: #ef8b77
}

.about .canvas .first .shape,
.about main .shape--hexagon {
    background-image: url("shape-hexagon-coral.svg")
}

.about .canvas .second .shape {
    border: 0;
    background-color: #927bcd
}

.about main .shape--square {
    background-color: #927bcd
}

.about main {
    text-align: center
}

.about .list--shapes {
    overflow: auto;
    margin: 0 auto 10px;
    padding: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.about .list--shapes li {
    list-style: none;
    color: #fff;
    float: left;
    width: 20%;
    font-size: .6em;
    margin-bottom: 4em;
    overflow: hidden
}

@media (min-width: 480px) {
	.about .list--shapes li {
		font-size: .75em
	}
}

.about .list--shapes li>span {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 0 5px;
    letter-spacing: 0
}

.about .list--shapes div {
    margin: 10px auto;
    max-width: 71px;
    height: 140px
}

.about .list--shapes div span {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: b 5s linear infinite;
    animation: b 5s linear infinite
}

.about .list--shapes div span.shape--hexagon {
    -webkit-transform: scale(1) rotate(30deg);
    transform: scale(1) rotate(30deg);
    -webkit-animation: c 5s linear infinite;
    animation: c 5s linear infinite
}

.about .list--shapes div span.delay1 {
    -webkit-animation-delay: 0;
    animation-delay: 0
}

.about .list--shapes div span.delay2 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.about .list--shapes div span.delay3 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.about .list--shapes div span.delay4 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

.about .list--shapes div span.delay5 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.about .list--shapes div span.speed1 {
    -webkit-animation-duration: 6s;
    animation-duration: 6s
}

.about .list--shapes div span.speed2 {
    -webkit-animation-duration: 5s;
    animation-duration: 5s
}

.about .list--shapes div span.speed3 {
    -webkit-animation-duration: 4s;
    animation-duration: 4s
}

.about .list--shapes div span.speed4 {
    -webkit-animation-duration: 3s;
    animation-duration: 3s
}

.about .list--shapes div span.speed5 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@media (min-width:520px) {
    .about .list--shapes li>span {
        padding: 0 10%
    }
}

@media (min-width:600px) {
    .about .list--shapes li {
        width: 20%;
        padding: 0 1em;
        margin-bottom: 6em
    }
    .about .list--shapes li>span {
        padding: 0 1em
    }
}

@media (min-width:768px) {
    .about .list--shapes {
        margin: 45px auto 80px
    }
    .about .list--shapes li {
        padding: 0 2em;
        font-size: .875em
    }
    .about .list--shapes li>span {
        padding: 0 2em
    }
}

.about .cta {
    max-width: 320px;
    margin: 0 auto 2em;
    font-size: .8em;
    -webkit-transform: scale(0);
    transform: scale(0);
    width: 100%;
    padding-top: 100%;
    background: #7bfbda;
    border-radius: 50%
}

.about .cta div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 20%
}

.about .cta p {
    color: #4b4f54;
    opacity: 0;
    top: 50px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.about .cta a {
    color: #927bcd;
    text-decoration: underline;
    display: block
}

.about .cta a:hover {
    text-decoration: none
}

.about .cta.showthis p {
    opacity: 1;
    top: 0
}

.about .cta.showthis p:last-child {
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

@media only screen and (min-width:370px) {
    .about .cta {
        padding-top: 320px
    }
}

@media (min-width:400px) {
    .about .cta div {
        padding: 0 15%
    }
}

@media (min-width:520px) {
    .about .cta {
        font-size: 1em
    }
    .about .cta div {
        padding: 0 10%
    }
}

@media (min-width:600px) {
    .about .cta {
        max-width: 350px;
        padding-top: 350px;
        margin: 0 auto 4em
    }
    .about .cta div {
        padding: 0 7%
    }
}

@media (min-width:768px) {
    .about .cta {
        max-width: 450px;
        padding-top: 450px;
        margin: 0 auto 6em
    }
    .about .cta div {
        padding: 0 8%
    }
}

@-webkit-keyframes b {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(.2);
        transform: scale(.2)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes b {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(.2);
        transform: scale(.2)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes c {
    0% {
        -webkit-transform: scale(1) rotate(30deg);
        transform: scale(1) rotate(30deg)
    }
    50% {
        -webkit-transform: scale(.2) rotate(30deg);
        transform: scale(.2) rotate(30deg)
    }
    to {
        -webkit-transform: scale(1) rotate(30deg);
        transform: scale(1) rotate(30deg)
    }
}

@keyframes c {
    0% {
        -webkit-transform: scale(1) rotate(30deg);
        transform: scale(1) rotate(30deg)
    }
    50% {
        -webkit-transform: scale(.2) rotate(30deg);
        transform: scale(.2) rotate(30deg)
    }
    to {
        -webkit-transform: scale(1) rotate(30deg);
        transform: scale(1) rotate(30deg)
    }
}

.news .content {
    background: #eee9cd;
    overflow: auto;
    padding-top: .8em
}

.news .content .container {
    overflow: auto;
    padding-bottom: 0;
    max-width: 1200px
}

@media (min-width:768px) {
    .news .content {
        padding-top: 1.4em
    }
}

.pagination {
    text-align: center;
    background: #eee9cd;
    margin-bottom: 3.5em
}

.pagination a {
    color: #76777b;
    text-decoration: underline;
    margin: 0 1em
}

.pagination a:hover {
    color: #220d82
}

.service body {
    background: #220d82
}

.service main h1,
.service main h2,
.service main h3 {
    color: #a8bbc3
}

.service main h1+h2,
.service main h5 {
    color: #ef8b77
}

.service .theme--img h2 {
    color: #a8bbc3
}

.service .theme--section1 {
    background-color: #ef8b77
}

.service .theme--section1 h2,
.service .theme--section1 h4,
.service .theme--section1 p {
    color: #220d82
}

.service .theme--section1 .tabs__list a {
    color: #ef8b77
}

.service .theme--section1 .tabs__list .active,
.service .theme--section1 .tabs__list li:hover {
    border-bottom-color: #220d82
}

.service .theme--section2 {
    background-color: #a8bbc3
}

.service .theme--section2 h2 {
    color: #fff
}

.service .theme--section2 h2+h3 {
    color: #4b4f54
}

.service .theme--section2 p {
    color: #220d82
}

.service .theme--section3 h2 {
    color: #ef8b77
}

.service .canvas .first .shape,
.service .canvas .second .shape,
.service main .shape-- {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2230%22%20height%3D%2230%22%3E%3C%2Fsvg%3E")
}

.outline {
    overflow: auto;
    margin: 0 auto 3em;
    padding: 0 25px;
    max-width: 900px
}

.outline p {
    margin: 70px 0;
    padding: 1.4em 1.2em;
    border: 1px solid #8e89a2;
    color: #fff;
    text-align: center;
    background: #220d82
}

.outline .arrow {
    display: block;
    position: absolute;
    top: -3%;
    z-index: -1;
    left: 50%;
    width: 1px;
    height: 98%;
    background: #7bfbda;
    background: -webkit-linear-gradient(top, #7bfbda, #927bcd 50%, #7bfbda);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#7bfbda", endColorstr="#7bfbda", GradientType=0);
    background: -webkit-linear-gradient(bottom, #7bfbda, #927bcd, #7bfbda);
    background: linear-gradient(0deg, #7bfbda, #927bcd, #7bfbda);
    background-size: 100% 50%;
    background-repeat: repeat-y
}

.outline .arrow:after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 0;
    height: 0;
    left: -6px;
    border-style: solid;
    border-width: 12px 7px 0;
    border-color: #7bfbdb transparent transparent
}

@media (min-width:768px) {
    .outline p {
        padding: 1.4em 3em
    }
}

@media (min-width:970px) {
    .outline {
        padding: 0
    }
}

.service .tabs h2 {
    color: #fff
}

.comparison h2+p {
    color: #ef8b77
}

.subscript {
    padding: 1em 0
}

.subscript p {
    color: #fff;
    line-height: 1.2em;
    margin: 0;
    text-align: center;
    letter-spacing: 0
}

.subscript p:first-child {
    margin-bottom: 1em
}

@media (min-width:768px) {
    .subscript {
        padding: 1.4em 2.4em;
        width: 85%
    }
    .subscript p {
        width: 50%;
        text-align: left
    }
    .subscript p:first-child {
        float: right;
        width: 30%
    }
}

@media (min-width:970px) {
    .subscript {
        width: 67%
    }
}

.with-arrows p {
    margin-bottom: 3em
}

.with-arrows p:after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -6px;
    bottom: -1.6em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 7px 0;
    border-color: #7bfbda transparent transparent
}

.with-arrows p:last-child {
    margin-bottom: 0
}

.with-arrows p:last-child:after {
    display: none
}

.testimonial {
    color: #7bfbda;
    font-weight: 500
}

.testimonial .container {
    padding: 2em 1em
}

@media (max-width:599px) {
    .testimonial {
        font-size: 1.5em
    }
}

@media (min-width:600px) and (max-width:969px) {
    .testimonial .container {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        width: 100%
    }
}

@media (min-width:600px) {
    .testimonial .container {
        padding: 1em
    }
}

@media (min-width:970px) {
    .testimonial {
        padding: 12% 0
    }
}

.testimonial img,
.testimonial picture {
    -o-object-position: center center;
    object-position: center center
}

.animin blockquote,
.animin h2,
.animin ul {
    opacity: 0;
    top: 1em;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.animin.showthis blockquote,
.animin.showthis h2,
.animin.showthis ul {
    opacity: 1;
    top: 0
}

.service .choose form {
    overflow: visible
}

.service .choose #submit {
    background: #fff;
    color: #220d82;
    float: none;
    margin: 0
}

.service .choose #submit:hover {
    background: #220d82;
    color: #fff
}

.service .choose a {
    color: #fff;
    font-weight: 400;
    text-decoration: underline
}

.service .choose a:hover {
    color: #220d82
}

@media (min-width:600px) {
    .service .choose #submit {
        float: right
    }
}

.intro {
    max-width: 680px;
    margin: 0 auto;
    text-align: center
}

.intro p {
    color: #7bfbda
}

@media (min-width:768px) {
    .intro {
        max-width: 818px
    }
    .intro p {
        padding: 0 1em
    }
    .intro h3 {
        font-size: 2.5em;
        margin-bottom: 1.7em
    }
}

.service .statement-list h3 {
    color: #ef8b77;
    margin-bottom: 1em
}

.service .statement-list ul {
    margin: 0;
    padding: 0
}

.service .statement-list li {
    list-style: none;
    color: #fff
}

.service .statement-list--anim {
    margin: 3em 0;
    padding: 3em 0 2.6em
}

.service .statement-list--anim li {
    opacity: 0;
    top: 1em;
    -webkit-transition: opacity .5s ease, top .5s ease;
    transition: opacity .5s ease, top .5s ease
}

.service .statement-list--anim li:first-child {
    -webkit-transition-delay: .8s;
    transition-delay: .8s
}

.service .statement-list--anim li:nth-child(2) {
    -webkit-transition-delay: .6s;
    transition-delay: .6s
}

.service .statement-list--anim li:nth-child(3) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s
}

.service .statement-list--anim li:nth-child(4) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s
}

.service .statement-list--anim li:last-child {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

.service .statement-list--anim li.showthis {
    opacity: 1;
    top: 0
}

.service .statement-list--anim li.showthis:first-child {
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.service .statement-list--anim li.showthis:nth-child(2) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s
}

.service .statement-list--anim li.showthis:nth-child(3) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s
}

.service .statement-list--anim li.showthis:nth-child(4) {
    -webkit-transition-delay: .6s;
    transition-delay: .6s
}

.service .statement-list--anim li.showthis:last-child {
    -webkit-transition-delay: .8s;
    transition-delay: .8s
}

@media (min-width:768px) {
    .service .statement-list--anim {
        margin: 6.6em 0 5em;
        padding: 4.4em 0 3.6em
    }
}

.service .howwework h3 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0
}

.service .howwework p {
    margin-top: .4em
}

.service .howwework .container div {
    margin: 0 auto 4em;
    opacity: 0;
    top: 30px;
    -webkit-transition: opacity .5s ease, top .5s ease;
    transition: opacity .5s ease, top .5s ease
}

.service .howwework .container div:last-child {
    margin-bottom: 0
}

.service .howwework .container div.showthis {
    opacity: 1;
    top: 0
}

@media (min-width:1200px) {
    .service .howwework .container div {
        max-width: 90%
    }
}

.process {
    margin: 0 auto 3em;
    padding: 0;
    max-width: 90%;
    overflow: auto;
    display: none
}

.process li {
    list-style: none;
    color: #220d82;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 40%;
    margin: 0 auto 1em;
    padding-top: 40%;
    opacity: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.process li span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: block;
    text-align: center;
    letter-spacing: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.process li:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: -20%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5.5px 0 5.5px 10px;
    border-color: transparent transparent transparent #fff;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.process li:last-child:after {
    display: none
}

.showthis .process li {
    opacity: 1
}

.showthis .process li:after {
    opacity: 1;
    right: -23%
}

.showthis .process li:last-child {
    -webkit-transition-delay: 2s;
    transition-delay: 2s
}

.showthis .process li:first-child {
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.showthis .process li:first-child:after {
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

.showthis .process li:nth-child(2) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

.showthis .process li:nth-child(2):after {
    -webkit-transition-delay: .8s;
    transition-delay: .8s
}

.showthis .process li:nth-child(3) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s
}

.showthis .process li:nth-child(3):after {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s
}

.showthis .process li:nth-child(4) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s
}

.showthis .process li:nth-child(4):after {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s
}

@media (min-width:600px) {
    .process {
        display: block
    }
    .process li {
        float: left;
        width: 16%;
        padding-top: 16%;
        margin-right: 5%
    }
    .process li:last-child {
        margin-right: 0
    }
}

@media (min-width:768px) {
    .process {
        margin-bottom: 5em
    }
}

.service .mutual h2 {
    color: #220d82
}

.service .mutual p {
    color: #fff;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto
}

.service .mutual h2:first-child+p {
    margin-bottom: 0
}

.service .network {
    overflow: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0
}

.service .network h2 {
    color: #ef8b77;
    margin-bottom: .5em;
    max-width: 400px;
    margin: 0 auto
}

.service .network .column {
    min-height: 500px
}

@media (min-width:768px) {
    .service .network {
        min-height: 700px
    }
    .service .network h2 {
        height: 114px
    }
    .service .network .column {
        width: 50%;
        float: left;
        min-height: 0
    }
}

.truefibre .regular h2:first-child+p {
    margin-bottom: 1em
}

.support .content {
    background: #eee9cd;
    overflow: auto
}

.support .content p:first-child {
    color: #ef8b77;
    text-align: center;
    margin-top: 0
}

.support .content p {
    letter-spacing: .05em;
    text-align: left;
    color: #4b4f54
}

.support .content p+ol {
    margin-top: -1em
}

.support .content a {
    color: #4b4f54;
    text-decoration: underline;
    font-weight: 500
}

.support .content a:hover {
    color: #ef8b77
}

.support .content li {
    color: #4b4f54
}

.support .content h5,
.support .content li,
.support .content ol,
.support .content ul {
    text-align: left
}

.support .content h2 {
    color: #220d82;
    text-align: left;
    line-height: 1.1em;
    margin-top: 1.4em
}

.support .content h2>span {
    margin-top: -130px;
    display: block;
    position: absolute
}

.support .content nav {
    margin: 4em 0
}

.support .content nav a {
    color: #220d82;
    text-decoration: underline;
    display: block;
    font-weight: 500;
    margin-bottom: .5em
}

.support .container {
    max-width: 720px
}

@media (min-width:768px) {
    .support .content h2 {
        max-width: 60%
    }
    .support p+ol {
        margin-top: -1.4em
    }
    .support .content nav a {
        margin-bottom: 0
    }
}

.legals .content p+ol {
    margin-top: 2em
}

.legals .content ol li {
    margin: 1em 0
}

.legals .content ol li ol li {
    margin: 0
}

.legals .content h2 {
    max-width: none
}

.downloads,
.legals .theme--section1 h2 {
    text-align: left
}

.downloads {
    margin: 0;
    padding: 0
}

.downloads li {
    list-style: none;
    margin-bottom: 1em
}

.downloads li a {
    color: #220d82;
    text-decoration: underline;
    padding-left: 65px;
    font-weight: 500;
    display: block
}

.downloads li.pdf:before {
    content: "";
    background: url(images/pdf-icon.png) no-repeat 50%;
    background-size: 100% auto;
    width: 44px;
    height: 43px;
    position: absolute;
    left: 0;
    top: 0
}

.firefox .shape--hexagon,
.ie .shape--hexagon {
    background-image: url(images/shape-hexagon.svg)
}

.firefox .shape--circle,
.ie .shape--circle {
    background-image: url(images/shape-circle.svg)
}

.firefox .canvas .first .shape,
.ie .canvas .first .shape {
    background-image: url(images/shape-hexagon-purple.svg)
}

.firefox.about main .shape--hexagon,
.ie.about main .shape--hexagon {
    background-image: url(shape-hexagon-coral.svg)
}

.firefox .menu__main .shape--hexagon:after,
.ie .menu__main .shape--hexagon:after {
    background-image: url(images/shape-hexagon-white.svg)
}

.firefox .menu__main .shape--circle:after,
.ie .menu__main .shape--circle:after {
    background-image: url(images/shape-circle-white.svg)
}