@media screen and (min-width: 1401px) {
    .hidden-xxl-up {
        display: none !important
    }
}

@media screen and (max-width: 1400px) {
    .hidden-xxl-down {
        display: none !important
    }
}

@media screen and (min-width: 1201px) {
    .hidden-xl-up {
        display: none !important
    }
}

@media screen and (max-width: 1200px) {
    .hidden-xl-down {
        display: none !important
    }
}

@media screen and (min-width: 993px) {
    .hidden-lg-up {
        display: none !important
    }
}

@media screen and (max-width: 992px) {
    .hidden-lg-down {
        display: none !important
    }
}

@media screen and (min-width: 769px) {
    .hidden-md-up {
        display: none !important
    }
}

@media screen and (max-width: 768px) {
    .hidden-md-down {
        display: none !important
    }
}

@media screen and (min-width: 577px) {
    .hidden-sm-up {
        display: none !important
    }
}

@media screen and (max-width: 576px) {
    .hidden-sm-down {
        display: none !important
    }
}

@media screen and (min-width: 481px) {
    .hidden-xs-up {
        display: none !important
    }
}

@media screen and (max-width: 480px) {
    .hidden-xs-down {
        display: none !important
    }
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 1400px) {
    .justify-content-xxl-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .justify-content-xxl-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .justify-content-xxl-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .justify-content-xxl-around {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .justify-content-xxl-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media screen and (max-width: 1200px) {
    .justify-content-xl-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .justify-content-xl-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .justify-content-xl-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media screen and (max-width: 992px) {
    .justify-content-lg-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .justify-content-lg-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .justify-content-lg-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media screen and (max-width: 768px) {
    .justify-content-md-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .justify-content-md-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .justify-content-md-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .justify-content-md-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media screen and (max-width: 576px) {
    .justify-content-sm-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .justify-content-sm-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .justify-content-sm-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media screen and (max-width: 480px) {
    .justify-content-xs-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .justify-content-xs-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .justify-content-xs-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .justify-content-xs-around {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .justify-content-xs-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

@media screen and (max-width: 1400px) {
    .align-items-xxl-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .align-items-xxl-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .align-items-xxl-end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .align-items-xxl-baseline {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }

    .align-items-xxl-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

@media screen and (max-width: 1200px) {
    .align-items-xl-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .align-items-xl-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .align-items-xl-end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

@media screen and (max-width: 992px) {
    .align-items-lg-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .align-items-lg-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .align-items-lg-end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

@media screen and (max-width: 768px) {
    .align-items-md-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .align-items-md-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .align-items-md-end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

@media screen and (max-width: 576px) {
    .align-items-sm-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .align-items-sm-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .align-items-sm-end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

@media screen and (max-width: 480px) {
    .align-items-xs-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .align-items-xs-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .align-items-xs-end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .align-items-xs-baseline {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }

    .align-items-xs-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

.text {
    font-size: 16px;
    line-height: 21px
}

.text--small {
    font-size: 13px;
    line-height: 17px
}

@media screen and (min-width: 577px) {
    .text--large {
        font-size: 20px;
        line-height: 28px
    }
}

.text-justify {
    text-align: justify
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.wow {
    visibility: hidden
}

.fade-in {
    -webkit-animation: fade-in .5s ease-in-out both;
    animation: fade-in .5s ease-in-out both
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fade-in-up {
    -webkit-animation: fade-in-up .5s ease-in-out both;
    animation: fade-in-up .5s ease-in-out both
}

@-webkit-keyframes fade-in-up {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fade-in-right {
    -webkit-animation: fade-in-right .5s ease-in-out both;
    animation: fade-in-right .5s ease-in-out both
}

@-webkit-keyframes fade-in-right {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fade-in-right {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fade-in-left {
    -webkit-animation: fade-in-left .5s ease-in-out both;
    animation: fade-in-left .5s ease-in-out both
}

@-webkit-keyframes fade-in-left {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fade-in-left {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.swiper-container {
    padding-left: 60px;
    padding-right: 60px;
    position: relative
}

@media screen and (min-width: 1515px) {
    .swiper-container {
        margin-left: -60px;
        margin-right: -60px
    }
}

.swiper {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 10px 0 0;
    position: relative;
    z-index: 1
}

.swiper-pointer-events {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%;
    z-index: 1
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-container-multirow > .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode > .swiper-wrapper {
    margin: 0 auto;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-container .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000
}

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e54b79;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    justify-content: center;
    outline: none;
    padding: 0;
    position: absolute;
    top: calc(50% - 25px);
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    width: 50px;
    z-index: 10
}

.swiper-button .ico {
    fill: #e54b79;
    height: 16px;
    width: 19px
}

.swiper-button-disabled {
    background-image: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: not-allowed;
    opacity: .35
}

.swiper-button:not(.swiper-button-disabled):hover {
    background-color: #e54b79
}

.swiper-button:not(.swiper-button-disabled):hover .ico {
    fill: #fff
}

.swiper-button-prev {
    left: 0;
    right: auto
}

.swiper-button-next {
    left: auto;
    right: 0
}

.swiper-pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 70px
}

@media screen and (max-width: 576px) {
    .swiper-pagination {
        margin-top: 30px
    }
}

.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullet {
    background: rgba(21, 65, 119, .27);
    border-radius: 50%;
    height: 14px;
    margin: 0 7.5px;
    position: relative;
    width: 14px
}

.swiper-pagination-bullet:before {
    background-color: #fff;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 7px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 100%
}

button.swiper-pagination-bullet {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff
}

.swiper-pagination-bullet-active {
    background-color: #e54b79;
    -webkit-box-shadow: 0 1px 14px rgba(21, 65, 119, .5);
    box-shadow: 0 1px 14px rgba(21, 65, 119, .5);
    height: 18px;
    width: 18px
}

.swiper-pagination-bullet-active:before {
    top: 8px
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: 5px 0
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px
}

.swiper-pagination-progress {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    width: 100%
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progress {
    height: 4px;
    left: 0;
    top: 0;
    width: 100%
}

.swiper-container-vertical > .swiper-pagination-progress {
    height: 100%;
    left: 0;
    top: 0;
    width: 4px
}

.swiper-pagination-progress.swiper-pagination-white {
    background: hsla(0, 0%, 100%, .5)
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), transparent);
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), transparent);
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), transparent);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper {
    -ms-perspective: 1200px
}

.swiper-container-cube, .swiper-container-flip {
    overflow: visible
}

.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1
}

.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0
}

.swiper-container-cube .swiper-slide {
    height: 100%;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
    background: #000;
    bottom: 0;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    height: 100%;
    left: 0;
    opacity: .6;
    position: absolute;
    width: 100%;
    z-index: 0
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-zoom-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-scrollbar {
    background: rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none
}

.swiper-container-horizontal > .swiper-scrollbar {
    bottom: 3px;
    height: 5px;
    left: 1%;
    position: absolute;
    width: 98%;
    z-index: 50
}

.swiper-container-vertical > .swiper-scrollbar {
    height: 98%;
    position: absolute;
    right: 3px;
    top: 1%;
    width: 5px;
    z-index: 50
}

.swiper-scrollbar-drag {
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
    animation: swiper-preloader-spin 1s steps(12) infinite;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

.swiper-lazy-preloader:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: block;
    height: 100%;
    width: 100%
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: sans-serif
}

*, :after, :before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: url(../images/bg.svg) center top 680px no-repeat;
    color: #0d2c5f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: Readex Pro, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    min-height: 100vh;
    min-width: 320px
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

[hidden], template {
    display: none
}

audio:not([controls]) {
    display: none;
    height: 0
}

svg:not(:root) {
    overflow: hidden
}

figure, form {
    margin: 0
}

hr {
    border: 0;
    border-bottom: 1px solid #000;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    font: inherit;
    margin: 0
}

button, input, select {
    overflow: visible
}

button, select {
    text-transform: none
}

[type=button], [type=reset], [type=submit], button {
    cursor: pointer
}

[type=reset], [type=submit], button, html input[type=button] {
    -webkit-appearance: button
}

[disabled] {
    cursor: default
}

input::-moz-focus-inner {
    border: 0;
    padding: 0
}

[type=checkbox], [type=radio] {
    padding: 0
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    margin: 0
}

fieldset, legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

b, optgroup, strong {
    font-weight: 700
}

h1, h2, h3, h4, h5, h6 {
    line-height: 100%;
    margin-top: 0
}

@media screen and (max-width: 576px) {
    /*h1 br, h2 br, h3 br, h4 br, h5 br, h6 br {
        display: none
    }*/
}

h1 {
    font-size: 36px
}

h2 {
    font-size: 30px
}

h3 {
    font-size: 28px;
    line-height: 36px
}

@media screen and (max-width: 576px) {
    h3 {
        font-size: 18px;
        line-height: 26px
    }
}

h4 {
    font-size: 18px
}

h5 {
    font-size: 16px
}

h6 {
    font-size: 14px
}

small {
    font-size: 80%
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    font-weight: 400
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
    color: inherit;
    text-decoration: none
}

p {
    margin-top: 0
}

p:empty {
    display: none
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

a {
    background-color: transparent;
    color: #4078c0;
    cursor: pointer;
    text-decoration: none
}

a:active, a:focus, a:hover {
    outline: 0
}

@font-face {
    font-display: swap;
    font-family: Readex Pro;
    font-style: normal;
    font-weight: 700;
    src: local("Readex Pro Bold"), local("ReadexPro-Bold"), url(../fonts/readex-pro/ReadexPro-Bold.woff2) format("woff2"), url(../fonts/readex-pro/ReadexPro-Bold.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Readex Pro;
    font-style: normal;
    font-weight: 500;
    src: local("Readex Pro Medium"), local("ReadexPro-Medium"), url(../fonts/readex-pro/ReadexPro-Medium.woff2) format("woff2"), url(../fonts/readex-pro/ReadexPro-Medium.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Readex Pro;
    font-style: normal;
    font-weight: 300;
    src: local("Readex Pro Light"), local("ReadexPro-Light"), url(../fonts/readex-pro/ReadexPro-Light.woff2) format("woff2"), url(../fonts/readex-pro/ReadexPro-Light.woff) format("woff")
}

.container {
    margin: 0 auto;
    max-width: 1390px;
    min-height: 1px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%
}

.container--small {
    max-width: 990px
}

.container--mini {
    max-width: 765px
}

.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: -10px;
    margin-right: -10px
}

.row.no-gutters {
    margin-left: 0;
    margin-right: 0
}

.row.no-gutters > .col {
    padding-left: 0;
    padding-right: 0
}

.row.gutters-small {
    margin-left: -5px;
    margin-right: -5px
}

.row.gutters-small > .col {
    padding-left: 5px;
    padding-right: 5px
}

.col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px
}

.col-0 {
    -ms-flex-preferred-size: 0%;
    flex-basis: 0%;
    max-width: 0
}

.col-1 {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%
}

.col-4 {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%
}

.col-7 {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%
}

.col-10 {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%
}

.col-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.col-25 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%
}

.col-offset-0 {
    margin-left: 0
}

.col-offset-1 {
    margin-left: 8.33333%
}

.col-offset-2 {
    margin-left: 16.66667%
}

.col-offset-3 {
    margin-left: 25%
}

.col-offset-4 {
    margin-left: 33.33333%
}

.col-offset-5 {
    margin-left: 41.66667%
}

.col-offset-6 {
    margin-left: 50%
}

.col-offset-7 {
    margin-left: 58.33333%
}

.col-offset-8 {
    margin-left: 66.66667%
}

.col-offset-9 {
    margin-left: 75%
}

.col-offset-10 {
    margin-left: 83.33333%
}

.col-offset-11 {
    margin-left: 91.66667%
}

.col-offset-12 {
    margin-left: 100%
}

.col-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.col-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.col-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
}

.col-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
}

.col-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
}

.col-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
}

.col-order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7
}

.col-order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8
}

.col-order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9
}

.col-order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10
}

.col-order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11
}

.col-order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12
}

@media screen and (max-width: 1400px) {
    .col-xxl-default {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%
    }

    .col-xxl-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 100%
    }

    .col-xxl-0 {
        -ms-flex-preferred-size: 0%;
        flex-basis: 0%;
        max-width: 0
    }

    .col-xxl-1 {
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%
    }

    .col-xxl-2 {
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%
    }

    .col-xxl-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }

    .col-xxl-4 {
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%
    }

    .col-xxl-5 {
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%
    }

    .col-xxl-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .col-xxl-7 {
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%
    }

    .col-xxl-8 {
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%
    }

    .col-xxl-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }

    .col-xxl-10 {
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%
    }

    .col-xxl-11 {
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%
    }

    .col-xxl-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    .col-xxl-offset-0 {
        margin-left: 0
    }

    .col-xxl-offset-1 {
        margin-left: 8.33333%
    }

    .col-xxl-offset-2 {
        margin-left: 16.66667%
    }

    .col-xxl-offset-3 {
        margin-left: 25%
    }

    .col-xxl-offset-4 {
        margin-left: 33.33333%
    }

    .col-xxl-offset-5 {
        margin-left: 41.66667%
    }

    .col-xxl-offset-6 {
        margin-left: 50%
    }

    .col-xxl-offset-7 {
        margin-left: 58.33333%
    }

    .col-xxl-offset-8 {
        margin-left: 66.66667%
    }

    .col-xxl-offset-9 {
        margin-left: 75%
    }

    .col-xxl-offset-10 {
        margin-left: 83.33333%
    }

    .col-xxl-offset-11 {
        margin-left: 91.66667%
    }

    .col-xxl-offset-12 {
        margin-left: 100%
    }

    .col-xxl-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .col-xxl-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .col-xxl-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .col-xxl-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .col-xxl-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .col-xxl-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .col-xxl-order-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .col-xxl-order-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .col-xxl-order-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .col-xxl-order-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .col-xxl-order-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .col-xxl-order-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
}

@media screen and (max-width: 1200px) {
    .col-xl-default {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%
    }

    .col-xl-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 100%
    }

    .col-xl-0 {
        -ms-flex-preferred-size: 0%;
        flex-basis: 0%;
        max-width: 0
    }

    .col-xl-1 {
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%
    }

    .col-xl-2 {
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%
    }

    .col-xl-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%
    }

    .col-xl-5 {
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%
    }

    .col-xl-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%
    }

    .col-xl-8 {
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%
    }

    .col-xl-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%
    }

    .col-xl-11 {
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%
    }

    .col-xl-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    .col-xl-offset-0 {
        margin-left: 0
    }

    .col-xl-offset-1 {
        margin-left: 8.33333%
    }

    .col-xl-offset-2 {
        margin-left: 16.66667%
    }

    .col-xl-offset-3 {
        margin-left: 25%
    }

    .col-xl-offset-4 {
        margin-left: 33.33333%
    }

    .col-xl-offset-5 {
        margin-left: 41.66667%
    }

    .col-xl-offset-6 {
        margin-left: 50%
    }

    .col-xl-offset-7 {
        margin-left: 58.33333%
    }

    .col-xl-offset-8 {
        margin-left: 66.66667%
    }

    .col-xl-offset-9 {
        margin-left: 75%
    }

    .col-xl-offset-10 {
        margin-left: 83.33333%
    }

    .col-xl-offset-11 {
        margin-left: 91.66667%
    }

    .col-xl-offset-12 {
        margin-left: 100%
    }

    .col-xl-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .col-xl-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .col-xl-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .col-xl-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .col-xl-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .col-xl-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .col-xl-order-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .col-xl-order-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .col-xl-order-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .col-xl-order-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .col-xl-order-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .col-xl-order-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
}

@media screen and (max-width: 992px) {
    .col-lg-default {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%
    }

    .col-lg-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 100%
    }

    .col-lg-0 {
        -ms-flex-preferred-size: 0%;
        flex-basis: 0%;
        max-width: 0
    }

    .col-lg-1 {
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%
    }

    .col-lg-2 {
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%
    }

    .col-lg-5 {
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%
    }

    .col-lg-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%
    }

    .col-lg-8 {
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%
    }

    .col-lg-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%
    }

    .col-lg-11 {
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%
    }

    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }

    .col-lg-offset-1 {
        margin-left: 8.33333%
    }

    .col-lg-offset-2 {
        margin-left: 16.66667%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333%
    }

    .col-lg-offset-5 {
        margin-left: 41.66667%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333%
    }

    .col-lg-offset-8 {
        margin-left: 66.66667%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333%
    }

    .col-lg-offset-11 {
        margin-left: 91.66667%
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .col-lg-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .col-lg-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .col-lg-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .col-lg-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .col-lg-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .col-lg-order-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .col-lg-order-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .col-lg-order-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .col-lg-order-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .col-lg-order-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .col-lg-order-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
}

@media screen and (max-width: 768px) {
    .col-md-default {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%
    }

    .col-md-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 100%
    }

    .col-md-0 {
        -ms-flex-preferred-size: 0%;
        flex-basis: 0%;
        max-width: 0
    }

    .col-md-1 {
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%
    }

    .col-md-2 {
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%
    }

    .col-md-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }

    .col-md-4 {
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%
    }

    .col-md-5 {
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%
    }

    .col-md-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .col-md-7 {
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%
    }

    .col-md-8 {
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%
    }

    .col-md-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }

    .col-md-10 {
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%
    }

    .col-md-11 {
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%
    }

    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    .col-md-offset-0 {
        margin-left: 0
    }

    .col-md-offset-1 {
        margin-left: 8.33333%
    }

    .col-md-offset-2 {
        margin-left: 16.66667%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-4 {
        margin-left: 33.33333%
    }

    .col-md-offset-5 {
        margin-left: 41.66667%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-7 {
        margin-left: 58.33333%
    }

    .col-md-offset-8 {
        margin-left: 66.66667%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-10 {
        margin-left: 83.33333%
    }

    .col-md-offset-11 {
        margin-left: 91.66667%
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .col-md-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .col-md-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .col-md-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .col-md-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .col-md-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .col-md-order-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .col-md-order-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .col-md-order-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .col-md-order-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .col-md-order-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .col-md-order-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
}

@media screen and (max-width: 576px) {
    .col-sm-default {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%
    }

    .col-sm-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 100%
    }

    .col-sm-0 {
        -ms-flex-preferred-size: 0%;
        flex-basis: 0%;
        max-width: 0
    }

    .col-sm-1 {
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%
    }

    .col-sm-2 {
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%
    }

    .col-sm-5 {
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%
    }

    .col-sm-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%
    }

    .col-sm-8 {
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%
    }

    .col-sm-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%
    }

    .col-sm-11 {
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%
    }

    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }

    .col-sm-offset-1 {
        margin-left: 8.33333%
    }

    .col-sm-offset-2 {
        margin-left: 16.66667%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333%
    }

    .col-sm-offset-5 {
        margin-left: 41.66667%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333%
    }

    .col-sm-offset-8 {
        margin-left: 66.66667%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333%
    }

    .col-sm-offset-11 {
        margin-left: 91.66667%
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .col-sm-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .col-sm-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .col-sm-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .col-sm-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .col-sm-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .col-sm-order-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .col-sm-order-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .col-sm-order-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .col-sm-order-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .col-sm-order-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .col-sm-order-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
}

@media screen and (max-width: 480px) {
    .col-xs-default {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%
    }

    .col-xs-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 100%
    }

    .col-xs-0 {
        -ms-flex-preferred-size: 0%;
        flex-basis: 0%;
        max-width: 0
    }

    .col-xs-1 {
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%
    }

    .col-xs-2 {
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%
    }

    .col-xs-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%
    }

    .col-xs-4 {
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%
    }

    .col-xs-5 {
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%
    }

    .col-xs-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%
    }

    .col-xs-7 {
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%
    }

    .col-xs-8 {
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%
    }

    .col-xs-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%
    }

    .col-xs-10 {
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%
    }

    .col-xs-11 {
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%
    }

    .col-xs-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    .col-xs-offset-0 {
        margin-left: 0
    }

    .col-xs-offset-1 {
        margin-left: 8.33333%
    }

    .col-xs-offset-2 {
        margin-left: 16.66667%
    }

    .col-xs-offset-3 {
        margin-left: 25%
    }

    .col-xs-offset-4 {
        margin-left: 33.33333%
    }

    .col-xs-offset-5 {
        margin-left: 41.66667%
    }

    .col-xs-offset-6 {
        margin-left: 50%
    }

    .col-xs-offset-7 {
        margin-left: 58.33333%
    }

    .col-xs-offset-8 {
        margin-left: 66.66667%
    }

    .col-xs-offset-9 {
        margin-left: 75%
    }

    .col-xs-offset-10 {
        margin-left: 83.33333%
    }

    .col-xs-offset-11 {
        margin-left: 91.66667%
    }

    .col-xs-offset-12 {
        margin-left: 100%
    }

    .col-xs-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .col-xs-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .col-xs-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .col-xs-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .col-xs-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .col-xs-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .col-xs-order-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .col-xs-order-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .col-xs-order-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .col-xs-order-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .col-xs-order-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .col-xs-order-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }
}

.modal-dialog {
    margin: 40px auto;
    max-width: 600px;
    pointer-events: none;
    position: relative;
}

.modal.fade .modal-dialog {
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    -o-transition: transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out,-webkit-transform .2s ease-out;
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.fade {
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.modal,.modal-open {
    overflow: hidden
}

.modal {
    -webkit-overflow-scrolling: touch;
    bottom: 0;
    display: none;
    left: 0;
    outline: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1050
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    margin: 40px auto;
    max-width: 600px;
    pointer-events: none;
    position: relative
}

.modal.fade .modal-dialog {
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    -o-transition: transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out,-webkit-transform .2s ease-out
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.modal-dialog-centered {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 80px)
}

.modal-content,.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.modal-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 25px rgba(21,65,119,.3);
    box-shadow: 0 4px 25px rgba(21,65,119,.3);
    -ms-flex-direction: column;
    flex-direction: column;
    outline: 0;
    padding: 30px;
    pointer-events: auto;
    position: relative;
    width: 100%
}

@media screen and (max-width: 576px) {
    .modal-content {
        padding:20px
    }
}

.modal-backdrop {
    background-color: #000;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: flex-start;
    justify-content: space-between;
    position: relative
}

.modal-close,.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.modal-close {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background: none;
    border: 0;
    font-size: 30px;
    height: 30px;
    justify-content: center;
    line-height: 30px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px
}
.modal-backdrop {
    background-color: #000;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.in {
    opacity: .5;
}
.modal-title {
    margin-bottom: 0
}

.modal-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-top: 30px;
    position: relative
}

@media screen and (max-width: 576px) {
    .modal-body {
        padding-top:20px
    }
}

.modal-footer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end
}

.modal-scrollbar-measure {
    height: 50px;
    overflow: scroll;
    position: absolute;
    top: -9999px;
    width: 50px
}

img {
    border: 0;
    display: inline-block;
    height: auto;
    max-width: 100%;
    vertical-align: middle
}

.img-fluid {
    display: block;
    width: 100%
}

.img-cover {
    background: #0d2c5f 50%/cover no-repeat
}

.button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 400;
    justify-content: center;
    line-height: 1;
    margin: 0;
    outline: 0;
    padding: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.button + .button {
    margin-left: 40px
}

@media screen and (max-width: 576px) {
    .button + .button {
        margin-left: 15px
    }
}

.button[disabled] {
    background-image: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: not-allowed;
    opacity: .35
}

.button::-moz-focus-inner {
    border: 0
}

.button__label {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-style: inherit;
    font-weight: inherit
}

.button__ico {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.button--primary {
    background-color: #fff;
    color: #0d2c5f
}

.button--danger {
    background: -webkit-gradient(linear, left top, right top, from(#e54978), to(#f18cab));
    background: -o-linear-gradient(left, #e54978 0, #f18cab 100%);
    background: linear-gradient(90deg, #e54978, #f18cab);
    color: #fff
}

.button--size-large {
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    padding: 16px 32px
}

@media screen and (max-width: 576px) {
    .button--size-large {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 20px
    }
}

.button--rounded {
    border-radius: 5px
}

.button--shadow {
    -webkit-box-shadow: 0 4px 25px rgba(21, 65, 119, .3);
    box-shadow: 0 4px 25px rgba(21, 65, 119, .3)
}

.header {
    background-color: #fff;
    padding: 24px 0
}

.logo {
    display: block;
    font-size: 23px;
    color: #0d2c5f;
    text-decoration: none;
}

.logo__img {
    display: block;
    width: 100%
}

.logo .logo__img__m {
    display: none;
    width: 100%
}

.benefit {
    margin-bottom: 80px
}

@media screen and (min-width: 577px) {
    .benefit {
        margin-right: 10px;
        max-width: 280px
    }
}

@media screen and (max-width: 576px) {
    .benefit {
        margin-bottom: 40px
    }
}

.benefit:hover .benefit__ico {
    -webkit-transform: translateY(-10px) scale(1.1);
    -ms-transform: translateY(-10px) scale(1.1);
    transform: translateY(-10px) scale(1.1)
}

.benefit__ico {
    display: block;
    margin-bottom: 20px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

@media screen and (max-width: 576px) {
    .benefit__ico {
        margin-left: auto;
        margin-right: auto
    }
}

.benefit__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 15px
}

.product {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 14px rgba(21, 65, 119, .14);
    box-shadow: 0 4px 14px rgba(21, 65, 119, .14);
    margin: 0 auto 30px;
    padding: 40px 25px 25px;
    position: relative;
    text-align: center
}

@media screen and (min-width: 481px) {
    .product {
        max-width: 250px
    }
}

.product__discount {
    background-color: #0d2c5f;
    border-radius: 5px 0 0 5px;
    color: #fff;
    font-size: 16px;
    line-height: 21px;
    padding: 10px 9px;
    position: absolute;
    right: 0;
    top: 10px;
    opacity: 0;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.product:hover .product__discount {
    opacity: 1
}

.product__image {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 110px;
    justify-content: center;
    margin-bottom: 10px
}

.product__price, .product__title {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 10px
}

.product__price {
    color: #86aff2
}

.product__button {
    color: #e54b79;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px
}

.product__button:before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.swiper .review {
    margin: 0 11px
}

.review {
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 14px rgba(21, 65, 119, .14);
    box-shadow: 0 4px 14px rgba(21, 65, 119, .14);
    padding: 30px 30px 40px
}

@media screen and (max-width: 576px) {
    .review {
        padding-left: 20px;
        padding-right: 20px
    }
}

.review__user {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 14px rgba(21, 65, 119, .5);
    box-shadow: 0 1px 14px rgba(21, 65, 119, .5);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 17px;
    height: 75px;
    justify-content: center;
    line-height: 24px;
    margin-bottom: 10px;
    width: 75px
}

.review__user--blue {
    background-color: #86aff2
}

.review__user--pink {
    background-color: #e54b79
}

.review__user--yellow {
    background-color: #f2e186
}

.category {
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 15px 10px;
    position: relative;
    text-align: center;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.category:hover {
    border-color: #fff
}

.category:hover .category__ico {
    fill: #fff
}

.category:hover .category__title {
    color: #0d2c5f
}

.category .category__ico {
    fill: #0d2c5f;
    height: 40px;
    margin-bottom: 15px;
    width: 40px
}

.category__title {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #fff;
    display: -webkit-box;
    font-size: 17px;
    font-weight: 700;
    height: 48px;
    line-height: 24px;
    margin-bottom: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.category__title a:before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.footer {
    background-color: #114496;
    color: #8698b7;
    padding: 50px 0
}

.footer__logo {
    display: block;
    height: 35px;
    margin: 0 auto 32px;
    width: 280px
}

.footer__copyright {
    margin-top: 30px
}

.icons {
    display: none
}

.ico {
    fill: #000;
    display: inline-block;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    vertical-align: middle
}

.ico--left {
    margin-right: 5px
}

.ico--right {
    margin-left: 5px
}

.ico-menu {
    display: inline-block;
    height: 16px;
    vertical-align: middle;
    width: 25px
}

.ico-menu span {
    background-color: #000;
    display: block;
    height: 2px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.ico-menu span:nth-child(2) {
    margin: 5px 0
}

.show .ico-menu span:first-child {
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg)
}

.show .ico-menu span:nth-child(2) {
    opacity: 0
}

.show .ico-menu span:last-child {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg)
}

.section {
    padding-top: 150px;
    position: relative
}
.section--inner-page {
    padding-top: 70px;
}
@media screen and (max-width: 768px) {
    .section {
        padding-top: 100px
    }
    .section--inner-page {
        padding-top: 50px;
    }
}

.section__header {
    margin-bottom: 70px
}

@media screen and (max-width: 992px) {
    .section__header {
        margin-bottom: 40px
    }
}

.section__title {
    font-size: 46px;
    line-height: 60px;
    margin-bottom: 0
}
.section__title span {
    font-size: 20px;
    color: rgba(255,255,255,0.7)!important;
}
@media screen and (max-width: 992px) {
    .section__title {
        font-size: 40px;
        line-height: 55px
    }
}

@media screen and (max-width: 768px) {
    .section__title {
        font-size: 32px;
        line-height: 42px
    }
}

@media screen and (max-width: 576px) {
    .section__title {
        font-size: 24px;
        line-height: 32px
    }
}

.section__title--center {
    text-align: center
}

.section__subtitle {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase
}

.section-hero {
    /*background: -o-radial-gradient(92.3% 21.36%, 6.51% 43.91%, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .2) 100%), -o-radial-gradient(7.19% 37.79%, 62.21% 341.31%, rgba(3, 84, 198, .7) 0, rgba(47, 111, 217, .7) 0, rgba(134, 175, 242, .7) 100%), url(../images/hero-bg.jpg) center top/auto no-repeat;*/
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0) 20%, rgba(1, 77, 183, 0.9) 100%), url(../images/hero-bg.jpg) center -100px/auto no-repeat;
    -webkit-clip-path: polygon(100% 0, 100% 90%, 85% 100%, 0 95%, 0 0);
    clip-path: polygon(100% 0, 100% 90%, 85% 100%, 0 95%, 0 0);
    padding-bottom: 64px;
    padding-top: 48px;
    background-attachment: fixed
}

@media screen and (max-width: 768px) {
    .section-hero {
        padding-bottom: 100px;
        padding-top: 70px
    }
}

.section-hero .section__header {
    margin-bottom: 45px
}

.section-hero .section__title {
    color: #fff
}

.section-goals .section__title {
    margin-left: auto;
    margin-right: auto;
    max-width: 725px
}

.section-popular {
    padding-bottom: 50px;
    padding-top: 60px;
}

@media screen and (max-width: 768px) {
    .section-popular {
        padding-bottom: 70px
    }
}

.section-catalog {
    background: -o-linear-gradient(179.99deg, #2f6fd9 .01%, #c2e9fb 99.99%);
    background: linear-gradient(270.01deg, #2f6fd9 .01%, #c2e9fb 99.99%);
    -webkit-clip-path: polygon(100% 0, 100% 90%, 50% 100%, 50% 100%, 0 90%, 0 0);
    clip-path: polygon(100% 0, 100% 90%, 50% 100%, 50% 100%, 0 90%, 0 0);
    padding-bottom: 64px;
    padding-top: 32px;
}
.section-catalog .section__header {
    margin-bottom: 24px;
}

.section-catalog .section__title {
    color: #fff
}

.section-catalog .swiper-button {
    top: 25px
}

.section-benefits {
    padding-bottom: 75px
}

.section-benefits .section__title {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px
}

.section-chat {
    background: -webkit-gradient(linear, left top, right top, from(#2f6fd9), to(#c2e9fb));
    background: -o-linear-gradient(left, #2f6fd9 0, #c2e9fb 100%);
    background: linear-gradient(90deg, #2f6fd9, #c2e9fb);
    -webkit-clip-path: polygon(100% 0, 100% 90%, 15% 100%, 0 90%, 0 0);
    clip-path: polygon(100% 0, 100% 90%, 15% 100%, 0 90%, 0 0);
    color: #fff;
    padding-bottom: 165px;
    padding-top: 115px
}

@media screen and (max-width: 992px) {
    .section-chat {
        background-position: right bottom 20%
    }
}

@media screen and (max-width: 768px) {
    .section-chat {
        padding-bottom: 100px;
        padding-top: 70px
    }
}

.section-chat .section__header {
    margin-bottom: 20px
}

.section-chat__bg {
    height: 395px;
    position: absolute;
    right: 10%;
    top: calc(50% - 197.5px)
}

@media screen and (max-width: 1400px) {
    .section-chat__bg {
        height: 300px;
        right: 0;
        top: calc(50% - 150px)
    }
}

@media screen and (max-width: 1200px) {
    .section-chat__bg {
        bottom: 10%;
        height: 45%;
        top: auto
    }
}

@media screen and (max-width: 768px) {
    .section-chat__bg {
        height: 35%
    }
}

@media screen and (max-width: 576px) {
    .section-chat__bg {
        height: 30%
    }
}

.section-chat .text {
    margin-bottom: 30px;
    max-width: 550px
}

@media screen and (max-width: 576px) {
    .section-reviews .swiper-container {
        padding-left: 0;
        padding-right: 0;
        padding-top: 60px
    }
}

.section-reviews .swiper-button {
    top: 80px
}

@media screen and (max-width: 576px) {
    .section-reviews .swiper-button {
        top: 0
    }

    .section-reviews .swiper-button-next {
        right: 10px
    }

    .section-reviews .swiper-button-prev {
        left: 10px
    }
}

.section-why {
    padding-bottom: 150px
}

@media screen and (max-width: 768px) {
    .section-why {
        padding-bottom: 100px
    }
}

.section-why .section__header {
    margin-bottom: 20px
}

.section-why .section__title {
    max-width: 890px
}

@media screen and (min-width: 993px) {
    .section-why__left {
        text-align: right
    }
}

.section-why__bg {
    display: block
}

@media screen and (min-width: 993px) {
    .section-why__bg {
        max-width: none;
        width: 131%
    }
}

@media screen and (max-width: 992px) {
    .section-why__bg {
        margin: 30px auto
    }
}

.section-why__generic {
    margin-top: 95px
}

@media screen and (max-width: 576px) {
    .section-why__generic {
        margin-top: 40px
    }
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

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

.list--flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
}

.list--flex > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%
}

.menu li:not(:last-child) {
    margin-right: 20px
}

.menu li:hover a {
    color: #e54b79
}

.menu a {
    color: #0d2c5f;
    font-weight: 700
}

.topMenuWrap .dropdownBut {
    display: none
}

element.style {
}
.header.isDark .icoMenu span, .header.isLight {
    background-color: #fff;
}
.ico--menu span {
    display: block;
    height: 2px;
    line-height: 0;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    background: #0d2c5f;
}
.open .ico--menu span:nth-child(2) {
    opacity: 0;
}

.open .ico--menu span:first-child {
    -webkit-transform: translateY(6px) rotate(
            45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(
            45deg);
}
.open .ico--menu span:last-child {
    -webkit-transform: translateY(-6px) rotate(
            -45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(
            -45deg);
}
.open .ico--menu span {
    background: #fff;
}
.top--menu .button--dropdown {
    display: none;
}
.ico--menu span:nth-child(2) {
    margin: 3px 0;
}
.likes__item .ico {
    fill: transparent;
    width: 30px;
    height: 30px;
}

.likes__item {
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 15px;
}

.likes__item span {
    opacity: 0.6;
}

.likes__item.active .ico {
    fill: #e54b79;
}

.likes__item.active span {
    opacity: 1
}

.section-hero-about {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0) 5%, rgba(1, 77, 183, 0.9) 100%), url("../images/about.jpg") center bottom/cover no-repeat;
}
.mt-5 {
    margin-top: 70px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-40 {
    margin-bottom: 64px;
}
@media (max-width: 991px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: .2s ease-in-out;
        -o-transition: .2s ease-in-out;
        transition: .2s ease-in-out;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    .top--menu .dropdown-menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0,0,0,.5);
        -webkit-box-shadow: 0 10px 20px rgb(42 42 42 / 10%);
        box-shadow: 0 10px 20px rgb(42 42 42 / 10%);
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 0;
        visibility: hidden;
    }
    .top--menu.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
    .top--menu .button--dropdown {
        display: inline-block;
        width: 20px;
        position: relative;
        z-index: 1024;
    }
    .top--menu .button--dropdown .ico--menu {
        display: block;
    }
    .menu {
        height: 100%;
        width: 280px;
        padding: 15px;
        overflow: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transition: .2s ease-in-out;
        -o-transition: .2s ease-in-out;
        transition: .2s ease-in-out;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        background-color: #fff;
    }
    .open .menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.text h3, .text h4, .text h5, .text h5 {margin:32px 0 16px}
.text h3:first-child, .text h4:first-child, .text h5:first-child, .text h5:first-child {margin-top:0}
.section-small-p {
    padding-top: 70px;
}
.item-call a {
    color: #fff;
}
.item-call > span {
    display: block;
    font-size: 10px;
    text-align: right;
    color: #fff;
}
.top-header {
    padding: 15px 0;
    background: linear-gradient(90deg, rgba(47, 111, 217, 1) 0, #c2e9fb 100%);
}
.item-call {
    margin-right: 30px;
    font-weight: 300;
}
.item-call img {
    max-width: 15px;
    margin-right: 10px;
}
.yellow-style {
    color: #ffff00;
}
.green-style {
    color: #8af746;
}
.section-reviews + .section-chat {
    margin-top: 64px;
}
@media (max-width: 1400px){
    .section-hero {
        background-position-x: right;
    }
}
@media (max-width: 1024px) {
    background-position-x: 75%;
}
@media (max-width: 991px){
    .open .menu {
        position: relative;
    }
    .nav.menu:before {
        content: '';
        left: 15px;
        top: 7px;
        display: block;
        background: url(../images/logo360.svg) no-repeat center right;
        position: absolute;
        width: calc(100% - 30px);
        height: 50px;
        background-size: contain;
    }
    .menu > ul.list {
        margin-top: 64px;
    }
    .menu > ul.list li {
        display: block;
        flex-basis: 100%;
        margin-right: 0;
        border-bottom: 1px solid rgba(13, 44, 95, 0.2);
        padding-left: 10px;
    }
    .menu a {
        font-size: 16px;
        padding-bottom: 16px;
        padding-top: 16px;
        display: block;
    }
    .menu li:first-child a {
        padding-top: 0px;
    }
}

@media (max-width: 767px){
    .section-hero {
        background: -o-linear-gradient(180deg, #2f6fd9 .01%, #c2e9fb 99.99%);
        background: linear-gradient(180deg, #2f6fd9 .01%, #c2e9fb 99.99%);
    }
}
@media (max-width: 590px){
    .item-call {margin-right: 0;}
    .item-call > span {
        height: 0;
    }
    .item-call span {
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        width: 0;
        -webkit-transition: .2s ease-in-out;
        -o-transition: .2s ease-in-out;
        transition: .2s ease-in-out;
        display: inline-block;
        vertical-align: middle;
    }
    .item-call img{max-width: 24px;}
    .item-call:hover a span {
        opacity: 1;
        visibility: visible;
        height: auto;
        width: auto;
    }
    .logo .logo__img {display: none}
    .logo .logo__img__m {display: block}
}
footer a {
    color: inherit;
}
.white-box .icon .ico {
    max-width: 64px;
    max-height: 64px;
    margin-bottom: 12px;
    fill: #2f6fd9;
}

.white-box {
    text-align: center;
    padding: 16px;
    border-radius: 5px;
    border: 2px solid #7aadea;
    margin-bottom: 30px;
}
.form__group {
    margin-bottom: 24px;
}
.form-control {
    width: 100%;
    border-radius: 5px;
    padding: 13px 10px;
    border: 2px solid #7aadea
}
textarea.form-control {
    height: 51px;
}
@media screen and (min-width:1921px) {
    .section-hero:not(.section-hero-about) {
        background: linear-gradient(to right, #4a7dc5 0%, rgba(1, 77, 183, 1) 24%, rgba(1, 77, 183, 0.9) 43%, rgba(1, 77, 183, 0) 100%), url(../images/hero-bg.jpg) center -152px/auto no-repeat;
        background-attachment: fixed;
        background-position-x: right;
    }
}