/*----------------------------------------------------------------------------------------
                        BACKGROUND STYLES
-----------------------------------------------------------------------------------------*/

.bg,
.nav-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-position: center;
}

.alt-bg {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.parallax {
    overflow: hidden;
}

.bg-type-cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.background-style-cover {
    background-size: cover;
    -webkit-background-size: cover;
}

.background-style-auto {
    background-size: auto;
}

.background-style-contain {
    background-size: contain;
    -webkit-background-size: contain;
}

.half-container-left {
    position: absolute;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 50%;
    z-index: 0;
    background-position: top right;
}

.upper-text {
    text-transform: uppercase;
}

#preloader img {
    margin: auto;
    display: block;
    /*width: 50%;*/
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (max-width: 992px) {
    .flex-vertical-middle {
        display: block;
    }
}


/*----------------------------------------------------------------------------------------
                        COMMON STYLES
-----------------------------------------------------------------------------------------*/

body {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #444;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#wrap {
    overflow: hidden;
}

section,
header,
footer {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

a,
a:hover,
a:focus,
.active a {
    color: #222;
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

a:hover,
a:focus,
.active a {
    color: #00a7ff;
}

.dark a {
    color: #fff;
}

.dark a:hover,
.dark a:focus,
.dark .active a {
    color: #00ceff;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-family: 'Lato', sans-serif;
    font-weight: lighter;
    margin: 0 0 30px 0;
}

h1 {
    color: #504ABC;
    font-size: 80px;
    font-weight: 100;
}

h2 {
    color: #504ABC;
    font-size: 36px;
    font-weight: 300;
}

h3 {
    color: #504ABC;
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 20px;
}

h4 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4 {
    color: #fff;
}

.dark {
    color: #fff;
}

ul {
    margin: 0;
    padding: 0px;
    list-style: none;
}

code {
    padding: 20px 20px 20px 80px;
    display: block;
    position: relative;
    text-align: left;
    border-radius: 15px;
    border: 1px solid #e8e8e8;
    color: #03C;
    background: none;
    overflow: auto;
}

code:before {
    content: '</>';
    font-size: 16px;
    font-weight: bold;
    padding-top: 20px;
    display: block;
    position: absolute;
    width: 60px;
    left: 0px;
    top: 0;
    bottom: 0;
    text-align: center;
    color: #ccc;
    background: #f8f8f8;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-color: rgba(0, 0, 0, 0.15);
}

.dark hr {
    border-color: rgba(255, 255, 255, 0.4);
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dark .table > thead > tr > th,
.dark .table > tbody > tr > th,
.dark .table > tfoot > tr > th,
.dark .table > thead > tr > td,
.dark .table > tbody > tr > td,
.dark .table > tfoot > tr > td {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table-hover > tbody > tr:hover {
    background-color: rgba(0, 0, 0, 0.025);
}

.dark .table-hover > tbody > tr:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

::-moz-selection {
    background: #00c0ff;
    color: #fff;
}

::selection {
    background: #00c0ff;
    color: #fff;
}

::-moz-selection {
    background: #00c0ff;
    color: #fff;
}

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

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

@media (max-width: 992px) {
    body {
        text-align: center;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 18px;
    }
    .text-md-left,
    .text-md-right {
        text-align: center;
    }
}


/*----------------------------------------------------------------------------------------
                        GRID STYLES
-----------------------------------------------------------------------------------------*/

.col-xs-20,
.col-sm-20,
.col-md-20,
.col-lg-20 {
    position: relative;
    min-height: 1px;
    padding-right: 30px;
    padding-left: 30px;
}

.col-xs-20 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-20 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-20 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-20 {
        width: 20%;
        float: left;
    }
}


/*----------------------------------------------------------------------------------------
                        FLEX BOX STYLES
-----------------------------------------------------------------------------------------*/

.flex-md-vmiddle,
.flex-vmiddle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-md-vmiddle-hjustify {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .flex-md-vmiddle,
    .flex-md-vmiddle-hjustify {
        display: block;
    }
    .flex-md-vmiddle-hjustify > * {
        padding: 20px;
        max-width: 100%;
        display: block;
    }
}


/*----------------------------------------------------------------------------------------
                        PADDING-MARGIN STYLES
-----------------------------------------------------------------------------------------*/

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-75 {
    padding-top: 75px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-125,
.pt-md-125 {
    padding-top: 125px;
}

.pb-125,
.pb-md-125 {
    padding-bottom: 125px;
}

.pt-150,
.pt-md-150 {
    padding-top: 150px;
}

.pb-150,
.pb-md-150 {
    padding-bottom: 150px;
}

.pt-200,
.pt-md-200 {
    padding-top: 200px;
}

.pb-200,
.pb-md-200 {
    padding-bottom: 200px;
}

.pt-250,
.pt-md-250 {
    padding-top: 250px;
}

.pb-250,
.pb-md-250 {
    padding-bottom: 250px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-75 {
    margin-top: 75px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mt-100,
.mt-md-100 {
    margin-top: 100px;
}

.mb-100,
.mb-md-100 {
    margin-bottom: 100px;
}

.mt-125,
.mt-md-125 {
    margin-top: 125px;
}

.mb-125,
.mb-md-125 {
    margin-bottom: 125px;
}

.mt-150,
.mt-md-150 {
    margin-top: 150px;
}

.mb-150,
.mb-md-150 {
    margin-bottom: 150px;
}

.mt-200,
.mt-md-200 {
    margin-top: 200px;
}

.mb-200,
.mb-md-200 {
    margin-bottom: 200px;
}

.mt-250,
.mt-md-250 {
    margin-top: 250px;
}

.mb-250,
.mb-md-250 {
    margin-bottom: 250px;
}

.no-side-pad [class^=col-] {
    padding-left: 0;
    padding-right: 0;
}

.row [class^=col-] .content-box:last-child,
.row [class^=col-] > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .pt-250,
    .pt-200,
    .pt-150,
    .pt-125 {
        padding-top: 100px;
    }
    .pb-250,
    .pb-200,
    .pb-150,
    .pb-125 {
        padding-bottom: 100px;
    }
    .mt-250,
    .mt-200,
    .mt-150,
    .mt-125 {
        margin-top: 100px;
    }
    .mb-250,
    .mb-200,
    .mb-150,
    .mb-125 {
        margin-bottom: 100px;
    }
    .row:not(.no-pad) [class^=col-] {
        margin-bottom: 40px;
    }
    .row [class^=col-]:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .row [class^=col-] > *:last-child {
        margin-bottom: 0;
    }
    [class*=pb-md-] {
        padding-bottom: 0;
    }
    [class*=pt-md-] {
        padding-top: 0;
    }
    [class*=mt-md-] {
        margin-top: 0;
    }
    [class*=mb-md-] {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .pt-150,
    .pt-125 {
        padding-top: 80px;
    }
    .pt-100 {
        padding-top: 60px;
    }
    .pb-150,
    .pb-125 {
        padding-bottom: 80px;
    }
    .pb-100 {
        padding-bottom: 60px;
    }
    .pb-75 {
        padding-bottom: 50px;
    }
    .pt-75 {
        padding-top: 50px;
    }
    .pb-50 {
        padding-bottom: 25px;
    }
    .pt-50 {
        padding-top: 25px;
    }
    .mt-150,
    .mt-125 {
        margin-top: 80px;
    }
    .mt-100 {
        margin-top: 60px;
    }
    .mt-75 {
        margin-top: 50px;
    }
    .mb-150,
    .mb-125 {
        margin-bottom: 80px;
    }
    .mb-100 {
        margin-bottom: 60px;
    }
    .mb-75 {
        margin-bottom: 50px;
    }
    .mb-50 {
        margin-bottom: 25px;
    }
    .mt-50 {
        margin-top: 25px;
    }
}


/*----------------------------------------------------------------------------------------
                        FORM STYLES
-----------------------------------------------------------------------------------------*/

form {
    margin-bottom: 30px;
}

.form-group input,
.input-group input,
.form-group textarea,
button {
    color: #222;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.form-control {
    font-size: inherit;
    border-radius: 0;
    padding: 12px;
    height: 50px;
    line-height: 25px;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
    outline: 0;
    border-color: rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 0, 0, 0.3);
}

.dark .form-control {
    border-color: #fff;
}

.dark .form-group input:focus,
.dark .form-group textarea:focus,
.dark .form-group select:focus {
    border-color: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.3);
}

textarea.form-control {
    resize: vertical;
}

.input-group {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dark .input-group {
    border-color: transparent;
}

.input-group input,
.input-group input:focus,
.input-group button:focus,
.dark .input-group input:focus,
.dark .input-group button:focus {
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
    outline: 0;
    border-color: transparent;
}

.input-group-btn,
.input-group-btn .btn,
.input-group-addon {
    font-size: inherit;
    font-weight: inherit;
    border-radius: 0;
}

.input-group-btn .btn-link,
.dark .input-group-btn .btn-link,
.dark .input-group-btn .btn-link:hover,
.dark .input-group-btn .btn-link:focus {
    color: #444;
    background: #fff;
}

.input-group-addon {
    border: 0;
}

.select-group select::-ms-expand {
    display: none;
}

.select-group select {
    outline: none;
    box-shadow: none;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    cursor: pointer;
}

.select-group {
    position: relative
}

.select-group:before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 4px 4px;
    border-color: transparent transparent #888 transparent;
}

.select-group:hover:before {
    border-color: transparent transparent #444 transparent;
}

.select-group:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: 2px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #888 transparent transparent transparent;
}

.select-group:hover:after {
    border-color: #444 transparent transparent transparent;
}

.select-group:before,
.select-group:after {
    -webkit-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}

.placeholdersjs,
option[disabled] {
    color: #aaa !important;
}

form label.error {
    display: block;
    font-size: 0.8em;
    font-weight: bold;
    position: relative;
    margin: 0;
    color: #e44646;
    padding: 5px 0px;
}

form label.valid {
    display: none !important;
}

input.form-control.error,
textarea.form-control.error,
select.form-control.error,
.input-group.error,
.dark .input-group.error,
.dark input.form-control.error,
.dark textarea.form-control.error,
.dark select.form-control.error {
    border-bottom-color: #e44646;
}


/* Hiding default checkbox and Radio button design */

input[type=checkbox],
input[type=radio] {
    opacity: 0;
    position: absolute;
    z-index: 12;
    width: 20px;
    height: 20px;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    margin-left: 0;
}


/* Disable outline when clicked*/

input[type=checkbox]:checked,
input[type=radio]:checked,
input[type=checkbox]:focus,
input[type=radio]:focus {
    outline: none !important;
}

input[type=checkbox]+.lbl,
input[type=radio]+.lbl {
    position: relative;
    z-index: 10;
    display: inline-block;
    margin: 0;
    padding-left: 24px;
    line-height: 20px;
    min-height: 20px;
    min-width: 25px;
}


/* Basic Checkbox styles */

input[type=checkbox]+.lbl::before,
input[type=radio]+.lbl::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    height: 18px;
    width: 18px;
    top: 1px;
    left: 0;
}

input[type=checkbox].error+.lbl::before,
input[type=radio].error+.lbl::before {
    border: 1px solid #e44646;
}

.dark input[type=checkbox]+.lbl::before,
.dark input[type=radio]+.lbl::before {
    border-color: #fff;
}

input[type=checkbox]+.lbl::after,
input[type=radio]+.lbl::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #444;
    border: none;
    border-radius: 0;
    height: 4px;
    width: 4px;
    top: 8px;
    left: 7px;
    opacity: 0;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}


/* Checked state styles */

input[type=checkbox]:checked+.lbl::after,
input[type=radio]:checked+.lbl::after {
    height: 14px;
    width: 14px;
    top: 3px;
    left: 2px;
    opacity: 1;
}


/* Hover state styles */

input[type=checkbox]:hover+.lbl::after,
input[type=radio]:hover+.lbl::after,
input[type=checkbox]+.lbl:hover::after,
input[type=radio]+.lbl:hover::after {
    opacity: 1;
}


/* Disabled state styles */

input[type=checkbox]:disabled+.lbl::before,
input[type=radio]:disabled+.lbl::before,
input[type=checkbox][disabled]+.lbl::before,
input[type=radio][disabled]+.lbl::before,
input[type=checkbox].disabled+.lbl::before,
input[type=radio].disabled+.lbl::before,
input[type=checkbox]:disabled+.lbl::after,
input[type=radio]:disabled+.lbl::after,
input[type=checkbox][disabled]+.lbl::after,
input[type=radio][disabled]+.lbl::after,
input[type=checkbox].disabled+.lbl::after,
input[type=radio].disabled+.lbl::after {
    background-color: #eee !important;
    border-color: #eee !important;
    box-shadow: none !important;
}


/* Styles for Radio button */

input[type=radio]+.lbl::before {
    border-radius: 50%;
}

input[type=radio]+.lbl::after {
    border-radius: 50%;
}

input[type=radio]:checked+.lbl::after {
    opacity: 1;
}

.radio,
.checkbox {
    margin-top: 15px;
    margin-bottom: 15px;
}

.radio-inline,
.radio label,
.checkbox label {
    padding-left: 0;
    font-weight: inherit;
}

.input-sm,
select.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 0.8em;
    line-height: 20px;
}

.input-sm.select-group:before {
    top: 14px;
}

.input-sm.select-group:after {
    top: 22px;
}

textarea.input-sm,
textarea.input-lg {
    line-height: 1.5;
}

.input-lg,
select.input-lg {
    height: 70px;
    padding: 20px 25px;
    font-size: 1.2em;
    line-height: 30px;
}

form + p {
    margin-top: 30px;
}

.form-container {
    padding: 35px 30px 30px 30px;
}

.form-container .form-control {
    padding-left: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    background-color: transparent;
    border-color: transparent;
}

.form-container .form-group {
    margin-bottom: 10px;
}


/*----------------------------------------------------------------------------------------
                        BUTTONS STYLES
-----------------------------------------------------------------------------------------*/

.btn {
    font-size: inherit;
    -webkit-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    border-radius: 1px;
    padding: 0px 20px;
    font-weight: inherit;
    line-height: 48px;
    height: 50px;
    margin: 4px 4px 0 0;
}

.btn.btn-block {
    margin-right: 0;
}

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

.dark .btn,
.dark .btn:hover,
.dark .btn:focus,
.dark .btn:active:focus,
.dark .btn.active:focus {
    color: inherit;
}

.btn-lg,
.btn-group-lg > .btn {
    height: 70px;
    padding: 0px 25px;
    font-size: 1.2em;
    line-height: 67px;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 0px 10px;
    height: 30px;
    line-height: 27px;
}

.btn-xs,
.btn-group-xs > .btn {
    padding: 0px 6px;
    font-size: 0.8em;
    height: 22px;
    line-height: 20px;
}

.btn-primary {
    background: #07bcf7;
    border-color: #07bcf7;
    color: #fff !important;
}

.dark .btn-primary {
    background: #07bcf7;
    border-color: #07bcf7;
    color: #fff !important;
}

.btn.btn-image {
    padding: 0px;
    height: auto;
    border: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.focus,
.btn-primary.active,
.btn-primary:active:hover,
.btn-primary.active:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.btn-primary:active.focus,
.btn-primary.active.focus {
    background: #039dd0;
    border-color: #0493c3;
}

.dark .btn-primary:hover,
.dark .btn-primary:focus,
.dark .btn-primary:active,
.dark .btn-primary.focus,
.dark .btn-primary.active,
.dark .btn-primary:active:hover,
.dark .btn-primary.active:hover,
.dark .btn-primary:active:focus,
.dark .btn-primary.active:focus,
.dark .btn-primary:active.focus,
.dark .btn-primary.active.focus {
    background: #039dd0;
    border-color: #0493c3;
}

.btn-default,
a.btn-default {
    border: 1px solid #444;
    color: #444;
    background: none;
}

.dark .btn-default,
.dark a.btn-default {
    border: 1px solid #fff;
    color: #fff;
    background: none;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.focus,
.btn-default.active,
.btn-default:active:hover,
.btn-default.active:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.btn-default:active.focus,
.btn-default.active.focus {
    border: 1px solid #444;
    color: #444;
    background: none;
}

.dark .btn-default:hover,
.dark .btn-default:focus,
.dark .btn-default:active,
.dark .btn-default.focus,
.dark .btn-default.active,
.dark .btn-default:active:hover,
.dark .btn-default.active:hover,
.dark .btn-default:active:focus,
.dark .btn-default.active:focus,
.dark .btn-default:active.focus,
.dark .btn-default.active.focus {
    border: 1px solid #fff;
    color: #fff;
    background: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus {
    color: inherit;
    text-decoration: inherit;
}

.btn [class^=icon-] {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    top: -1px;
}

.input-group-btn > .btn,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
    margin: 0;
}

.input-group-btn > .btn.btn-link {
    margin-left: -1px;
}

form .btn {
    margin: 4px 0 0;
}


/*----------------------------------------------------------------------------------------
                        TOGGLES STYLES
-----------------------------------------------------------------------------------------*/

.panel {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
}

a.panel-heading {
    display: block;
    position: relative;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: rgba(0, 0, 0, 0.1);
    padding: 20px 40px 20px 0px;
    text-align: left;
}

a.panel-heading > * {
    margin: 0;
}

a.panel-heading:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    right: 5px;
    height: 10px;
    width: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

a.panel-heading.collapsed:after {
    margin-top: -6px;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.panel-body {
    padding: 20px 0;
}

.dark a.panel-heading:after,
.dark .panel-group .panel-heading + .panel-collapse > .panel-body,
.dark a.panel-heading {
    border-color: rgba(255, 255, 255, 0.5);
}


/*----------------------------------------------------------------------------------------
                        BACKGROUND STYLES
-----------------------------------------------------------------------------------------*/

.section-bg,
.nav-bg,
.half-container-left,
.half-container-right {
    position: absolute;
    overflow: hidden;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.bg-type-cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-type-contain {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.bg-type-pattern {
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
}

.bg-type-full-height {
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.parallax-bg {
    top: -25%;
    bottom: -25%;
}

.half-container-left {
    right: 50%;
    z-index: 0;
    background-position: top right;
}

.half-container-right {
    left: 50%;
    z-index: 0;
    background-position: top left;
}

@media (max-width: 992px) {
    .half-container-left,
    .half-container-right {
        position: relative;
        left: auto;
        right: auto;
        padding-bottom: 56%;
        margin-top: 30px;
    }
}


/*----------------------------------------------------------------------------------------
                        TEXT STYLES
----------------------------------------------------------------------------------------*/

small {
    display: inline-block;
    line-height: 1.5;
}

.desc-text {
    opacity: 0.5;
}

.mark,
mark {
    background-color: #ffff60;
    color: #000;
    padding: 0;
}

.dark .mark,
.dark mark {
    background-color: #ffff60;
    color: #000;
}

.text-list li,
.text-icon-list li {
    padding: 5px 0;
}

.text-icon-list li {
    position: relative;
    padding-left: 30px;
}

.text-icon-list li > i:first-child,
.text-icon-list li > * > i:first-child {
    position: absolute;
    left: 0;
    margin-top: 3px;
    display: block;
}

.compressed-box-75 {
    width: 75%;
}

.compressed-box-50 {
    width: 50%;
}

.compressed-box-33 {
    width: 33%;
}

.compressed-box-25 {
    width: 25%;
}

[class*=compressed-box-],
.text-left [class*=compressed-box-],
.text-left[class*=compressed-box-] {
    margin-left: 0;
    margin-right: auto;
}

.text-center [class*=compressed-box-],
.text-center[class*=compressed-box-] {
    margin-left: auto;
    margin-right: auto;
}

.text-right [class*=compressed-box-],
.text-right[class*=compressed-box-] {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 992px) {
    [class*=compressed-box-] {
        margin-left: auto;
        margin-right: auto;
    }
    .text-icon-list li {
        padding-left: 0;
    }
    .text-icon-list li > i:first-child,
    .text-icon-list li > * > i:first-child {
        position: relative;
        left: auto;
        display: inline-block;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    [class*=compressed-box-] {
        width: auto;
    }
}


/*----------------------------------------------------------------------------------------
                        SCREENS STYLES
----------------------------------------------------------------------------------------*/

.screen,
.owl-carousel .owl-item img.screen {
    max-width: 100%;
    height: auto;
}

.owl-carousel .owl-item img.screen {
    display: inline-block;
    width: auto;
}


/*----------------------------------------------------------------------------------------
										ICON STYLES
----------------------------------------------------------------------------------------*/

.icon-color {
    color: #EF9FFF;
}

.icon-size-m {
    font-size: 20px;
}

.icon-size-l {
    font-size: 40px;
}

.icon-size-xl {
    font-size: 60px;
    display: inline-block;
}

.icon-position-left {
    margin-right: 10px;
}

.icon-position-right {
    margin-left: 10px;
}

.btn-sm .icon-position-left,
nav.navbar .btn .icon-position-left {
    margin-right: 5px;
}

.btn-sm .icon-position-right,
nav.navbar .btn .icon-position-right {
    margin-left: 5px;
}

.btn-lg .icon-position-left {
    margin-right: 15px;
}

.btn-lg .icon-position-right {
    margin-left: 15px;
}


/*----------------------------------------------------------------------------------------
										TITLE STYLES
----------------------------------------------------------------------------------------*/

.title-group {}


/*----------------------------------------------------------------------------------------
										CONTENT BOX STYLES
----------------------------------------------------------------------------------------*/

.content-box {
    position: relative;
    margin-bottom: 60px;
}

.content-box.text-left,
.text-left .content-box,
.content-box.text-md-left,
.text-md-left .content-box {
    padding-left: 50px;
}

.text-md-left .content-box:after {
    content: "";
    display: block;
    height: 0;
    line-height: 0;
    font-size: 0;
    clear: both;
}

.content-box.space-more.text-left,
.text-left .content-box.space-more,
.content-box.space-more.text-md-left,
.text-md-left .content-box.space-more {
    padding-left: 100px;
}

.content-box.text-right,
.text-right .content-box,
.content-box.text-md-right,
.text-md-right .content-box {
    padding-right: 50px;
}

.content-box.space-more.text-right,
.text-right .content-box.space-more,
.content-box.space-more.text-md-right,
.text-md-right .content-box.space-more {
    padding-right: 100px;
}

.content-box.text-center,
.text-center .content-box {
    padding: 0 20px;
    margin-bottom: 80px;
}

.content-box.space-more.text-center,
.text-center .content-box.space-more {
    padding: 0 40px;
    margin-bottom: 100px;
}

.content-box.no-space.text-center,
.text-center .content-box.no-space,
.content-box.no-space.text-left,
.text-left .content-box.no-space,
.content-box.no-space.text-md-left,
.text-md-left .content-box.no-space,
.content-box.no-space.text-right,
.text-right .content-box.no-space,
.content-box.no-space.text-md-right,
.text-md-right .content-box.no-space {
    padding: 0;
}

.content-box .content-icon,
.content-box .content-img {
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1.05;
}

.content-box.text-left .content-icon,
.text-left .content-box .content-icon,
.content-box.text-md-left .content-icon,
.text-md-left .content-box .content-icon {
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    text-align: center;
    overflow: hidden;
}

.content-box.space-more.text-left .content-icon,
.text-left .content-box.space-more .content-icon,
.content-box.space-more.text-md-left .content-icon,
.text-md-left .content-box.space-more .content-icon {
    width: 80px;
}

.content-box.text-left .content-img,
.text-left .content-box .content-img,
.content-box.text-md-left .content-img,
.text-md-left .content-box .content-img {
    position: absolute;
    left: 0;
    top: 5px;
    max-width: 40px;
    height: auto;
}

.content-box.space-more.text-left .content-img,
.text-left .content-box.space-more .content-img,
.content-box.space-more.text-md-left .content-img,
.text-md-left .content-box.space-more .content-img {
    max-width: 80px;
}

.content-box.text-right .content-icon,
.text-right .content-box .content-icon,
.content-box.text-md-right .content-icon,
.text-md-right .content-box .content-icon {
    position: absolute;
    right: 0;
    top: 5px;
    width: 40px;
    text-align: center;
    overflow: hidden;
}

.content-box.space-more.text-right .content-icon,
.text-right .content-box.space-more .content-icon,
.content-box.space-more.text-md-right .content-icon,
.text-md-right .content-box.space-more .content-icon {
    width: 80px;
}

.content-box.text-right .content-img,
.text-right .content-box .content-img,
.content-box.text-md-right .content-img,
.text-md-right .content-box .content-img {
    position: absolute;
    right: 0;
    top: 5px;
    max-width: 40px;
    height: auto;
}

.content-box.space-more.text-right .content-img,
.text-right .content-box.space-more .content-img,
.content-box.space-more.text-md-right .content-img,
.text-md-right .content-box.space-more .content-img {
    max-width: 80px;
}

@media (max-width: 992px) {
    .content-box {
        margin-bottom: 40px;
    }
    .content-box.text-center,
    .text-center .content-box,
    .content-box.space-more.text-center,
    .text-center .content-box.space-more {
        margin-bottom: 40px;
        padding: 0;
    }
    .content-box.text-md-left .content-icon,
    .text-md-left .content-box .content-icon,
    .content-box.text-md-right .content-icon,
    .text-md-right .content-box .content-icon {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
    }
    .content-box.text-md-left .content-img,
    .text-md-left .content-box .content-img,
    .content-box.text-md-right .content-img,
    .text-md-right .content-box .content-img,
    .content-box.space-more.text-md-left .content-img,
    .text-md-left .content-box.space-more .content-img,
    .content-box.space-more.text-md-right .content-img,
    .text-md-right .content-box.space-more .content-img {
        position: relative;
        left: auto;
        right: auto;
        max-width: 100%;
    }
    .content-box.text-md-left,
    .text-md-left .content-box,
    .content-box.text-md-right,
    .text-md-right .content-box,
    .content-box.space-more.text-md-left,
    .text-md-left .content-box.space-more,
    .content-box.space-more.text-md-right,
    .text-md-right .content-box.space-more {
        padding-left: 0;
        padding-right: 0;
    }
}


/*----------------------------------------------------------------------------------------
										FLOAT BOX STYLES
----------------------------------------------------------------------------------------*/

.float-box:after {
    content: "";
    display: block;
    clear: both;
}

.float-left-md {
    float: left;
}

img.float-left-md {
    margin-right: 20px;
}

.float-right-md {
    float: right;
}

img.float-right-md {
    margin-left: 20px;
}

@media (max-width: 992px) {
    .float-left-md,
    .float-right-md {
        float: none;
    }
    img.float-left-md,
    img.float-right-md {
        margin: 0 0 20px 0;
    }
}


/*----------------------------------------------------------------------------------------
										PRICE BOX STYLES
----------------------------------------------------------------------------------------*/

.price-box {
    position: relative;
    margin-bottom: 60px;
}

.price-box .stamp {
    position: absolute;
    right: -20px;
    top: -20px;
}

.price-box hr {
    margin: 30px 0;
}

.price-box .content,
.price-box .price {
    margin-bottom: 30px;
}

.price-box .content ul {
    text-align: left;
    display: inline-block;
}

.price-box .content li {
    vertical-align: middle;
}

.price-box .price h3 {
    color: inherit;
    margin-bottom: 0;
    display: inline-block;
}

.price-box .price small {
    display: inline-block;
    margin-left: 5px;
    line-height: 1;
    text-align: left;
}

.discount-box {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    height: 300px;
    width: 300px;
    margin: 0 auto;
}

.dark .discount-box {
    border-color: rgba(255, 255, 255, 0.5);
}

.discount-box .price {
    display: inline-block;
    margin: 0 auto;
    text-align: left;
}

.discount-box .price .new {
    font-size: 4em;
}

@media (max-width: 992px) {
    .price-box {
        margin-bottom: 40px;
    }
}


/*----------------------------------------------------------------------------------------
										TEAM BOX STYLES
----------------------------------------------------------------------------------------*/

.team-box {
    margin-bottom: 60px;
}

.team-box:last-child {
    margin-bottom: 0;
}

.team-box .team-contact {
    position: relative;
}

.team-contact > img,
.team-contact > ul {
    -webkit-transition: 0.25s ease-out;
    transition: 0.25s ease-out;
}

.team-contact ul {
    position: absolute;
    z-index: 1102;
    top: 50%;
    margin-top: -10px;
    left: 10px;
    right: 10px;
    text-align: center;
    opacity: 0;
}

.team-box > h4 {
    margin: 25px 0 5px 0;
}

.team-box .team-contact:hover img {
    opacity: 0.05;
}

.team-box .team-contact:hover ul {
    opacity: 1;
    -webkit-transform: scale(0px, -5px);
    transform: translate(0px, -5px);
}

@media (max-width: 992px) {
    .team-box {
        margin-bottom: 40px;
    }
}


/*----------------------------------------------------------------------------------------
                        MODAL POPUP STYLES
----------------------------------------------------------------------------------------*/

.modal {
    overflow-y: auto;
}

.modal-content {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 2px;
    border: 0;
    /*position: relative;*/
    /*overflow: hidden;*/
    z-index: 1;
}

.transparent-modal .modal-content {
    background-color: transparent;
}

.transparent-modal .modal-content .close,
.dark .modal-content .close {
    color: #fff;
}

.transparent-modal .modal-header,
.transparent-modal .modal-footer {
    padding: 0;
}

.transparent-modal .modal-body {
    padding: 10px 0 50px 0;
}

.transparent-modal .modal-title {
    color: #fff;
}

.modal-open .modal {
    padding-left: 0px !important;
    padding-right: 0px !important;
    /*overflow-y: scroll;*/
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.close {
    font-family: "Helvetica Neue", inherit;
    font-size: 40px;
    font-weight: lighter;
    text-shadow: none;
    opacity: 1;
}

.close:focus {
    outline: 0px auto -webkit-focus-ring-color;
}

.modal-confirm .modal-body {
    padding: 0 50px 50px 50px;
}


/*----------------------------------------------------------------------------------------
										SEPARATORS STYLES
----------------------------------------------------------------------------------------*/

.sep-full-b:after,
.sep-b:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #000000;
}

.border-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 2px;
}

.dark .border-box,
.dark.sep-full-b,
.dark.sep-b:after {
    border-color: rgba(255, 255, 255, 0.25);
}

@media (min-width: 768px) {
    .sep-b:after {
        left: 50%;
        width: 720px;
        margin-left: -360px;
    }
}

@media (min-width: 992px) {
    .sep-b:after {
        width: 940px;
        margin-left: -470px;
    }
}

@media (min-width: 1200px) {
    .sep-b:after {
        width: 1140px;
        margin-left: -570px;
    }
}


/*----------------------------------------------------------------------------------------
										OWL CAROUSEL STYLES
----------------------------------------------------------------------------------------*/

.owl-theme .owl-controls {
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    padding-bottom: 20px;
}

.owl-theme .owl-controls .owl-nav [class *=owl-] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-controls .owl-nav [class *=owl-]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none
}

.owl-theme .owl-controls .owl-nav .disabled {
    opacity: 0.5;
    cursor: default
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    * display: inline
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.5);
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    border-radius: 30px
}

.dark .owl-theme .owl-dots .owl-dot span {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #444
}

.dark .owl-theme .owl-dots .owl-dot.active span,
.dark .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff
}


/*----------------------------------------------------------------------------------------
                        MAIN NAVIGATION STYLES
----------------------------------------------------------------------------------------*/

nav.navbar {
    border-radius: 0;
    border: none;
    margin: 0;
    z-index: 2;
    min-height: 60px;
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}

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

nav.navbar .nav-bg {
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

.navbar-absolute-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.navbar-fixed-top {
    border-width: 0;
}

.navbar-collapse {
    padding: 0;
    box-shadow: none;
    line-height: 0;
}

.navbar .nav {
    list-style: none;
    display: inline-block;
    z-index: 5;
    margin: 0;
}

.navbar .nav li {
    margin: 20px 20px 0 20px;
    float: left;
    padding: 0;
    line-height: 1.2em;
}

.navbar .nav li a {
    display: inline-block;
    padding: 0;
    text-decoration: none;
    outline: none;
    background: none;
}

.navbar .btn {
    float: right;
    margin: 5px;
}

.navbar .btn-group {
    margin-right: -15px;
    float: right;
}

.navbar .btn-lg {
    margin: 0;
    line-height: 57px;
    height: 60px;
    border-radius: 0;
}

.navbar .btn-sm {
    margin-top: 15px;
}

.navbar .btn-xs {
    margin-top: 20px;
}

.navbar .btn:not(.btn-group .btn):last-child {
    margin-right: 0;
}

.navbar .nav-text {
    margin: 20px 20px 0 0;
    display: inline-block;
}

.navbar .nav-text:last-child {
    margin-right: 0;
}

.navbar .social-list,
.navbar .share-list {
    margin-top: 14px;
}

.text-md-right .nav:last-child li:last-child,
.text-md-right .nav:last-child div:last-child li,
.text-right .nav:last-child li:last-child,
.text-right .nav:last-child div:last-child li {
    margin-right: 0;
}

.text-md-left .nav:first-child > li:first-child,
.text-left .nav:first-child > li:first-child {
    margin-left: 0px;
}

.container-fluid .text-md-left .nav > *:first-child a,
.container-fluid .text-left .nav > *:first-child a {
    padding-left: 10px;
}

.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
    float: none;
    height: 60px;
    line-height: 55px;
    font-size: inherit;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
    display: inline-block;
}

.navbar-brand img {
    display: inline-block;
    vertical-align: middle;
    max-height: 60px;
}

.off-canvas-toggle {
    position: relative;
    z-index: 1000;
    padding: 9px 10px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-toggle,
.off-canvas-toggle {
    height: 60px;
    margin: 0;
    float: none;
}

.off-canvas-toggle:focus {
    outline: 0;
}

.navbar-toggle .icon-bar,
.off-canvas-toggle .icon-bar {
    display: block;
    width: 22px;
    background: #000;
    height: 1px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.dark .navbar-toggle .icon-bar,
.dark .off-canvas-toggle .icon-bar {
    background: #fff;
}

.navbar-toggle .icon-bar + .icon-bar,
.off-canvas-toggle .icon-bar + .icon-bar {
    margin-top: 7px;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(1),
.off-canvas-active .off-canvas-toggle .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2),
.off-canvas-active .off-canvas-toggle .icon-bar:nth-child(2) {
    width: 0px;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(3),
.off-canvas-active .off-canvas-toggle .icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: left;
    transform-origin: left;
}

@media (max-width: 992px) {
    nav .container {
        width: 100%;
    }
    .navbar-collapse {
        margin: 0;
    }
    .navbar .navbar-collapse > *:last-child {
        margin-bottom: 30px;
    }
    .navbar .nav {
        float: none;
        width: 100%;
        text-align: center;
        margin: 0 0 15px 0;
    }
    .navbar .nav li {
        float: none;
        margin: 0;
    }
    .navbar .nav li a {
        padding: 0;
        line-height: 40px;
    }
    .navbar .btn,
    .navbar .btn.btn-lg,
    .navbar .btn-group {
        margin: 15px 0 0 0;
        float: none;
    }
    .navbar .nav-text {
        margin: 20px 0 0 0;
    }
    .container-fluid .text-md-left .nav li:first-child a,
    .container-fluid .text-left .nav li:first-child a {
        padding-left: 0px;
    }
}

@media (min-width: 992px) {
    nav.nav-start-hide:not(.show-menu) {
        -webkit-transform: translate3d(0px, -60px, 0px);
        transform: translate3d(0px, -60px, 0px);
    }
    nav.nav-start-hide-bg:not(.show-menu) .nav-bg {
        opacity: 0 !important;
    }
    nav.nav-start-double-pad:not(.show-menu),
    nav.navbar-absolute-top.nav-start-double-pad {
        -webkit-transform: translate3d(0px, 60px, 0px);
        transform: translate3d(0px, 60px, 0px);
    }
    nav.nav-start-double-pad:not(.show-menu) .nav-bg,
    nav.navbar-absolute-top.nav-start-double-pad .nav-bg {
        -webkit-transform: translate3d(0px, -60px, 0px) scaleY(3);
        transform: translate3d(0px, -60px, 0px) scaleY(3);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}


/*----------------------------------------------------------------------------------------
                        OFF-CANVAS NAVBAR STYLES
----------------------------------------------------------------------------------------*/

.navbar-off-canvas {
    position: fixed;
    overflow-y: auto;
    top: 0;
    bottom: 0;
    padding: 30px;
    right: -250px;
    z-index: 3;
    width: 250px;
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}

.navbar-off-canvas figure {
    margin-bottom: 40px;
}

.navbar-off-canvas figure:last-child {
    margin-bottom: 0px;
}

.navbar-off-canvas .logo {
    display: inline-block;
    margin-bottom: 15px;
}

.navbar-off-canvas figure *:last-child {
    margin-bottom: 0;
}

.navbar-off-canvas .nav {
    margin-bottom: 15px;
}

.navbar-off-canvas .nav li a {
    display: inline-block;
    line-height: 40px;
    padding: 0;
    text-decoration: none;
    outline: none;
    background: none;
}

.off-canvas-overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    top: 0;
    right: -250px;
    bottom: 0;
    left: 0;
    -webkit-transform: translate3d(0px, 0px 0px);
    transform: translate3d(0px, 0px, 0px);
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}

.off-canvas-active .navbar-off-canvas {
    -webkit-transform: translate(-250px, 0px);
    transform: translate(-250px, 0px);
}

#wrap {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}

.off-canvas-active #wrap {
    opacity: 0.8;
    -webkit-transform: translate(-250px, 0px);
    transform: translate(-250px, 0px);
}

.off-canvas-active nav.navbar {
    -webkit-transform: translate(-250px, 0px);
    transform: translate(-250px, 0px);
}

.off-canvas-active .nav li.active a {
    text-decoration: underline;
}

.off-canvas-active nav.navbar .nav-bg {
    opacity: 0 !important;
}

.off-canvas-active .off-canvas-overlay {
    visibility: visible;
    opacity: 0.7;
    -webkit-transform: translate3d(-250px, 0px, 0px);
    transform: translate3d(-250px, 0px, 0px);
}


/*----------------------------------------------------------------------------------------
                        GALLERY STYLES
----------------------------------------------------------------------------------------*/

.gallery-box {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.no-side-pad .gallery-box {
    margin-bottom: 0;
}

a.gallery-box,
a.gallery-box:hover,
a.gallery-box:focus,
.dark a.gallery-box,
.dark a.gallery-box:hover,
.dark a.gallery-box:focus {
    color: inherit;
}

.gallery-box img {
    width: 100%;
    height: auto;
}

.gallery-box img,
.gallery-box .caption,
.gallery-box .icon {
    -webkit-transition: 0.25s ease-out;
    transition: 0.25s ease-out;
}

.gallery-box .caption {
    display: inline-block;
    position: absolute;
    text-align: left;
    z-index: 1;
    left: 20px;
    right: 50%;
    bottom: 20px;
    opacity: 0;
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
}

.gallery-box .icon {
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 20px;
    opacity: 0;
}

.gallery-box:hover img {
    opacity: 0.05;
}

.gallery-box:hover .icon,
.gallery-box:hover .caption {
    opacity: 1;
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

@media (max-width: 992px) {
    .gallery-box {
        margin-bottom: 40px;
    }
}


/*----------------------------------------------------------------------------------------
                        TESTIMONIALS STYLES
----------------------------------------------------------------------------------------*/

blockquote {
    margin: 30px 0;
    display: block;
    position: relative;
    border: none;
    font-size: 1.4em;
    padding: 0;
}

blockquote small,
blockquote .small {
    color: inherit;
}

.small-quotes blockquote {
    margin: 0 0 60px 0;
    font-size: 1em;
}

.small-quotes .owl-carousel blockquote {
    margin: 0;
}

blockquote .quote-desc {
    vertical-align: middle;
    display: block;
    margin-top: 50px;
}

.small-quotes blockquote .quote-desc {
    margin-top: 20px;
}

blockquote .quote-desc img,
.owl-carousel .owl-item .quote-desc img {
    height: 40px;
    width: auto;
    display: inline-block;
}

blockquote .quote-desc small {
    display: inline-block;
    margin-top: 0;
}

.fullwidth-carousel.slide-img-carousel .owl-stage {
    display: table;
}

.fullwidth-carousel.slide-img-carousel .owl-stage .owl-item {
    display: table-cell;
    float: none;
    vertical-align: top;
}

.fullwidth-carousel.slide-img-carousel .owl-stage .owl-item .item {
    padding: 0 30px;
}

.slide-img-carousel blockquote {
    margin: 0;
    padding: 30px 0 120px 0;
}

.slide-img-carousel .item .slide-img-block {
    position: absolute;
    height: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    -webkit-transform: translate3d(0px, 40px, 0px);
    transform: translate3d(0px, 40px, 0px);
    -webkit-transition: 0.25s ease-out;
    transition: 0.25s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slide-img-carousel .item .slide-img-block img {
    height: auto;
    width: auto;
    display: inline-block;
}

.slide-img-carousel .item:hover .slide-img-block {
    -webkit-transform: translate3d(0px, -20px, 0px);
    transform: translate3d(0px, -20px, 0px);
}

@media (max-width: 992px) {
    .small-quotes blockquote {
        margin-bottom: 40px;
    }
}


/*----------------------------------------------------------------------------------------
                        SOCIAL ICONS STYLES
----------------------------------------------------------------------------------------*/

.share-list li {
    display: inline-block;
    margin: 0 4px 4px 0;
}

.share-list li a {
    display: block;
    color: #fff;
    padding: 5px 0 5px 10px;
    border-radius: 2px;
    line-height: 1;
    font-size: 14px;
}

.dark .share-list li a:hover,
.share-list li a:hover {
    color: #fff;
    text-decoration: inherit;
}

.share-list li a [class^=icon-] {
    margin-right: 8px;
}

.share-list li a span {
    margin: 0 10px 0 0;
}

.share-list li [data-type="tw"] {
    background: #00aced;
}

.share-list li [data-type="fb"] {
    background: #3b5998;
}

.share-list li [data-type="gp"] {
    background: #dd4b39;
}

.share-list li [data-type="li"] {
    background: #007bb6;
}

.share-list li [data-type="pt"] {
    background: #cb2027;
}

.share-list li [data-type="vk"] {
    background: #45668e;
}

.share-list li [data-type="ok"] {
    background: #ed812b;
}

.social-list li {
    display: inline-block;
    margin: 5px 6px;
}

.icons-row {
    display: block;
}

.icons-row i {
    margin: 1px;
    display: inline-block
}

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


/*----------------------------------------------------------------------------------------
                        END
----------------------------------------------------------------------------------------*/