﻿/* Horizontal Stripes */
.upper-page {
    position: relative;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
    margin: 0;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
    z-index: 1;
}

.horizontal-stripes {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
}

.running-teardrop {
    position: relative;
    width: 10%;
    height: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

    .running-teardrop::before {
        content: "";
        position: absolute;
        display: block;
        width: 3px;
        -webkit-animation-direction: normal;
        -moz-animation-direction: normal;
        -ms-animation-direction: normal;
        -o-animation-direction: normal;
        animation-direction: normal;
    }

    .running-teardrop:nth-child(2)::before,
    .running-teardrop:nth-child(4)::before,
    .running-teardrop:nth-child(6)::before,
    .running-teardrop:nth-child(8)::before {
        content: "";
        position: absolute;
        right: -2px;
    }

    .running-teardrop:nth-child(2)::before {
        top: 0;
        -webkit-animation: teardrop 6s ease-out infinite;
        -moz-animation: teardrop 6s ease-out infinite;
        -ms-animation: teardrop 6s ease-out infinite;
        -o-animation: teardrop 6s ease-out infinite;
        animation: teardrop 6s ease-out infinite;
        background: -webkit-linear-gradient(top, rgba(218, 165, 32, 0), rgba(218, 165, 32, 1));
        background: -ms-linear-gradient(top, rgba(218, 165, 32, 0), rgba(218, 165, 32, 1));
        background: linear-gradient(top, rgba(218, 165, 32, 0), rgba(218, 165, 32, 1));
    }

    .running-teardrop:nth-child(4)::before {
        bottom: 0;
        -webkit-animation: teardrop-reverse 6s ease-out infinite;
        -moz-animation: teardrop-reverse 6s ease-out infinite;
        -ms-animation: teardrop-reverse 6s ease-out infinite;
        -o-animation: teardrop-reverse 6s ease-out infinite;
        animation: teardrop-reverse 6s ease-out infinite;
        background: -webkit-linear-gradient(top, rgba(218, 165, 32, 1), rgba(218, 165, 32, 0));
        background: -ms-linear-gradient(top, rgba(218, 165, 32, 1), rgba(218, 165, 32, 0));
        background: linear-gradient(top, rgba(218, 165, 32, 1), rgba(218, 165, 32, 0));
    }

    .running-teardrop:nth-child(6)::before {
        top: 0;
        -webkit-animation: teardrop 6s ease-out infinite;
        -moz-animation: teardrop 6s ease-out infinite;
        -ms-animation: teardrop 6s ease-out infinite;
        -o-animation: teardrop 6s ease-out infinite;
        animation: teardrop 6s ease-out infinite;
        background: -webkit-linear-gradient(top, rgba(218, 165, 32, 0), rgba(218, 165, 32, 1));
        background: -ms-linear-gradient(top, rgba(218, 165, 32, 0), rgba(218, 165, 32, 1));
        background: linear-gradient(top, rgba(218, 165, 32, 0), rgba(218, 165, 32, 1));
    }

    .running-teardrop:nth-child(8)::before {
        bottom: 0;
        -webkit-animation: teardrop-reverse 6s ease-out infinite;
        -moz-animation: teardrop-reverse 6s ease-out infinite;
        -ms-animation: teardrop-reverse 6s ease-out infinite;
        -o-animation: teardrop-reverse 6s ease-out infinite;
        animation: teardrop-reverse 6s ease-out infinite;
        background: -webkit-linear-gradient(top, rgba(218, 165, 32, 1), rgba(218, 165, 32, 0));
        background: -ms-linear-gradient(top, rgba(218, 165, 32, 1), rgba(218, 165, 32, 0));
        background: linear-gradient(top, rgba(218, 165, 32, 1), rgba(218, 165, 32, 0));
    }

@-webkit-keyframes teardrop {
    0% {
        top: -10%;
        opacity: 0;
        height: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        height: 35%;
    }
}

@-ms-keyframes teardrop {
    0% {
        top: -10%;
        opacity: 0;
        height: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        height: 35%;
    }
}

@keyframes teardrop {
    0% {
        top: -10%;
        opacity: 0;
        height: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        height: 35%;
    }
}

@-webkit-keyframes teardrop-reverse {
    0% {
        bottom: -10%;
        opacity: 0;
        height: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        height: 35%;
    }
}

@-ms-keyframes teardrop-reverse {
    0% {
        bottom: -10%;
        opacity: 0;
        height: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        height: 35%;
    }
}

@keyframes teardrop-reverse {
    0% {
        bottom: -10%;
        opacity: 0;
        height: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        height: 35%;
    }
}

.no-teardrop {
    position: relative;
    width: 20%;
    height: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, .15);
}
/* Horizontal Stripes */
.max-height,
.max-height > .row {
    height: 100%;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.row.row-margin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
}

.row.row-margin {
    margin-left: -15px;
    margin-right: -15px;
}

.cell {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    min-height: 0;
    min-width: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.row > .cell {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.row-margin > .cell {
    max-width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
}

.row > .small-1 {
    width: 8.33333%;
}

.row > .small-2 {
    width: 16.66667%;
}

.row > .small-3 {
    width: 25%;
}

.row > .small-4 {
    width: 33.33333%;
}

.row > .small-5 {
    width: 41.66667%;
}

.row > .small-6 {
    width: 50%;
}

.row > .small-7 {
    width: 58.33333%;
}

.row > .small-8 {
    width: 66.66667%;
}

.row > .small-9 {
    width: 75%;
}

.row > .small-10 {
    width: 83.33333%;
}

.row > .small-11 {
    width: 91.66667%;
}

.row > .small-12 {
    width: 100%;
}

.row > .small-offset-0 {
    margin-left: 0;
}

.row > .small-offset-1 {
    margin-left: 8.33333%;
}

.row > .small-offset-2 {
    margin-left: 16.66667%;
}

.row > .small-offset-3 {
    margin-left: 25%;
}

.row > .small-offset-4 {
    margin-left: 33.33333%;
}

.row > .small-offset-5 {
    margin-left: 41.66667%;
}

.row > .small-offset-6 {
    margin-left: 50%;
}

.row > .small-offset-7 {
    margin-left: 58.33333%;
}

.row > .small-offset-8 {
    margin-left: 66.66667%;
}

.row > .small-offset-9 {
    margin-left: 75%;
}

.row > .small-offset-10 {
    margin-left: 83.33333%;
}

.row > .small-offset-11 {
    margin-left: 91.66667%;
}

.row > .small-offset-12 {
    margin-left: 100%;
}

.row.row-margin > .small-1 {
    width: calc(8.33333% - 30px);
}

.row.row-margin > .small-2 {
    width: calc(16.66667% - 30px);
}

.row.row-margin > .small-3 {
    width: calc(25% - 30px);
}

.row.row-margin > .small-4 {
    width: calc(33.33333% - 30px);
}

.row.row-margin > .small-5 {
    width: calc(41.66667% - 30px);
}

.row.row-margin > .small-6 {
    width: calc(50% - 30px);
}

.row.row-margin > .small-7 {
    width: calc(58.33333% - 30px);
}

.row.row-margin > .small-8 {
    width: calc(66.66667% - 30px);
}

.row.row-margin > .small-9 {
    width: calc(75% - 30px);
}

.row.row-margin > .small-10 {
    width: calc(83.33333% - 30px);
}

.row.row-margin > .small-11 {
    width: calc(91.66667% - 30px);
}

.row.row-margin > .small-12 {
    width: calc(100% - 30px);
}

.row.row-margin > .small-offset-0 {
    margin-left: calc(0% + 15px);
}

.row.row-margin > .small-offset-1 {
    margin-left: calc(8.33333% + 15px);
}

.row.row-margin > .small-offset-2 {
    margin-left: calc(16.66667% + 15px);
}

.row.row-margin > .small-offset-3 {
    margin-left: calc(25% + 15px);
}

.row.row-margin > .small-offset-4 {
    margin-left: calc(33.33333% + 15px);
}

.row.row-margin > .small-offset-5 {
    margin-left: calc(41.66667% + 15px);
}

.row.row-margin > .small-offset-6 {
    margin-left: calc(50% + 15px);
}

.row.row-margin > .small-offset-7 {
    margin-left: calc(58.33333% + 15px);
}

.row.row-margin > .small-offset-8 {
    margin-left: calc(66.66667% + 15px);
}

.row.row-margin > .small-offset-9 {
    margin-left: calc(75% + 15px);
}

.row.row-margin > .small-offset-10 {
    margin-left: calc(83.33333% + 15px);
}

.row.row-margin > .small-offset-11 {
    margin-left: calc(91.66667% + 15px);
}

.row.row-margin > .small-offset-12 {
    margin-left: calc(100% + 15px);
}

.small-order--1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.small-order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.small-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.small-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.small-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.small-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.small-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.small-align-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.small-align-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.small-align-justify {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.small-align-spaced {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.small-align-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.small-align-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.small-align-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.small-align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.small-align-center-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.small-align-self-top {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.small-align-self-bottom {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.small-align-self-middle {
    -ms-flex-item-align: center;
    align-self: center;
}

.small-align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.block__main-title {
    margin-bottom: 50px;
}

    .block__main-title h1 {
        color: #000;
        position: relative;
        left: -4px;
        word-break: break-word;
    }

        .block__main-title h1,
        .block__main-title h1 > b {
            font-weight: 400;
        }

    .block__main-title .line {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

        .block__main-title .line svg {
            margin-top: 12px;
            -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
            flex: 1 0 100%;
        }

            .block__main-title .line svg .svg-line__line_black {
                opacity: 1;
                fill: #000;
            }

            .block__main-title .line svg .svg-line__line_color {
                opacity: 0;
            }

            .block__main-title .line svg .svg-line__circle {
                stroke: #000;
            }

        .block__main-title .line svg,
        .block__sub-title .line svg {
            position: relative;
            right: -4px;
        }

.block__text {
    margin-bottom: 50px;
}

.section {
    margin: 50px auto;
}

.section__heading {
    position: relative;
}

.btn-container {
    -webkit-transition: opacity .3s cubic-bezier(.3, .1, .3, 1);
    transition: opacity .3s cubic-bezier(.3, .1, .3, 1);
}

    .btn-container.left a {
        margin: 15px 0 0 !important;
        float: left;
    }

    .btn-container,
    .btn-container a,
    .btn-container button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
    }

        .btn-container a,
        .btn-container button {
            color: #000;
            font-weight: 700;
            font-size: 14px;
            line-height: 1.3em;
            -webkit-transition: color .3s cubic-bezier(.3, .1, .3, 1);
            transition: color .3s cubic-bezier(.3, .1, .3, 1);
        }

            .btn-container a .text,
            .btn-container button .text {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
                -webkit-transition: -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
                transition: -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
                transition: transform .3s cubic-bezier(.3, .1, .3, 1);
                transition: transform .3s cubic-bezier(.3, .1, .3, 1), -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
            }

            .btn-container a .custom-arrow,
            .btn-container button .custom-arrow {
                margin-left: 20px;
                position: relative;
                width: 40px;
                height: 30px;
            }

                .btn-container a .custom-arrow svg,
                .btn-container button .custom-arrow svg {
                    will-change: transform;
                    height: 100%;
                    width: 100%;
                }

            .btn-container a .custom-arrow__arrow,
            .btn-container button .custom-arrow__arrow {
                -webkit-transition: stroke .3s cubic-bezier(.3, .1, .3, 1), -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
                transition: stroke .3s cubic-bezier(.3, .1, .3, 1), -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
                transition: transform .3s cubic-bezier(.3, .1, .3, 1), stroke .3s cubic-bezier(.3, .1, .3, 1);
                transition: transform .3s cubic-bezier(.3, .1, .3, 1), stroke .3s cubic-bezier(.3, .1, .3, 1), -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
                stroke: #000;
            }

            .btn-container a .custom-arrow__line,
            .btn-container button .custom-arrow__line {
                transform-box: fill-box;
                -webkit-transform-origin: 100% 50%;
                transform-origin: 100% 50%;
                -webkit-transition: -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
                transition: -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
                transition: transform .3s cubic-bezier(.3, .1, .3, 1);
                transition: transform .3s cubic-bezier(.3, .1, .3, 1), -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
            }

@-moz-document url-prefix() {
    .btn-container a .custom-arrow__line,
    .btn-container button .custom-arrow__line {
        transform-box: unset;
        transform-origin: 60% 50%;
    }
}

@supports (-ms-ime-align: auto) {
    .btn-container a .custom-arrow__line,
    .btn-container button .custom-arrow__line {
        -webkit-transition: none;
        transition: none;
    }
}

.btn-container a .custom-arrow__circle,
.btn-container button .custom-arrow__circle {
    -webkit-transition: opacity, stroke, stroke-dashoffset, -webkit-transform;
    transition: opacity, stroke, stroke-dashoffset, -webkit-transform;
    transition: transform, opacity, stroke, stroke-dashoffset;
    transition: transform, opacity, stroke, stroke-dashoffset, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: cubic-bezier(.3, .1, .3, 1);
    transition-timing-function: cubic-bezier(.3, .1, .3, 1);
    transform-box: fill-box;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-150deg);
    transform: rotate(-150deg);
    stroke-dasharray: 94px;
    stroke-dashoffset: 15px;
    stroke: #feeca1;
}

@supports (-ms-ime-align: auto) {
    .btn-container a .custom-arrow__circle,
    .btn-container button .custom-arrow__circle {
        -webkit-transition: opacity, -webkit-transform;
        transition: opacity, -webkit-transform;
        transition: transform, opacity;
        transition: transform, opacity, -webkit-transform;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
}

.btn-container a .custom-arrow__circle_mono,
.btn-container button .custom-arrow__circle_mono {
    stroke: #000;
    opacity: 0;
}

.btn-container a .custom-arrow__circle_color,
.btn-container button .custom-arrow__circle_color {
    opacity: 1;
}

.btn-container a:hover,
.btn-container button:hover {
    color: #feeca1;
}

    .btn-container a:hover .text,
    .btn-container button:hover .text {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    .btn-container a:hover .custom-arrow__circle,
    .btn-container button:hover .custom-arrow__circle {
        stroke-dashoffset: 0px;
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .btn-container a:hover .custom-arrow__arrow,
    .btn-container button:hover .custom-arrow__arrow {
        -webkit-transform: translateX(9px);
        transform: translateX(9px);
    }

    .btn-container a:hover .custom-arrow__line,
    .btn-container button:hover .custom-arrow__line {
        -webkit-transform: scaleX(.7);
        transform: scaleX(.7);
    }

.txt {
    font-family: 'Muli', sans-serif;
    font-weight: 400;
    line-height: 2em;
    font-size: 14px;
}

    .txt a {
        -webkit-transition: opacity .3s cubic-bezier(.3, .1, .3, 1);
        transition: opacity .3s cubic-bezier(.3, .1, .3, 1);
    }

        .txt a:hover {
            opacity: .66;
        }

        .txt a:active {
            opacity: 1;
        }

    .txt > h2 {
        font-weight: bold;
        margin: 0 auto;
    }

    .txt > img {
        width: 100%;
    }

    .txt li,
    .txt p {
        color: #000;
        text-align: justify;
    }

.text-center .txt li,
.text-center .txt p {
    text-align: center;
}

.txt > p.text-inline {
    display: inline-block;
}

.txt > ul li {
    position: relative;
    font-weight: 700;
    line-height: 2em;
}

    .txt > ul li:before {
        -webkit-transition: -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
        transition: -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
        transition: transform .3s cubic-bezier(.3, .1, .3, 1);
        transition: transform .3s cubic-bezier(.3, .1, .3, 1), -webkit-transform .3s cubic-bezier(.3, .1, .3, 1);
        font-family: icomoon;
        content: "\E90A";
        font-size: 9px;
        position: absolute;
        left: -30px;
        top: 0;
        color: #f9cd45;
    }

    .txt > ul li:hover:before {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }

@supports (-webkit-background-clip: text) and (-webkit-text-fill-color: transparent) {
    .txt > ul li:before {
        background: -webkit-gradient(linear, left bottom, left top, from(#feeca1), to(#f9cd45));
        background: linear-gradient(0deg, #feeca1, #f9cd45);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.txt > ul li:not(:last-child) {
    margin-bottom: 30px;
}

.txt ol {
    list-style-position: inside;
}

.txt b {
    font-weight: 700;
}

.txt blockquote {
    margin: 30px 0;
    padding-left: 50px;
    border-left: 1px solid #feeca1;
    font-weight: 600;
}

.block__customer-logo {
    background-color: #fff;
    -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .05);
}

    .block__customer-logo .customer-logo__img {
        height: 150px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .block__customer-logo .customer-logo__img img {
            width: 70%;
            height: 70%;
            -o-object-fit: contain;
            object-fit: contain;
            -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
        }

.section.cover.customers .block__link,
.section.cover.customers .block__text {
    margin-bottom: 50px;
}

.cover.layers .block__main-title {
    margin-bottom: 70px;
}

.cover .block__main-title {
    margin-bottom: 160px;
}

.cover .block__main-title_indent-sm,
.cover.layers .block__main-title_indent-sm {
    margin-bottom: 50px;
}

.cover .block__main-title_indent-md,
.cover.layers .block__main-title_indent-md {
    margin-bottom: 70px;
}

.cover.right .cover__bg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.cover.right .cover__overlay {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.small-cover__item .item__overlay {
    padding-top: 40px;
}

    .small-cover__item .item__overlay .block__main-title,
    .small-cover__item .item__overlay .block__text {
        margin-bottom: 70px;
    }

.small-cover__item:nth-child(odd) .item__overlay {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.section_center {
    text-align: center;
}

    .section_center .block__main-title,
    .section_center .block__text {
        position: relative;
        z-index: 1;
        margin-bottom: 70px;
    }

    .section_center .block__link {
        position: relative;
        z-index: 1;
    }

    .section_center .line {
        margin-bottom: 50px;
    }

        .section_center .line svg {
            height: 93px;
        }

            .section_center .line svg rect {
                fill: #000;
            }

            .section_center .line svg circle {
                stroke: #000;
            }

@media (min-width: 640px) {
    .row > .medium-1 {
        width: 8.33333%;
    }

    .row > .medium-2 {
        width: 16.66667%;
    }

    .row > .medium-3 {
        width: 25%;
    }

    .row > .medium-4 {
        width: 33.33333%;
    }

    .row > .medium-5 {
        width: 41.66667%;
    }

    .row > .medium-6 {
        width: 50%;
    }

    .row > .medium-7 {
        width: 58.33333%;
    }

    .row > .medium-8 {
        width: 66.66667%;
    }

    .row > .medium-9 {
        width: 75%;
    }

    .row > .medium-10 {
        width: 83.33333%;
    }

    .row > .medium-11 {
        width: 91.66667%;
    }

    .row > .medium-12 {
        width: 100%;
    }

    .row > .medium-offset-0 {
        margin-left: 0;
    }

    .row > .medium-offset-1 {
        margin-left: 8.33333%;
    }

    .row > .medium-offset-2 {
        margin-left: 16.66667%;
    }

    .row > .medium-offset-3 {
        margin-left: 25%;
    }

    .row > .medium-offset-4 {
        margin-left: 33.33333%;
    }

    .row > .medium-offset-5 {
        margin-left: 41.66667%;
    }

    .row > .medium-offset-6 {
        margin-left: 50%;
    }

    .row > .medium-offset-7 {
        margin-left: 58.33333%;
    }

    .row > .medium-offset-8 {
        margin-left: 66.66667%;
    }

    .row > .medium-offset-9 {
        margin-left: 75%;
    }

    .row > .medium-offset-10 {
        margin-left: 83.33333%;
    }

    .row > .medium-offset-11 {
        margin-left: 91.66667%;
    }

    .row > .medium-offset-12 {
        margin-left: 100%;
    }

    .row.row-margin > .medium-1 {
        width: calc(8.33333% - 30px);
    }

    .row.row-margin > .medium-2 {
        width: calc(16.66667% - 30px);
    }

    .row.row-margin > .medium-3 {
        width: calc(25% - 30px);
    }

    .row.row-margin > .medium-4 {
        width: calc(33.33333% - 30px);
    }

    .row.row-margin > .medium-5 {
        width: calc(41.66667% - 30px);
    }

    .row.row-margin > .medium-6 {
        width: calc(50% - 30px);
    }

    .row.row-margin > .medium-7 {
        width: calc(58.33333% - 30px);
    }

    .row.row-margin > .medium-8 {
        width: calc(66.66667% - 30px);
    }

    .row.row-margin > .medium-9 {
        width: calc(75% - 30px);
    }

    .row.row-margin > .medium-10 {
        width: calc(83.33333% - 30px);
    }

    .row.row-margin > .medium-11 {
        width: calc(91.66667% - 30px);
    }

    .row.row-margin > .medium-12 {
        width: calc(100% - 30px);
    }

    .row.row-margin > .medium-offset-0 {
        margin-left: calc(0% + 15px);
    }

    .row.row-margin > .medium-offset-1 {
        margin-left: calc(8.33333% + 15px);
    }

    .row.row-margin > .medium-offset-2 {
        margin-left: calc(16.66667% + 15px);
    }

    .row.row-margin > .medium-offset-3 {
        margin-left: calc(25% + 15px);
    }

    .row.row-margin > .medium-offset-4 {
        margin-left: calc(33.33333% + 15px);
    }

    .row.row-margin > .medium-offset-5 {
        margin-left: calc(41.66667% + 15px);
    }

    .row.row-margin > .medium-offset-6 {
        margin-left: calc(50% + 15px);
    }

    .row.row-margin > .medium-offset-7 {
        margin-left: calc(58.33333% + 15px);
    }

    .row.row-margin > .medium-offset-8 {
        margin-left: calc(66.66667% + 15px);
    }

    .row.row-margin > .medium-offset-9 {
        margin-left: calc(75% + 15px);
    }

    .row.row-margin > .medium-offset-10 {
        margin-left: calc(83.33333% + 15px);
    }

    .row.row-margin > .medium-offset-11 {
        margin-left: calc(91.66667% + 15px);
    }

    .row.row-margin > .medium-offset-12 {
        margin-left: calc(100% + 15px);
    }

    .medium-order--1 {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .medium-order-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .medium-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .medium-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .medium-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .medium-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .medium-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .medium-align-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .medium-align-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .medium-align-justify {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .medium-align-spaced {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .medium-align-top {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .medium-align-bottom {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .medium-align-middle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .medium-align-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .medium-align-center-middle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .medium-align-self-top {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .medium-align-self-bottom {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .medium-align-self-middle {
        -ms-flex-item-align: center;
        align-self: center;
    }

    .medium-align-self-stretch {
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }

    .breadcrumbs ul li:first-child:before {
        display: none;
    }
}

@media (min-width: 1024px) {
    .row > .large-1 {
        width: 8.33333%;
    }

    .row > .large-2 {
        width: 16.66667%;
    }

    .row > .large-3 {
        width: 25%;
    }

    .row > .large-4 {
        width: 33.33333%;
    }

    .row > .large-5 {
        width: 41.66667%;
    }

    .row > .large-6 {
        width: 50%;
    }

    .row > .large-7 {
        width: 58.33333%;
    }

    .row > .large-8 {
        width: 66.66667%;
    }

    .row > .large-9 {
        width: 75%;
    }

    .row > .large-10 {
        width: 83.33333%;
    }

    .row > .large-11 {
        width: 91.66667%;
    }

    .row > .large-12 {
        width: 100%;
    }

    .row > .large-offset-0 {
        margin-left: 0;
    }

    .row > .large-offset-1 {
        margin-left: 8.33333%;
    }

    .row > .large-offset-2 {
        margin-left: 16.66667%;
    }

    .row > .large-offset-3 {
        margin-left: 25%;
    }

    .row > .large-offset-4 {
        margin-left: 33.33333%;
    }

    .row > .large-offset-5 {
        margin-left: 41.66667%;
    }

    .row > .large-offset-6 {
        margin-left: 50%;
    }

    .row > .large-offset-7 {
        margin-left: 58.33333%;
    }

    .row > .large-offset-8 {
        margin-left: 66.66667%;
    }

    .row > .large-offset-9 {
        margin-left: 75%;
    }

    .row > .large-offset-10 {
        margin-left: 83.33333%;
    }

    .row > .large-offset-11 {
        margin-left: 91.66667%;
    }

    .row > .large-offset-12 {
        margin-left: 100%;
    }

    .row.row-margin > .large-1 {
        width: calc(8.33333% - 30px);
    }

    .row.row-margin > .large-2 {
        width: calc(16.66667% - 30px);
    }

    .row.row-margin > .large-3 {
        width: calc(25% - 30px);
    }

    .row.row-margin > .large-4 {
        width: calc(33.33333% - 30px);
    }

    .row.row-margin > .large-5 {
        width: calc(41.66667% - 30px);
    }

    .row.row-margin > .large-6 {
        width: calc(50% - 30px);
    }

    .row.row-margin > .large-7 {
        width: calc(58.33333% - 30px);
    }

    .row.row-margin > .large-8 {
        width: calc(66.66667% - 30px);
    }

    .row.row-margin > .large-9 {
        width: calc(75% - 30px);
    }

    .row.row-margin > .large-10 {
        width: calc(83.33333% - 30px);
    }

    .row.row-margin > .large-11 {
        width: calc(91.66667% - 30px);
    }

    .row.row-margin > .large-12 {
        width: calc(100% - 30px);
    }

    .row.row-margin > .large-offset-0 {
        margin-left: calc(0% + 15px);
    }

    .row.row-margin > .large-offset-1 {
        margin-left: calc(8.33333% + 15px);
    }

    .row.row-margin > .large-offset-2 {
        margin-left: calc(16.66667% + 15px);
    }

    .row.row-margin > .large-offset-3 {
        margin-left: calc(25% + 15px);
    }

    .row.row-margin > .large-offset-4 {
        margin-left: calc(33.33333% + 15px);
    }

    .row.row-margin > .large-offset-5 {
        margin-left: calc(41.66667% + 15px);
    }

    .row.row-margin > .large-offset-6 {
        margin-left: calc(50% + 15px);
    }

    .row.row-margin > .large-offset-7 {
        margin-left: calc(58.33333% + 15px);
    }

    .row.row-margin > .large-offset-8 {
        margin-left: calc(66.66667% + 15px);
    }

    .row.row-margin > .large-offset-9 {
        margin-left: calc(75% + 15px);
    }

    .row.row-margin > .large-offset-10 {
        margin-left: calc(83.33333% + 15px);
    }

    .row.row-margin > .large-offset-11 {
        margin-left: calc(91.66667% + 15px);
    }

    .row.row-margin > .large-offset-12 {
        margin-left: calc(100% + 15px);
    }

    .large-order--1 {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .large-order-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .large-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .large-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .large-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .large-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .large-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .large-align-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .large-align-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .large-align-justify {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .large-align-spaced {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .large-align-top {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .large-align-bottom {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .large-align-middle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .large-align-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .large-align-center-middle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .large-align-self-top {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .large-align-self-bottom {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .large-align-self-middle {
        -ms-flex-item-align: center;
        align-self: center;
    }

    .large-align-self-stretch {
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }

    .section_bot-indent-none {
        margin-bottom: 0;
    }

    .section_top-indent {
        padding-top: 225px;
    }

    .section_top-indent-sm {
        margin-top: 125px;
    }
}

@media (max-width: 1023px) {
    .block__link,
    .block__text {
        margin-bottom: 20px;
    }

    .section:first-child {
        padding-top: 100px;
    }

    .block__customer-logo .customer-logo__img {
        width: 33.33333%;
    }

    .section.cover.customers .block__link,
    .section.cover.customers .block__text {
        margin-bottom: 20px;
    }

    .cover .block__main-title,
    .cover.layers .block__main-title {
        margin-bottom: 30px;
    }

    .cover.left .cover__bg,
    .cover.right .cover__bg {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .cover.left .cover__overlay,
    .cover.right .cover__overlay {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .small-cover__item .item__overlay {
        padding-top: 0;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

        .small-cover__item .item__overlay .block__main-title,
        .small-cover__item .item__overlay .block__text {
            margin-bottom: 20px;
        }

    .section_center .block__main-title,
    .section_center .block__text,
    .section_center .line {
        margin-bottom: 20px;
    }

    .section_center .block__link {
        margin-bottom: 0;
    }
}

/* Main */
