/*! CSS Used from: Embedded */
.carousel, .carousel-inner {
    position: relative
}

.carousel-caption, .carousel-control {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    text-align: center
}

.fa, body, footer {
    -moz-osx-font-smoothing: grayscale
}

.carousel-inner {
    width: 100%;
    overflow: hidden
}

.carousel-inner > .item {
    position: relative;
    display: none;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img {
    line-height: 1
}

@media all and (transform-3d),(-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }

    .carousel-inner > .item.active.right, .carousel-inner > .item.next {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    .carousel-inner > .item.active.left, .carousel-inner > .item.prev {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    .carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block
}

.carousel-inner > .active {
    left: 0
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner > .next {
    left: 100%
}

.carousel-inner > .prev {
    left: -100%
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
    left: 0
}

.carousel-inner > .active.left {
    left: -100%
}

.carousel-inner > .active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: .5
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x
}

.carousel-control:focus, .carousel-control:hover {
    color: #fff;
    text-decoration: none;
    filter: alpha(opacity=90);
    outline: 0;
    opacity: .9
}

.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px
}

.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px
}

.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-next, .carousel-control .icon-prev {
    width: 20px;
    height: 20px;
    font-family: Roboto, arial !important;
    line-height: 1
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    list-style: none
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -10px
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.carousel-indicators, .vjs-menu li {
    list-style: none;
    text-align: center
}

.btn, .carousel-indicators, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-control, .vjs-button > .vjs-icon-placeholder:before, .vjs-menu li, .vjs-menu li.vjs-menu-title {
    text-align: center
}

.video-js .vjs-audio-button .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-chapters-button .vjs-icon-placeholder, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder, .video-js .vjs-descriptions-button .vjs-icon-placeholder, .video-js .vjs-fullscreen-control .vjs-icon-placeholder, .video-js .vjs-mute-control .vjs-icon-placeholder, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-play-progress, .video-js .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-volume-level {
    font-family: VideoJS;
    font-style: normal;
    font-weight: 400
}

.container:after, .iten, .row:after {
    clear: both
}

.video-js {
    width: 300px;
    height: 150px
}

/*! CSS Used from: Embedded */
.id-home-video-dimensions {
    width: 1280px;
    height: 720px
}

/*! CSS Used from: https://merizaldeabogados.com/css/app.css */
button, input, select, textarea {
    color: inherit
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0
}

@media print {
    *, :after, :before {
        color: #000 !important;
        text-shadow: none !important;
        background: 0 0 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    a[href^="#"]:after {
        content: ""
    }

    img {
        page-break-inside: avoid;
        max-width: 100% !important
    }

    h2, h3, p {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }
}

.btn, .btn:active {
    background-image: none
}

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

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

@media (min-width: 768px) {
    .col-sm-4, .col-sm-6 {
        float: left
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-4 {
        width: 33.33333333%
    }
}

@media (min-width: 992px) {
    .col-md-4, .col-md-6 {
        float: left
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-4 {
        width: 33.33333333%
    }
}

fieldset {
    min-width: 0
}

legend {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333
}

.btn, label {
    display: inline-block
}

label {
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700
}

.btn {
    margin-bottom: 0;
    line-height: 1.42857143;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent
}

.btn:active:focus, .btn:focus {
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px
}

.btn:active {
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media, .media-body {
    overflow: hidden;
    zoom: 1
}

.media-body {
    width: 10000px
}

.media-object {
    display: block
}

.media-left {
    padding-right: 10px
}

.media-body, .media-left {
    display: table-cell;
    vertical-align: top
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.container:after, .container:before, .row:after, .row:before {
    content: " "
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .vjs-modal-dialog .vjs-modal-dialog-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before {
    content: "\f101"
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
    content: "\f104"
}

.video-js .vjs-mute-control .vjs-icon-placeholder:before {
    content: "\f107"
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
    content: "\f108"
}

.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before {
    content: "\f10c"
}

.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before {
    content: "\f10d"
}

.video-js .vjs-chapters-button .vjs-icon-placeholder:before {
    content: "\f10e"
}

.video-js .vjs-play-progress:before, .video-js .vjs-volume-level:before {
    content: "\f111"
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
    content: "\f115"
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
    content: "\f11d"
}

.video-js .vjs-audio-button .vjs-icon-placeholder:before {
    content: "\f11e"
}

._2__g:after, .page-heading:before {
    content: ""
}

.video-js {
    display: block;
    vertical-align: top;
    box-sizing: border-box;
    color: #fff;
    background-color: transparent;
    position: relative;
    padding: 0;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    font-family: Arial, Helvetica, arial;
    word-break: initial
}

.video-js:-moz-full-screen {
    position: absolute
}

.video-js:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important
}

.video-js[tabindex="-1"] {
    outline: 0
}

.video-js *, .video-js :after, .video-js :before {
    box-sizing: inherit
}

.video-js .vjs-modal-dialog > *, .vjs-loading-spinner, .vjs-menu .vjs-menu-content > * {
    box-sizing: border-box
}

.video-js ul {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    list-style-position: outside;
    margin: 0
}

._5j3-, ._inf._2qix._3bn-, .h4, .video-js .vjs-time-tooltip, .vjs-menu .vjs-menu-content, body, button, h1, h2, h3, h4, h5, header .nav-links, input, label, select, textarea {
    font-family: Roboto, arial !important
}

.video-js .vjs-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.vjs-hidden {
    display: none !important
}

.video-js .vjs-big-play-button {
    font-size: 3em;
    line-height: 1.5em;
    height: 1.5em;
    width: 3em;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border: .06666em solid #fff;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7);
    border-radius: .3em;
    transition: all .4s
}

.video-js .vjs-big-play-button:focus, .video-js:hover .vjs-big-play-button {
    border-color: #fff;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5);
    transition: all 0s
}

.vjs-controls-disabled .vjs-big-play-button {
    display: none
}

.video-js button {
    background: 0 0;
    border: none;
    color: inherit;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
    text-decoration: none;
    transition: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.vjs-control .vjs-button {
    width: 100%;
    height: 100%
}

.video-js .vjs-control.vjs-close-button {
    cursor: pointer;
    height: 3em;
    position: absolute;
    right: 0;
    top: .5em;
    z-index: 2
}

.video-js .vjs-modal-dialog {
    background: rgba(0, 0, 0, .8);
    background: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(255, 255, 255, 0));
    overflow: auto
}

.vjs-modal-dialog .vjs-modal-dialog-content {
    font-size: 1.2em;
    line-height: 1.5;
    padding: 20px 24px;
    z-index: 1
}

.vjs-menu-button {
    cursor: pointer
}

.vjs-menu .vjs-menu-content {
    display: block;
    padding: 0;
    margin: 0;
    overflow: auto
}

._2s8m, ._34lc, .page-heading, .video-js .vjs-control-text {
    overflow: hidden
}

.vjs-menu li {
    margin: 0;
    padding: .2em 0;
    line-height: 1.4em;
    font-size: 1.2em;
    text-transform: lowercase
}

.vjs-menu li.vjs-menu-item:focus, .vjs-menu li.vjs-menu-item:hover {
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5)
}

.vjs-menu li.vjs-selected, .vjs-menu li.vjs-selected:focus, .vjs-menu li.vjs-selected:hover {
    background-color: #fff;
    color: #2b333f
}

.vjs-menu li.vjs-menu-title {
    text-transform: uppercase;
    font-size: 1em;
    line-height: 2em;
    padding: 0;
    margin: 0 0 .3em;
    font-weight: 700;
    cursor: default
}

.vjs-menu-button-popup .vjs-menu {
    display: none;
    position: absolute;
    bottom: 0;
    width: 10em;
    left: -3em;
    height: 0;
    margin-bottom: 1.5em;
    border-top-color: rgba(43, 51, 63, .7)
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7);
    position: absolute;
    width: 100%;
    bottom: 1.5em;
    max-height: 15em
}

.vjs-workinghover .vjs-menu-button-popup:hover .vjs-menu {
    display: block
}

.video-js .vjs-control-bar {
    display: none;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3em;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7)
}

.vjs-controls-disabled .vjs-control-bar {
    display: none !important
}

.video-js .vjs-control {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 4em;
    flex: none
}

.vjs-button > .vjs-icon-placeholder:before {
    font-size: 1.8em;
    line-height: 1.67
}

.video-js .vjs-control:focus, .video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before {
    text-shadow: 0 0 1em #fff
}

.video-js .vjs-control-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    padding: 0;
    position: absolute;
    width: 1px
}

.video-js .vjs-custom-control-spacer {
    display: none
}

.video-js .vjs-progress-control {
    cursor: pointer;
    flex: auto;
    display: flex;
    align-items: center;
    min-width: 4em;
    touch-action: none
}

.video-js .vjs-progress-holder {
    flex: auto;
    transition: all .2s;
    height: .3em
}

.video-js .vjs-progress-control .vjs-progress-holder {
    margin: 0 10px
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
    font-size: 1.666666666666666666em
}

.video-js .vjs-progress-holder .vjs-load-progress, .video-js .vjs-progress-holder .vjs-play-progress {
    position: absolute;
    display: block;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 0
}

.video-js .vjs-play-progress {
    background-color: #fff
}

.video-js .vjs-play-progress:before {
    font-size: .9em;
    position: absolute;
    right: -.5em;
    top: -.333333333333333em;
    z-index: 1
}

.video-js .vjs-load-progress {
    background: rgba(115, 133, 159, .5)
}

.video-js .vjs-time-tooltip {
    background-color: #fff;
    background-color: rgba(255, 255, 255, .8);
    border-radius: .3em;
    color: #000;
    float: right;
    font-size: 1em;
    padding: 6px 8px 8px;
    pointer-events: none;
    position: absolute;
    top: -3.4em;
    visibility: hidden;
    z-index: 1
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
    display: none
}

.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip, .video-js .vjs-progress-control:hover .vjs-time-tooltip {
    display: block;
    font-size: .6em;
    visibility: visible
}

.video-js .vjs-progress-control .vjs-mouse-display {
    display: none;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #000;
    z-index: 1
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
    display: block
}

.vjs-mouse-display .vjs-time-tooltip {
    color: #fff;
    background-color: #000;
    background-color: rgba(0, 0, 0, .8)
}

.video-js .vjs-slider {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0 .45em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5)
}

.video-js .vjs-slider:focus {
    text-shadow: 0 0 1em #fff;
    box-shadow: 0 0 1em #fff
}

.video-js .vjs-mute-control {
    cursor: pointer;
    flex: none
}

.video-js .vjs-volume-control {
    cursor: pointer;
    margin-right: 1em;
    display: flex
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
    width: 5em
}

.video-js .vjs-volume-panel .vjs-volume-control {
    visibility: visible;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin-left: -1px
}

.video-js .vjs-volume-panel {
    transition: width 1s;
    display: flex
}

.video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel .vjs-volume-control:hover, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel:hover .vjs-volume-control {
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: visibility .1s, opacity .1s, height .1s, width .1s, left 0s, top 0s
}

.video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-horizontal {
    width: 5em;
    height: 3em
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:hover {
    width: 9em;
    transition: width .1s
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
    transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s
}

.btn, header {
    transition: background-color .25s linear
}

.video-js .vjs-volume-bar {
    margin: 1.35em .45em
}

.vjs-volume-bar.vjs-slider-horizontal {
    width: 5em;
    height: .3em
}

.video-js .vjs-volume-level {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff
}

.video-js .vjs-volume-level:before {
    position: absolute;
    font-size: .9em
}

.vjs-slider-horizontal .vjs-volume-level {
    height: .3em
}

.vjs-slider-horizontal .vjs-volume-level:before {
    top: -.3em;
    right: -.5em
}

.vjs-poster, .vjs-text-track-display {
    right: 0;
    top: 0;
    left: 0;
    position: absolute
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
    width: 100%
}

.vjs-poster {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    background-color: #000;
    cursor: pointer;
    margin: 0;
    padding: 0;
    bottom: 0;
    height: 100%
}

.video-js .vjs-live-control {
    display: flex;
    align-items: flex-start;
    flex: auto;
    font-size: 1em;
    line-height: 3em
}

.video-js .vjs-time-control {
    flex: none;
    font-size: 1em;
    line-height: 3em;
    min-width: 2em;
    width: auto;
    padding-left: 1em;
    padding-right: 1em
}

.video-js .vjs-current-time, .video-js .vjs-duration {
    display: none
}

.vjs-time-divider {
    display: none;
    line-height: 3em
}

.video-js .vjs-play-control .vjs-icon-placeholder {
    cursor: pointer;
    flex: none
}

.vjs-text-track-display {
    bottom: 3em;
    pointer-events: none
}

.video-js .vjs-fullscreen-control {
    cursor: pointer;
    flex: none
}

.vjs-playback-rate .vjs-playback-rate-value, .vjs-playback-rate > .vjs-menu-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.vjs-playback-rate .vjs-playback-rate-value {
    pointer-events: none;
    font-size: 1.5em;
    line-height: 2;
    text-align: center
}

.vjs-playback-rate .vjs-menu {
    width: 4em;
    left: 0
}

.vjs-loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .85;
    text-align: left;
    border: 6px solid rgba(43, 51, 63, .7);
    background-clip: padding-box;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    visibility: hidden
}

.vjs-loading-spinner:after, .vjs-loading-spinner:before {
    content: "";
    position: absolute;
    margin: -6px;
    box-sizing: inherit;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    opacity: 1;
    border: inherit;
    border-color: #fff transparent transparent
}

._2__g, ._49wt, ._4fgg, ._4ulx, ._5r7f, .__sw, ._yac {
    box-sizing: border-box
}

.vjs-chapters-button .vjs-menu ul {
    width: 24em
}

.vjs-modal-dialog.vjs-text-track-settings {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .75);
    color: #fff;
    height: 70%
}

.vjs-text-track-settings .vjs-modal-dialog-content {
    display: table
}

.vjs-text-track-settings .vjs-track-settings-colors, .vjs-text-track-settings .vjs-track-settings-controls, .vjs-text-track-settings .vjs-track-settings-font {
    display: table-cell
}

.vjs-text-track-settings .vjs-track-settings-controls {
    text-align: right;
    vertical-align: bottom
}

.vjs-track-setting > select {
    margin-right: 5px
}

.vjs-text-track-settings fieldset {
    margin: 5px;
    padding: 3px;
    border: none
}

.vjs-text-track-settings fieldset span {
    display: inline-block
}

.vjs-text-track-settings legend {
    color: #fff;
    margin: 0 0 5px
}

.vjs-text-track-settings .vjs-label {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    display: block;
    margin: 0 0 5px;
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.vjs-track-settings-controls button:active, .vjs-track-settings-controls button:focus {
    outline-style: solid;
    outline-width: medium;
    background-image: linear-gradient(0deg, #fff 88%, #73859f 100%)
}

.vjs-track-settings-controls button:hover {
    color: rgba(43, 51, 63, .75)
}

.vjs-track-settings-controls button {
    background-color: #fff;
    background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
    color: #2b333f;
    cursor: pointer;
    border-radius: 2px
}

.vjs-track-settings-controls .vjs-default-button {
    margin-right: 1em
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 52px
    }
}

@media only screen and (min-width: 1200px) {
    h1 {
        font-size: 72px
    }
}

@media only screen and (min-width: 768px) {
    h2 {
        font-size: 30px
    }
}

@media only screen and (min-width: 1200px) {
    h2 {
        font-size: 42px
    }
}

@media only screen and (min-width: 768px) {
    h3 {
        font-size: 28px
    }
}

@media only screen and (min-width: 1200px) {
    h3 {
        font-size: 38px
    }
}

@media only screen and (min-width: 768px) {
    h4 {
        font-size: 24px
    }
}

@media only screen and (min-width: 1200px) {
    h4 {
        font-size: 32px
    }
}

@media only screen and (min-width: 768px) {
    h5 {
        font-size: 20px
    }
}

@media only screen and (min-width: 1200px) {
    h5 {
        font-size: 26px
    }
}

.btn {
    padding: 11px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    min-width: 160px;
    border-radius: 5px
}

.btn:focus, .btn:hover {
    text-decoration: none;
    color: #FFF
}

body {
    min-width: 320px;
    direction: ltr;
    unicode-bidi: embed
}

.page-heading {
    background-size: cover;
    background-position: 50%;
    position: relative;
    color: #FFF
}

.page-heading.video {
    height: 450px
}

@media only screen and (min-width: 480px) {
    .page-heading.video {
        height: 475px;
    }
}

.page-heading:before {
    z-index: 1;
    background: rgba(0, 0, 0, .25);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.page-heading #big-video-wrap {
    text-align: left
}

.page-heading .carousel {
    background-color: rgba(0, 0, 0, .2);
    height: 100%;
    z-index: 1
}

.page-heading .carousel .item {
    padding-top: 150px
}

@media only screen and (min-width: 480px) {
    .page-heading .carousel .item {
        padding-top: 150px
    }
}

.page-heading .carousel .item h1 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%
}

.page-heading h1 {
    margin-top: 10px
}

@media only screen and (min-width: 480px) {
    .page-heading h1 {
        margin-bottom: 20px
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    padding: 20px 0;
    z-index: 30
}

._1yrg._inf, ._2qix, ._dd5._inf, ._inf._2qix._dcm {
    transition: background .3s;
    text-align: center;
    cursor: pointer
}

header .logo {
    position: absolute;
    top: 20px;
    height: 30px;
    left: calc(50% - 100px / 2)
}

@media only screen and (min-width: 1200px) {
    .page-heading h1 {
        font-size: 52px
    }

    header .logo {
        left: 110px
    }
}

header .nav-links {
    left: 50%;
    margin: 0;
    position: absolute;
    top: 26px;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 16px;
    font-weight: 800;
    color: #1f1f22
}

header .nav-links li {
    padding: 0 8px
}

@media only screen and (min-width: 1440px) {
    header .nav-links li {
        padding: 0 20px
    }
}

header .nav-links a {
    color: #FFF;
    padding-bottom: 25px;
    text-decoration: none
}

header .btn-right-menu {
    position: absolute;
    right: 25px;
    color: #FFF;
    padding: 10px 20px;
    min-width: 40px;
    top: 15px;
    display: none;
    background-color: #FF2E63;
    font-size: 12px
}

@media only screen and (min-width: 992px) {
    header .btn-right-menu {
        display: block
    }

    header .btn-right-menu:hover {
        background-color: #4DBD88
    }
}

header.white {
    background-color: #FFF;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .05)
}

header.white .btn-right-menu {
    background-color: #FF2E63;
    color: #FFF
}

header.white .btn-right-menu:hover {
    background-color: #4DBD88
}

header.white a {
    color: #61696f
}

header.white a.active:hover {
    border-color: #4DBD88
}

.home .page-heading .carousel .carousel-indicators {
    bottom: 50px
}

@media only screen and (min-width: 480px) {
    .home .page-heading .carousel .carousel-indicators {
        bottom: 50px
    }
}

.home .video-js {
    height: 100%;
    width: 100%
}

.home .video-js .vjs-tech {
    width: 250%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

._34lc, ._3fcf {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%
}

@media only screen and (min-width: 768px) {
    .home .video-js .vjs-tech {
        width: 100%
    }
}

footer {
    -webkit-font-smoothing: antialiased;
    background-color: #464D57;
    font-size: 16px;
    line-height: 20px
}

._4ulx, ._5r7f, .__sw, ._yac, .cb-input_flat {
    position: relative
}

._2qix {
    background: #3578e5;
    border: 0;
    color: #fff
}

._2qix:focus, ._2qix:hover {
    background: #3b5998
}

._3bn- {
    border-radius: 6px;
    font-size: 19px;
    line-height: 18px;
    max-width: 320px;
    padding: 15px 20px 14px;
    white-space: normal
}

._3bn-._w1i {
    padding: 15px 65px 14px
}

._inf._2qix._3bn- {
    border-radius: 3px;
    font-weight: 400;
    letter-spacing: .03em;
    padding: 9px 18px
}

._inf._2qix._dcm {
    background: 0 0;
    border-color: #3578e5;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    color: #3578e5
}

._inf._2qix._dcm:hover {
    color: #fff
}

._1yrg._inf._2qix._dcm {
    border-color: #fff;
    color: #fff
}

._1yrg._inf, ._1yrg._inf._2qix._dcm:hover {
    color: #3578e5
}

._1yrg._inf {
    background: #fff
}

._dd5._inf._2qix._dcm {
    border-color: #4267b2;
    color: #4267b2
}

._dd5._inf._2qix._dcm:hover {
    border-color: #365899;
    color: #fff
}

._49wt, .__sw {
    border: 1px solid transparent
}

._dd5._inf {
    background: #4267b2;
    color: #fff
}

._1yrg:focus, ._1yrg:hover, ._2qix._1yrg:focus, ._2qix._1yrg:hover {
    background: #e9ebee
}

._2qix._dd5:focus, ._2qix._dd5:hover, ._dd5:focus, ._dd5:hover {
    background: #365899
}

@media (min-width: 801px) {
    ._inf._2qix {
        font-size: 18px
    }
}

@media (min-width: 640px) and (max-width: 800px) {
    ._inf._2qix {
        font-size: 16px
    }
}

@media (max-width: 639px) {
    ._inf._2qix {
        font-size: 14px
    }
}

._4fgg ._38io {
    margin: .1em 0
}

.__sw {
    float: left;
    padding: 0 12px
}

.__sw._4xq8 {
    padding: 0
}

@media (min-width: 801px) {
    ._4fgg {
        font-size: 18px;
        line-height: 30px
    }

    .__sw.__s- {
        width: 83.333%
    }

    .__sw.__s-:only-of-type {
        margin-left: 8.333%;
        margin-right: 8.333%
    }
}

@media (min-width: 640px) and (max-width: 800px) {
    ._4fgg {
        font-size: 16px;
        line-height: 27px
    }

    .__sw.__t3 {
        width: 100%
    }
}

@media (max-width: 639px) {
    ._4fgg {
        font-size: 1.3em;
        line-height: 23px
    }

    .__sw.__ta {
        width: 100%
    }
}

@media (min-width: 801px) {
    ._30jd._38io {
        font-size: 1.3em;
        line-height: 30px
    }
}

@media (min-width: 640px) and (max-width: 800px) {
    ._30jd._38io {
        font-size: 1.3em;
        line-height: 27px
    }
}

@media (max-width: 639px) {
    ._30jd._38io {
        font-size: 1.3em;
        line-height: 23px
    }
}

._49wt ._38io {
    margin: .1em 0
}

._3tmr._34g8 {
    font-weight: 400;
    margin: 0
}

._3tmt._34g8 {
    font-weight: 700
}

._3tmr._34g8, ._3tmt._34g8 {
    margin-bottom: .5em
}

@media (min-width: 801px) {
    ._3tmr._34g8 {
        font-size: 50px;
        line-height: 55px
    }

    ._3tmt._34g8 {
        font-size: 18px;
        line-height: 30px
    }

    ._2__g {
        padding: 0 12px
    }
}

@media (min-width: 640px) and (max-width: 800px) {
    ._3tmr._34g8 {
        font-size: 40px;
        line-height: 45px
    }

    ._3tmt._34g8 {
        font-size: 16px;
        line-height: 27px
    }
}

._2__g {
    margin-left: auto;
    margin-right: auto;
    max-width: 1020px
}

._2__g:after {
    clear: both;
    display: table
}

._4sea, ._6aj_ {
    display: flex
}

@media (min-width: 640px) and (max-width: 800px),(max-width: 639px) {
    ._2__g {
        padding: 0 12px
    }
}

._yac > ._5r7f {
    padding-bottom: 40px
}

._5r7f._1n13, ._yac > ._5r7f._60-a {
    padding-bottom: 0
}

._yac > ._5r7f:first-child {
    padding-top: 40px
}

._yac ._5r7f._46rr:first-child, ._yac > ._5r7f._60-9 {
    padding-top: 0
}

@media (min-width: 801px) {
    ._yac > ._5r7f {
        padding-bottom: 95px
    }

    ._5r7f._1n13, ._yac ._5r7f._60-a:first-child, ._yac > ._5r7f._60-a {
        padding-bottom: 0
    }

    ._yac > ._5r7f:first-child {
        padding-top: 95px
    }

    ._yac ._5r7f._46rr:first-child, ._yac ._5r7f._60-9:first-child, ._yac > ._5r7f._60-9 {
        padding-top: 0
    }

    ._2lt3 {
        width: 100%
    }
}

._4ulx {
    text-align: center
}

._4ulx > ._2__g > .__sw {
    float: none;
    margin: 0 auto
}

@media (max-width: 639px) {
    ._3tmr._34g8 {
        font-size: 35px;
        line-height: 40px
    }

    ._3tmt._34g8 {
        font-size: 14px;
        line-height: 23px
    }

    ._fkg._2ak0 {
        text-align: left
    }

    ._fkg {
        padding: 0
    }

    ._4uul._5r7f {
        padding-bottom: 0
    }

    ._4uul {
        width: 100%
    }
}

._yac {
    z-index: 1
}

._2s8n {
    background-repeat: no-repeat
}

._2s93 {
    background-size: cover
}

._3gnj {
    background-position: center
}

._4seb {
    align-items: center
}

._2nh_ {
    justify-content: center
}

body, button, input, label, select, textarea {
    font-size: 12px
}

h1, h2, h3, h4, h5 {
    color: #1d2129;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    padding: 0
}

._3_tg {
    margin-bottom: 20px
}

._3_tg:last-child, ._3_tg:only-of-type {
    margin-bottom: 0
}

@media (min-width: 801px),(min-width: 640px) and (max-width: 800px) {
    ._fkg._2ajy {
        text-align: left
    }

    ._2lt5 {
        min-height: 800px
    }

    ._2lt3 {
        margin: 40px 0
    }

    ._2lt4, ._3z7u._34lc, ._3z7u._3fcf {
        width: 50%
    }

    ._6ajp ._3z7u {
        left: 0
    }

    ._6ajq ._3z7u {
        left: 50%
    }
}

@media (min-width: 640px) and (max-width: 800px) {
    ._2lt3 {
        margin: 40px 12px
    }
}

@media (min-width: 640px) and (max-width: 800px),(max-width: 639px) {
    ._2lt3 {
        width: 100%
    }
}

@media (max-width: 639px) {
    ._2lt4 {
        position: relative
    }

    ._2lt4, ._3z7u._34lc, ._3z7u._3fcf {
        width: 100%
    }

    ._2lt3 {
        margin: 24px
    }

    ._37u_ {
        min-height: 600px
    }

    ._2s8k {
        min-height: 300px
    }

    ._6aj_ ._3z7u {
        left: 0
    }

    ._6aj_ {
        flex-direction: column
    }

    ._6ak0._6aj_ {
        flex-direction: column-reverse
    }
}

._6aj_ {
    margin: 0 auto;
    max-width: 1440px
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: opacity, transform, -moz-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform, -moz-transform, -o-transform
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0)
}

.cb-input_flat input:disabled, .cb-textarea_flat textarea:disabled {
    opacity: .5;
    pointer-events: none
}

[data-aos=fade-up] {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px)
}

footer, header, section {
    display: block
}

video {
    display: inline-block;
    vertical-align: baseline
}

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

b {
    font-weight: 700
}

h1 {
    margin: .67em 0
}

.h4, h1, h2, h3, h4, h5, ol, ul {
    margin-bottom: 10px
}

img {
    border: 0;
    vertical-align: middle
}

button, input, select, textarea {
    font: inherit;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

.fa, body {
    -webkit-font-smoothing: antialiased
}

.cb-btn_view{
    font-family: Roboto, arial !important
}

.titulos {
    font-family: Roboto, sans-serif
}

button {
    overflow: visible;
    -webkit-appearance: button;
    cursor: pointer
}

button, select {
    text-transform: none
}

button::-moz-focus-inner, input::-moz-focus-inner {
    padding: 0
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

.list-inline, .list-unstyled {
    padding-left: 0;
    list-style: none
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

@media print {
    .video-js > :not(.vjs-tech):not(.vjs-poster) {
        visibility: hidden
    }

    *, :after, :before {
        background: 0 0 !important;
        color: #000 !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    a[href^="#"]:after {
        content: ""
    }

    img {
        page-break-inside: avoid;
        max-width: 100% !important
    }

    h2, h3, p {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }
}

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

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    cursor: pointer
}

a:focus {
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px
}

[role=button] {
    cursor: pointer
}

.h4, h1, h2, h3, h4, h5 {
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

h1, h2, h3 {
    margin-top: 20px
}

.h4, h4, h5 {
    margin-top: 10px
}

h1 {
    font-size: 36px
}

h2 {
    font-size: 30px
}

h3 {
    font-size: 24px
}

.h4, h4 {
    font-size: 18px
}

body, h5 {
    font-size: 14px
}

p {
    margin: 0 0 10px
}

ol, ul {
    margin-top: 0
}

.list-inline {
    margin-left: -5px
}

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

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

.container:after, .container:before, .row:after, .row:before {
    display: table
}

.container {
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width: 768px) {
    .container {
        width: 750px
    }
}

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

@media (min-width: 1280px) {
    .container {
        width: 1170px
    }
}

.cb-btn_close:after, .cb-btn_close:before, .cb-btn_view-line, .cb-btn_view-zone {
    content: ""
}

.col-md-4, .col-md-6, .col-sm-4, .col-sm-6 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width: 768px) {
    .col-sm-4, .col-sm-6 {
        float: left
    }

    .col-sm-4 {
        width: 33.33333%
    }

    .col-sm-6 {
        width: 50%
    }
}

@media (min-width: 1024px) {
    .col-md-4, .col-md-6 {
        float: left
    }

    .col-md-4 {
        width: 33.33333%
    }

    .col-md-6 {
        width: 50%
    }
}

.center-block {
    display: block
}

body, ul {
    margin: 0;
    padding: 0
}

.pull-right {
    float: right !important
}

.visible-lg {
    display: none !important
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }
}

body {
    height: 100%;
    background: #fff;
    color: #000;
    letter-spacing: normal;
    line-height: normal;
    text-rendering: optimizeSpeed;
    -webkit-text-rendereing: optimizeSpeed;
    overflow-y: scroll
}

.cb-input_flat input, .cb-textarea_flat textarea {
    font-weight: 300;
    letter-spacing: .01875em;
    width: 100%
}

.cb-btn_view, .cb-input_flat input {
    background: 0 0;
    line-height: 1;
    outline: 0
}

a:focus, a:hover {
    color: inherit;
    text-decoration: underline
}

.cb-btn_view:focus, .cb-btn_view:hover, .cb-request-link a:focus, .cb-request-link a:hover, div.menu ul li a {
    text-decoration: none
}

ul {
    list-style: none
}

.cb-container {
    padding: 0 25px
}

@media (min-width: 768px) {
    .cb-container {
        padding: 0 40px
    }
}

@media (min-width: 1600px) {
    .cb-container {
        padding: 0 60px
    }
}

.cb-container.-lg {
    padding: 0 25px
}

@media (min-width: 375px) {
    .cb-container.-lg {
        padding: 0 35px
    }
}

@media (min-width: 768px) {
    .cb-container.-lg {
        padding: 0 60px
    }

    .cb-form-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 -11px
    }

    .cb-form-grid-col {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0;
        -moz-box-flex: 1;
        -ms-flex: 1 0%;
        flex: 1 0;
        margin: 0 11px
    }
}

@media (min-width: 1280px) {
    .cb-container.-lg {
        padding: 0 80px
    }
}

@media (min-width: 1600px) {
    .cb-container.-lg {
        padding: 0 120px
    }
}

.cb-btn, .cb-input, .cb-textarea {
    display: inline
}

.cb-form-group {
    margin: 0 0 20px
}

@media (min-width: 768px) {
    .cb-form-group {
        margin: 0 0 35px
    }
}

.cb-form-submit {
    margin: 30px 0 0
}

@media (min-width: 768px) {
    .cb-form-submit {
        margin: 65px 0 0
    }
}

.cb-input_flat {
    color: #000
}

.cb-input_flat input {
    margin: 0;
    padding: 10px 0;
    color: inherit;
    border: 0;
    border-bottom: 1px rgba(0, 0, 0, .2) solid;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 16px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

@media (min-width: 768px) {
    .cb-input_flat input {
        padding: 14px 0;
        font-size: 18px
    }
}

.cb-input_flat input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .3)
}

.cb-input_flat input::-moz-placeholder {
    color: rgba(0, 0, 0, .3)
}

.cb-input_flat input::-ms-input-placeholder {
    color: rgba(0, 0, 0, .3)
}

.cb-input_flat input::placeholder {
    color: rgba(0, 0, 0, .3)
}

.cb-input_flat input:hover {
    border-bottom-color: rgba(0, 0, 0, .5)
}

.cb-input_flat input:focus {
    border-bottom-color: #000
}

.cb-input_flat input:invalid {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0
}

.cb-textarea_flat textarea {
    height: 60px;
    padding: 10px 0;
    resize: none;
    color: #000;
    border: 0;
    border-bottom: 1px rgba(0, 0, 0, .2) solid;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: 0 0;
    font-size: 16px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

@media (min-width: 768px) {
    .cb-textarea_flat textarea {
        padding: 14px 0;
        font-size: 18px
    }
}

.cb-textarea_flat textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .3)
}

.cb-textarea_flat textarea::-moz-placeholder {
    color: rgba(0, 0, 0, .3)
}

.cb-textarea_flat textarea::-ms-input-placeholder {
    color: rgba(0, 0, 0, .3)
}

.cb-textarea_flat textarea::placeholder {
    color: rgba(0, 0, 0, .3)
}

.cb-textarea_flat textarea:hover {
    border-bottom-color: rgba(0, 0, 0, .5)
}

.cb-textarea_flat textarea:active, .cb-textarea_flat textarea:focus {
    border-color: #000;
    outline: 0;
    height: 100px
}

.cb-btn {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.cb-btn_view {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .85px;
    text-transform: uppercase;
    -webkit-transition: opacity .2s;
    -o-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s
}

.cb-btn_view-box, .cb-btn_view-line, .cb-btn_view-text {
    display: block;
    position: relative
}

@media (min-width: 768px) {
    .cb-btn_view {
        font-size: 17px;
        letter-spacing: 1.04px
    }
}

.cb-btn_view-zone {
    display: block;
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    -webkit-border-radius: 30%;
    -moz-border-radius: 30%;
    border-radius: 30%
}

.cb-btn_view-box {
    pointer-events: none
}

.cb-btn_view-text {
    overflow: hidden;
    color: #000;
    line-height: 2
}

.cb-btn_view-line {
    height: 3px;
    width: 100%;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: bottom .2s;
    -o-transition: bottom .2s;
    -moz-transition: bottom .2s;
    transition: bottom .2s;
    background: currentColor
}

.cb-btn_view:focus .cb-btn_view-zone, .cb-btn_view:hover .cb-btn_view-zone {
    top: -100px;
    right: -100px;
    left: -100px;
    bottom: -100px
}

.cb-btn_view:active {
    opacity: .8
}

.cb-btn_view:disabled {
    opacity: .5
}

.cb-btn_view.-primary {
    color: #2628e1
}

.cb-btn_close {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    opacity: .7;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    background: 0 0;
    border: none;
    outline: 0;
    font-size: 18px;
    line-height: 1
}

.cb-btn_close:after, .cb-btn_close:before {
    display: block;
    position: absolute;
    top: -15px;
    botton: -15px;
    right: -15px;
    left: -15
    px-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.cb-btn_close:after {
    background: #eff1f4;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
}

.cb-btn_close:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.cb-btn_close:active:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2)
}

.cb-header {
    display: block;
    white-space: nowrap
}

.cb-header h2, .cb-header h4 {
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, .3);
    font-size: 23px;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: .00464286em
}

@media (min-width: 375px) {
    .cb-header h2, .cb-header h4 {
        font-size: 27px;
        font-weight: 300;
        line-height: 34px
    }
}

@media (min-width: 768px) {
    .cb-header h2, .cb-header h4 {
        font-size: 50px;
        line-height: 60px
    }
}

.cb-header h4 em {
    display: block;
    font-style: normal;
    vertical-align: bottom
}

.cb-header h2 b, .cb-header h4 b {
    display: inline-block;
    color: #000;
    font-weight: inherit;
    vertical-align: bottom
}

.cb-header.-lg {
    white-space: normal
}

.cb-text {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .01875em;
    line-height: 29px;
    -webkit-font-kerning: none;
    font-kerning: none;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0)
}

@media (min-width: 768px) {
    .cb-text {
        font-size: 20px;
        line-height: 34px
    }
}

.cb-text em, .cb-text h2 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    letter-spacing: inherit;
    line-height: inherit
}

.cb-author-item-name, .cb-author-item-title, .cb-request-link a, .cb-text.-lg {
    letter-spacing: .00464286em
}

.cb-text em {
    color: #5a676f
}

.cb-text.-lg {
    font-size: 20px;
    font-weight: 300;
    line-height: normal
}

.cb-feedback {
    display: none
}

.cb-feedback-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 200;
    background: rgba(0, 0, 0, .2)
}

.cb-feedback-close {
    top: 0px;
    left: 0px;
    background: #b9c3c385;
    height: 30px;
    width: 30px;
    text-align: center;
    padding: 6px;
    cursor: pointer;
}

@media (min-width: 1280px) {
    .cb-feedback-close {
        top: 0px;
        /* left: 11px; */
        left: 0px;
        background: #b9c3c385;
        height: 30px;
        width: 30px;
        text-align: center;
        padding: 6px;
        cursor: pointer;
    }
}

.cb-feedback-box {
    position: fixed;
    display: table;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    z-index: 201;
    background: #fff
}

@media (min-width: 1024px) {
    .cb-feedback-box {
        width: 70%
    }
}

@media (min-width: 1280px) {
    .cb-feedback-box {
        width: 50%
    }
}

.cb-feedback-box-inner {
    display: table-cell;
    vertical-align: middle
}

.cb-feedback-message {
    display: none;
    text-align: center
}

@media (min-width: 1024px) {
    .cb-feedback-message {
        text-align: left
    }
}

.cb-feedback-message-controls {
    margin: 38px 0 0
}

.cb-feedback-header {
    margin: 0 0 25px
}

.cb-author {
    background: #fff
}

@media (min-width: 768px) {
    .cb-text.-lg {
        font-size: 30px
    }

    .cb-feedback-header {
        margin: 0 0 35px
    }

    .cb-author-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .cb-author-item {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 25%;
        -moz-box-flex: 1;
        -ms-flex: 1 0 25%;
        flex: 1 0 25%
    }
}

.cb-author-item-photo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 326px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background: 0 0
}

@media (min-width: 768px) {
    .cb-author-item-photo {
        height: 250px
    }
}

@media (min-width: 1600px) {
    .cb-feedback-box {
        width: 40%
    }

    .cb-author-item-photo {
        height: 450px
    }
}

.cb-author-item-photo-img {
    text-align: center;
    cursor: pointer
}

.cb-author-item-photo-img:hover {
    opacity: .5;
    width: 99%
}

.cb-author-item-photo-img img {
    max-width: 80%
}

@media (min-width: 375px) {
    .cb-author-item-photo-img img {
        max-width: 70%
    }
}

@media (min-width: 1600px) {
    .cb-author-item-photo-img img {
        max-width: 100%
    }
}

.cb-author-item-brief {
    padding: 60px 0 65px;
    text-align: center;
    cursor: pointer
}

.cb-author-item-brief:hover {
    background: rgba(110, 110, 110, .14)
}

.cb-author-item-name {
    font-size: 24px;
    color: #61696f;
    line-height: 1
}

@media (min-width: 768px) {
    .cb-author-item-brief {
        padding: 65px 0 110px
    }

    .cb-author-item-name {
        font-size: 30px
    }
}

.cb-author-item-title {
    margin: 10px 0 0;
    color: #b4b5b4;
    font-size: 16px;
    font-weight: 300;
    line-height: 1
}

.cb-clientbox {
    overflow: hidden;
    background: #fff
}

.cb-clientbox-text {
    max-width: 295px
}

@media (min-width: 768px) {
    .cb-clientbox-text {
        max-width: 417px
    }
}

.cb-clientbox-items {
    max-width: 512px;
    margin: 0 0 0 auto;
    font-size: 0;
    background: #4c4aee
}

@media (min-width: 1024px) {
    .cb-clientbox-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex
    }

    .cb-clientbox-grid-col {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 50%;
        -moz-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%
    }

    .cb-clientbox-items {
        max-width: none;
        padding: 50px 30px
    }
}

@media (min-width: 1280px) {
    .cb-clientbox-items {
        padding: 70px 40px
    }
}

.cb-clientbox-item {
    display: inline-block;
    width: 50%;
    line-height: 170px;
    padding: 0 30px;
    color: #fff;
    text-align: center
}

@media (min-width: 1280px) {
    .cb-clientbox-item {
        line-height: 200px
    }
}

.cb-clientbox-item img {
    max-width: 100%
}

.cb-request {
    background: #fff;
    height: 100vh
}

.cb-request-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cb-request-link a {
    display: inline-block;
    color: #b4b5b4;
    font-size: 28px;
    font-weight: 300;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s
}

.cb-request-link a u, .fa {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

@media (min-width: 768px) {
    .cb-request-link a {
        font-size: 50px
    }
}

.cb-request-link a b {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #000;
    font-weight: inherit
}

.cb-request-link a u {
    position: absolute;
    display: block;
    height: 2px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: currentColor;
    border: 0;
    -webkit-animation: cb-request-link forwards .5s cubic-bezier(.8, .37, .21, .8);
    -moz-animation: cb-request-link forwards .5s cubic-bezier(.8, .37, .21, .8);
    -o-animation: cb-request-link forwards .5s cubic-bezier(.8, .37, .21, .8);
    animation: cb-request-link forwards .5s cubic-bezier(.8, .37, .21, .8);
    transition: all .3s ease-in-out;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center
}

.cb-request-link a u.-primary {
    color: #2628e1
}

.cb-request-link a:focus u, .cb-request-link a:hover u {
    -webkit-animation: cb-request-link-hover .5s forwards cubic-bezier(.8, .37, .21, .8);
    -moz-animation: cb-request-link-hover .5s forwards cubic-bezier(.8, .37, .21, .8);
    -o-animation: cb-request-link-hover .5s forwards cubic-bezier(.8, .37, .21, .8);
    animation: cb-request-link-hover .5s forwards cubic-bezier(.8, .37, .21, .8)
}

.cb-request-link a:active {
    opacity: .7
}

.cb-request.-half {
    height: 50vh
}

/*! CSS Used from: https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css */
.fa {
    display: inline-block;
    text-rendering: auto
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-whatsapp:before {
    content: "\f232"
}

/*! CSS Used from: Embedded *//*! CSS Used from: Embedded *//*! CSS Used from: Embedded */
#OfSCSJP-1546272974638 {
    outline: 0 !important;
    visibility: visible !important;
    resize: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    background: 0 0 !important;
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity1) !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    top: auto !important;
    right: 10px !important;
    bottom: 90px !important;
    left: auto !important;
    position: fixed !important;
    border: 0 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    max-height: none !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    -moz-transition-property: none !important;
    -webkit-transition-property: none !important;
    -o-transition-property: none !important;
    transition-property: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    width: auto !important;
    height: auto !important;
    display: none !important;
    z-index: 2000000000 !important;
    cursor: auto !important;
    float: none !important;
    border-radius: unset !important
}

.fa, div.burger {
    cursor: pointer
}

/*! CSS Used keyframes */
@-webkit-keyframes cb-request-link {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
    50% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
    51% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@-moz-keyframes cb-request-link {
    0% {
        -moz-transform: scaleX(1);
        transform: scaleX(1);
        -moz-transform-origin: right center;
        transform-origin: right center
    }
    50% {
        -moz-transform: scaleX(0);
        transform: scaleX(0);
        -moz-transform-origin: right center;
        transform-origin: right center
    }
    51% {
        -moz-transform: scaleX(0);
        transform: scaleX(0);
        -moz-transform-origin: left center;
        transform-origin: left center
    }
    100% {
        -moz-transform: scaleX(1);
        transform: scaleX(1);
        -moz-transform-origin: left center;
        transform-origin: left center
    }
}

@-o-keyframes cb-request-link {
    0% {
        -o-transform: scaleX(1);
        transform: scaleX(1);
        -o-transform-origin: right center;
        transform-origin: right center
    }
    50% {
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -o-transform-origin: right center;
        transform-origin: right center
    }
    51% {
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -o-transform-origin: left center;
        transform-origin: left center
    }
    100% {
        -o-transform: scaleX(1);
        transform: scaleX(1);
        -o-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes cb-request-link {
    0% {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: right center;
        -moz-transform-origin: right center;
        -o-transform-origin: right center;
        transform-origin: right center
    }
    50% {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right center;
        -moz-transform-origin: right center;
        -o-transform-origin: right center;
        transform-origin: right center
    }
    51% {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center
    }
    100% {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center
    }
}

@-webkit-keyframes cb-request-link-hover {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
    50% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
    51% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@-moz-keyframes cb-request-link-hover {
    0% {
        -moz-transform: scaleX(1);
        transform: scaleX(1);
        -moz-transform-origin: right center;
        transform-origin: right center
    }
    50% {
        -moz-transform: scaleX(0);
        transform: scaleX(0);
        -moz-transform-origin: right center;
        transform-origin: right center
    }
    51% {
        -moz-transform: scaleX(0);
        transform: scaleX(0);
        -moz-transform-origin: left center;
        transform-origin: left center
    }
    100% {
        -moz-transform: scaleX(1);
        transform: scaleX(1);
        -moz-transform-origin: left center;
        transform-origin: left center
    }
}

@-o-keyframes cb-request-link-hover {
    0% {
        -o-transform: scaleX(1);
        transform: scaleX(1);
        -o-transform-origin: right center;
        transform-origin: right center
    }
    50% {
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -o-transform-origin: right center;
        transform-origin: right center
    }
    51% {
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -o-transform-origin: left center;
        transform-origin: left center
    }
    100% {
        -o-transform: scaleX(1);
        transform: scaleX(1);
        -o-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes cb-request-link-hover {
    0% {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: right center;
        -moz-transform-origin: right center;
        -o-transform-origin: right center;
        transform-origin: right center
    }
    50% {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right center;
        -moz-transform-origin: right center;
        -o-transform-origin: right center;
        transform-origin: right center
    }
    51% {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center
    }
    100% {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center
    }
}

/*! CSS Used fontfaces */
@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgVxFIzIFKw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgVxMIzIFKw.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgVxEIzIFKw.woff2) format('woff2');
    unicode-range: U+1F00-1FFF
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgVxLIzIFKw.woff2) format('woff2');
    unicode-range: U+0370-03FF
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgVxHIzIFKw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgVxGIzIFKw.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1MmgVxIIzI.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');
    unicode-range: U+1F00-1FFF
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');
    unicode-range: U+0370-03FF
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

@font-face {
    font-family: VideoJS;
    src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: FontAwesome;
    src: url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/fonts/fontawesome-webfont.eot?v=4.6.3);
    src: url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/fonts/fontawesome-webfont.eot#iefix&v=4.6.3) format('embedded-opentype'), url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/fonts/fontawesome-webfont.woff2?v=4.6.3) format('woff2'), url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/fonts/fontawesome-webfont.woff?v=4.6.3) format('woff'), url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/fonts/fontawesome-webfont.ttf?v=4.6.3) format('truetype'), url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular) format('svg');
    font-weight: 400;
    font-style: normal
}

.titulos {
    color: #61696f;
    font-weight: 700
}

.nav {
    text-align: left !important
}

* {
    outline: 0
}

.social-container {
    text-align: right;
    margin-top: 20px
}

.fa-instagram {
    background-color: #833ab4
}

.fa-twitter {
    background-color: #55acee
}

.fa-facebook {
    background-color: #3b5998
}

.fa-whatsapp {
    background-color: #43d854
}

.fa-google-plus {
    background-color: #d34836
}

.social-icon {
    margin: 0;
    background-color: #4c4aee !important
}

header .btn-right-menu, header.white .btn-right-menu {
    background: #4c4aee
}

.fa {
    padding: 10px;
    font: normal normal normal 14px/1 FontAwesome !important;
    width: 50px;
    font-size: 30px !important;
    border-radius: 50%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #FFF;
    color: rgba(255, 255, 255, .8);
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.fa:active, .fa:hover {
    color: #fff;
    -webkit-transform: scale(1.1) rotate(20deg);
    -moz-transform: scale(1.1) rotate(20deg);
    -ms-transform: scale(1.1) rotate(20deg);
    -o-transform: scale(1.1) rotate(20deg);
    transform: scale(1.1) rotate(20deg)
}

header .nav-links a:hover {
    border-bottom: 3px solid #5bc996;
    color: #5bc996;
    text-decoration: none
}

header.white a.active {
    color: #4c4aee !important;
    border-bottom: 3px solid #4c4aee !important
}

header .nav-links a.active {
    border-bottom: 3px solid #4c4aee
}

.footerListItem.nav {
    font-size: 17px
}

.footerBlocksTitle.caption.display6 {
    font-size: 20px
}

.list {
    margin-top: 36px;
    text-align: left
}

.iten {
    height: 115px;
    margin-top: 30px 0;
    padding-left: 115px
}

.iten .img, .iten span {
    background: #214273;
    border-radius: 3px
}

.iten .img {
    float: left;
    width: 71px;
    height: 71px;
    margin-left: -93px
}

.iten span {
    height: 11px;
    width: 180px;
    margin-bottom: 19px;
    float: left
}

.iten span:nth-of-type(3) {
    width: 75px;
    margin-botom: 0
}

div.y, div.z, header.white.div.x {
    background: #4a89dc
}

div.burger {
    z-index: 2;
    height: 30px;
    width: 40px;
    position: absolute;
    top: 11px;
    left: 21px
}

div.x, div.y, div.z {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background: #fff;
    border-radius: 2px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    height: 3px;
    width: 26px
}

div.y {
    top: 18px
}

div.z {
    top: 37px
}

div.collapse {
    top: 20px;
    background: #000 !important;
    -webkit-transition: all 70ms ease-out;
    -moz-transition: all 70ms ease-out;
    -ms-transition: all 70ms ease-out;
    -o-transition: all 70ms ease-out;
    transition: all 70ms ease-out
}

div.rotate30 {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transition: all 50ms ease-out;
    -moz-transition: all 50ms ease-out;
    -ms-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out
}

div.rotate150 {
    -ms-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-transition: all 50ms ease-out;
    -moz-transition: all 50ms ease-out;
    -ms-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out
}

div.rotate45 {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out
}

div.rotate135 {
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out
}

.collapse {
    display: block !important
}

.collapse.middle_bar {
    display: none !important
}

div.circle {
    z-index: 1;
    border-radius: 50%;
    width: 0;
    height: 0;
    position: absolute;
    top: 35px;
    left: 36px;
    background: #fff;
    opacity: 1;
    -webkit-transition: all .3s cubic-bezier(0, .995, .99, 1);
    -moz-transition: all .3s cubic-bezier(0, .995, .99, 1);
    -ms-transition: all .3s cubic-bezier(0, .995, .99, 1);
    -o-transition: all .3s cubic-bezier(0, .995, .99, 1);
    transition: all .3s cubic-bezier(0, .995, .99, 1)
}

div.circle.expand {
    width: 1200px;
    height: 1200px;
    top: -560px;
    left: -565px;
    -webkit-transition: all .4s cubic-bezier(0, .995, .99, 1);
    -moz-transition: all .4s cubic-bezier(0, .995, .99, 1);
    -ms-transition: all .4s cubic-bezier(0, .995, .99, 1);
    -o-transition: all .4s cubic-bezier(0, .995, .99, 1);
    transition: all .4s cubic-bezier(0, .995, .99, 1)
}

div.menu, div.menu ul li {
    position: absolute;
    left: 0;
    width: 320px
}

div.menu {
    z-index: 1;
    top: 0
}

div.menu ul li {
    list-style: none;
    top: 50px;
    opacity: 0;
    text-align: center;
    font-size: 0;
    -webkit-transition: all 70ms cubic-bezier(0, .995, .99, 1);
    -moz-transition: all 70ms cubic-bezier(0, .995, .99, 1);
    -ms-transition: all 70ms cubic-bezier(0, .995, .99, 1);
    -o-transition: all 70ms cubic-bezier(0, .995, .99, 1);
    transition: all 70ms cubic-bezier(0, .995, .99, 1)
}

div.menu ul li a {
    color: #4a89dc;
    text-transform: uppercase;
    letter-spacing: 3px
}

div.menu li.animate {
    font-size: 21px;
    opacity: 1;
    -webkit-transition: all 150ms cubic-bezier(0, .995, .99, 1);
    -moz-transition: all 150ms cubic-bezier(0, .995, .99, 1);
    -ms-transition: all 150ms cubic-bezier(0, .995, .99, 1);
    -o-transition: all 150ms cubic-bezier(0, .995, .99, 1);
    transition: all 150ms cubic-bezier(0, .995, .99, 1)
}

div.menu li.animate:nth-of-type(1) {
    top: 120px;
    transition-delay: 0s
}

div.menu li.animate:nth-of-type(2) {
    top: 190px;
    transition-delay: 30ms
}

div.menu li.animate:nth-of-type(3) {
    top: 260px;
    transition-delay: 60ms
}

div.menu li.animate:nth-of-type(4) {
    top: 330px;
    transition-delay: 90ms
}

div.menu li.animate:nth-of-type(5) {
    top: 400px;
    transition-delay: .12s
}

div.menu li.animate:nth-of-type(6) {
    top: 470px;
    transition-delay: .15s
}

.page-heading .carousel .item h1 {
    font-weight: 100
}