/*
*
* [Table of contents]
* > Normalize
* > Global Wrapper
* > Bootstrap grid upgrade
* > Global styles
* > Type styles
* > Offsets
* > Preloader
* > Text align
* > Text style
* > Blocks visibility
* > Color
* > Backgrounds
* > Font Awesome
* > Buttons
* > Icons
* > Lists
* > Script styles
* > Header
* > Main
* > Footer
*
*/

/*
* Normalize
* ================ */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button,
input,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: top;
}

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

ol,
ul {
    list-style: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
input,
textarea,
select {
    display: inline-block;
    -webkit-appearance: none;
    outline: none;
    color: inherit;
    overflow: visible;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

button,
input[type='button'],
input[type='submit'] {
    cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*
* @bugfix input text-overflow padding ignore
* @affected lt IE11
*/

.lt-ie11 input {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom-left-radius: 1px !important;
}

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

a,
a[href^="tel:"],
a[href^="callto:"] {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

a:focus,
a[href^="tel:"]:focus,
a[href^="callto:"]:focus {
    outline: none;
}

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

a,
button,
input {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

/*
* Layouts
* ================ */

.main-wrapper {
    position: relative;
    overflow: hidden;
    background: #fff;
}

body.boxed.bg-image {
    background: url(../img/pattern-1.jpg) top center repeat;
    background-attachment: fixed;
}

body.boxed .main-wrapper {
    margin: 0 auto;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .accordion-title {
        margin-top: 22px;
        height: auto !important;
    }
    .owl-dots {
        bottom: -49px !important;
    }
}

@media (min-width: 768px) {
    body.boxed .main-wrapper {
        max-width: 778px;
    }
    body.boxed .main-wrapper .k-nav {
        max-width: 778px;
    }
}

@media (min-width: 992px) {
    body.boxed .main-wrapper {
        max-width: 1054px;
    }
    body.boxed .main-wrapper .k-nav {
        max-width: 1054px;
    }
}

@media (min-width: 1200px) {
    body.boxed .main-wrapper {
        max-width: 1230px;
    }
    body.boxed .main-wrapper .k-nav {
        max-width: 1230px;
    }
}

@media (min-width: 1800px) {
    body.boxed .main-wrapper {
        max-width: 1300px;
    }
    body.boxed .main-wrapper .k-nav {
        max-width: 1300px;
    }
}

.parallax-mirror {
    z-index: 1 !important;
}

/*
* Bootstrap grid upgrade
* ================ */

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 300px;
    max-width: 480px;
    width: auto;
}

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

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

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

@media (min-width: 1800px) {
    .container.container-large {
        max-width: 1800px;
    }
}

.container.container-fluid {
    max-width: none;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.row:before,
.row:after {
    content: none;
}

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

.row-no-gutter > [class*='col'] {
    padding-left: 0;
    padding-right: 0;
}

.row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row > [class*='col'] {
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.flex {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.flex-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

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

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

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

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

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

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

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

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

.flex-item-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.flex-item-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.flex-item-bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

@media (min-width: 480px) {
    * + [class*='col-xs-'] {
        margin-top: 0;
    }
    .flex-xs {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .flex-xs-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
    .flex-xs-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-xs-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-xs-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-xs-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-xs-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .flex-xs-top {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-xs-middle {
        -webkit-align-items: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-xs-bottom {
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-xs-top {
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-xs-middle {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-xs-bottom {
        -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row > .col-xs-offset-0 {
        margin-left: 0;
    }
    .row > .col-xs-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row > .col-xs-offset-1 {
        margin-left: 8.33333%;
    }
    .row > .col-xs-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
    .row > .col-xs-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row > .col-xs-offset-2 {
        margin-left: 16.66667%;
    }
    .row > .col-xs-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }
    .row > .col-xs-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row > .col-xs-offset-3 {
        margin-left: 25%;
    }
    .row > .col-xs-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        -webkit-box-ordinal-group: 4;
        order: 3;
    }
    .row > .col-xs-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row > .col-xs-offset-4 {
        margin-left: 33.33333%;
    }
    .row > .col-xs-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        -webkit-box-ordinal-group: 5;
        order: 4;
    }
    .row > .col-xs-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row > .col-xs-offset-5 {
        margin-left: 41.66667%;
    }
    .row > .col-xs-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        -webkit-box-ordinal-group: 6;
        order: 5;
    }
    .row > .col-xs-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row > .col-xs-offset-6 {
        margin-left: 50%;
    }
    .row > .col-xs-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        -webkit-box-ordinal-group: 7;
        order: 6;
    }
    .row > .col-xs-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row > .col-xs-offset-7 {
        margin-left: 58.33333%;
    }
    .row > .col-xs-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        -webkit-box-ordinal-group: 8;
        order: 7;
    }
    .row > .col-xs-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row > .col-xs-offset-8 {
        margin-left: 66.66667%;
    }
    .row > .col-xs-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        -webkit-box-ordinal-group: 9;
        order: 8;
    }
    .row > .col-xs-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row > .col-xs-offset-9 {
        margin-left: 75%;
    }
    .row > .col-xs-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        -webkit-box-ordinal-group: 10;
        order: 9;
    }
    .row > .col-xs-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row > .col-xs-offset-10 {
        margin-left: 83.33333%;
    }
    .row > .col-xs-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        -webkit-box-ordinal-group: 11;
        order: 10;
    }
    .row > .col-xs-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row > .col-xs-offset-11 {
        margin-left: 91.66667%;
    }
    .row > .col-xs-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        -webkit-box-ordinal-group: 12;
        order: 11;
    }
    .row > .col-xs-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row > .col-xs-offset-12 {
        margin-left: 100%;
    }
    .row > .col-xs-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        -webkit-box-ordinal-group: 13;
        order: 12;
    }
}

@media (min-width: 768px) {
    * + [class*='col-sm-'] {
        margin-top: 0;
    }
    .flex-sm {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .flex-sm-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
    .flex-sm-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-sm-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-sm-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-sm-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-sm-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .flex-sm-top {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-sm-middle {
        -webkit-align-items: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-sm-bottom {
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-sm-top {
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-sm-middle {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-sm-bottom {
        -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row > .col-sm-offset-0 {
        margin-left: 0;
    }
    .row > .col-sm-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row > .col-sm-offset-1 {
        margin-left: 8.33333%;
    }
    .row > .col-sm-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
    .row > .col-sm-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row > .col-sm-offset-2 {
        margin-left: 16.66667%;
    }
    .row > .col-sm-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }
    .row > .col-sm-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row > .col-sm-offset-3 {
        margin-left: 25%;
    }
    .row > .col-sm-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        -webkit-box-ordinal-group: 4;
        order: 3;
    }
    .row > .col-sm-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row > .col-sm-offset-4 {
        margin-left: 33.33333%;
    }
    .row > .col-sm-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        -webkit-box-ordinal-group: 5;
        order: 4;
    }
    .row > .col-sm-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row > .col-sm-offset-5 {
        margin-left: 41.66667%;
    }
    .row > .col-sm-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        -webkit-box-ordinal-group: 6;
        order: 5;
    }
    .row > .col-sm-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row > .col-sm-offset-6 {
        margin-left: 50%;
    }
    .row > .col-sm-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        -webkit-box-ordinal-group: 7;
        order: 6;
    }
    .row > .col-sm-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row > .col-sm-offset-7 {
        margin-left: 58.33333%;
    }
    .row > .col-sm-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        -webkit-box-ordinal-group: 8;
        order: 7;
    }
    .row > .col-sm-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row > .col-sm-offset-8 {
        margin-left: 66.66667%;
    }
    .row > .col-sm-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        -webkit-box-ordinal-group: 9;
        order: 8;
    }
    .row > .col-sm-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row > .col-sm-offset-9 {
        margin-left: 75%;
    }
    .row > .col-sm-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        -webkit-box-ordinal-group: 10;
        order: 9;
    }
    .row > .col-sm-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row > .col-sm-offset-10 {
        margin-left: 83.33333%;
    }
    .row > .col-sm-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        -webkit-box-ordinal-group: 11;
        order: 10;
    }
    .row > .col-sm-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row > .col-sm-offset-11 {
        margin-left: 91.66667%;
    }
    .row > .col-sm-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        -webkit-box-ordinal-group: 12;
        order: 11;
    }
    .row > .col-sm-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row > .col-sm-offset-12 {
        margin-left: 100%;
    }
    .row > .col-sm-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        -webkit-box-ordinal-group: 13;
        order: 12;
    }
}

@media (min-width: 992px) {
    * + [class*='col-md-'] {
        margin-top: 0;
    }
    .flex-md {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .flex-md-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
    .flex-md-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-md-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-md-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-md-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-md-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .flex-md-top {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-md-middle {
        -webkit-align-items: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-md-bottom {
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-md-top {
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-md-middle {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-md-bottom {
        -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row > .col-md-offset-0 {
        margin-left: 0;
    }
    .row > .col-md-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row > .col-md-offset-1 {
        margin-left: 8.33333%;
    }
    .row > .col-md-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
    .row > .col-md-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row > .col-md-offset-2 {
        margin-left: 16.66667%;
    }
    .row > .col-md-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }
    .row > .col-md-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row > .col-md-offset-3 {
        margin-left: 25%;
    }
    .row > .col-md-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        -webkit-box-ordinal-group: 4;
        order: 3;
    }
    .row > .col-md-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row > .col-md-offset-4 {
        margin-left: 33.33333%;
    }
    .row > .col-md-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        -webkit-box-ordinal-group: 5;
        order: 4;
    }
    .row > .col-md-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row > .col-md-offset-5 {
        margin-left: 41.66667%;
    }
    .row > .col-md-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        -webkit-box-ordinal-group: 6;
        order: 5;
    }
    .row > .col-md-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row > .col-md-offset-6 {
        margin-left: 50%;
    }
    .row > .col-md-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        -webkit-box-ordinal-group: 7;
        order: 6;
    }
    .row > .col-md-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row > .col-md-offset-7 {
        margin-left: 58.33333%;
    }
    .row > .col-md-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        -webkit-box-ordinal-group: 8;
        order: 7;
    }
    .row > .col-md-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row > .col-md-offset-8 {
        margin-left: 66.66667%;
    }
    .row > .col-md-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        -webkit-box-ordinal-group: 9;
        order: 8;
    }
    .row > .col-md-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row > .col-md-offset-9 {
        margin-left: 75%;
    }
    .row > .col-md-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        -webkit-box-ordinal-group: 10;
        order: 9;
    }
    .row > .col-md-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row > .col-md-offset-10 {
        margin-left: 83.33333%;
    }
    .row > .col-md-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        -webkit-box-ordinal-group: 11;
        order: 10;
    }
    .row > .col-md-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row > .col-md-offset-11 {
        margin-left: 91.66667%;
    }
    .row > .col-md-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        -webkit-box-ordinal-group: 12;
        order: 11;
    }
    .row > .col-md-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row > .col-md-offset-12 {
        margin-left: 100%;
    }
    .row > .col-md-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        -webkit-box-ordinal-group: 13;
        order: 12;
    }
}

@media (min-width: 1200px) {
    * + [class*='col-lg-'] {
        margin-top: 0;
    }
    .flex-lg {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .flex-lg-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
    .flex-lg-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-lg-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-lg-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-lg-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-lg-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .flex-lg-top {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-lg-middle {
        -webkit-align-items: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-lg-bottom {
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-lg-top {
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-lg-middle {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-lg-bottom {
        -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row > .col-lg-offset-0 {
        margin-left: 0;
    }
    .row > .col-lg-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row > .col-lg-offset-1 {
        margin-left: 8.33333%;
    }
    .row > .col-lg-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
    .row > .col-lg-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row > .col-lg-offset-2 {
        margin-left: 16.66667%;
    }
    .row > .col-lg-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }
    .row > .col-lg-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row > .col-lg-offset-3 {
        margin-left: 25%;
    }
    .row > .col-lg-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        -webkit-box-ordinal-group: 4;
        order: 3;
    }
    .row > .col-lg-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row > .col-lg-offset-4 {
        margin-left: 33.33333%;
    }
    .row > .col-lg-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        -webkit-box-ordinal-group: 5;
        order: 4;
    }
    .row > .col-lg-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row > .col-lg-offset-5 {
        margin-left: 41.66667%;
    }
    .row > .col-lg-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        -webkit-box-ordinal-group: 6;
        order: 5;
    }
    .row > .col-lg-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row > .col-lg-offset-6 {
        margin-left: 50%;
    }
    .row > .col-lg-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        -webkit-box-ordinal-group: 7;
        order: 6;
    }
    .row > .col-lg-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row > .col-lg-offset-7 {
        margin-left: 58.33333%;
    }
    .row > .col-lg-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        -webkit-box-ordinal-group: 8;
        order: 7;
    }
    .row > .col-lg-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row > .col-lg-offset-8 {
        margin-left: 66.66667%;
    }
    .row > .col-lg-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        -webkit-box-ordinal-group: 9;
        order: 8;
    }
    .row > .col-lg-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row > .col-lg-offset-9 {
        margin-left: 75%;
    }
    .row > .col-lg-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        -webkit-box-ordinal-group: 10;
        order: 9;
    }
    .row > .col-lg-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row > .col-lg-offset-10 {
        margin-left: 83.33333%;
    }
    .row > .col-lg-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        -webkit-box-ordinal-group: 11;
        order: 10;
    }
    .row > .col-lg-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row > .col-lg-offset-11 {
        margin-left: 91.66667%;
    }
    .row > .col-lg-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        -webkit-box-ordinal-group: 12;
        order: 11;
    }
    .row > .col-lg-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row > .col-lg-offset-12 {
        margin-left: 100%;
    }
    .row > .col-lg-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        -webkit-box-ordinal-group: 13;
        order: 12;
    }
}

@media (min-width: 1800px) {
    * + [class*='col-xl-'] {
        margin-top: 0;
    }
    .flex-xl {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .flex-xl-reverse {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
    .flex-xl-center {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .flex-xl-left {
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .flex-xl-right {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
    .flex-xl-justify {
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
    .flex-xl-around {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .flex-xl-top {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }
    .flex-xl-middle {
        -webkit-align-items: center;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .flex-xl-bottom {
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }
    .flex-item-xl-top {
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .flex-item-xl-middle {
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
    }
    .flex-item-xl-bottom {
        -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    .row > .col-xl-offset-0 {
        margin-left: 0;
    }
    .row > .col-xl-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }
    .row > .col-xl-offset-1 {
        margin-left: 8.33333%;
    }
    .row > .col-xl-order-1 {
        -webkit-order: 1;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
    .row > .col-xl-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }
    .row > .col-xl-offset-2 {
        margin-left: 16.66667%;
    }
    .row > .col-xl-order-2 {
        -webkit-order: 2;
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }
    .row > .col-xl-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .row > .col-xl-offset-3 {
        margin-left: 25%;
    }
    .row > .col-xl-order-3 {
        -webkit-order: 3;
        -ms-flex-order: 3;
        -webkit-box-ordinal-group: 4;
        order: 3;
    }
    .row > .col-xl-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .row > .col-xl-offset-4 {
        margin-left: 33.33333%;
    }
    .row > .col-xl-order-4 {
        -webkit-order: 4;
        -ms-flex-order: 4;
        -webkit-box-ordinal-group: 5;
        order: 4;
    }
    .row > .col-xl-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }
    .row > .col-xl-offset-5 {
        margin-left: 41.66667%;
    }
    .row > .col-xl-order-5 {
        -webkit-order: 5;
        -ms-flex-order: 5;
        -webkit-box-ordinal-group: 6;
        order: 5;
    }
    .row > .col-xl-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .row > .col-xl-offset-6 {
        margin-left: 50%;
    }
    .row > .col-xl-order-6 {
        -webkit-order: 6;
        -ms-flex-order: 6;
        -webkit-box-ordinal-group: 7;
        order: 6;
    }
    .row > .col-xl-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }
    .row > .col-xl-offset-7 {
        margin-left: 58.33333%;
    }
    .row > .col-xl-order-7 {
        -webkit-order: 7;
        -ms-flex-order: 7;
        -webkit-box-ordinal-group: 8;
        order: 7;
    }
    .row > .col-xl-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .row > .col-xl-offset-8 {
        margin-left: 66.66667%;
    }
    .row > .col-xl-order-8 {
        -webkit-order: 8;
        -ms-flex-order: 8;
        -webkit-box-ordinal-group: 9;
        order: 8;
    }
    .row > .col-xl-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .row > .col-xl-offset-9 {
        margin-left: 75%;
    }
    .row > .col-xl-order-9 {
        -webkit-order: 9;
        -ms-flex-order: 9;
        -webkit-box-ordinal-group: 10;
        order: 9;
    }
    .row > .col-xl-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }
    .row > .col-xl-offset-10 {
        margin-left: 83.33333%;
    }
    .row > .col-xl-order-10 {
        -webkit-order: 10;
        -ms-flex-order: 10;
        -webkit-box-ordinal-group: 11;
        order: 10;
    }
    .row > .col-xl-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }
    .row > .col-xl-offset-11 {
        margin-left: 91.66667%;
    }
    .row > .col-xl-order-11 {
        -webkit-order: 11;
        -ms-flex-order: 11;
        -webkit-box-ordinal-group: 12;
        order: 11;
    }
    .row > .col-xl-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .row > .col-xl-offset-12 {
        margin-left: 100%;
    }
    .row > .col-xl-order-12 {
        -webkit-order: 12;
        -ms-flex-order: 12;
        -webkit-box-ordinal-group: 13;
        order: 12;
    }
}

/*
* Global styles
// ================================= */

body {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 24px;
    color: #222;
    background: #fff;
}

body .default-font {
    font-family: 'Raleway', sans-serif;
}

body .second-font {
    font-family: 'Raleway', sans-serif;
}

.mt-md-0 .small {
    font-size: 17px;
}

hr {
    height: 1px;
    width: 100%;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #000;
}

.link {
    text-decoration: underline;
    display: inline-block;
}

a:hover {
    color: #3B99D6;
    text-decoration: none;
}

a:focus {
    color: #3B99D6;
    text-decoration: none;
}

/*
* Type styles
* ================ */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    vertical-align: baseline;
    display: block;
    color: #444;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

h1 a:focus,
h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover,
.h1 a:focus,
.h1 a:hover,
.h2 a:focus,
.h2 a:hover,
.h3 a:focus,
.h3 a:hover,
.h4 a:focus,
.h4 a:hover,
.h5 a:focus,
.h5 a:hover,
.h6 a:focus,
.h6 a:hover {
    color: #3B99D6;
    text-decoration: none;
}

h1,
.h1 {
    font-size: 30px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    h1,
    .h1 {
        font-size: 60px;
    }
}

h2,
.h2 {
    font-size: 28px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    h2,
    .h2 {
        font-size: 40px;
    }
}

h3,
.h3 {
    font-size: 25px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    h3,
    .h3 {
        font-size: 30px;
    }
}

h4,
.h4 {
    font-size: 20px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    h4,
    .h4 {
        font-size: 24px;
    }
}

h5,
.h5 {
    font-size: 18px;
    line-height: 30px;
}

@media (min-width: 768px) {
    h5,
    .h5 {
        font-size: 20px;
    }
}

h6,
.h6 {
    font-size: 18px;
    line-height: 1.2;
}

/*
* Offsets
* ================ */

h2 + p {
    margin-top: 10px;
}

h3 + p {
    margin-top: 20px;
}

h4 + p {
    margin-top: 10px;
}

h5 + p {
    margin-top: 3px;
}

h6 + p {
    margin-top: 5px;
}

html .mt-0 {
    margin-top: 0;
}

html .mt-20 {
    margin-top: 20px;
}

html .mt-30 {
    margin-top: 30px;
}

@media (min-width: 480px) {
    html .mt-xs-0 {
        margin-top: 0;
    }
    html .mt-xs-20 {
        margin-top: 20px;
    }
    html .mt-xs-30 {
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    html .mt-sm-0 {
        margin-top: 0;
    }
    html .mt-sm-20 {
        margin-top: 20px;
    }
    html .mt-sm-30 {
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    html .mt-md-0 {
        margin-top: 0;
    }
    html .mt-md-20 {
        margin-top: 20px;
    }
    html .mt-md-30 {
        margin-top: 30px;
    }
}

@media (min-width: 1200px) {
    html .mt-lg-0 {
        margin-top: 0;
    }
    html .mt-lg-20 {
        margin-top: 20px;
    }
    html .mt-lg-30 {
        margin-top: 30px;
    }
}

@media (min-width: 1800px) {
    html .mt-xl-0 {
        margin-top: 0;
    }
    html .mt-xl-20 {
        margin-top: 20px;
    }
    html .mt-xl-30 {
        margin-top: 30px;
    }
}

/*
* Preloader styles
* ====================
*/

#page-preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #3B99D6;
    z-index: 3000;
}

.contpre {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#loader .diamond {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background: #fff;
    -webkit-transform: translateY(0) rotate(45deg) scale(0);
    -ms-transform: translateY(0) rotate(45deg) scale(0);
    transform: translateY(0) rotate(45deg) scale(0);
    -webkit-animation: diamonds 1500ms linear infinite;
    animation: diamonds 1500ms linear infinite;
}

#loader .diamond:nth-child(1) {
    -webkit-animation-delay: -1000ms;
    animation-delay: -1000ms;
}

#loader .diamond:nth-child(2) {
    -webkit-animation-delay: -2000ms;
    animation-delay: -2000ms;
}

#loader .diamond:nth-child(3) {
    -webkit-animation-delay: -3000ms;
    animation-delay: -3000ms;
}

#loader .diamond:nth-child(4) {
    -webkit-animation-delay: -4000ms;
    animation-delay: -4000ms;
}

@-webkit-keyframes diamonds {
    50% {
        -webkit-transform: translateY(-50px) rotate(45deg) scale(1);
        transform: translateY(-50px) rotate(45deg) scale(1);
    }
    100% {
        -webkit-transform: translateY(-100px) rotate(45deg) scale(0);
        transform: translateY(-100px) rotate(45deg) scale(0);
    }
}

@keyframes diamonds {
    50% {
        -webkit-transform: translateY(-50px) rotate(45deg) scale(1);
        transform: translateY(-50px) rotate(45deg) scale(1);
    }
    100% {
        -webkit-transform: translateY(-100px) rotate(45deg) scale(0);
        transform: translateY(-100px) rotate(45deg) scale(0);
    }
}

/*
* Text align
* ================ */

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

.text-middle {
    vertical-align: middle;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

@media (min-width: 480px) {
    .text-xs-center {
        text-align: center;
    }
    .text-xs-right {
        text-align: right;
    }
    .text-xs-justify {
        text-align: justify;
    }
    .text-xs-left {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .text-sm-center {
        text-align: center;
    }
    .text-sm-right {
        text-align: right;
    }
    .text-sm-justify {
        text-align: justify;
    }
    .text-sm-left {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .text-md-center {
        text-align: center;
    }
    .text-md-right {
        text-align: right;
    }
    .text-md-justify {
        text-align: justify;
    }
    .text-md-left {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .text-lg-center {
        text-align: center;
    }
    .text-lg-right {
        text-align: right;
    }
    .text-lg-justify {
        text-align: justify;
    }
    .text-lg-left {
        text-align: left;
    }
}

/*
* Text-style
* ================ */

html body .big {
    font-size: 18px;
}

.text-italic {
    font-style: italic;
}

.text-normal {
    font-style: normal;
}

.text-underline {
    text-decoration: underline;
}

.text-semibold {
    font-weight: 600;
}

.text-bold,
strong {
    font-weight: 700;
}

.ls-0 {
    letter-spacing: 0;
}

.ls-40 {
    letter-spacing: 0.04em;
}

.ls-50 {
    letter-spacing: 0.05em;
}

.ls-100 {
    letter-spacing: 0.1em;
}

/*
* Blocks visibility
* ================ */

.show-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.show-inline-block {
    display: inline-block !important;
}

.show-block {
    display: block !important;
}

.hide {
    display: none !important;
}

@media (min-width: 480px) {
    .show-xs-block {
        display: block !important;
    }
    .show-xs-inline-block {
        display: inline-block !important;
    }
    .show-xs-inline {
        display: inline !important;
    }
    .show-xs-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .hide-xs {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .show-sm-block {
        display: block !important;
    }
    .show-sm-inline-block {
        display: inline-block !important;
    }
    .show-sm-inline {
        display: inline !important;
    }
    .show-sm-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .hide-sm {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .show-md-block {
        display: block !important;
    }
    .show-md-inline-block {
        display: inline-block !important;
    }
    .show-md-inline {
        display: inline !important;
    }
    .show-md-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .hide-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .show-lg-block {
        display: block !important;
    }
    .show-lg-inline-block {
        display: inline-block !important;
    }
    .show-lg-inline {
        display: inline !important;
    }
    .show-lg-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .hide-lg {
        display: none !important;
    }
}

@media (min-width: 1800px) {
    .show-xl-block {
        display: block !important;
    }
    .show-xl-inline-block {
        display: inline-block !important;
    }
    .show-xl-inline {
        display: inline !important;
    }
    .show-xl-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .hide-xl {
        display: none !important;
    }
}

/*
* Color
* ================== */

html body .text-primary {
    color: #3B99D6;
}

.text-white {
    color: #fff;
}

.text-gray {
    color: #aaa;
}

/*
* Backgrounds
* ================ */

.bg-primary {
    background: #3B99D6;
}

.bg-gray {
    background: #F7F8FA;
}

.bg-dark {
    background: #282F38;
}

.bg-pattern {
    background: url(../img/bg-pattern.png) center center no-repeat;
    background-size: cover;
}

.side-shapes {
    position: relative;
    z-index: 1;
}

.side-shapes:after {
    position: absolute;
    top: 20%;
    right: 0;
    width: 250px;
    height: 250px;
    -webkit-transform: rotate(45deg) translateX(100%);
    -ms-transform: rotate(45deg) translateX(100%);
    transform: rotate(45deg) translateX(100%);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    background: #3B99D6;
    /*opacity: 0.3;*/
    z-index: -1;
}

@media (min-width: 992px) {
    .side-shapes:after {
        content: '';
    }
}

.side-shapes:before {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 250px;
    height: 250px;
    -webkit-transform: rotate(-45deg) translateX(-100%);
    -ms-transform: rotate(-45deg) translateX(-100%);
    transform: rotate(-45deg) translateX(-100%);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    background: #3B99D6;
    /*opacity: 0.3;*/
    z-index: -1;
}

@media (min-width: 992px) {
    .side-shapes:before {
        content: '';
    }
}

.side-triangles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.side-triangles:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    opacity: 0.8;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent #3B99D6 transparent transparent;
}

.side-triangles:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0.6;
    border-style: solid;
    border-width: 50px 0 0 50px;
    border-color: transparent transparent transparent #3B99D6;
}

.overlay-bg {
    position: relative;
    z-index: 1;
}

.overlay-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3B99D6;
    opacity: 0.8;
    z-index: -3;
}

.overlay-bg-dark:after {
    background: rgba(66, 78, 92, 0.85);
}

.all-light,
.all-light h1,
.all-light h2,
.all-light h3,
.all-light h4,
.all-light h5,
.all-light h6,
.all-light .h1,
.all-light .h2,
.all-light .h3,
.all-light .h4,
.all-light .h5,
.all-light .h6 {
    color: #fff;
}

/*
* Components
// ================================= */

/*
* Font Awesome
* ================ */

@font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome-webfont3295.eot?v=4.5.0");
    src: url("../fonts/fontawesome-webfontd41d.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont3295.woff2?v=4.5.0") format("woff2"), url("../fonts/fontawesome-webfont3295.woff?v=4.5.0") format("woff"), url("../fonts/fontawesome-webfont3295.ttf?v=4.5.0") format("truetype"), url("../fonts/fontawesome-webfont3295.svg?v=4.5.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

.fa-ul > li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: 0.14285714em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.85714286em;
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eeeeee;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right {
    margin-left: .3em;
}

/* Deprecated as of 4.4.0 */

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-glass:before {
    content: "\f000";
}

.fa-music:before {
    content: "\f001";
}

.fa-search:before {
    content: "\f002";
}

.fa-envelope-o:before {
    content: "\f003";
}

.fa-heart:before {
    content: "\f004";
}

.fa-star:before {
    content: "\f005";
}

.fa-star-o:before {
    content: "\f006";
}

.fa-user:before {
    content: "\f007";
}

.fa-film:before {
    content: "\f008";
}

.fa-th-large:before {
    content: "\f009";
}

.fa-th:before {
    content: "\f00a";
}

.fa-th-list:before {
    content: "\f00b";
}

.fa-check:before {
    content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d";
}

.fa-search-plus:before {
    content: "\f00e";
}

.fa-search-minus:before {
    content: "\f010";
}

.fa-power-off:before {
    content: "\f011";
}

.fa-signal:before {
    content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013";
}

.fa-trash-o:before {
    content: "\f014";
}

.fa-home:before {
    content: "\f015";
}

.fa-file-o:before {
    content: "\f016";
}

.fa-clock-o:before {
    content: "\f017";
}

.fa-road:before {
    content: "\f018";
}

.fa-download:before {
    content: "\f019";
}

.fa-arrow-circle-o-down:before {
    content: "\f01a";
}

.fa-arrow-circle-o-up:before {
    content: "\f01b";
}

.fa-inbox:before {
    content: "\f01c";
}

.fa-play-circle-o:before {
    content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e";
}

.fa-refresh:before {
    content: "\f021";
}

.fa-list-alt:before {
    content: "\f022";
}

.fa-lock:before {
    content: "\f023";
}

.fa-flag:before {
    content: "\f024";
}

.fa-headphones:before {
    content: "\f025";
}

.fa-volume-off:before {
    content: "\f026";
}

.fa-volume-down:before {
    content: "\f027";
}

.fa-volume-up:before {
    content: "\f028";
}

.fa-qrcode:before {
    content: "\f029";
}

.fa-barcode:before {
    content: "\f02a";
}

.fa-tag:before {
    content: "\f02b";
}

.fa-tags:before {
    content: "\f02c";
}

.fa-book:before {
    content: "\f02d";
}

.fa-bookmark:before {
    content: "\f02e";
}

.fa-print:before {
    content: "\f02f";
}

.fa-camera:before {
    content: "\f030";
}

.fa-font:before {
    content: "\f031";
}

.fa-bold:before {
    content: "\f032";
}

.fa-italic:before {
    content: "\f033";
}

.fa-text-height:before {
    content: "\f034";
}

.fa-text-width:before {
    content: "\f035";
}

.fa-align-left:before {
    content: "\f036";
}

.fa-align-center:before {
    content: "\f037";
}

.fa-align-right:before {
    content: "\f038";
}

.fa-align-justify:before {
    content: "\f039";
}

.fa-list:before {
    content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b";
}

.fa-indent:before {
    content: "\f03c";
}

.fa-video-camera:before {
    content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e";
}

.fa-pencil:before {
    content: "\f040";
}

.fa-map-marker:before {
    content: "\f041";
}

.fa-adjust:before {
    content: "\f042";
}

.fa-tint:before {
    content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044";
}

.fa-share-square-o:before {
    content: "\f045";
}

.fa-check-square-o:before {
    content: "\f046";
}

.fa-arrows:before {
    content: "\f047";
}

.fa-step-backward:before {
    content: "\f048";
}

.fa-fast-backward:before {
    content: "\f049";
}

.fa-backward:before {
    content: "\f04a";
}

.fa-play:before {
    content: "\f04b";
}

.fa-pause:before {
    content: "\f04c";
}

.fa-stop:before {
    content: "\f04d";
}

.fa-forward:before {
    content: "\f04e";
}

.fa-fast-forward:before {
    content: "\f050";
}

.fa-step-forward:before {
    content: "\f051";
}

.fa-eject:before {
    content: "\f052";
}

.fa-chevron-left:before {
    content: "\f053";
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-plus-circle:before {
    content: "\f055";
}

.fa-minus-circle:before {
    content: "\f056";
}

.fa-times-circle:before {
    content: "\f057";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-question-circle:before {
    content: "\f059";
}

.fa-info-circle:before {
    content: "\f05a";
}

.fa-crosshairs:before {
    content: "\f05b";
}

.fa-times-circle-o:before {
    content: "\f05c";
}

.fa-check-circle-o:before {
    content: "\f05d";
}

.fa-ban:before {
    content: "\f05e";
}

.fa-arrow-left:before {
    content: "\f060";
}

.fa-arrow-right:before {
    content: "\f061";
}

.fa-arrow-up:before {
    content: "\f062";
}

.fa-arrow-down:before {
    content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064";
}

.fa-expand:before {
    content: "\f065";
}

.fa-compress:before {
    content: "\f066";
}

.fa-plus:before {
    content: "\f067";
}

.fa-minus:before {
    content: "\f068";
}

.fa-asterisk:before {
    content: "\f069";
}

.fa-exclamation-circle:before {
    content: "\f06a";
}

.fa-gift:before {
    content: "\f06b";
}

.fa-leaf:before {
    content: "\f06c";
}

.fa-fire:before {
    content: "\f06d";
}

.fa-eye:before {
    content: "\f06e";
}

.fa-eye-slash:before {
    content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071";
}

.fa-plane:before {
    content: "\f072";
}

.fa-calendar:before {
    content: "\f073";
}

.fa-random:before {
    content: "\f074";
}

.fa-comment:before {
    content: "\f075";
}

.fa-magnet:before {
    content: "\f076";
}

.fa-chevron-up:before {
    content: "\f077";
}

.fa-chevron-down:before {
    content: "\f078";
}

.fa-retweet:before {
    content: "\f079";
}

.fa-shopping-cart:before {
    content: "\f07a";
}

.fa-folder:before {
    content: "\f07b";
}

.fa-folder-open:before {
    content: "\f07c";
}

.fa-arrows-v:before {
    content: "\f07d";
}

.fa-arrows-h:before {
    content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080";
}

.fa-twitter-square:before {
    content: "\f081";
}

.fa-facebook-square:before {
    content: "\f082";
}

.fa-camera-retro:before {
    content: "\f083";
}

.fa-key:before {
    content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085";
}

.fa-comments:before {
    content: "\f086";
}

.fa-thumbs-o-up:before {
    content: "\f087";
}

.fa-thumbs-o-down:before {
    content: "\f088";
}

.fa-star-half:before {
    content: "\f089";
}

.fa-heart-o:before {
    content: "\f08a";
}

.fa-sign-out:before {
    content: "\f08b";
}

.fa-linkedin-square:before {
    content: "\f08c";
}

.fa-thumb-tack:before {
    content: "\f08d";
}

.fa-external-link:before {
    content: "\f08e";
}

.fa-sign-in:before {
    content: "\f090";
}

.fa-trophy:before {
    content: "\f091";
}

.fa-github-square:before {
    content: "\f092";
}

.fa-upload:before {
    content: "\f093";
}

.fa-lemon-o:before {
    content: "\f094";
}

.fa-phone:before {
    content: "\f095";
}

.fa-square-o:before {
    content: "\f096";
}

.fa-bookmark-o:before {
    content: "\f097";
}

.fa-phone-square:before {
    content: "\f098";
}

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

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

.fa-github:before {
    content: "\f09b";
}

.fa-unlock:before {
    content: "\f09c";
}

.fa-credit-card:before {
    content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e";
}

.fa-hdd-o:before {
    content: "\f0a0";
}

.fa-bullhorn:before {
    content: "\f0a1";
}

.fa-bell:before {
    content: "\f0f3";
}

.fa-certificate:before {
    content: "\f0a3";
}

.fa-hand-o-right:before {
    content: "\f0a4";
}

.fa-hand-o-left:before {
    content: "\f0a5";
}

.fa-hand-o-up:before {
    content: "\f0a6";
}

.fa-hand-o-down:before {
    content: "\f0a7";
}

.fa-arrow-circle-left:before {
    content: "\f0a8";
}

.fa-arrow-circle-right:before {
    content: "\f0a9";
}

.fa-arrow-circle-up:before {
    content: "\f0aa";
}

.fa-arrow-circle-down:before {
    content: "\f0ab";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-wrench:before {
    content: "\f0ad";
}

.fa-tasks:before {
    content: "\f0ae";
}

.fa-filter:before {
    content: "\f0b0";
}

.fa-briefcase:before {
    content: "\f0b1";
}

.fa-arrows-alt:before {
    content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1";
}

.fa-cloud:before {
    content: "\f0c2";
}

.fa-flask:before {
    content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5";
}

.fa-paperclip:before {
    content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7";
}

.fa-square:before {
    content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9";
}

.fa-list-ul:before {
    content: "\f0ca";
}

.fa-list-ol:before {
    content: "\f0cb";
}

.fa-strikethrough:before {
    content: "\f0cc";
}

.fa-underline:before {
    content: "\f0cd";
}

.fa-table:before {
    content: "\f0ce";
}

.fa-magic:before {
    content: "\f0d0";
}

.fa-truck:before {
    content: "\f0d1";
}

.fa-pinterest:before {
    content: "\f0d2";
}

.fa-pinterest-square:before {
    content: "\f0d3";
}

.fa-google-plus-square:before {
    content: "\f0d4";
}

.fa-google-plus:before {
    content: "\f0d5";
}

.fa-money:before {
    content: "\f0d6";
}

.fa-caret-down:before {
    content: "\f0d7";
}

.fa-caret-up:before {
    content: "\f0d8";
}

.fa-caret-left:before {
    content: "\f0d9";
}

.fa-caret-right:before {
    content: "\f0da";
}

.fa-columns:before {
    content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-linkedin:before {
    content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4";
}

.fa-comment-o:before {
    content: "\f0e5";
}

.fa-comments-o:before {
    content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7";
}

.fa-sitemap:before {
    content: "\f0e8";
}

.fa-umbrella:before {
    content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea";
}

.fa-lightbulb-o:before {
    content: "\f0eb";
}

.fa-exchange:before {
    content: "\f0ec";
}

.fa-cloud-download:before {
    content: "\f0ed";
}

.fa-cloud-upload:before {
    content: "\f0ee";
}

.fa-user-md:before {
    content: "\f0f0";
}

.fa-stethoscope:before {
    content: "\f0f1";
}

.fa-suitcase:before {
    content: "\f0f2";
}

.fa-bell-o:before {
    content: "\f0a2";
}

.fa-coffee:before {
    content: "\f0f4";
}

.fa-cutlery:before {
    content: "\f0f5";
}

.fa-file-text-o:before {
    content: "\f0f6";
}

.fa-building-o:before {
    content: "\f0f7";
}

.fa-hospital-o:before {
    content: "\f0f8";
}

.fa-ambulance:before {
    content: "\f0f9";
}

.fa-medkit:before {
    content: "\f0fa";
}

.fa-fighter-jet:before {
    content: "\f0fb";
}

.fa-beer:before {
    content: "\f0fc";
}

.fa-h-square:before {
    content: "\f0fd";
}

.fa-plus-square:before {
    content: "\f0fe";
}

.fa-angle-double-left:before {
    content: "\f100";
}

.fa-angle-double-right:before {
    content: "\f101";
}

.fa-angle-double-up:before {
    content: "\f102";
}

.fa-angle-double-down:before {
    content: "\f103";
}

.fa-angle-left:before {
    content: "\f104";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-angle-up:before {
    content: "\f106";
}

.fa-angle-down:before {
    content: "\f107";
}

.fa-desktop:before {
    content: "\f108";
}

.fa-laptop:before {
    content: "\f109";
}

.fa-tablet:before {
    content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b";
}

.fa-circle-o:before {
    content: "\f10c";
}

.fa-quote-left:before {
    content: "\f10d";
}

.fa-quote-right:before {
    content: "\f10e";
}

.fa-spinner:before {
    content: "\f110";
}

.fa-circle:before {
    content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112";
}

.fa-github-alt:before {
    content: "\f113";
}

.fa-folder-o:before {
    content: "\f114";
}

.fa-folder-open-o:before {
    content: "\f115";
}

.fa-smile-o:before {
    content: "\f118";
}

.fa-frown-o:before {
    content: "\f119";
}

.fa-meh-o:before {
    content: "\f11a";
}

.fa-gamepad:before {
    content: "\f11b";
}

.fa-keyboard-o:before {
    content: "\f11c";
}

.fa-flag-o:before {
    content: "\f11d";
}

.fa-flag-checkered:before {
    content: "\f11e";
}

.fa-terminal:before {
    content: "\f120";
}

.fa-code:before {
    content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123";
}

.fa-location-arrow:before {
    content: "\f124";
}

.fa-crop:before {
    content: "\f125";
}

.fa-code-fork:before {
    content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127";
}

.fa-question:before {
    content: "\f128";
}

.fa-info:before {
    content: "\f129";
}

.fa-exclamation:before {
    content: "\f12a";
}

.fa-superscript:before {
    content: "\f12b";
}

.fa-subscript:before {
    content: "\f12c";
}

.fa-eraser:before {
    content: "\f12d";
}

.fa-puzzle-piece:before {
    content: "\f12e";
}

.fa-microphone:before {
    content: "\f130";
}

.fa-microphone-slash:before {
    content: "\f131";
}

.fa-shield:before {
    content: "\f132";
}

.fa-calendar-o:before {
    content: "\f133";
}

.fa-fire-extinguisher:before {
    content: "\f134";
}

.fa-rocket:before {
    content: "\f135";
}

.fa-maxcdn:before {
    content: "\f136";
}

.fa-chevron-circle-left:before {
    content: "\f137";
}

.fa-chevron-circle-right:before {
    content: "\f138";
}

.fa-chevron-circle-up:before {
    content: "\f139";
}

.fa-chevron-circle-down:before {
    content: "\f13a";
}

.fa-html5:before {
    content: "\f13b";
}

.fa-css3:before {
    content: "\f13c";
}

.fa-anchor:before {
    content: "\f13d";
}

.fa-unlock-alt:before {
    content: "\f13e";
}

.fa-bullseye:before {
    content: "\f140";
}

.fa-ellipsis-h:before {
    content: "\f141";
}

.fa-ellipsis-v:before {
    content: "\f142";
}

.fa-rss-square:before {
    content: "\f143";
}

.fa-play-circle:before {
    content: "\f144";
}

.fa-ticket:before {
    content: "\f145";
}

.fa-minus-square:before {
    content: "\f146";
}

.fa-minus-square-o:before {
    content: "\f147";
}

.fa-level-up:before {
    content: "\f148";
}

.fa-level-down:before {
    content: "\f149";
}

.fa-check-square:before {
    content: "\f14a";
}

.fa-pencil-square:before {
    content: "\f14b";
}

.fa-external-link-square:before {
    content: "\f14c";
}

.fa-share-square:before {
    content: "\f14d";
}

.fa-compass:before {
    content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153";
}

.fa-gbp:before {
    content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158";
}

.fa-won:before,
.fa-krw:before {
    content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a";
}

.fa-file:before {
    content: "\f15b";
}

.fa-file-text:before {
    content: "\f15c";
}

.fa-sort-alpha-asc:before {
    content: "\f15d";
}

.fa-sort-alpha-desc:before {
    content: "\f15e";
}

.fa-sort-amount-asc:before {
    content: "\f160";
}

.fa-sort-amount-desc:before {
    content: "\f161";
}

.fa-sort-numeric-asc:before {
    content: "\f162";
}

.fa-sort-numeric-desc:before {
    content: "\f163";
}

.fa-thumbs-up:before {
    content: "\f164";
}

.fa-thumbs-down:before {
    content: "\f165";
}

.fa-youtube-square:before {
    content: "\f166";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-xing:before {
    content: "\f168";
}

.fa-xing-square:before {
    content: "\f169";
}

.fa-youtube-play:before {
    content: "\f16a";
}

.fa-dropbox:before {
    content: "\f16b";
}

.fa-stack-overflow:before {
    content: "\f16c";
}

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

.fa-flickr:before {
    content: "\f16e";
}

.fa-adn:before {
    content: "\f170";
}

.fa-bitbucket:before {
    content: "\f171";
}

.fa-bitbucket-square:before {
    content: "\f172";
}

.fa-tumblr:before {
    content: "\f173";
}

.fa-tumblr-square:before {
    content: "\f174";
}

.fa-long-arrow-down:before {
    content: "\f175";
}

.fa-long-arrow-up:before {
    content: "\f176";
}

.fa-long-arrow-left:before {
    content: "\f177";
}

.fa-long-arrow-right:before {
    content: "\f178";
}

.fa-apple:before {
    content: "\f179";
}

.fa-windows:before {
    content: "\f17a";
}

.fa-android:before {
    content: "\f17b";
}

.fa-linux:before {
    content: "\f17c";
}

.fa-dribbble:before {
    content: "\f17d";
}

.fa-skype:before {
    content: "\f17e";
}

.fa-foursquare:before {
    content: "\f180";
}

.fa-trello:before {
    content: "\f181";
}

.fa-female:before {
    content: "\f182";
}

.fa-male:before {
    content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184";
}

.fa-sun-o:before {
    content: "\f185";
}

.fa-moon-o:before {
    content: "\f186";
}

.fa-archive:before {
    content: "\f187";
}

.fa-bug:before {
    content: "\f188";
}

.fa-vk:before {
    content: "\f189";
}

.fa-weibo:before {
    content: "\f18a";
}

.fa-renren:before {
    content: "\f18b";
}

.fa-pagelines:before {
    content: "\f18c";
}

.fa-stack-exchange:before {
    content: "\f18d";
}

.fa-arrow-circle-o-right:before {
    content: "\f18e";
}

.fa-arrow-circle-o-left:before {
    content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191";
}

.fa-dot-circle-o:before {
    content: "\f192";
}

.fa-wheelchair:before {
    content: "\f193";
}

.fa-vimeo-square:before {
    content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195";
}

.fa-plus-square-o:before {
    content: "\f196";
}

.fa-space-shuttle:before {
    content: "\f197";
}

.fa-slack:before {
    content: "\f198";
}

.fa-envelope-square:before {
    content: "\f199";
}

.fa-wordpress:before {
    content: "\f19a";
}

.fa-openid:before {
    content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d";
}

.fa-yahoo:before {
    content: "\f19e";
}

.fa-google:before {
    content: "\f1a0";
}

.fa-reddit:before {
    content: "\f1a1";
}

.fa-reddit-square:before {
    content: "\f1a2";
}

.fa-stumbleupon-circle:before {
    content: "\f1a3";
}

.fa-stumbleupon:before {
    content: "\f1a4";
}

.fa-delicious:before {
    content: "\f1a5";
}

.fa-digg:before {
    content: "\f1a6";
}

.fa-pied-piper:before {
    content: "\f1a7";
}

.fa-pied-piper-alt:before {
    content: "\f1a8";
}

.fa-drupal:before {
    content: "\f1a9";
}

.fa-joomla:before {
    content: "\f1aa";
}

.fa-language:before {
    content: "\f1ab";
}

.fa-fax:before {
    content: "\f1ac";
}

.fa-building:before {
    content: "\f1ad";
}

.fa-child:before {
    content: "\f1ae";
}

.fa-paw:before {
    content: "\f1b0";
}

.fa-spoon:before {
    content: "\f1b1";
}

.fa-cube:before {
    content: "\f1b2";
}

.fa-cubes:before {
    content: "\f1b3";
}

.fa-behance:before {
    content: "\f1b4";
}

.fa-behance-square:before {
    content: "\f1b5";
}

.fa-steam:before {
    content: "\f1b6";
}

.fa-steam-square:before {
    content: "\f1b7";
}

.fa-recycle:before {
    content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba";
}

.fa-tree:before {
    content: "\f1bb";
}

.fa-spotify:before {
    content: "\f1bc";
}

.fa-deviantart:before {
    content: "\f1bd";
}

.fa-soundcloud:before {
    content: "\f1be";
}

.fa-database:before {
    content: "\f1c0";
}

.fa-file-pdf-o:before {
    content: "\f1c1";
}

.fa-file-word-o:before {
    content: "\f1c2";
}

.fa-file-excel-o:before {
    content: "\f1c3";
}

.fa-file-powerpoint-o:before {
    content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8";
}

.fa-file-code-o:before {
    content: "\f1c9";
}

.fa-vine:before {
    content: "\f1ca";
}

.fa-codepen:before {
    content: "\f1cb";
}

.fa-jsfiddle:before {
    content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd";
}

.fa-circle-o-notch:before {
    content: "\f1ce";
}

.fa-ra:before,
.fa-rebel:before {
    content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1";
}

.fa-git-square:before {
    content: "\f1d2";
}

.fa-git:before {
    content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4";
}

.fa-tencent-weibo:before {
    content: "\f1d5";
}

.fa-qq:before {
    content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9";
}

.fa-history:before {
    content: "\f1da";
}

.fa-circle-thin:before {
    content: "\f1db";
}

.fa-header:before {
    content: "\f1dc";
}

.fa-paragraph:before {
    content: "\f1dd";
}

.fa-sliders:before {
    content: "\f1de";
}

.fa-share-alt:before {
    content: "\f1e0";
}

.fa-share-alt-square:before {
    content: "\f1e1";
}

.fa-bomb:before {
    content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3";
}

.fa-tty:before {
    content: "\f1e4";
}

.fa-binoculars:before {
    content: "\f1e5";
}

.fa-plug:before {
    content: "\f1e6";
}

.fa-slideshare:before {
    content: "\f1e7";
}

.fa-twitch:before {
    content: "\f1e8";
}

.fa-yelp:before {
    content: "\f1e9";
}

.fa-newspaper-o:before {
    content: "\f1ea";
}

.fa-wifi:before {
    content: "\f1eb";
}

.fa-calculator:before {
    content: "\f1ec";
}

.fa-paypal:before {
    content: "\f1ed";
}

.fa-google-wallet:before {
    content: "\f1ee";
}

.fa-cc-visa:before {
    content: "\f1f0";
}

.fa-cc-mastercard:before {
    content: "\f1f1";
}

.fa-cc-discover:before {
    content: "\f1f2";
}

.fa-cc-amex:before {
    content: "\f1f3";
}

.fa-cc-paypal:before {
    content: "\f1f4";
}

.fa-cc-stripe:before {
    content: "\f1f5";
}

.fa-bell-slash:before {
    content: "\f1f6";
}

.fa-bell-slash-o:before {
    content: "\f1f7";
}

.fa-trash:before {
    content: "\f1f8";
}

.fa-copyright:before {
    content: "\f1f9";
}

.fa-at:before {
    content: "\f1fa";
}

.fa-eyedropper:before {
    content: "\f1fb";
}

.fa-paint-brush:before {
    content: "\f1fc";
}

.fa-birthday-cake:before {
    content: "\f1fd";
}

.fa-area-chart:before {
    content: "\f1fe";
}

.fa-pie-chart:before {
    content: "\f200";
}

.fa-line-chart:before {
    content: "\f201";
}

.fa-lastfm:before {
    content: "\f202";
}

.fa-lastfm-square:before {
    content: "\f203";
}

.fa-toggle-off:before {
    content: "\f204";
}

.fa-toggle-on:before {
    content: "\f205";
}

.fa-bicycle:before {
    content: "\f206";
}

.fa-bus:before {
    content: "\f207";
}

.fa-ioxhost:before {
    content: "\f208";
}

.fa-angellist:before {
    content: "\f209";
}

.fa-cc:before {
    content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b";
}

.fa-meanpath:before {
    content: "\f20c";
}

.fa-buysellads:before {
    content: "\f20d";
}

.fa-connectdevelop:before {
    content: "\f20e";
}

.fa-dashcube:before {
    content: "\f210";
}

.fa-forumbee:before {
    content: "\f211";
}

.fa-leanpub:before {
    content: "\f212";
}

.fa-sellsy:before {
    content: "\f213";
}

.fa-shirtsinbulk:before {
    content: "\f214";
}

.fa-simplybuilt:before {
    content: "\f215";
}

.fa-skyatlas:before {
    content: "\f216";
}

.fa-cart-plus:before {
    content: "\f217";
}

.fa-cart-arrow-down:before {
    content: "\f218";
}

.fa-diamond:before {
    content: "\f219";
}

.fa-ship:before {
    content: "\f21a";
}

.fa-user-secret:before {
    content: "\f21b";
}

.fa-motorcycle:before {
    content: "\f21c";
}

.fa-street-view:before {
    content: "\f21d";
}

.fa-heartbeat:before {
    content: "\f21e";
}

.fa-venus:before {
    content: "\f221";
}

.fa-mars:before {
    content: "\f222";
}

.fa-mercury:before {
    content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224";
}

.fa-transgender-alt:before {
    content: "\f225";
}

.fa-venus-double:before {
    content: "\f226";
}

.fa-mars-double:before {
    content: "\f227";
}

.fa-venus-mars:before {
    content: "\f228";
}

.fa-mars-stroke:before {
    content: "\f229";
}

.fa-mars-stroke-v:before {
    content: "\f22a";
}

.fa-mars-stroke-h:before {
    content: "\f22b";
}

.fa-neuter:before {
    content: "\f22c";
}

.fa-genderless:before {
    content: "\f22d";
}

.fa-facebook-official:before {
    content: "\f230";
}

.fa-pinterest-p:before {
    content: "\f231";
}

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

.fa-server:before {
    content: "\f233";
}

.fa-user-plus:before {
    content: "\f234";
}

.fa-user-times:before {
    content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236";
}

.fa-viacoin:before {
    content: "\f237";
}

.fa-train:before {
    content: "\f238";
}

.fa-subway:before {
    content: "\f239";
}

.fa-medium:before {
    content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b";
}

.fa-optin-monster:before {
    content: "\f23c";
}

.fa-opencart:before {
    content: "\f23d";
}

.fa-expeditedssl:before {
    content: "\f23e";
}

.fa-battery-4:before,
.fa-battery-full:before {
    content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244";
}

.fa-mouse-pointer:before {
    content: "\f245";
}

.fa-i-cursor:before {
    content: "\f246";
}

.fa-object-group:before {
    content: "\f247";
}

.fa-object-ungroup:before {
    content: "\f248";
}

.fa-sticky-note:before {
    content: "\f249";
}

.fa-sticky-note-o:before {
    content: "\f24a";
}

.fa-cc-jcb:before {
    content: "\f24b";
}

.fa-cc-diners-club:before {
    content: "\f24c";
}

.fa-clone:before {
    content: "\f24d";
}

.fa-balance-scale:before {
    content: "\f24e";
}

.fa-hourglass-o:before {
    content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253";
}

.fa-hourglass:before {
    content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256";
}

.fa-hand-scissors-o:before {
    content: "\f257";
}

.fa-hand-lizard-o:before {
    content: "\f258";
}

.fa-hand-spock-o:before {
    content: "\f259";
}

.fa-hand-pointer-o:before {
    content: "\f25a";
}

.fa-hand-peace-o:before {
    content: "\f25b";
}

.fa-trademark:before {
    content: "\f25c";
}

.fa-registered:before {
    content: "\f25d";
}

.fa-creative-commons:before {
    content: "\f25e";
}

.fa-gg:before {
    content: "\f260";
}

.fa-gg-circle:before {
    content: "\f261";
}

.fa-tripadvisor:before {
    content: "\f262";
}

.fa-odnoklassniki:before {
    content: "\f263";
}

.fa-odnoklassniki-square:before {
    content: "\f264";
}

.fa-get-pocket:before {
    content: "\f265";
}

.fa-wikipedia-w:before {
    content: "\f266";
}

.fa-safari:before {
    content: "\f267";
}

.fa-chrome:before {
    content: "\f268";
}

.fa-firefox:before {
    content: "\f269";
}

.fa-opera:before {
    content: "\f26a";
}

.fa-internet-explorer:before {
    content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c";
}

.fa-contao:before {
    content: "\f26d";
}

.fa-500px:before {
    content: "\f26e";
}

.fa-amazon:before {
    content: "\f270";
}

.fa-calendar-plus-o:before {
    content: "\f271";
}

.fa-calendar-minus-o:before {
    content: "\f272";
}

.fa-calendar-times-o:before {
    content: "\f273";
}

.fa-calendar-check-o:before {
    content: "\f274";
}

.fa-industry:before {
    content: "\f275";
}

.fa-map-pin:before {
    content: "\f276";
}

.fa-map-signs:before {
    content: "\f277";
}

.fa-map-o:before {
    content: "\f278";
}

.fa-map:before {
    content: "\f279";
}

.fa-commenting:before {
    content: "\f27a";
}

.fa-commenting-o:before {
    content: "\f27b";
}

.fa-houzz:before {
    content: "\f27c";
}

.fa-vimeo:before {
    content: "\f27d";
}

.fa-black-tie:before {
    content: "\f27e";
}

.fa-fonticons:before {
    content: "\f280";
}

.fa-reddit-alien:before {
    content: "\f281";
}

.fa-edge:before {
    content: "\f282";
}

.fa-credit-card-alt:before {
    content: "\f283";
}

.fa-codiepie:before {
    content: "\f284";
}

.fa-modx:before {
    content: "\f285";
}

.fa-fort-awesome:before {
    content: "\f286";
}

.fa-usb:before {
    content: "\f287";
}

.fa-product-hunt:before {
    content: "\f288";
}

.fa-mixcloud:before {
    content: "\f289";
}

.fa-scribd:before {
    content: "\f28a";
}

.fa-pause-circle:before {
    content: "\f28b";
}

.fa-pause-circle-o:before {
    content: "\f28c";
}

.fa-stop-circle:before {
    content: "\f28d";
}

.fa-stop-circle-o:before {
    content: "\f28e";
}

.fa-shopping-bag:before {
    content: "\f290";
}

.fa-shopping-basket:before {
    content: "\f291";
}

.fa-hashtag:before {
    content: "\f292";
}

.fa-bluetooth:before {
    content: "\f293";
}

.fa-bluetooth-b:before {
    content: "\f294";
}

.fa-percent:before {
    content: "\f295";
}

[class*='fa-']:before {
    font-weight: 400;
    font-family: 'FontAwesome';
}

/*
* Buttons
* ================ */

.btn {
    display: inline-block;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    max-width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

.btn:hover {
    color: inherit;
    text-decoration: none;
}

.btn-xs {
    padding: 10px 15px;
}

.btn-sm {
    padding: 12px 20px;
    font-size: 14px;
}

.btn-md {
    padding: 15px 30px;
}

.btn-default {
    color: #333;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 0;
}

.btn-default:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, -webkit-transform 0.4s;
    -o-transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.btn-default:hover {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

.btn-default:hover:after {
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    opacity: 0;
}

.btn-default:focus {
    color: #fff;
    background: transparent;
    border-color: #fff;
    outline: none;
}

.btn-default:focus:after {
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    opacity: 0;
}

.btn-default:active {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

.btn-default:active:focus {
    color: #fff;
    background: transparent;
    outline: none;
    border-color: #fff;
}

.btn-primary {
    color: #fff;
    background: transparent;
    border: 1px solid #3B99D6;
    border-radius: 0;
}

.btn-primary:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3B99D6;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, -webkit-transform 0.4s;
    -o-transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.btn-primary:hover {
    color: #333;
    background: transparent;
    border-color: #3B99D6;
}

.btn-primary:hover:after {
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    opacity: 0;
}

.btn-primary:focus {
    outline: none;
}

.btn-primary:focus:after {
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    opacity: 0;
}

.btn-primary:active {
    color: #333;
    background: transparent;
    border-color: #333;
}

.btn-primary:active:focus {
    color: #333;
    background: transparent;
    outline: none;
    border-color: #333;
}

/*
* Icons
* ================ */

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

.icon-sm {
    font-size: 14px;
}

.icon-md {
    font-size: 20px;
}

.icon-lg {
    font-size: 35px;
}

.icon-block {
    margin-top: 30px;
}

.icon-block:hover .icon {
    color: #424E5C;
}

.icon-block:hover .icon-wrap:before {
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0.8;
}

.icon-block:hover .icon-wrap:after {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0.6;
}

.icon-wrap {
    display: block;
    position: relative;
    width: 140px;
    margin: 0 auto 15px;
    height: 100px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
}

.icon-wrap:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 70px 100px 35px;
    border-color: transparent transparent #3B99D6 transparent;
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: all .6s ease-out;
    -o-transition: all .6s ease-out;
    transition: all .6s ease-out;
}

.icon-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 35px 0 70px;
    border-color: #3B99D6 transparent transparent transparent;
    opacity: 0.8;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: all .6s ease-out;
    -o-transition: all .6s ease-out;
    transition: all .6s ease-out;
}

.icon-wrap .icon {
    font-size: 28px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.contact-block {
    margin-top: 30px;
}

.contact-block:hover .icon:after {
    -webkit-transform: skew(20deg);
    -ms-transform: skew(20deg);
    transform: skew(20deg);
}

.contact-wrap + * {
    margin-top: 10px;
}

.contact-wrap .icon {
    color: #fff;
    font-size: 24px;
    width: 90px;
    height: 70px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-wrap .icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3B99D6;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    /*opacity: 0.5;*/
    z-index: -1;
}

/*
* Lists
* ================ */

* + .list {
    margin-top: 20px;
}

.list li + li {
    margin-top: 5px;
}

* + .marked-list {
    margin-top: 20px;
}

.marked-list > li {
    font-size: 17px;
}

.marked-list > li span {
    display: inline-block;
    position: relative;
    padding-left: 25px;
}

.marked-list > li span:before {
    content: '\f0da';
    position: absolute;
    left: 4px;
    top: 0px;
    font-family: "FontAwesome";
    font-size: 16px;
    color: #3B99D6;
}

.marked-list > li + li {
    margin-top: 12px;
}

* + .list-inline {
    margin-top: 10px;
}

.list-inline {
    margin-left: 0;
}

.list-inline li .icon {
    font-size: 18px;
    color: #fff;
    display: inline-block;
    width: 50px;
    height: 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.list-inline li .icon:hover {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.list-inline li .icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3B99D6;
    opacity: 0.6;
    -webkit-transform: skew(-15deg);
    -ms-transform: skew(-15deg);
    transform: skew(-15deg);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.list-inline li .icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.index-list {
    margin-top: 25px;
    counter-reset: li;
    z-index: 3;
}

.index-list + * {
    margin-top: 20px;
}

.index-list > li.index-list-counter {
    position: relative;
    padding-left: 45px;
}

.index-list > li.index-list-counter + .index-list-counter {
    margin-top: 30px;
}

.index-list > li.index-list-counter:before {
    content: counter(li);
    counter-increment: li;
    color: #3B99D6;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
}

* + .project-stats {
    margin-top: 20px;
}

.project-stats + * {
    margin-top: 20px;
}

.project-stats li + li {
    margin-top: 20px;
}

.project-stats .title {
    display: block;
    width: 80px;
    float: left;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .project-stats .title {
        width: 120px;
    }
}

.project-stats .content {
    display: block;
    margin-left: 95px;
    font-size: 15px;
    line-height: 20px;
}

@media (min-width: 768px) {
    .project-stats .content {
        margin-left: 125px;
    }
}

/*
* Media
// ====================*/

.media-right {
    padding-top: 20px;
}

.media-left {
    padding-bottom: 20px;
}

.media-ltr {
    direction: ltr;
}

.media-rtl {
    direction: rtl;
}

.media-rtl > .media-left {
    padding-right: 0;
    padding-left: 20px;
}

.media-rtl > .media-right {
    padding-right: 20px;
    padding-left: 0;
}

.media {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 100%;
    -webkit-flex: 0 1 100%;
    -webkit-box-flex: 0;
    flex: 0 1 100%;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.media-0 {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.media-0 > .media-left img,
.media-0 > .media-right img {
    max-width: none;
}

.media-0 > .media-right {
    padding-left: 20px;
    padding-top: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    max-width: 100%;
}

.media-0 > .media-left {
    padding-right: 20px;
    padding-bottom: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    max-width: 100%;
}

.media-0 .media-body {
    -ms-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
}

.media-0-base > .media-left img,
.media-0-base > .media-right img {
    max-width: 100%;
}

.media-0-base > .media-left,
.media-0-base > .media-right,
.media-0-base .media-body {
    padding: 0;
    display: block;
    vert-align: top;
}

.media-0-base > .media-right {
    padding-top: 20px;
}

.media-0-base > .media-left {
    padding-bottom: 20px;
}

.media-0-rtl {
    direction: rtl;
}

.media-0-rtl > .media-left {
    padding-right: 0;
    padding-left: 20px;
}

.media-0-rtl > .media-right {
    padding-right: 20px;
    padding-left: 0;
}

.media-0-ltr {
    direction: ltr;
}

.media-0-ltr > .media-left {
    padding-right: 20px;
    padding-left: 0;
}

.media-0-ltr > .media-right {
    padding-right: 0;
    padding-left: 20px;
}

@media (min-width: 480px) {
    .media-xs {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .media-xs > .media-left img,
    .media-xs > .media-right img {
        max-width: none;
    }
    .media-xs > .media-right {
        padding-left: 20px;
        padding-top: 0;
        -ms-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .media-xs > .media-left {
        padding-right: 20px;
        padding-bottom: 0;
        -ms-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .media-xs .media-body {
        -ms-flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        -webkit-box-flex: 0;
        flex: 0 1 auto;
    }
    .media-xs-base > .media-left img,
    .media-xs-base > .media-right img {
        max-width: 100%;
    }
    .media-xs-base > .media-left,
    .media-xs-base > .media-right,
    .media-xs-base .media-body {
        padding: 0;
        display: block;
        vert-align: top;
    }
    .media-xs-base > .media-right {
        padding-top: 20px;
    }
    .media-xs-base > .media-left {
        padding-bottom: 20px;
    }
    .media-xs-rtl {
        direction: rtl;
    }
    .media-xs-rtl > .media-left {
        padding-right: 0;
        padding-left: 20px;
    }
    .media-xs-rtl > .media-right {
        padding-right: 20px;
        padding-left: 0;
    }
    .media-xs-ltr {
        direction: ltr;
    }
    .media-xs-ltr > .media-left {
        padding-right: 20px;
        padding-left: 0;
    }
    .media-xs-ltr > .media-right {
        padding-right: 0;
        padding-left: 20px;
    }
}

@media (min-width: 768px) {
    .media-sm {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .media-sm > .media-left img,
    .media-sm > .media-right img {
        max-width: none;
    }
    .media-sm > .media-right {
        padding-left: 20px;
        padding-top: 0;
        -ms-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .media-sm > .media-left {
        padding-right: 20px;
        padding-bottom: 0;
        -ms-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .media-sm .media-body {
        -ms-flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        -webkit-box-flex: 0;
        flex: 0 1 auto;
    }
    .media-sm-base > .media-left img,
    .media-sm-base > .media-right img {
        max-width: 100%;
    }
    .media-sm-base > .media-left,
    .media-sm-base > .media-right,
    .media-sm-base .media-body {
        padding: 0;
        display: block;
        vert-align: top;
    }
    .media-sm-base > .media-right {
        padding-top: 20px;
    }
    .media-sm-base > .media-left {
        padding-bottom: 20px;
    }
    .media-sm-rtl {
        direction: rtl;
    }
    .media-sm-rtl > .media-left {
        padding-right: 0;
        padding-left: 20px;
    }
    .media-sm-rtl > .media-right {
        padding-right: 20px;
        padding-left: 0;
    }
    .media-sm-ltr {
        direction: ltr;
    }
    .media-sm-ltr > .media-left {
        padding-right: 20px;
        padding-left: 0;
    }
    .media-sm-ltr > .media-right {
        padding-right: 0;
        padding-left: 20px;
    }
}

@media (min-width: 992px) {
    .media-md {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .media-md > .media-left img,
    .media-md > .media-right img {
        max-width: none;
    }
    .media-md > .media-right {
        padding-left: 20px;
        padding-top: 0;
        -ms-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .media-md > .media-left {
        padding-right: 20px;
        padding-bottom: 0;
        -ms-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .media-md .media-body {
        -ms-flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        -webkit-box-flex: 0;
        flex: 0 1 auto;
    }
    .media-md-base > .media-left img,
    .media-md-base > .media-right img {
        max-width: 100%;
    }
    .media-md-base > .media-left,
    .media-md-base > .media-right,
    .media-md-base .media-body {
        padding: 0;
        display: block;
        vert-align: top;
    }
    .media-md-base > .media-right {
        padding-top: 20px;
    }
    .media-md-base > .media-left {
        padding-bottom: 20px;
    }
    .media-md-rtl {
        direction: rtl;
    }
    .media-md-rtl > .media-left {
        padding-right: 0;
        padding-left: 20px;
    }
    .media-md-rtl > .media-right {
        padding-right: 20px;
        padding-left: 0;
    }
    .media-md-ltr {
        direction: ltr;
    }
    .media-md-ltr > .media-left {
        padding-right: 20px;
        padding-left: 0;
    }
    .media-md-ltr > .media-right {
        padding-right: 0;
        padding-left: 20px;
    }
}

@media (min-width: 1200px) {
    .media-lg {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
    .media-lg > .media-left img,
    .media-lg > .media-right img {
        max-width: none;
    }
    .media-lg > .media-right {
        padding-left: 20px;
        padding-top: 0;
        -ms-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .media-lg > .media-left {
        padding-right: 20px;
        padding-bottom: 0;
        -ms-flex: 0 0 auto;
        -webkit-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        max-width: 100%;
    }
    .media-lg .media-body {
        -ms-flex: 0 1 auto;
        -webkit-flex: 0 1 auto;
        -webkit-box-flex: 0;
        flex: 0 1 auto;
    }
    .media-lg-base > .media-left img,
    .media-lg-base > .media-right img {
        max-width: 100%;
    }
    .media-lg-base > .media-left,
    .media-lg-base > .media-right,
    .media-lg-base .media-body {
        padding: 0;
        display: block;
        vert-align: top;
    }
    .media-lg-base > .media-right {
        padding-top: 20px;
    }
    .media-lg-base > .media-left {
        padding-bottom: 20px;
    }
    .media-lg-rtl {
        direction: rtl;
    }
    .media-lg-rtl > .media-left {
        padding-right: 0;
        padding-left: 20px;
    }
    .media-lg-rtl > .media-right {
        padding-right: 20px;
        padding-left: 0;
    }
    .media-lg-ltr {
        direction: ltr;
    }
    .media-lg-ltr > .media-left {
        padding-right: 20px;
        padding-left: 0;
    }
    .media-lg-ltr > .media-right {
        padding-right: 0;
        padding-left: 20px;
    }
}

.media {
    overflow: visible;
}

.media .icon-wrap:before {
    content: none;
}

@media (min-width: 768px) {
    .media .icon-wrap:before {
        content: '';
    }
}

.media > .media-left,
.media > .media-right,
.media > .media-body {
    padding: 0;
    direction: ltr;
    display: block;
}

.media .media-left {
    margin-left: 3px;
    margin-top: 8px;
    padding-right: 15px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .media .media-left {
        padding-right: 20px;
    }
}

.media .media-body {
    text-align: left;
    overflow: visible;
    position: relative;
}

.section-pad {
    padding: 60px 0;
}

@media (min-width: 992px) {
    .section-pad {
        padding: 80px 0;
    }
}

.section-pad-small {
    padding: 60px 0;
}

.section-pad-top {
    padding-top: 60px;
}

.section-pad-bottom {
    padding-bottom: 60px;
}

.fa-play:before {
    margin-left: 2px;
}

/*
// Button block
// ================ */

.btn-block {
    margin: -10px;
    margin-top: 30px;
}

.btn-block .btn {
    display: inline-block;
    margin: 10px;
}

.section-title + * {
    margin-top: 40px;
}

.video-wrap {
    border: 3px solid #3B99D6;
}

/*
// Dividers
// ================ */

.divider,
html .divider-white {
    width: 80px;
    height: 2px;
    background: #3B99D6;
    border: none;
    margin: 16px auto;
}

@media (min-width: 992px) {
    .divider-left {
        margin-left: 0;
    }
}

html .divider-white {
    background: #fff;
}

.seporator {
    width: 100%;
    height: 1px;
    background: #555555;
    border: none;
    margin: 16px auto;
}

.divide {
    width: 100%;
    height: 1px;
    background: #ccc;
    border: none;
    margin: 60px auto 40px;
}

/*
// Features section
// ================ */

.features-wrap {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .features-wrap {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

.features-wrap .after-circle {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: #efefef;
    border-radius: 50%;
    z-index: 100;
}

@media (min-width: 992px) {
    .features-wrap .after-circle {
        display: block;
    }
}

.features-wrap .after-circle .logo-icon {
    width: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    /* -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
    z-index: 20;
margin-left: -27%;
margin-top: -44%;
}

.features-wrap .after-circle span {
    position: absolute;
    width: 50px;
    height: 1px;
    background: #3B99D6;
}

@media (min-width: 1200px) {
    .features-wrap .after-circle span {
        display: none;
    }
}

.features-wrap .after-circle span:nth-child(1) {
    top: -45px;
    left: 0;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.features-wrap .after-circle span:nth-child(2) {
    top: -45px;
    right: 0;
    -webkit-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    transform: rotate(-60deg);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
}

.features-wrap .after-circle span:nth-child(3) {
    top: 50%;
    right: -70px;
}

.features-wrap .after-circle span:nth-child(4) {
    bottom: -45px;
    right: 0;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
}

.features-wrap .after-circle span:nth-child(5) {
    bottom: -45px;
    left: 0;
    -webkit-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    transform: rotate(-60deg);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

.features-wrap .after-circle span:nth-child(6) {
    top: 50%;
    left: -70px;
}

.features-left-col,
.features-right-col {
    position: relative;
}

@media (min-width: 992px) {
    .features-left-col,
    .features-right-col {
        height: 500px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .features-left-col {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (min-width: 992px) {
    .features-left-col .features-block:first-child,
    .features-left-col .features-block:last-child {
        right: -130px;
    }
}

@media (min-width: 992px) {
    .features-left-col .features-block:nth-child(1) {
        height: 60px;
    }
}

@media (min-width: 1200px) {
    .features-left-col .features-block:nth-child(1):hover {
        -webkit-transform: translate(-10px, -20px);
        -ms-transform: translate(-10px, -20px);
        transform: translate(-10px, -20px);
    }
}

.features-left-col .features-block:nth-child(1):after {
    bottom: -190px;
    right: -86px;
    border-width: 100px 170px 100px 0;
    border-color: transparent #3B99D6 transparent transparent;
}

@media (min-width: 1200px) {
    .features-left-col .features-block:nth-child(2):hover {
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

.features-left-col .features-block:nth-child(2):after {
    top: 50%;
    right: -216px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-width: 100px 0 100px 170px;
    border-color: transparent transparent transparent #3B99D6;
    opacity: 0.8;
}

@media (min-width: 992px) {
    .features-left-col .features-block:nth-child(3) {
        height: 60px;
    }
}

@media (min-width: 1200px) {
    .features-left-col .features-block:nth-child(3):hover {
        -webkit-transform: translate(-10px, 20px);
        -ms-transform: translate(-10px, 20px);
        transform: translate(-10px, 20px);
    }
}

.features-left-col .features-block:nth-child(3):after {
    top: -190px;
    right: -85px;
    border-width: 100px 170px 100px 0;
    border-color: transparent #3B99D6 transparent transparent;
    opacity: 0.6;
}

@media (min-width: 992px) {
    .features-right-col {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media (min-width: 992px) {
    .features-right-col .features-block:first-child,
    .features-right-col .features-block:last-child {
        left: -130px;
    }
}

@media (min-width: 992px) {
    .features-right-col .features-block:nth-child(1) {
        height: 60px;
    }
}

@media (min-width: 1200px) {
    .features-right-col .features-block:nth-child(1):hover {
        -webkit-transform: translate(10px, -20px);
        -ms-transform: translate(10px, -20px);
        transform: translate(10px, -20px);
    }
}

.features-right-col .features-block:nth-child(1):after {
    bottom: -190px;
    left: -85px;
    border-width: 100px 0 100px 170px;
    border-color: transparent transparent transparent #3CB994;
    opacity: 0.6;
}

@media (min-width: 1200px) {
    .features-right-col .features-block:nth-child(2):hover {
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

.features-right-col .features-block:nth-child(2):after {
    top: 50%;
    left: -216px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-width: 100px 170px 100px 0;
    border-color: transparent #3B99D6 transparent transparent;
    opacity: 0.8;
}

@media (min-width: 992px) {
    .features-right-col .features-block:nth-child(3) {
        height: 60px;
    }
}

@media (min-width: 1200px) {
    .features-right-col .features-block:nth-child(3):hover {
        -webkit-transform: translate(10px, 20px);
        -ms-transform: translate(10px, 20px);
        transform: translate(10px, 20px);
    }
}

.features-right-col .features-block:nth-child(3):after {
    top: -190px;
    left: -86px;
    border-width: 100px 0 100px 170px;
    border-color: transparent transparent transparent #3B99D6;
}

.features-block {
    position: relative;
    text-align: center;
    display: block;
    -webkit-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .features-block {
        display: inline-block;
        margin-top: 0;
        max-width: 350px;
    }
}

.features-block:after {
    content: none;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    pointer-events: none;
}

@media (min-width: 1200px) {
    .features-block:after {
        content: '';
    }
}

@media (min-width: 992px) {
    .features-block:first-child {
        position: absolute;
        top: 0;
    }
}

@media (min-width: 992px) {
    .features-block:last-child {
        position: absolute;
        bottom: 0;
    }
}

.features-block .icon {
    font-size: 28px;
    color: #3B99D6;
}

.features-block .icon + * {
    margin-top: 10px;
}

/*
// Video section
// ================ */

.video-section {
    padding: 120px 0 100px;
    background: url(../img/video-bg.jpg) top center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.video-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}

.video-section .icon {
    width: 80px;
    height: 80px;
    font-size: 24px;
    border-radius: 50%;
    background: #fff;
    color: #3B99D6;
    position: relative;
}

.video-section .icon:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.video-section .icon + * {
    margin-top: 20px;
}

.video-section .icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 2px;
}

/*
// Image wrapper
// ================== */

figure {
    margin: 15px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

figure .project-title {
    position: absolute;
    top: -20px;
    right: 0;
    padding: 12px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
}

figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

figure figcaption:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

figure > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

figure:hover .img-links {
    left: 0;
    opacity: 1;
}

figure:hover .img-links:after {
    width: calc(100% + 15px);
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

figure:hover .project-title {
    top: 0;
    opacity: 1;
}

figure:hover figcaption:after {
    opacity: 0.6;
}

.img-links {
    position: absolute;
    bottom: 0;
    left: -50px;
    opacity: 0;
    padding: 12px 20px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
}

.img-links:after {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    width: 0;
    background: #3B99D6;
    opacity: 0.7;
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transform: skew(20deg);
    -ms-transform: skew(20deg);
    transform: skew(20deg);
    z-index: -1;
}

.img-links a {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    color: #3B99D6;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    position: relative;
}

.img-links a + a {
    margin-left: 10px;
}

.img-links a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.img-links a:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/*
// Pricing box
// ================== */

.pricing-box {
    background: #fff;
    max-width: 350px;
    margin: 15px auto;
    position: relative;
    z-index: 1;
}

.pricing-box.gray {
    background: #F7F8FA;
}

.pricing-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    opacity: 0.8;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent #3B99D6 transparent transparent;
    z-index: -1;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.pricing-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0.6;
    border-style: solid;
    border-width: 80px 0 0 80px;
    border-color: transparent transparent transparent #3B99D6;
    z-index: -1;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.pricing-box:hover:before {
    top: -10px;
    right: -10px;
}

.pricing-box:hover:after {
    bottom: -10px;
    left: -10px;
}

.pricing-box-head {
    position: relative;
    padding: 40px 10px 0px;
}

.pricing-box-head h1 {
    font-weight: 700;
    margin-top: 10px;
}

.pricing-box-head span {
    font-size: 24px;
    font-weight: 400;
    display: inline-block;
    vertical-align: super;
}

.pricing-box-body {
    padding: 20px 20px 40px;
}

.pricing-box-body ul li {
    color: #a3a3a3;
    font-size: 16px;
    font-style: italic;
}

.pricing-box-body ul li + li {
    margin-top: 10px;
}

.pricing-box-body * + .btn {
    margin-top: 30px;
}

/*
// Blockquote
// ================== */

.testim-block {
    position: relative;
    z-index: 1;
}

.testim-block img {
    border-radius: 50%;
    width: 100px;
}

.testim-block blockquote {
    margin: 10px;
    position: relative;
    background: #fff;
    padding: 30px;
    font-style: italic;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.testim-block blockquote + * {
    margin-top: 30px;
}

.testim-block blockquote:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 20px 0 20px;
    border-color: #fff transparent transparent transparent;
}

cite {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #3B99D6;
}

cite span {
    margin-top: 5px;
    color: #333;
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.cite-block cite {
    width: calc(100% - 130px);
}

.cite-block > * {
    display: inline-block;
    vertical-align: middle;
}

.cite-block > * + * {
    margin-left: 20px;
}

.quote {
    margin: 30px 0;
    background: #F7F8FA;
    display: block;
    padding: 20px 20px 20px 70px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .quote {
        padding: 30px 30px 30px 100px;
    }
}

.quote:before {
    content: '\f10e';
    position: absolute;
    top: 25px;
    left: 20px;
    font-family: "FontAwesome";
    font-size: 30px;
    color: #3B99D6;
    opacity: 0.5;
}

@media (min-width: 768px) {
    .quote:before {
        top: 45px;
        left: 25px;
        font-size: 55px;
    }
}

.quote cite {
    font-style: italic;
    display: block;
    text-align: right;
    font-size: 18px;
    font-weight: 500;
}

/*
// Blog styles
// ================ */

.blog-post {
    background: #fff;
    -webkit-box-shadow: 0 2px 20px -2px rgba(17, 17, 17, 0.1);
    box-shadow: 0 2px 20px -2px rgba(17, 17, 17, 0.1);
    margin: 10px;
}

.blog-post .post-image {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.blog-post .more-link {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    margin-top: 3px;
}

.blog-post .post-text {
    padding: 20px;
}

@media (min-width: 768px) {
    .blog-post .post-text {
        padding: 15px 20px;
    }
}

.blog-post .post-text .post-data {
    margin: 10px 0;
}

.blog-post .post-text .post-data > * {
    display: inline-block;
    vertical-align: middle;
}

.blog-post .post-text .post-data > * + *:not(.more-link) {
    margin-left: 10px;
    margin-top: 0;
}

.blog-post .post-text .post-data > * .icon,
.blog-post .post-text .post-data > * span {
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
}

.blog-post .post-text .post-data > * .icon {
    color: #3B99D6;
    font-size: 18px;
}

.blog-post .post-text .post-data > * .icon + span {
    font-family: 'Raleway', sans-serif;
    margin-left: 5px;
}

.blog-list .blog-single {
    border: 1px solid #f2f2f2;
}

.blog-list .blog-single .post-image {
    margin: 0;
    max-height: 400px;
    overflow: hidden;
}

.blog-list .blog-single .post-image img {
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-list .blog-single .post-main {
    padding: 20px 22px 24px;
}

.blog-list .blog-single .post-body {
    padding: 0;
}

.blog-single {
    text-align: left;
}

.blog-single + .blog-single {
    margin-top: 30px;
}

* + .post-title {
    margin-top: 15px;
}

.post-meta {
    margin: 10px -6px 15px;
}

.post-meta a {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px;
    padding-left: 12px;
    border-left: 1px solid #222;
    line-height: 1;
}

.post-meta a:hover {
    color: #333;
}

.post-meta a:first-child {
    padding-left: 0;
    border-left: none;
}

.post-meta a span {
    display: inline-block;
    vertical-align: middle;
    color: #3B99D6;
    font-weight: 400;
}

.post-body {
    padding: 20px 0;
}

.post-text {
    margin-top: 20px;
}

.post-text + * {
    margin-top: 20px;
}

/*
// Comments
// ================ */

.post-comments {
    margin-top: 40px;
}

.comments-list {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.comments-list:before {
    content: '';
    position: absolute;
    top: 0;
    left: 34px;
    height: 100%;
    width: 1px;
    background: #ccc;
    background: -webkit-linear-gradient(top, #ccc 80%, transparent 100%);
    background: -moz-linear-gradient(top, #ccc 80%, transparent 100%);
    background: -ms-linear-gradient(top, #ccc 80%, transparent 100%);
    background: -o-linear-gradient(top, #ccc 80%, transparent 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, #ccc), to(transparent));
    background: linear-gradient(top, #ccc 80%, transparent 100%);
    z-index: -1;
}

.comments-list li .comment {
    padding-top: 20px;
}

.comments-list > li:first-child > .comment {
    border-top: none;
    padding-top: 0;
}

.comments-list li + li {
    margin-top: 25px;
}

.comments-list .comment-avatar {
    display: inline-block;
    vertical-align: top;
    width: 70px;
    height: 70px;
}

.comments-list .comment-body {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 90px);
    margin-left: 10px;
    padding: 8px 15px;
    background: rgba(224, 230, 237, 0.3);
}

.comments-list .comment-body p {
    margin-top: 10px;
    font-weight: 300;
}

.comments-list .comment-author {
    display: inline-block;
    vertical-align: middle;
}

.comments-list .comment-date {
    color: #999;
    display: block;
    font-size: 14px;
}

.comments-list .comment-btns {
    margin-top: 10px;
    top: 15px;
    right: 20px;
}

@media (min-width: 768px) {
    .comments-list .comment-btns {
        position: absolute;
        margin-top: 0;
    }
}

.comments-list .comment-btns a {
    color: #A6A6A6;
    font-size: 20px;
}

.comments-list .comment-btns a:hover {
    color: #3B99D6;
}

.comments-list .comment-btns a + a {
    margin-left: 20px;
}

.comments-list .comments-reply {
    margin: 25px 0 0 30px;
}

@media (min-width: 768px) {
    .comments-list .comments-reply {
        margin: 25px 0 0 85px;
    }
}

.comments-list .comments-reply .comment {
    position: relative;
    z-index: 1;
}

.comments-list .comments-reply .comment:before {
    content: '';
    position: absolute;
    top: 54px;
    left: -50px;
    width: 50px;
    height: 1px;
    background: #ccc;
    z-index: -1;
}

* + .comment-form-wrapper {
    margin-top: 30px;
}

* + .comment-form {
    margin-top: 15px;
}

/*
// Form styles
// ================ */

* + .subscription-form {
    margin-top: 30px;
}

.subscription-form {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    max-width: 650px;
}

.subscription-form .btn {
    padding: 9px 25px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}

.subscription-form .btn:hover {
    color: #333;
}

.subscription-form .btn:hover:after {
    width: 110%;
}

.subscription-form .btn:focus {
    outline: none;
    color: #fff;
}

.subscription-form .btn:focus:hover {
    color: #333;
}

.subscription-form .btn:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    background: #fff;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
    width: 0;
}

.subscription-form .form-control {
    border-color: #fff;
    color: #fff;
    padding-right: 70px;
}

.subscription-form .form-control::-webkit-input-placeholder {
    color: #fff;
}

@media (min-width: 768px) {
    .subscription-form .form-control {
        padding-right: 150px;
    }
}

.parallax-bg .contact-form .btn:hover,
.parallax-bg .contact-form .btn:focus {
    color: #fff;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    padding: 14px;
}

* + .search-form {
    margin-top: 20px;
}

.search-form {
    position: relative;
}

.search-form .form-control {
    padding-right: 50px;
    height: 40px;
}

.search-form .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.search-form .btn-sm {
    padding: 12px 14px;
}

.form-group {
    margin-bottom: 30px;
}

.form-control {
    padding: 9px 15px;
    background: transparent;
    border: 1px solid #E8E8E8;
    color: #333;
    border-radius: 0;
    height: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #3B99D6;
}

.form-control::-webkit-input-placeholder {
    color: #333;
}

textarea.form-control {
    height: 180px;
    resize: vertical;
}

address a {
    display: block;
}

@media (min-width: 480px) {
    address a {
        display: inline-block;
        vertical-align: middle;
    }
    address a + a {
        margin-left: 40px;
    }
}

address a span {
    display: inline-block;
    vertical-align: middle;
}

address a .icon {
    font-size: 14px;
    color: #3B99D6;
    margin-right: 8px;
}

.address + .address {
    margin-top: 20px;
}

.address h6 + * {
    margin-top: 10px;
}

.address .icon,
.address span {
    display: inline-block;
    vertical-align: middle;
}

.address .icon {
    font-size: 14px;
    padding-right: 5px;
}

/*
// Page 404
// ================ */

.page-404 {
    font-size: 60px;
    line-height: 1.4;
}

.page-404 + * {
    margin-top: 20px;
}

.page-404 ~ .btn {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .page-404 {
        font-size: 90px;
    }
}

.page-404 span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 80px;
    margin: 0 4px;
    z-index: 1;
}

@media (min-width: 768px) {
    .page-404 span {
        width: 130px;
        margin: 0 15px;
    }
}

.page-404 span:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3B99D6;
    opacity: 0.4;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    z-index: -1;
}

/*
// Pagination
// ================ */

.pagination-line {
    text-align: left;
    margin-top: 30px;
}

.pagination-line li {
    display: inline-block;
}

@media (min-width: 768px) {
    .pagination-line li + li {
        margin-left: 5px;
    }
}

.pagination-line li a {
    width: 30px;
    height: 30px;
    font-size: 18px;
    color: #3B99D6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #f2f2f2;
}

@media (min-width: 480px) {
    .pagination-line li a {
        width: 35px;
        height: 35px;
    }
}

.pagination-line li a:hover {
    border-color: #3B99D6;
}

.pagination-line li a.current {
    color: #fff;
    background: #3B99D6;
    border-color: #3B99D6;
}

/*
// Sidebar Styles
// ================ */

aside {
    margin-top: 45px;
    text-align: left;
}

@media (min-width: 992px) {
    aside {
        margin-top: 0;
    }
}

aside .widget + .widget {
    margin-top: 30px;
}

/*
// Widgets
// ================ */

.widget {
    border: 1px solid #f2f2f2;
    padding: 12px 20px;
}

.widget h4 + * {
    margin-top: 20px;
}

.widget-categories * + .categories-list {
    margin-top: 12px;
}

.widget-categories .categories-list li {
    position: relative;
    font-size: 14px;
    display: block;
    position: relative;
    padding-left: 25px;
}

.widget-categories .categories-list li:before {
    content: '\f0da';
    position: absolute;
    left: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "FontAwesome";
    font-size: 18px;
    color: #3B99D6;
}

.widget-categories .categories-list li + li {
    border-top: 1px solid #cecece;
    margin-top: 0;
}

.widget-categories .categories-list li a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

* + .tags-list {
    margin-top: 20px;
}

.widget-tags .tags-list {
    margin-left: -5px;
    margin-right: -5px;
}

.widget-tags .tags-list li {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
}

.widget-tags .tags-list a {
    font-size: 14px;
}

* + .recent-posts {
    margin-top: 20px;
}

.recent-posts li + li {
    margin-top: 20px;
}

.recent-posts .post-thumb {
    display: inline-block;
    vertical-align: top;
    width: 70px;
}

.recent-posts .post-date {
    color: #888;
    font-size: 14px;
    margin-top: 14px;
}

.recent-posts .post-text {
    display: inline-block;
    width: -webkit-calc(100% - 80px);
    width: calc(100% - 80px);
    padding-left: 15px;
    margin-top: 0;
}

.logo {
    max-width: 100px;
}

.logo + * {
    margin-top: 20px;
}

/*
// Marked Text
// ================ */

* + .text-marked {
    margin-top: 20px;
}

.text-marked {
    display: block;
    font-size: 14px;
    color: #3a3a3a;
    padding: 20px;
    border-left: 3px solid;
    border-color: #3B99D6;
    background: rgba(248, 248, 248, 0.9);
}

.text-marked + * {
    margin-top: 20px;
}

/*
// Sub page Entry
// ================ */

.sub-page-entry {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: url(../img/bg-sub-page.jpg) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .sub-page-entry {
        padding: 130px 0 100px;
    }
}

.sub-page-entry:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/*
// Helpers
// ================ */

.z-index-high {
    position: relative;
    z-index: 50;
}

.width100 {
    width: 100%;
}

.height100 {
    height: 100%;
}

.project-info {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .project-info {
        margin-top: 0;
    }
}

/*
// Script styles
// ================================= */

/*
* Animate CSS
* ================ */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

html:not(.lt-ie10) .not-animated {
    opacity: 0;
}

/**
* Pulse Keyframes Animation
*/

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8);
    }
    50% {
        -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8);
    }
    50% {
        -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0);
        box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0);
    }
}

/* 
Fly Keyframe Animation 
*/

@-webkit-keyframes fly {
    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fly {
    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/**
* Blink Keyframes Animation
*/

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
}

@keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-40%, 0, 0);
        transform: translate3d(-40%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-40%, 0, 0);
        transform: translate3d(-40%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(40%, 0, 0);
        transform: translate3d(40%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(40%, 0, 0);
        transform: translate3d(40%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

/* Fancybox
// ====================*/

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020;
    outline: none;
}

.fancybox-wrap *:focus {
    outline: none;
}

.fancybox-skin {
    position: relative;
    background: transparent;
    color: #444;
    padding: 0 !important;
    margin-top: 10px;
}

.fancybox-skin iframe {
    width: 100%;
    height: 100%;
}

.fancybox-opened {
    z-index: 8030;
}

.fancybox-image {
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.fancybox-close {
    position: absolute;
    top: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 8040;
}

.fancybox-close:before,
.fancybox-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    background: #fff;
    width: 18px;
    height: 1px;
    border: none;
}

.fancybox-close:after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.fancybox-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 8040;
}

.fancybox-next:before,
.fancybox-prev:before {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    background: #fff;
    width: 15px;
    height: 2px;
    border: none;
}

.fancybox-next:after,
.fancybox-prev:after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
    width: 15px;
    height: 2px;
    border: none;
}

.fancybox-prev:before {
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
}

.fancybox-prev:after {
    -ms-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    -webkit-transform: translateX(-50%) rotate(-45deg);
}

.fancybox-prev {
    left: 0;
}

.fancybox-next {
    right: 0;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: rgba(0, 0, 0, 0.8);
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll;
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important;
}

/*Retina graphics!*/

/* Navigation
// ====================*/

.k-nav {
    display: none;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 100;
    position: absolute;
    top: 0;
    width: 100%;
}

.k-nav-outside {
    position: relative;
}

.k-nav-outside.show .k-nav-inside {
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.k-nav-inside {
    padding: 20px 0;
    background: #333;
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    will-change: transform;
    z-index: 500;
}

@media (min-width: 480px) {
    .k-nav-inside {
        width: 300px;
    }
}

@media (min-width: 768px) {
    .k-nav-inside {
        overflow: auto;
    }
}

@media (min-width: 992px) {
    .k-nav-inside {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        position: relative;
        padding: 0 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        width: 100%;
        background: transparent;
        overflow: visible;
    }
}

.k-nav-inside::-webkit-scrollbar {
    width: 0px;
}

.k-nav-inside:after,
.k-nav-inside:before {
    content: none;
}

.k-nav-logo {
    display: block;
    max-width: 95px;
    margin: 0 auto;
    position: relative;
}

.k-nav-logo img {
    width: 100%;
}

@media (min-width: 992px) {
    .k-nav-logo {
        margin: 0;
    }
}

html body .k-nav-links {
    margin-top: 20px;
    text-align: left;
}

@media (min-width: 992px) {
    html body .k-nav-links {
        margin-top: 0;
    }
}

html body .k-nav-links li {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media (min-width: 992px) {
    html body .k-nav-links li {
        display: inline-block;
    }
}

html body .k-nav-links li:last-child {
    margin-right: -10px;
}

html body .k-nav-links li.active a {
    color: rgba(252, 252, 252, 0.6);
    background: #222;
    font-weight: bold;
}

@media (min-width: 992px) {
    html body .k-nav-links li.active a {
        background: transparent;
    }
}

html body .k-nav-links li + li {
    margin-top: 10px;
}

@media (min-width: 992px) {
    html body .k-nav-links li + li {
        margin-top: 0;
    }
}

html body .k-nav-links li .icon {
    vertical-align: baseline;
    margin-right: 5px;
    width: 15px;
}

@media (min-width: 992px) {
    html body .k-nav-links li .icon {
        width: auto;
    }
}

html body .k-nav-links ul + li {
    margin-top: 10px;
}

html body .k-nav-links a {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media (min-width: 992px) {
    html body .k-nav-links a {
        padding: 30px 10px 30px;
    }
}

html body .k-nav-links a:focus {
    color: #fff;
}

html body .k-nav-links a:hover {
    background: #222;
    color: rgba(252, 252, 252, 0.6);
}

@media (min-width: 992px) {
    html body .k-nav-links a:hover {
        background: transparent;
    }
}

.k-nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: fixed;
    top: 12px;
    left: 12px;
    width: 35px;
    height: 35px;
    background: rgba(59, 153, 214, 0.8);
    -webkit-box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.3);
    box-shadow: 0 0 5px 0 rgba(51, 51, 51, 0.3);
    z-index: 1000;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media (min-width: 992px) {
    .k-nav-toggle {
        right: 50px;
        top: 42px;
    }
}

@media (min-width: 992px) {
    .k-nav-toggle {
        display: none;
    }
}

.k-nav-toggle span,
.k-nav-toggle span:after,
.k-nav-toggle span:before {
    position: relative;
    display: block;
    width: 25px;
    height: 4px;
    top: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
}

.k-nav-toggle span:after,
.k-nav-toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -7px;
}

.k-nav-toggle span:after {
    top: 7px;
}

.k-nav-toggle:hover {
    cursor: pointer;
}

.k-nav-toggle.active {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.k-nav-toggle.active span {
    background-color: transparent;
}

.k-nav-toggle.active span:before {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 0;
    background-color: #fff;
}

.k-nav-toggle.active span:after {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 0;
    background-color: #fff;
}

.k-nav.k-nav-fixed {
    position: fixed;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.k-nav.k-nav-fixed .k-nav-logo {
    top: 0;
}

.k-nav.k-nav-fixed .k-nav-links li.active a {
    color: #3B99D6;
}

.k-nav.k-nav-fixed .k-nav-links li a {
    color: #888;
    padding: 22px 10px 18px;
}

.k-nav.k-nav-fixed .k-nav-links li a:hover {
    color: #3B99D6;
}

.overflow-hid {
    overflow: hidden !important;
}

ul.breadcrumbs {
    margin-top: 10px;
}

ul.breadcrumbs li {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

ul.breadcrumbs li:last-child {
    font-weight: 300;
}

ul.breadcrumbs li:last-child:after {
    content: none;
}

ul.breadcrumbs li + li {
    margin-left: 30px;
}

ul.breadcrumbs li:after {
    content: '/';
    color: #fff;
    font-size: 18px;
    position: absolute;
    top: 0;
    right: -20px;
}

@media (min-width: 992px) {
    .k-nav li.dropdown:hover a + .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        pointer-events: all;
    }
}

.k-nav li.dropdown .dropdown-menu {
    background: #222;
    min-width: 100%;
    position: relative;
    float: none;
    width: auto;
    padding: 0;
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    -webkit-animation: fadeIn 0.5s ease;
    animation: fadeIn 0.5s ease;
}

@media (min-width: 992px) {
    .k-nav li.dropdown .dropdown-menu {
        display: block;
        background: #FCFCFC;
        position: absolute;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
        -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;
        pointer-events: none;
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
    }
}

.k-nav li.dropdown .dropdown-menu li {
    display: block;
    margin: 0;
}

.k-nav li.dropdown .dropdown-menu li a {
    color: #fff;
    padding-left: 40px;
}

@media (min-width: 992px) {
    .k-nav li.dropdown .dropdown-menu li a {
        color: #333;
        padding: 10px 20px;
    }
}

.k-nav li.dropdown .dropdown-menu li a:hover {
    color: #3B99D6;
}

/* Owl Carousel
// ====================*/

.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* 
* 	Owl Carousel - Auto Height Plugin
*/

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/* 
*  Core Owl Carousel CSS File
*/

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 35px;
    height: 35px;
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
    display: none;
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    will-change: transform;
    float: left;
    -webkit-backface-visibility: hidden;
}

/*
* Owl Navigation
*/

.owl-nav {
    width: 95px;
    position: absolute;
    top: -35px;
    right: -5px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-nav [class*='owl-'] {
    padding: 4px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font: 47px/50px "FontAwesome";
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.owl-prev {
    left: 0;
    top: 0;
    color: #333;
    border: 1px solid #3B99D6;
}

.owl-prev:hover {
    background: #3B99D6;
    color: #fff;
}

.owl-prev:before {
    content: '\f104';
    font-family: "FontAwesome";
    font-size: 24px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.owl-next {
    right: 0;
    top: 0;
    color: #333;
    border: 1px solid #3B99D6;
}

.owl-next:hover {
    background: #3B99D6;
    color: #fff;
}

.owl-next:before {
    content: '\f105';
    font-family: "FontAwesome";
    font-size: 24px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Owl dots */

.owl-dots {
    text-align: center;
    position: absolute;
    bottom: -30px;
    width: 100%;
}

.owl-controls .owl-dot {
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    position: relative;
    width: 14px;
    height: 14px;
    -webkit-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
    outline: none;
    cursor: pointer;
    background-color: #3B99D6;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    opacity: 0.5;
}

.owl-controls .owl-dot.active {
    opacity: 1;
}

.owl-controls .owl-dot + .owl-dot {
    margin-left: 12px;
}

.slider-brand {
    margin-top: 30px;
}

.slider_blog {
    margin-bottom: 20px;
}

.slider_rel_proj {
    margin-top: 20px;
    margin-bottom: 20px;
}

.slider_rel_proj .owl-dots {
    bottom: -45px;
}

/* ToTop
// ====================*/

.toTopButton {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
    line-height: 46px;
    text-align: center;
    color: #FFF;
    background: #3B99D6;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
    visibility: hidden;
    z-index: 1200;
    -webkit-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
}

.toTopButton:before {
    font-family: FontAwesome;
    content: '\f106';
}

.toTopButton:hover,
.toTopButton:focus {
    color: #FFF;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    text-decoration: none;
}

.toTopButton--active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@media (min-width: 768px) {
    .toTopButton {
        right: 34px;
        bottom: 34px;
    }
}

/* Switcher
// ====================*/

#style-switcher {
    display: none;
    max-width: 220px;
    background: #fff;
    padding: 18px 10px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    left: 0;
    position: fixed;
    top: 150px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 70;
}

@media (min-width: 768px) {
    #style-switcher {
        display: block;
    }
}

#style-switcher.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

#style-switcher h6 {
    color: #333;
}

#style-switcher .toggle-switcher {
    background: #3B99D6;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    right: -50px;
    top: 0;
}

#style-switcher .icon {
    color: #fff;
    font-size: 26px;
    left: 12px;
    position: absolute;
    top: 12px;
}

#style-switcher .colors,
#style-switcher .layout-bg {
    margin-top: 5px;
    margin-bottom: -5px;
}

#style-switcher .colors li,
#style-switcher .layout-bg li {
    display: inline-block;
    margin: 5px;
}

#style-switcher .colors li a,
#style-switcher .layout-bg li a {
    border-radius: 50px;
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
    -webkit-box-shadow: 0 2px 0px 0 rgba(34, 34, 34, 0.2);
    box-shadow: 0 2px 0px 0 rgba(34, 34, 34, 0.2);
}

#style-switcher .colors li a:focus,
#style-switcher .colors li a:hover,
#style-switcher .layout-bg li a:focus,
#style-switcher .layout-bg li a:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#style-switcher .layout-bg li a img {
    border-radius: 50%;
}

#style-switcher .style1 {
    background: #3B99D6;
}

#style-switcher .style2 {
    background: #E67E22;
}

#style-switcher .style3 {
    background: #07aaa5;
}

#style-switcher .style4 {
    background: #8E44AD;
}

#style-switcher .style5 {
    background: #ed145b;
}

#style-switcher .style6 {
    background: #677999;
}

#style-switcher .style7 {
    background: #2ECC71;
}

#style-switcher .style8 {
    background: #fe4819;
}

#style-switcher [class*="switcher-"]:not(.only-boxed) {
    background: #fff;
    position: relative;
    z-index: 1;
}

#style-switcher [class*="switcher-"] + [class*="switcher-"] {
    margin-top: 17px;
}

#style-switcher .layout {
    margin-top: 10px;
}

#style-switcher .layout li {
    display: inline-block;
    cursor: pointer;
    padding: 5px 15px;
    background: transparent;
    color: #333;
    font-size: 20px;
}

#style-switcher .layout li.active {
    background: #3B99D6;
    color: #fff;
}

.switcher-layout-bg {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
}

.boxed .switcher-layout-bg {
    max-height: 110px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.parallax-bg {
    position: relative;
    z-index: 2;
}

[data-vide-bg] > div {
    z-index: 0 !important;
}

/*
* Js form
// ================ */

.js-form input:required:valid {
    border-color: #1FB51D;
}

.js-form input:-webkit-autofill {
    background-color: red !important;
    color: red !important;
}

.js-result {
    position: fixed;
    bottom: -100px;
    padding: 8px 20px;
    color: #fff;
    background-color: gray;
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 3px;
    -webkit-box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
    z-index: 1200;
}

.js-result.success,
.js-result.error {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.js-result.success {
    background-color: #1FB51D;
}

.js-result.error {
    background-color: #EC6F28;
}

.form-resault {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -100px;
    padding: 8px 20px;
    background-color: gray;
    color: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 1px 4px 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
    opacity: 0;
}

.form-resault.correct {
    background-color: #1FB51D;
    bottom: 20px;
    opacity: 1;
}

.form-resault.incorrect {
    background-color: #EC6F28;
    bottom: 20px;
    opacity: 1;
}

.input-error {
    position: relative;
}

.input-error .form-control {
    border-color: #E22E25;
}

/*
* Map
// ================ */

.map {
    width: 100%;
    height: 250px;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .map {
        height: 400px;
    }
}

.map .gm-style-iw {
    color: #000;
}

/*
* Progress Bar
// ============== */

.progress-wrapper {
    position: relative;
    text-align: left;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .progress-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}

.progress-wrapper .progress {
    margin-bottom: 0;
    height: 5px;
    background: #edf4f8;
    overflow: visible;
}

.progress-wrapper .progress .progress-bar {
    height: 100%;
    width: 0%;
    -webkit-transition: width 1.4s ease;
    -o-transition: width 1.4s ease;
    transition: width 1.4s ease;
    background: #3B99D6;
    position: relative;
}

.progress-wrapper .progress .progress-bar-counter {
    text-align: center;
    display: inline-block;
    position: absolute;
    width: 36px;
    right: 0;
    top: -3px;
    z-index: 5;
    padding: 1px 6px;
}

.progress-wrapper .progress .progress-bar-counter:after {
    content: '%';
}

/* Counter
// ====================*/

.count-on {
    position: relative;
    z-index: 1;
}

.count-on .counter-data {
    margin: 20px 0;
}

@media (min-width: 768px) {
    .count-on .counter-data {
        margin: 0;
    }
}

.count-on .counter-data .icon {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 40px;
    color: #fff;
    margin: 0 auto;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.count-on .counter-data .icon + * {
    margin-top: 15px;
}

.count-on .counter {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.count-on .counter + * {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .count-on .counter {
        font-size: 44px;
    }
}

/*
// Accordion
// ================ */

.accordion {
    margin-bottom: 10px;
    text-align: left;
}

.accordion-title {
    cursor: pointer;
    position: relative;
    height: 43px;
    padding: 12px 28px 12px 18px;
    background: rgba(66, 78, 92, 0.1);
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    z-index: 2;
    will-change: transform;
}

.accordion-title:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    width: 70px;
    background: #3B99D6;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    opacity: 0.4;
    z-index: -1;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.accordion-title:hover {
    color: #333;
}

.accordion-title:hover:after {
    width: 120px;
}

.accordion-title ~ .accordion-title {
    margin-top: 20px;
}

.accordion-title.active {
    color: #333;
}

.accordion-title.active:after {
    width: 85%;
}

.accordion-title + .accordion-inner {
    margin-top: 15px;
    padding: 15px 20px 15px;
    position: relative;
    background: #F7F8FA;
    z-index: 1;
}

/*
// Isotope Styles
// ================ */

.iso.blog-2-col .grid {
    margin-top: -10px;
}

.iso + * {
    margin-top: 20px;
}

.iso figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.iso figure figcaption {
    padding: 20px;
}

.iso figure img {
    height: auto;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.iso .button {
    position: relative;
    display: block;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .iso .button {
        display: inline-block;
    }
}

@media (min-width: 992px) {
    .iso .button {
        margin-left: 0;
    }
}

.iso .button:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    width: 0;
    height: 1px;
    background: #3B99D6;
}

.iso .button:hover:after {
    width: 100%;
}

.iso .button + .button {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .iso .button + .button {
        margin-left: 30px;
        margin-top: 0;
    }
}

@media (min-width: 1800px) {
    .iso .button + .button {
        margin-left: 60px;
    }
}

.iso .button:active,
.iso .button.is-checked {
    outline: none;
}

.iso .button:active:after,
.iso .button.is-checked:after {
    width: 100%;
}

.iso .grid {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .iso .grid {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.iso .grid article {
    background-color: #FFFFFF;
    display: block;
    margin: 15px 0;
    width: 100%;
}

@media (min-width: 480px) {
    .iso .grid article {
        margin: 10px 10px;
        width: 48%;
        width: -webkit-calc(50% - 20px);
        width: calc(50% - 20px);
    }
}

@media (min-width: 768px) {
    .iso .grid article {
        margin: 15px;
        width: 30%;
        width: -webkit-calc(33.3333% - 30px);
        width: calc(33.3333% - 30px);
    }
}

.iso .blog-list article {
    width: 100%;
}

@media (min-width: 768px) {
    .iso .blog-list article {
        margin: 10px 10px;
        width: 48%;
        width: -webkit-calc(50% - 20px);
        width: calc(50% - 20px);
    }
}

/*
// Countdown
// ================ */

* + .countdown {
    margin-top: 80px;
}

.countdown {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-section {
    float: left;
    width: calc(50% - 30px);
    margin: 15px;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    margin-top: 25px;
}

@media (min-width: 768px) {
    .countdown-section:nth-child(2n) {
        margin-top: -25px;
    }
}

.countdown-section:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    width: 106px;
    height: 106px;
    background: #3B99D6;
    opacity: 0.4;
    z-index: -1;
}

@media (min-width: 768px) {
    .countdown-section:after {
        width: 140px;
        height: 140px;
    }
}

@media (min-width: 768px) {
    .countdown-section {
        width: calc(25% - 30px);
        margin: 25px 15px 0;
    }
}

.countdown-amount {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    color: #222;
}

@media (min-width: 768px) {
    .countdown-amount {
        font-size: 60px;
    }
}

.countdown-period {
    display: block;
    padding: 5px 0;
}

.countdown-descr {
    display: block;
    width: 100%;
}

/*
// Header
// ================ */

.main-header {
    position: relative;
}

.first-section {
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding: 80px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media (min-width: 992px) {
    .first-section {
        min-height: 600px;
        height: 100vh;
    }
}

.first-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(9, 9, 9, 0.4);*/
    z-index: -2;
}

.first-section.no-overlay:after {
    content: none;
}

.first-section .container {
    width: 100%;
}

.first-section .btn-primary:hover {
    color: #fff;
}

.first-section * + .btn-block {
    margin-top: 30px;
}

/*
// Main
// ================ */

.main-container {
    position: relative;
}

.main-container:after {
    content: '';
    position: fixed;
    top: -100vh;
    bottom: -100vh;
    left: -100vw;
    right: -100vw;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    z-index: 60;
    pointer-events: none;
}

@media (min-width: 992px) {
    .main-container:after {
        content: none;
    }
}

.main-container.overlay:after {
    opacity: 1;
    pointer-events: all;
}

/*
// Footer
// ================ */

.main-footer .footer-block {
    margin: 20px 0;
}

@media (min-width: 992px) {
    .main-footer .footer-block {
        margin: 0;
    }
}

.main-footer .footer-1 {
    margin-top: -20px;
    margin-bottom: -20px;
    padding-top: 68px;
    padding-bottom: 68px;
    background: #333;
}

.main-footer .footer-1 * + .list-inline {
    margin-top: 20px;
}

.main-footer .footer-1 .list-inline li .icon {
    width: 40px;
    font-size: 16px;
}

.main-footer .footer-1 .divider,
.main-footer .footer-1 html .divider-white,
html .main-footer .footer-1 .divider-white {
    width: 100%;
    height: 1px;
    background: rgba(204, 204, 204, 0.1);
}

.main-footer .footer-1 img + p {
    margin-top: 20px;
}

.main-footer .footer-2 {
    padding: 20px 0;
    background: #222;
}

.main-footer .footer-2 .container:after,
.main-footer .footer-2 .container:before {
    content: none;
}


.services .k-nav-logo img {
    max-width: 100%;
    width: 158px;
}

.services .k-nav-logo {
    max-width: unset !important;
}

.blackt,
.whitet {
    transition: 0.4s all
}

.blackt {
    opacity: 0
}

.icon-block:hover .blackt {
    opacity: 1
}

.icon-block:hover .whitet {
    opacity: 0;
}

.icon-block p {
    font-size: 13px !important;
    text-align: justify;
    letter-spacing: 1px;
    min-height: 104px;
    padding-bottom: 18px;
}

.icon-block-inner:after {
    width: 0px;
    height: 2px;
    background: #1C7C89;
    display: block;
    content: "";
    margin-top: 10px;
    border-radius: 0px;
    transition: 0.5s all;
    transition-timing-function: ease;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.icon-block:hover .icon-block-inner:after {
    width: 100%;
}

/*.col-sm-6.col-md-3.icon-block {
padding-top: 30px;
padding-bottom: 30px;
}
.icon-block:hover {
background: #1C7C89;
}*/

.no-padding {
    padding: 0px;
}










.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

#particles-js {
    width: 100%;
    height: 100%;
    /*background-color: #b61924;*/
    background-image: url('woman.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

#particles-js canvas {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}

#contact-model .contact-form.row {
    padding: 10px 13px;
}

#contact-model .modal-content {
    border-radius: 0px;
}



.hire-btn{width:200px; font-size: 19px;}
.main-container .first-section .container-fluid{

    padding: 30px 0;
    width:100%;
}
.main-container .first-section .container-fluid .logo {
    max-width: 100%;
}
.k-nav-logo img{display:none;}
#playvideo .modal-body{padding:0px;border: 4px solid #00865f;}
#playvideo .modal-body iframe{
    width: 100%;
    height: 400px;
}
#playvideo .cross-video {
    color: #fff;
    position: absolute;
    top: 0px;
    z-index: 996;
    right: 0px;
    font-size: 22px;
    padding: 3px 7px 5px 10px;
    background: #00865f;
}
/*
html {
    overflow: -moz-scrollbars-none; }
    */

    body::-webkit-scrollbar {
        display: none; }


        a:hover,
        a:focus,
        h1 a:focus, h1 a:hover, h2 a:focus, h2 a:hover, h3 a:focus, h3 a:hover, h4 a:focus, h4 a:hover, h5 a:focus, h5 a:hover, h6 a:focus, h6 a:hover, .h1 a:focus, .h1 a:hover, .h2 a:focus, .h2 a:hover, .h3 a:focus, .h3 a:hover, .h4 a:focus, .h4 a:hover, .h5 a:focus, .h5 a:hover, .h6 a:focus, .h6 a:hover,
        html body .text-primary,
        .marked-list > li span:before,
        .index-list > li.index-list-counter:before,
        .features-block .icon,
        .video-section .icon,
        .img-links a,
        cite,
        .quote:before,
        .blog-post .post-text .post-data > * .icon,
        .post-meta a span,
        .comments-list .comment-btns a:hover,
        address a .icon,
        .pagination-line li a,
        .widget-categories .categories-list li:before,
        .k-nav.k-nav-fixed .k-nav-links li.active a,
        .k-nav.k-nav-fixed .k-nav-links li a:hover,
        .k-nav li.dropdown .dropdown-menu li a:hover {
            color: #3CB994;
        }

        #page-preloader,
        .bg-primary,
        .side-shapes:after,
        .side-shapes:before,
        .btn-primary:after,
        .contact-wrap .icon:after,
        .list-inline li .icon:after,
        .divider, .divider-white,
        .features-wrap .after-circle span,
        .pagination-line li a.current,
        .img-links:after,
        .page-404 span:after,
        .owl-prev:hover,
        .owl-next:hover,
        .owl-controls .owl-dot,
        .toTopButton,
        #style-switcher .toggle-switcher,
        #style-switcher .layout li.active,
        .progress-wrapper .progress .progress-bar,
        .accordion-title:after,
        .iso .button:after,
        .countdown-section:after {
            background: #00865f;
        }

        .btn-primary,
        .btn-primary:hover,
        .video-wrap,
        .form-control:focus,
        .pagination-line li a.current,
        .pagination-line li a:hover,
        .text-marked,
        .owl-prev,
        .owl-next {
            border-color: #00865f;
        }

        .side-triangles:before,
        .features-left-col .features-block:nth-child(1):after,
        .features-right-col .features-block:nth-child(2):after,
        .features-left-col .features-block:nth-child(3):after,
        .pricing-box:before {
            border-color: transparent #136A86 transparent transparent;
        }

        .side-triangles:after,
        .features-right-col .features-block:nth-child(1):after,
        .features-left-col .features-block:nth-child(2):after,
        .features-right-col .features-block:nth-child(3):after,
        .features-right-col .features-block:nth-child(3):after,
        .pricing-box:after {
            border-color: transparent transparent transparent #3CB994;
        }

        .icon-wrap:before {
            border-color: transparent transparent #1C7C89 transparent;
        }

        .icon-wrap:after {
            border-color: #63C7A9 transparent transparent transparent;
        }

        .w-93 {
            width: 93%;
        }
        .w-95 {
            width: 95%;
        }
        .w-89 {
            width: 89%;
        }
        .w-92 {
            width: 92%;
        }
        .w-96 {
            width: 96%;
        }
        .w-90 {
            width: 90%;
        }


        .services-block .modal-dialog{
            width: 100%;
            max-width: 100%;
            margin: 0px auto;
            height: auto;
            box-shadow: none;
        }
        .services-block {
            padding-right: 0px;
            margin: -1px;
            background: #fff
        }
        .services-block .modal-dialog .modal-content{
            border-radius: 0px;
            height: 100%;
            box-shadow: none;
            border: none;
        }
        .services-block .side-shapes::before,
        .services-block .side-shapes::after{
            width: 130px;
            height: 130px;
        }
        .close-service{
            position: absolute;
            top: 10px;
            left: 30px;
            z-index: 9999999;
            opacity: 1;
            width:40px;
        }
        .close-service img{
            border: 1px solid #00865f;
            padding: 4px 5px;
            border-radius: 50%;
            transition: 0.3s all;
            transform: rotate(0deg);
        }
        .close-service:hover img{
            transform: rotate(360deg);
        }
        .development-image {
            padding: 8px;
            border: 2px solid #00865f;
        }
        .service-icon {
            font-size: 28px;
            color: #3CB994;
            }
        #webdevelopment, #wordpress, #graphics, #support, #smm, #seo {
           border-bottom: 6px solid #00865f;
        }

.rotate-logo{
    animation-name: rotatelogo ;
       animation-duration: 13s;
       animation-iteration-count: infinite;
       -webkit-animation-timing-function: linear;
}

@keyframes rotatelogo {

          from { 
              transform: rotate(0deg); 
            } to { 
            transform: rotate(360deg); 
            }
      }